This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains 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
source :rubygems | |
gem 'mechanize' | |
gem 'choice' | |
gem 'highline' |
This file contains 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
#!/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 |
This file contains 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
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 |
This file contains 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
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 |