Skip to content

Instantly share code, notes, and snippets.

View darragh-murphy's full-sized avatar

Darragh Murphy darragh-murphy

View GitHub Profile
@darragh-murphy
darragh-murphy / clone-all-twitter-github-repos.sh
Created November 26, 2015 21:45 — forked from caniszczyk/clone-all-twitter-github-repos.sh
Clone all repos from a GitHub organization
curl -s https://api.github.com/orgs/twitter/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}'
@darragh-murphy
darragh-murphy / config-highlight.cfg
Created November 14, 2015 12:30 — forked from dsosby/config-highlight.cfg
A dark highlighting theme for Python's IDLE IDE based on Notepad++'s Obsidian color scheme
[Obsidian]
definition-foreground = #678CB1
error-foreground = #FF0000
string-background = #293134
keyword-foreground = #93C763
normal-foreground = #E0E2E4
comment-background = #293134
hit-foreground = #E0E2E4
builtin-background = #293134
stdout-foreground = #678CB1