Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I love github and their gist service and that's why I'm keeping a lot of code snippets and even development notes as a gist on my github account. It also makes it easy to share them with my colleagues.

The problem is that it doesn't scale!! the github features for gist are primitive and I have lots of gists there which make it really difficult to find some of my old gists. there's no search, there's no tagging or anything.

do you know any app that can handle this mess. I would like an app that could

  • Search my gists
  • List my gists by source type and date
  • Let me edit or copy them
  • Let me tag or at least edit description

I would love to see something like this, and I'm willing to pay even some bucks for it. so how do you manage you gists on github? do you know any software?

There's one called drift written in MacRuby but I couldn't compile it and it hasn't been updated for a while.

share|improve this question
Maybe this guy will add gist management: kickstarter.com/projects/1487030260/… – pjmorse Dec 3 '10 at 22:16

10 Answers

up vote 1 down vote accepted

Check the GistBox and it does support searching, editing, labeling etc.

share|improve this answer

Now gist.github.com supports search. So you can search your gist. I use #hashtag in description, so I can search my gist by tags via myusername #tag.

For offline usage, I cloned all my gists. And use find and grep to search them. I also search them with gonzui (open source code search engine).

I've written a shell script: gister.sh. I use it to post gists. It will clone the repo to local and import into gonzui automatically after the post. You may have a look at it here:

https://gist.github.com/492755

Since you can get all your public gist info via gist api, you can also build navigation pages using html/css/javascript. In the above gist repo, there is also a python script for this purpose. (It's a demo only. The script will generate an index list with descriptions.)

share|improve this answer
Nice tip on including your username in gist searches to narrow things down (since they only have a search for all gists at the moment). – Derek Morrison Apr 26 '11 at 8:39

Gists are lightweight repositories, so why not take advantage of that?

clone your gists to a 'my_gists' directory, organized how you would want them organized.

Then they become searchable fully using whatever search tools you are familiar with on your operating system.

You also have the advantage of being able to edit, comment, commit and push.

This let's you do all that you have listed and more.

Anyway, hope that helps.

share|improve this answer
I already do that but it's still far from the convenience I'm expecting from a code snippet manager. – Allan Bargi Nov 4 '10 at 7:26

I've built My Gists for organizing your gists by #hashtag. Check it out! Thanks.

https://www.mygists.info

share|improve this answer
1  
this is great! just what i was looking for – djburdick Jan 26 at 7:42
Thank you so much! – simeonwillbanks Jan 31 at 16:38

It might be possible to clone your gists into a local folder (as pointed out by vgoff), then build some sort of personal website around this hosted on github pages... Using Jekyll/liquid you could tag and have categories... Embed using JavaScript, or use partials to inject code into the source ( using pygments to handle the syntax highlighting - or do it client side e.g using SyntaxHighlighter ). Perhaps use google search for the search component... or dynamically build up a json file, or use github's gist API ( http://develop.github.com/p/gist.html ) to pull in json for meta data and public repos...

You could possibly take this further and "demo" your HTML/CSS/JS gists using jsFiddle.net (you can create a new fiddle from a gist... See: http://doc.jsfiddle.net/use/gist_read.html )

I'm going to need a system like this for a project I'm working on ( http://getfiremonkey.com ) - it's for teaching teenagers HTML/CSS/JS in Firefox... And I'm thinking of building it on top of Github Pages/Gist/jsFiddle.net ... Free, open, interactive examples and branchable.

I've decided to setup a side project to focus on building a Gist CMS from anything I learn along the way...

https://github.com/chrisjacob/gist-cms

"Personal Gist CMS hosted on Github Pages. A code / content management system powered by Jekyll to tag, categorize and search your Gist archive. Keep all your Gist's organized in one repository; and show them off the the world with their own dedicated website."

Right now it's just an idea; so let me know if you're interested - and lend a hand if you can ^_^

share|improve this answer

Note that, starting February 2013, Gist are now in their own namespace: "Namespaced Gists".

So at least, it is easier to find Gist for a particular user:

https://gist.github.com/Username/
share|improve this answer
nice, was totally looking for something like this. Thanks for the heads up! – Cardin Mar 10 at 23:38

If you are familiar with Sublime Text, then you should try "Gist" package. Useful tuts+ tutorial

share|improve this answer

I've found Snip2Code to be a useful service that lets you manage your own code snippets, giving you the capability to share with colleagues and edit/tag them in a powerful way

share|improve this answer

I have some organizational tips for you.

Try to organize your gists by their purpose and open github accounts for those purposes. For example, if you have gists for embedding in your blog, create a github account for your blog and move the gists there. If you have gists for work, create an account for your work-personality.

Of course, now you're managing github accounts and credentials and may still have a gist problem ;)

share|improve this answer

If your snippets are ruby snippets, I'd suggest boson. I use it to maintain my repository of 450+ ruby commands (snippets). I search my commands by name, description, usage, alias and other fields as well as sort by them. Since my commands reside in local files, I can easily export to gists or install gists as boson commands. I can do all of the things you want to do except list by date and tag. Listing by date is trivial (timestamp of the file) and tags is something I'd like to add to boson as a plugin one day.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.