These are the emoji supported by GitHub as of today (20130313).
See comments.
var express = require('express'), | |
engine = require('view-engine'); | |
var renderer, app; | |
renderer = engine.create('dust', require('dustjs-linkedin')); | |
app = express(); | |
app.set('view-engine', renderer); |
'use strict'; | |
var kraken = require('kraken-js'), | |
otherapp = require('./lib/otherapp'); | |
var delegate, myapp; | |
delegate = { /* delegate ... */ }; | |
/** |
These are the emoji supported by GitHub as of today (20130313).
See comments.
$ git clone git://github.com/v8/v8.git v8 && cd v8
$ make dependencies # or mkdir build/gyp && git clone git://github.com/svn2github/gyp.git build/gyp
$ make native # (or the like: `$ make ia32`, etc)
$ out/native/d8 --prof 'test.js' # generates 'v8.log'
$ tools/mac-tick-processor # processes the generated 'v8.log'
'use strict'; | |
var util = require('util'); | |
/** | |
* Combines objects in reverse order of provided arguments. The right-most | |
* object's properties are copied to the left, and so on. | |
* @param {Object} dest the destination object | |
* @return {Object} the destination object | |
*/ |
var util = require('util') | |
function hook_stdout(callback) { | |
var old_write = process.stdout.write | |
process.stdout.write = (function(write) { | |
return function(string, encoding, fd) { | |
process.nextTick(function() { | |
callback(string, encoding, fd) | |
}); |
npm config set "git" "C:\\path\to.exe" |
exec ssh-agent /bin/sh --login -i | |
ssh-add |
rsync -e "ssh -i {pemfile}" {sourcepath} ec2-user@{server}:{destpath} |