I hereby claim:
- I am heliostatic on github.
- I am heliostatic (https://keybase.io/heliostatic) on keybase.
- I have a public key whose fingerprint is 8F4C 15D0 978F C7DE 2854 1C74 DC86 6032 6CF5 12E9
To claim this, I am signing this object:
fetch: | |
git fetch | |
update VERSION: | |
git stash | |
git checkout v{{VERSION}} | |
git stash pop | |
sed 's/:v[0-9]\.[0-9]\.[0-9]/:v{{VERSION}}/g' docker-compose.yml | |
restart: |
[/Users/bc..et - Honore de Balzac.epub] ===================================================== | |
[/Users/bc..ns - Honore de Balzac.epub] Testing '/DIRECTORY/Balzac, Honore de/Lost Illusions - Honore de Balzac.epub' for corruption... | |
[/Users/bc..ns - Honore de Balzac.epub] tr: Illegal byte sequence | |
[/Users/bc..ns - Honore de Balzac.epub] The file has a '.epub' extension, testing with 7z... | |
[/Users/bc..ns - Honore de Balzac.epub] File passed the corruption test, looking for ISBNs... | |
[/Users/bc..ns - Honore de Balzac.epub] Searching file '/DIRECTORY/Balzac, Honore de/Lost Illusions - Honore de Balzac.epub' for ISBN numbers... | |
[/Users/bc..ns - Honore de Balzac.epub] usage: grep [-abcDEFGHhIiJLlmnOoqRSsUVvwxZ] [-A num] [-B num] [-C[num]] | |
[/Users/bc..ns - Honore de Balzac.epub] [-e pattern] [-f file] [--binary-files=value] [--color=when] | |
[/Users/bc..ns - Honore de Balzac.epub] [--context[=num]] [--directories=action] [--label] [--line-buffered] | |
[/Users/bc..ns - Honore de Balzac.epub] [--null] [ |
I hereby claim:
To claim this, I am signing this object:
require 'sinatra' | |
require 'data_mapper' | |
require 'slim' | |
require 'digest/sha1' | |
DataMapper.setup(:default, ENV['DATABASE_URL'] || File.join("sqlite3://",settings.root, "development.db")) | |
class Note | |
include DataMapper::Resource | |
property :id, Serial |
Some exercises from the Falsy Values workshops.
The good parts:
# Usage: show <local-port> <subdomain> | |
function show() { | |
DOMAIN=".tekacs.com" | |
REMOTE="$2$DOMAIN" | |
ssh -tR 1080:127.0.0.1:$1 vps "sudo ssh -Nl \$USER -L $REMOTE:80:127.0.0.1:1080 localhost" | |
} |
# Ride4Ruby challenge | |
# details: http://www.engineyard.com/blog/2011/january-contest-ride4ruby/ | |
require 'open-uri' | |
require 'JSON' | |
require 'pp' | |
require 'net/http' | |
States = %w{Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware District of Columbia Florida Georgia Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Ohio Oklahoma Oregon Pennsylvania Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virginia Washington West Virginia Wisconsin Wyoming} |
// Provides a device_scale class on iOS devices for scaling user | |
// interface elements relative to the current zoom factor. | |
// | |
// http://37signals.com/svn/posts/2407-device-scale-user-interface-elements-in-ios-mobile-safari | |
// Copyright (c) 2010 37signals. | |
// Slightly optimized by Mathias Bynens <http://mathiasbynens.be/> | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
# Copy paste this file in your terminal | |
# The following will create a dir which contains the rails repo. | |
# You can start edit this later on. It will also create a Gemfile and a Vagrantfile. | |
# It will run bundle and it will # download and activate the virtualbox that contains | |
# everything you need to start # testing. | |
mkdir rails_test_box | |
cd rails_test_box | |
git clone git://github.com/rails/rails.git |