All Projects → TelescopeSt → Telescope

TelescopeSt / Telescope

Licence: MIT license
Telescope is an engine for efficiently creating meaningful visualizations

Programming Languages

smalltalk
420 projects

Projects that are alternatives of or similar to Telescope

action-dynamic-readme
~ Dynamic ReadME Generator ~
Stars: ✭ 29 (+11.54%)
Mutual labels:  dynamic
GitBridge
Access resources and information from the git repository containing your project.
Stars: ✭ 14 (-46.15%)
Mutual labels:  pharo
1pt
A URL shortener with protection against malicious redirects
Stars: ✭ 20 (-23.08%)
Mutual labels:  dynamic
AstronomicAL
An interactive dashboard for visualisation, integration and classification of data using Active Learning.
Stars: ✭ 45 (+73.08%)
Mutual labels:  interactive
msgpack-smalltalk
MessagePack serialization library for various Smalltalk dialects / msgpack.org[Smalltalk]
Stars: ✭ 22 (-15.38%)
Mutual labels:  pharo
requestty
An easy-to-use collection of interactive cli prompts inspired by Inquirer.js.
Stars: ✭ 158 (+507.69%)
Mutual labels:  interactive
dynamic-app
Dynamic Forms Builder are reusable and make building large-scale applications easier (Easy Peasy)
Stars: ✭ 15 (-42.31%)
Mutual labels:  dynamic
webpack-entry-plus
Generate dynamic webpack bundle output names from known or unknown entry files
Stars: ✭ 24 (-7.69%)
Mutual labels:  dynamic
nextdriver
An Arduino-based controller for Celestron CG5-series equatorial mounts
Stars: ✭ 21 (-19.23%)
Mutual labels:  telescope
periodum
Periodum: An Interactive, Open-Source Periodic Table!
Stars: ✭ 346 (+1230.77%)
Mutual labels:  interactive
COVIDvu
Volunteers building and sharing current, accurate, near real-time COVID-19 tracking and prediction tools.
Stars: ✭ 15 (-42.31%)
Mutual labels:  visualizations
ml gallery
This is a master project of some experiments with Neural Networks. Every project here is runnable, visualized and explained clearly.
Stars: ✭ 18 (-30.77%)
Mutual labels:  visualizations
readme-components
Cards for your readme
Stars: ✭ 44 (+69.23%)
Mutual labels:  dynamic
NSL
Implementation for <Neural Similarity Learning> in NeurIPS'19.
Stars: ✭ 33 (+26.92%)
Mutual labels:  dynamic
inquire
A Rust library for building interactive prompts
Stars: ✭ 419 (+1511.54%)
Mutual labels:  interactive
natural-language-joint-query-search
Search photos on Unsplash based on OpenAI's CLIP model, support search with joint image+text queries and attention visualization.
Stars: ✭ 143 (+450%)
Mutual labels:  visualizations
ilua
Portable Lua kernel for Jupyter
Stars: ✭ 99 (+280.77%)
Mutual labels:  interactive
kendrick
Domain-Specific Modeling for Epidemiology
Stars: ✭ 43 (+65.38%)
Mutual labels:  pharo
protobuf-smalltalk
Protocol buffers support for Smalltalk
Stars: ✭ 14 (-46.15%)
Mutual labels:  pharo
dcc
Direct/Interactive C Compiler
Stars: ✭ 18 (-30.77%)
Mutual labels:  interactive

Telescope

Telescope is an engine for efficiently creating meaningful visualizations. The purpose is to help the user concentrate on the problem at hand rather than understanding the nitty-gritty of a drawing library. It does so by exposing to the user to a few concepts of the domain of visualization: nodes and their contents, layouts, interactions, and update mechanism. For example, the user does not have to worry about the creation of composite or simple nodes, the engine handles it.

The user can create a model of visualization and then render it via a connector to a visualization framework.

Note: Telescope is not usable by itself. It needs to come with at least one connector. You can find the list of connectors later in this document.

Documentation

Version management

This project use semantic versionning to define the releases. This mean that each stable release of the project will get associate a version number of the form vX.Y.Z.

  • X define the major version number
  • Y define the minor version number
  • Z define the patch version number

When a release contains only bug fixes, the patch number increase. When the release contains new features backward compatibles, the minor version increase. When the release contains breaking changes, the major version increase.

Thus, it should be safe to depend on a fixed major version and moving minor version of this project.

Install Telescope

To install Telescope on your Pharo image you can just execute the following script:

    Metacello new
    	githubUser: 'TelescopeSt' project: 'Telescope' commitish: 'v2.x.x' path: 'src';
    	baseline: 'Telescope';
    	onWarningLog;
		onUpgrade: [ :e | e useIncoming ];
    	load

To add Telescope to your baseline just add this:

    spec
    	baseline: 'Telescope'
    	with: [ spec repository: 'github://TelescopeSt/Telescope:v2.x.x/src' ]

Note that you can replace the v2.x.x tag by a branch as #master or #development or a tag as #v1.0.0, #v1.? or #v1.0.x or a commit SHA.

Connectors

As explained previously, Telescope works with connector to render visualizations. We will list here the official Telescope's connectors.

CytoscapeJs

The CytoscapeJs connector of Telescope is available at: https://github.com/TelescopeSt/TelescopeCytoscape

This connector works with Seaside in order to render web visualizations.

Roassal

A Roassal connector was initialized but we did not get the manpower to maintain it.

If someone wants to revive this connector, the last version we got was in this commit: 9fafc43ade53f8d16e40c82dffbccd2371f3851d

Examples

Examples can be found in the CytoscapeJs connector repository.

Smalltalk versions compatibility

Telescope version Compatible Pharo versions
v1.x.x Pharo 61, 70
v2.x.x Pharo 61, 70, 80, 90
development Pharo 61, 70, 80, 90

Contact

If you have any question or problem do not hesitate to open an issue or contact cyril (a) ferlicot.me or guillaume.larcheveque (a) gmail.com

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].