Skip to content

Instantly share code, notes, and snippets.

View thescientician's full-sized avatar

Ben Stevenson thescientician

  • Calgary, Alberta
  • 14:44 (UTC -06:00)
View GitHub Profile
first_name last_name company_name address city province postal phone1 phone2 email web latitude longitude
Queenie Kramarczyk Goeman Wood Products Inc 47 Garfield Ave Swift Current SK S9H 4V2 306-421-5793 306-302-7591 queenie.kramarczyk@kramarczyk.org http://www.goemanwoodproductsinc.com 50.2832298 -107.7843475
Lea Steinhaus James, Christopher Esq 80 Maplewood Dr #34 Bradford ON L3Z 2S4 905-618-8258 905-651-3298 lsteinhaus@cox.net http://www.jameschristopheresq.com 43.1741066 -80.248848
Paola Vielma Congress Title 58 Hancock St Aurora ON L4G 2J7 905-456-1117 905-263-7711 paola_vielma@aol.com http://www.congresstitle.com 43.9731255 -79.4274063
Danilo Pride Harry L Adams Incorporated 6857 Wall St Red Deer AB T4R 2H5 403-212-4945 403-888-9985 danilo_pride@hotmail.com http://www.harryladamsincorporated.com 52.2699814 -113.7584381
Apolonia Warne Kitchen People 3 E 31st St #77 Fredericton NB E3G 0A3 506-978-1488 506-221-1874 apolonia@gmail.com http://www.kitchenpeople.com 45.9478607 -66.6
@adamhjk
adamhjk / Guardfile
Last active December 17, 2015 03:19
A Guardfile with inline support for test-kitchen, before we turn it into a gem.
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
require 'guard/guard'
require 'mixlib/shellout'
module ::Guard
class Kitchen < ::Guard::Guard
def start
::Guard::UI.info("Guard::Kitchen is starting")
@johntyree
johntyree / getBlockLists.sh
Last active June 4, 2024 12:30
Make one large blocklist from the bluetack lists on iblocklist.com
#!/usr/bin/env sh
# Download lists, unpack and filter, write to stdout
curl -s https://www.iblocklist.com/lists.php \
| sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \
| xargs wget -O - \
| gunzip \
| egrep -v '^#'
@netzpirat
netzpirat / 0_README.md
Created November 12, 2010 10:42
Continuous CoffeeScript testing with Guard and Jasmine

Continuous CoffeeScript testing with Guard and Jasmine

This Gist shows how to set up a Rails project to practice BDD with CoffeeScript, Guard and Jasmine. You can see this setup in action on Vimeo

  • Install Gems with Bundler with bundle install
  • Define your guards with mate Guardfile
  • Initialize Jasmine with bundle exec jasmine init
  • Configure Jasmine with mate spec/support/yasmine.ym
  • Start Guard with bundle exec guard