On this blog I use Gist to display various code snippets in my posts. Such as this one:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public class Singleton | |
{ | |
private static Singleton instance; | |
private Singleton() {} | |
public static Singleton Instance | |
{ | |
get | |
{ | |
if (instance == null) | |
{ | |
instance = new Singleton(); | |
} | |
return instance; | |
} | |
} | |
} |
GistBox is an app which connects to your Github account and allows you to organize your gists in folders using labels.
![]() |
How my GistBox looks like |
GistBox is available as a "normal" web app and as a Chrome App.
No comments :
Post a Comment