Skip to content

Instantly share code, notes, and snippets.

View tarajane's full-sized avatar

Tara Feener tarajane

View GitHub Profile
@tarajane
tarajane / top-ten-albums-2014
Last active August 29, 2015 14:12
Top ten albums of 2014
1. Run the Jewels - Run the Jewels 2
2. Caribou - Our Love
3. FKA Twigs - LP1
4. Todd Terje - It's album time
5. Mac DeMarco - Salad Days
6. The War on Drugs - Lost in the dream
7. Spoon - They want my soul
8. Kevin Drew - Darlings
9. Sylvan Esso - Sylvan Esso
10. Real Estate - Atlas
@tarajane
tarajane / grunt-python-venv-foreman-server-task
Created March 4, 2013 03:59
A quick grunt task to activate a virtual env and start foreman. Used for our current python project config.
// Start server
grunt.registerTask('server', "Activate venv and start foreman.", function() {
var cmd = 'source venv/bin/activate \n';
cmd += 'foreman start';
exec(cmd, function(err, stdout) {
if (err) {
throw err;
}
grunt.log.write(stdout);
@tarajane
tarajane / jshint-expressjs-header
Last active December 13, 2015 23:29
JSHint expressjs file ignore header gist
/*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, maxerr: 50, es5: true */
/*global define: false, require: false, process: false, express: false, __dirname: false */
@tarajane
tarajane / jshint-ignore-header-js-app
Last active October 10, 2015 01:47
JSLint mocha test file ignore header gist
/*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, maxerr: 50 */
/*global define: false, $: false, _: false, Backbone: false, describe: false, assert: false, it: false, beforeEach: false, before: false, after: false */