View 0_reuse_code.js
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
View Gemfile
source :rubygems | |
gem 'mechanize' | |
gem 'choice' | |
gem 'highline' |
View gist:1106395
#!/bin/bash -e | |
# The following variables are available to you | |
# (values are examples only) | |
# | |
# TIMEZONE="UTC" # The timezone this server should be given | |
# CI_USER="ci" # The user to setup and run the tests as | |
# # (although you are free to ignore this) | |
# | |
# GIT_URI="git://github.com/andymccurdy/redis-py.git" # The Git URL for this project |
View INSTALLATION
These are the steps I took to get the HSBC Bookmarklet (http://dies-el.co.uk/hsbc_bookmarklet) installed. | |
1. Get a copy of John Gruber's perl script to create bookmarklets (I've copied it and created a gist) | |
$ git clone git://gist.github.com/316867.git make-bookmarklet | |
2. Get a copy of Andrew Donaldson's HSBC auto logger inner | |
$ git clone git://gist.github.com/266260.git hsbc-bookmarklet |
View gist:210853
From: | |
Then /^the "([^\"]*)" checkbox should be checked$/ do |label| | |
field_labeled(label).should be_checked | |
end | |
Then /^the "([^\"]*)" checkbox should not be checked$/ do |label| | |
field_labeled(label).should_not be_checked | |
end |