I hereby claim:
- I am cmheisel on github.
- I am cmheisel (https://keybase.io/cmheisel) on keybase.
- I have a public key ASClAefRMZpDBlMrz39bapcQJ1yfaxzR8MqI8d3RjNkbXgo
To claim this, I am signing this object:
| 345 - www.ajc.com | |
| 165 - www.statesman.com | |
| 156 - www.clarkhoward.com | |
| 102 - www.palmbeachpost.com | |
| 98 - www.wsoctv.com | |
| 97 - www.daytondailynews.com | |
| 72 - www.kirotv.com | |
| 64 - www.wftv.com | |
| 63 - www.accessatlanta.com | |
| 62 - www.wpxi.com |
I hereby claim:
To claim this, I am signing this object:
| source "https://supermarket.getchef.com" | |
| metadata | |
| cookbook "apt", '~>2.6.0' | |
| cookbook 'docker', '~> 0.36.0' | |
| cookbook 'windows', '~> 1.34.0' |
| #!/bin/bash | |
| set -eou pipefail | |
| cd /home/cmheisel/webapps/isittikiseason_static/mc | |
| URL="https://mailchimp.com/about/jobs/all/" | |
| DATADIR="./data" | |
| DIFFDIR="./diffs" | |
| DATE=`date +%Y-%m-%d_%H-%M-%S` |
User story
As a Kabbage developer, I want to see how you code a lightweight application, so that I can get a feel for your skills and strengths.
Acceptance Criteria:
I've experienced the getKanban physical board game as a trainee, and recently had a chance to lead some coworkers through the game using the virtual version. Here are some thoughts on the differences in no particular order.
| import time | |
| import datetime | |
| import random | |
| import requests | |
| sites_to_check = { | |
| "http://www.daytondailynews.com/": dict(hit=0, miss=0), | |
| "http://www.oxfordpress.com/": dict(hit=0, miss=0), | |
| "http://www.springfieldnewssun.com/": dict(hit=0, miss=0), |
| Vagrant::Config.run do |config| | |
| # Setup the box | |
| config.vagrant.dotfile_name = File.expand_path("~/.vagrant-PROJECTNAMEHERE") | |
| end |
| def ci(branch): | |
| import requests, json, time | |
| r = requests.get('http://travis-ci.org/%s/%s/builds.json' % (USERNAME, REPO)) | |
| assert r.status_code == 200 | |
| assert 'json' in r.headers['content-type'] | |
| data = json.loads(r.read()) | |
| builds_by_branch = {} | |
| for build in data: | |
| builds_for_branch = builds_by_branch.get(build['branch'], []) |
| import sys | |
| import pprint | |
| # This formats the path into a nicely readable string | |
| readable_path = pprint.pformat(sys.path) | |
| # We'll try importing and catch the exception if it doesn't work | |
| try: | |
| import django | |
| except ImportError, e: |