Skip to content

Instantly share code, notes, and snippets.

@walling
walling / async.coffee
Created July 19, 2011 00:23 — forked from tcr/async.coffee
Lean and Mean Serial function in CoffeeScript
# Lean and Mean Serial DSL for CoffeeScript
# (based of https://gist.github.com/1090670 by timcameronryan)
serial = (spec) ->
commands = (func for key, func of spec when key != 'catch')
next = (err, args...) ->
return spec.catch(err) if err
commands.shift().apply(next, args) if commands.length > 0
next null
return
@walling
walling / serial.coffee
Created July 27, 2011 10:55
Serial/Parallel
module.exports = serial = (spec) ->
steps = (func for key, func of spec when key != 'catch')
raise = (err) -> if spec.catch then spec.catch err else throw err
next = (err, args...) ->
return raise(err) if err
steps.shift().apply(next, args) if steps.length > 0
next._count = 0
next._result = []
next.parallel = ->
next._count++
@walling
walling / assetgraph-require-sys-grep.txt
Created November 22, 2011 14:55
AssetGraph 0.3.18 - require sys module
$ egrep -Hrn 'require\(.sys' *
node_modules/less/bin/lessc:5: sys = require('sys');
node_modules/less/benchmark/less-benchmark.js:3: sys = require('sys');
node_modules/jsdom/lib/jsdom/level2/events.js:8: sys = require("sys");
node_modules/jsdom/lib/jsdom/browser/index.js:1:var sys = require('sys'),
node_modules/jsdom/lib/jsdom/browser/htmltodom.js:102: var sys = require('sys');
node_modules/jsdom/node_modules/htmlparser/utils_example.js:3:var sys = require("sys");
node_modules/jsdom/node_modules/htmlparser/profile.js:3:var sys = require("sys");
node_modules/jsdom/node_modules/htmlparser/testdata/api.html:319:<pre><code>var sys = require('sys'),
@walling
walling / livestyle-client.log
Created February 24, 2012 14:20
Livestyle 0.0.14 debugging on Windows 7
socket.io present, connecting
test.html:18Subscribing to 1 files:
/test.css
test.html:18Received change notification for /test.css, refreshing
test.html:18Received change notification for /test.css, refreshing
##### Until this point it worked; it updated the CSS in the browser the first time. #####
test.html:18Received change notification for /test.css, refreshing
test.html:18Received change notification for /test.css, refreshing
@walling
walling / sikkerhed.js
Last active December 16, 2015 19:19
Sikkerhed i JavaScript-applikationer.
/*jshint strict:true*/
(function() {
'use strict';
// Nyt scope, som ikke er tilgængeligt udefra.
// Bind reference til alle funktioner, som vi bruger, for at mindske risikoen for overskrivning.
var Number_toString_ = Number.prototype.toString;
var encodeURIComponent_ = encodeURIComponent;
var apply_ = Function.prototype.apply;
@walling
walling / term2html.js
Created November 19, 2013 10:09
Convert terminal output including ANSI escape sequences to HTML. Only handles simple cases!
'use strict';
var defaultColors = [ '#000', '#D00', '#00CF12', '#C2CB00', '#3100CA',
'#E100C6', '#00CBCB', '#C7C7C7', '#686868', '#FF5959', '#00FF6B',
'#FAFF5C', '#775AFF', '#FF47FE', '#0FF', '#FFF' ];
function term2html(text, options) {
options = options || {};
var colors = options.colors || defaultColors;
@walling
walling / Makefile
Created December 10, 2013 12:43
Reduced test case for segmentation fault for libvips VImage() constructor on Mac OS X
main: main.cc
$(CXX) $< `PKG_CONFIG_PATH=/usr/local/opt/libxml2/lib/pkgconfig pkg-config --cflags --libs vipsCC` -o $@
@walling
walling / server.js
Created July 30, 2014 09:21
node-async-caching-example
var common = require('common'); // npm install --save common
/**
* Super nice funktion som laver fetcher noget data asynkront.
*/
function loadThings(id, callback) {
// ...
}
@walling
walling / bad-transform-stream.js
Created August 19, 2014 14:38
Bad Transform Stream
// dd if=/dev/urandom of=file count=10 bs=1m
var through2 = require('through2');
var fs = require('fs');
fs.createReadStream('file').pipe(slowTransform()).pipe(process.stdout);
function slowTransform() {
return through2(function(buffer, encoding, callback) {
var self = this;

Keybase proof

I hereby claim:

  • I am walling on github.
  • I am walling (https://keybase.io/walling) on keybase.
  • I have a public key whose fingerprint is 98EE 3E03 D907 B87C 06B8 E054 4DE0 3A0D C7F3 64FA

To claim this, I am signing this object: