Skip to content

Instantly share code, notes, and snippets.

View chrisroos's full-sized avatar

Chris Roos chrisroos

View GitHub Profile
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
@chrisroos
chrisroos / INSTALLATION
Created February 27, 2010 18:54 — forked from adonaldson/INSTALLATION
HSBC login bookmarklet
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
@chrisroos
chrisroos / gist:1106395
Created July 26, 2011 09:44 — forked from adamcharnock/gist:1073858
Initial work on a Ruby/Rails setup script for https://continuous.io
#!/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
@chrisroos
chrisroos / Gemfile
Last active December 17, 2015 05:39 — forked from gljeremy/disconnect.rb
source :rubygems
gem 'mechanize'
gem 'choice'
gem 'highline'
@chrisroos
chrisroos / 0_reuse_code.js
Created November 4, 2013 16:32
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console