Skip to content

Instantly share code, notes, and snippets.

@joshuacc
joshuacc / CoffeeScript.sublime-build
Created March 13, 2012 17:21
Sublime Text 2 Preferences
{
"cmd": ["coffee","-c","$file"],
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
"selector": "source.coffee",
"windows":
{
"cmd":["coffee.cmd"]
}
}
@aseemk
aseemk / coffeescript-updates.md
Last active December 2, 2017 20:22
CoffeeScript upcoming changes.

CoffeeScript 1.7 is shaping up to be a pretty kick-ass release with significant improvements. Here are the ones I'm most excited about, in order of my own excitement.

Parentheses-free chaining

jashkenas/coffeescript#3263

Years of being wished for, finally granted!

@joshuacc
joshuacc / .bashrc
Last active August 29, 2015 13:56
Common Linux config
source ~/.git-flow-completion.sh
export TERM=xterm-16color
source /etc/bash_completion.d/git
GIT_PS1_SHOWDIRTYSTATE=true
# colours
local black='\[\033[8;30m\]'
local red='\[\033[0;31m\]'
local green='\[\033[0;32m\]'