Skip to content

Instantly share code, notes, and snippets.

View srohde's full-sized avatar

Sönke Rohde srohde

View GitHub Profile
@srohde
srohde / Preferences.sublime-settings
Last active October 12, 2015 06:18
My Sublime Text 2 preferences
{
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.hogan"
}
],
"font_face": "Source Code Pro Light",
"gutter": true,
@steckel
steckel / faux-browser.coffee
Created March 14, 2012 04:59
jQuery.plugin boilerplate spec (for use with Mocha and Should.js)
root = if window? then window else global
root.$ = require("jquery")
root.jQuery = $
@tbeseda
tbeseda / gist:1096141
Created July 20, 2011 23:05
Cakefile to watch and recursively concat and compile CoffeeScript automatically.
fs = require 'fs'
{exec} = require 'child_process'
util = require 'util'
growl = require 'growl'
appFiles = [
'src/hasToGoFirst.coffee' # put your files that must be loaded in first into the array
'src/notAsImportantButNeedsToGoBeforeTheRest.coffee'
]
@tpryan
tpryan / build.xml
Created December 9, 2010 22:45
Ant build script that installs to Android Device and BlackBerry in the same build.
<?xml version="1.0" encoding="UTF-8"?>
<project name="AboutTime" default="" basedir=".">
<property file="settings.properties"/>
<!-- path to the flex task libraries. -->
<path id="flextasks.classpath">
<fileset dir="${FLEX_HOME}/ant/lib">
<include name="*.jar"/>
</fileset>