All Projects → Gisto → Gisto

Gisto / Gisto

Licence: mit
Gisto is a Cross-platform snippets management desktop application that allows you and/or your team share code snippets fast and easily. Based on GitHub Gists Infrastructure which means you can use all your existing snippets by connecting your GitHub account! Gisto started as an attempt to fulfill the lack of a syntax highlighted and cloud synchronized code snippet solution. You may thing of Gisto as Evernote for code.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gisto

code-examples-manager
Software tool to manage your notes and code examples, to publish them as gists or snippets
Stars: ✭ 26 (-96.95%)
Mutual labels:  gist, snippets
The Way
A command line code snippets manager
Stars: ✭ 132 (-84.53%)
Mutual labels:  gist, snippets
Code Notes
A simple code snippet & gist manager for developers built with Electron & Vue.js 🚀
Stars: ✭ 919 (+7.74%)
Mutual labels:  gist, snippets
chalkboard
Share your code and collaborate with developers around the world.
Stars: ✭ 30 (-96.48%)
Mutual labels:  gist, snippets
Vuejs Snippets
Collection of Vuejs 2.0+ snippets
Stars: ✭ 17 (-98.01%)
Mutual labels:  snippets
Ultisnips
UltiSnips - The ultimate snippet solution for Vim. Send pull requests to SirVer/ultisnips!
Stars: ✭ 6,465 (+657.91%)
Mutual labels:  snippets
Wtfpython
What the f*ck Python? 😱
Stars: ✭ 27,762 (+3154.63%)
Mutual labels:  snippets
Sublimecodeintel
💡 Full-featured code intelligence and smart autocomplete for Sublime Text
Stars: ✭ 5,050 (+492.03%)
Mutual labels:  snippets
Snipsnap
The ultimate snippets collection for VS Code
Stars: ✭ 840 (-1.52%)
Mutual labels:  snippets
Vscode Badges
Snippets to quickly insert Shield.io badges into HTML, Markdown, reStructuredText or Textile documents
Stars: ✭ 19 (-97.77%)
Mutual labels:  snippets
Git Repo
Git-Repo: CLI utility to manage git services from your workspace
Stars: ✭ 818 (-4.1%)
Mutual labels:  gist
Bestandroidgists
Find best Android Gist 🔥
Stars: ✭ 745 (-12.66%)
Mutual labels:  gist
Vs Freemarker
FreeMarker language colorization extension for Visual Studio Code
Stars: ✭ 17 (-98.01%)
Mutual labels:  snippets
Carbon
🖤 Create and share beautiful images of your source code
Stars: ✭ 29,304 (+3335.4%)
Mutual labels:  snippets
Vscode Unity Code Snippets
All snippets for Unity3D development
Stars: ✭ 26 (-96.95%)
Mutual labels:  snippets
Dockerfile.vim
Vim syntax file & snippets for Docker's Dockerfile
Stars: ✭ 645 (-24.38%)
Mutual labels:  snippets
Google Apps Script Awesome List
The usual list of links to interesting resources for Google Apps Script
Stars: ✭ 814 (-4.57%)
Mutual labels:  snippets
Polacode
📸 Polaroid for your code
Stars: ✭ 6,511 (+663.31%)
Mutual labels:  snippets
Snippetstore
🎉 A snippet management app for developers 🚀
Stars: ✭ 762 (-10.67%)
Mutual labels:  snippets
Elixir Tips
The Killer Elixir Tips and Tricks...from the experience...
Stars: ✭ 833 (-2.34%)
Mutual labels:  snippets

{ Gisto }

Snippets made awesome

GitHub release GitHub tag (latest SemVer pre-release) GitHub license Codecov master Codecov next Code Climate OSX build Linux build AppVeyor branch

About

Gisto is a code snippet manager that runs on GitHub Gists and adds additional features such as searching, tagging and sharing gists while including a rich code editor. All your data is stored on GitHub and you can access it from GitHub Gists at any time with changes carrying over to Gisto

Getting gisto

Future and Status

Current released version is always on the branch master

Gisto next version in the works can be tracked via next branch

Please see next branch for upcoming version currently in development.

change.log of current version for more detailed info regarding new features, bug fixes and releases.

Changelog

Screenshots

Dashboard Snippet view Snippet options
Dashboard Snippet view Snippet options
Edit mode Settings Create new
Edit mode Settings Create new
CSV preview GeoJSON preview Images preview
Edit mode Settings Create new

FEATURES

  • Advanced search
  • Enterprise log-in
  • Tags
  • Syntax highlight
  • Grouping by language
  • Quick snippet actions
  • Copy to clipboard
  • Copy file contents to clipboard
  • Open in external tools like plunkr, jsbin, carbon.now.sh, jsfiddle, etc.
  • Editor settings
  • Theme color changer
  • Drag and drop to create files
  • Comments
  • Web app
  • Open source

Preview of:

  • Markdown preview (with emoji)
  • AsciiDoc preview
  • CSV and TSV preview
  • GeoJSON preview
  • Images preview (read only, pushed to gist by git)
  • PDF preview (read only, pushed to gist by git)
  • Open API/Swagger preview

And more...

Gisto previous version

Gisto v1 can be tracked via branch v1

This version considered obsolete and will not be updated

Latest builds

Latest builds in the releases tab

Issues, bug reporting and pull requests

Please feel free to add a bug / feature request / suggestions to the issue tracker.

Pull requests are very welcome

Privacy/authentication

Gisto authenticates to GitHub by using one of the following methods:

  • Oauth2 - the default option on the log-in screen

  • Basic authentication over SSL and retrieving an oAuth2 token. Thus the need for your GitHub user and password

  • Access token - If you would rather to supply your own access token without providing Gisto your login details you may manually create an access token from the account settings at GitHub and login using the generated token

  • Token via CLI - You can log-in with token by passing it to the executable as CLI argument (macOs example): open /Applications/Gisto.app/ --args --token 123123 (#183)

Gisto only saves the oAuth2 token received after authenticating and nothing else.

This token will be saved permanently until you log out.

You can find out more at the F.A.Q. section

How to help/contribute

  • fix issues, pull request are very welcome
  • write, improve docs
  • write tests (we use jest)
  • fix/contribute to Gisto's website (https://gistoapp.com)
  • suggest features and improvements
  • spread the word

Development setup

Make sure you have nodejs and npm installed in the development machine

Clone the latest "next" branch:

git clone -b next --single-branch https://github.com/Gisto/Gisto.git

Install dependencies in the directory created by cloning:

npm install

Run the local application (electron mode):

npm run dev

Run the local application (webapp):

npm run start:web (you will also have to run webserver from /web/ directory)

(for more commands, see package.json script section)

Run tests

npm run test or npm t

Release cycle

pre-release (beta from next branch)

  • make changes on next brnch ONLY
  • commit (this will run lint and tests)
  • do not push, run npm run make:release:beta - will commit new tag with -beta.0 prefix and will also push

release

  • make changes on next brnch ONLY
  • commit (this will run lint and tests) and push
  • do not push, run npm run make:release (for minor version), will update readme and changelog, add and commit new tag and will also push

License

MIT

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].