This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
{ | |
"packages": [ | |
{ | |
"name": "github.com/Sirupsen/logrus", | |
"coverage": 48, | |
"execution_time": 0.014, | |
"success": false, | |
"tests": [ | |
{ | |
"name": "TestEntryWithError", |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
{ | |
"env": { | |
"GOPATH": "/Users/jonathangautheron/workspace/", | |
"PATH": "$PATH:/Users/jonathangautheron/workspace/bin" | |
}, | |
"fmt_cmd": ["goimports"], | |
"on_save": [{ | |
"cmd": "gs9o_open", "args": { | |
"run": [ | |
"sh", |
package main | |
const ( | |
minimumCriteria itemCategory = iota | |
goodCitizen | |
extraCredit | |
) | |
type itemCategory byte |