Skip to content

Instantly share code, notes, and snippets.

View Letterus's full-sized avatar

Johannes Brakensiek Letterus

View GitHub Profile
@seven1m
seven1m / open_source_church_software.md
Last active March 4, 2024 22:19
List of Open Source Church Software
@caniszczyk
caniszczyk / clone-all-twitter-github-repos.sh
Created October 9, 2012 04:25
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"]} ]}'