A quick visual reference to every ColorBrewer scale; colors by Cynthia Brewer. Available in CSS and JS format. Click on a palette to log the constituent colors in hexadecimal RGB to the console.
/msg chanserv flags ##bobs-awesome-channel bob_dole +oO
source: http://little418.com/2012/01/adding-ops-to-your-new-freenode-channel.html
This file contains hidden or 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
#!/usr/bin/env ruby | |
# Read the file into a string | |
file_contents = File.read('memes.txt') | |
# Split those lines into an array | |
lines = file_contents.split("\n") | |
# You could also do the same thing in one step with File.readlines, | |
# but note that File.readlines will keep newlines whereas split strips them |
This file contains hidden or 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
ruby "2.1.1" | |
source 'https://rubygems.org' | |
gem 'sinatra' | |
gem 'sqlite3' | |
gem 'shotgun' |
- Border Lands – Episode 1, Episode 2
A short series about an expedition to climb remote alpine rock in Kyrgyzstan. - Vertical Sailing Greenland
The happiest crew of climbers ever filmed climbs bigwalls by sailboat.
This file contains hidden or 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
ssh-keygen -R hostname.com |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am qrohlf on github. | |
* I am qrohlf (https://keybase.io/qrohlf) on keybase. | |
* I have a public key whose fingerprint is 41EC FE6D 9FFB 8E10 54BE A50E 5D04 7948 81A1 B64B | |
To claim this, I am signing this object: |
Scout Realtime Install
#0. Install gem on server:
gem install scout_realtime
scout_realtime start
hemingway.qrohlf.com:5555 works now!
This file contains hidden or 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
#example PR checkout: | |
git remote add bwhthd [email protected]:bwhthd/hackathon-starter-sinatra.git | |
git fetch bwhthd | |
git branch bwhthd-password-reset bwhthd/password_reset | |
git checkout bwhthd-password-reset |