This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A bunch of the stuff above relies on this, especially the aliases. | |
[user] | |
# you probably want to change this bit. | |
name = isaacs | |
email = [email protected] | |
signingkey = 0x6C481CF6 | |
[alias] | |
ci = commit | |
st = status | |
br = branch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
<html> | |
<head> | |
<title>iOS 8 web app</title> | |
<!-- CONFIGURATION --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function svn-bisect() { | |
local TEST="$1" | |
local TARGET="${2:-.}" | |
local LEFT=${3:-1} | |
local RIGHT=${4:-$(LANG=LC svn info | grep ^Revision | sed 's/Revision: //')} | |
if ! echo "$LEFT" | grep '^[0-9]\+$' > /dev/null; then | |
echo 'Starting revision must be a valid number' >&2 | |
exit 1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Stability ratings: 0-5 | |
0 - Deprecated. This feature is known to be problematic, and changes are | |
planned. Do not rely on it. Use of the feature may cause warnings. Backwards | |
compatibility should not be expected. | |
1 - Experimental. This feature was introduced recently, and may change | |
or be removed in future versions. Please try it out and provide feedback. | |
If it addresses a use-case that is important to you, tell the node core team. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// What name can I refer to ? | |
app.get('/hello-world', function () { console.log(3); }); | |
// OK, suppose I can build the path from params | |
app.get('/:id/:name', function hello1 () { console.log(1); }); | |
// OK, suppose the "callback" is the last one | |
app.get('/hello/:name', requiresAuthentication, function hello2 () { console.log(2); }); | |
// How do I build the path ? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Place this at the beginning of your node.js program before | |
// **any and all** require statements. | |
// | |
var util = require('util'); | |
var _warning = util._deprecationWarning; | |
util._deprecationWarning = function () { | |
console.trace(); | |
_warning.apply(util, arguments); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var casper = require("casper").create() | |
, url = casper.cli.get(0) | |
, metas = []; | |
if (!url) { | |
casper.echo('Usage: casperjs [url]').exit(); | |
} | |
casper.on('remote.message', function(msg) { | |
console.log(msg); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use with: | |
# | |
# varnishadm -T host:port -S /etc/varnish/secret "vcl.load sopa /path/to/your/sopa.vcl" | |
# varnishadm -T host:port -S /etc/varnish/secret "vcl.use sopa" | |
backend default { | |
.host = "127.0.0.1"; | |
.port = "8080"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: svn-annotate file [start-line [end-line]] | |
# Will output svn annotate on file + line numbers | |
# eventually cut depending on the given lines | |
function svn-annotate() { | |
# Work on a tempfile to avoid broken pipe | |
f=$(tempfile) | |
svn annotate "$1" > $f | |
CAT="cat -n" # Integrate line numbers, just remove the "-n" to disable | |
if [ "$2" == "" ]; then | |
# No start or end line |