- a
View gist:10735826
* [ ] a |
View keybase.md
Keybase proof
I hereby claim:
- I am bkeepers on github.
- I am bkeepers (https://keybase.io/bkeepers) on keybase.
- I have a public key whose fingerprint is 8AF6 4385 E45B 03AA 72D7 DE72 F524 D391 D545 3EF9
To claim this, I am signing this object:
View gist:8337479
//= require lib/jquery | |
//= require csrf | |
function openWithoutReferrer(url) { | |
var site = window.open("", "hide_referrer"); | |
site.document.open(); | |
site.document.writeln('<script type="text/javascript">window.location = "' + url + '";</script>'); | |
site.document.close(); | |
} |
View api_spec.rb
# spec/features/api_spec.rb | |
require 'spec_helper' | |
describe 'API' do | |
class TestClient < Hyperclient::EntryPoint | |
def default_faraday_block | |
lambda do |faraday| | |
faraday.request :json | |
faraday.response :json, content_type: /\bjson$/ | |
faraday.adapter :rack, Capybara.app |
View gist:6502229
/$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$$$ /$$$$$$ /$$$$$$ | |
/$$__ $$ /$$__ $$| $$$ | $$| $$_____/|_ $$_/ /$$__ $$ | |
| $$ \__/| $$ \ $$| $$$$| $$| $$ | $$ | $$ \__/ | |
| $$ | $$ | $$| $$ $$ $$| $$$$$ | $$ | $$ /$$$$ | |
| $$ | $$ | $$| $$ $$$$| $$__/ | $$ | $$|_ $$ | |
| $$ $$| $$ | $$| $$\ $$$| $$ | $$ | $$ \ $$ |
View gist:6002211
def dress(dog_or_dogs) | |
dressed_dogs = Array(dog_or_dogs).map {|dog| DogSweater.new(dog) } | |
dog_or_dogs.respond_to?(:each) ? dressed_dogs : dressed_dogs.first | |
end | |
one_dog = dress(Dog.new) | |
all_my_dogs = dress([Dog.new, Dog.new, Dog.new]) |
View twithubbers.sh
#!/bin/sh | |
# | |
# Requires the `t` gem: https://github.com/sferik/t | |
# | |
# gem install t | |
# | |
if [ -z $(t lists | grep -i githubbers) ] | |
then | |
t list create GitHubbers |
View .gitconfig
[alias] | |
fixup = !sh -c 'REV=$(git rev-parse $1) && git commit --fixup $@ && git rebase -i --autosquash $REV^' - | |
squash = !sh -c 'REV=$(git rev-parse $1) && git commit --squash $@ && git rebase -i --autosquash $REV^' - |