Skip to content

Instantly share code, notes, and snippets.

View rcarver's full-sized avatar
:shipit:
Building Recentralized.

Ryan Carver rcarver

:shipit:
Building Recentralized.
View GitHub Profile
module Job
extend self
def low(klass, *args)
queue.enqueue(:low, klass, *args)
end
def high(klass, *args)
queue.enqueue(:high, klass, *args)
end
@rcarver
rcarver / gist:118854
Created May 27, 2009 19:41
Don't do this or Safari will randomly show a blank page and you will be sad
- render " ", :status => 304
+ render "", :status => 304
git push origin master
ssh ryancarver.com "cd ryancarver.com && git pull origin master"
@rcarver
rcarver / Output
Created February 18, 2009 19:36
The difference between CGI.escape and URI.escape
"i" "i.chr" "URI.escape" "CGI.escape"
32 " " "%20" "+"
33 "!" "!" "%21"
36 "$" "$" "%24"
38 "&" "&" "%26"
39 "'" "'" "%27"
40 "(" "(" "%28"
41 ")" ")" "%29"
42 "*" "*" "%2A"
43 "+" "+" "%2B"
$(document).ready(function() {
$('form').submit(function() {
var q = $("input#q").val();
$.getJSON("http://en.wikipedia.org/w/api.php?callback=?", {
search: q,
action: "opensearch",
format: "json" },
function(result) {
var suggestions = result[1];
# Set environment variables authorizing AWS for a specific account. Data is stored in:
# ~/.amazon_keys_[account]
# ~/.ec2_[account]/pk-*.pem
# ~/.ec2_[account]/cert-*.pem
# ~/.ec2_[account]/id_rsa-*
function aws {
export AWS_CURRENT=$1
# AWS
if [[ -f "$HOME/.amazon_keys_$1" ]]; then