Skip to content

Instantly share code, notes, and snippets.

config.json
reading-image.png
@rodw
rodw / backup-github.sh
Last active March 12, 2025 22:01
A simple script to backup an organization's GitHub repositories, wikis and issues.
#!/bin/bash
# A simple script to backup an organization's GitHub repositories.
#-------------------------------------------------------------------------------
# NOTES:
#-------------------------------------------------------------------------------
# * Under the heading "CONFIG" below you'll find a number of configuration
# parameters that must be personalized for your GitHub account and org.
# Replace the `<CHANGE-ME>` strings with the value described in the comments
# (or overwrite those values at run-time by providing environment variables).
@bryanwoods
bryanwoods / 2011books.txt
Created December 18, 2011 00:47
The 11 books I most enjoyed reading in 2011
The 11 books I most enjoyed reading in 2011, alphabetical by author:
Infidel - Ayaan Hirsi Ali
The Pregnant Widow - Martin Amis
The Flight of the Intellectuals - Paul Berman
Freedom - Jonathan Franzen
The Art of Fielding - Chad Harbach
The Moral Landscape - Sam Harris
Letters to a Young Contrarian - Christopher Hitchens
Child of God - Cormac McCarthy
@dsanson
dsanson / any2pandoc.sh
Created August 30, 2011 17:52
any2pandoc.sh: script that tries to convert documents thrown at it to pandoc's extended markdown
#!/bin/sh
# any2pandoc.sh
#
# A shell script that tries its best to convert documents thrown at it
# to pandoc's extended markdown.
#
# https://gist.github.com/1181510
#
# Depends on:
@collegeman
collegeman / setup-statsd.sh
Created March 9, 2011 16:12
Turn an Ubuntu 10.04 linode into a StatsD/Graphite server
# install git
sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core
# download the Node source, compile and install it
git clone https://github.com/joyent/node.git
cd node
./configure
make
sudo make install
# install the Node package manager for later use