$ git clone 'ssh clone url'
$ git add .
$ git commit -m "Your message"
$ git push -u origin master
/* | |
* A quick example of how to use Bluebird and Q to conjure your own promises | |
* | |
* Everything going on here is explained further in the following video: | |
* http://youtu.be/OU7WuVGSuZw?list=PLT-DLWOBKbB4dZ83I_7Ca-sUTvorckG-E | |
* | |
*/ | |
// Import node modules | |
var Q = require('q'); |
'use strict'; | |
/** | |
* Adapted from https://github.com/Khan/react-components/blob/master/js/timeout-transition-group.jsx | |
* with the following additions: | |
* | |
* - Use BEM-ish modifiers (--enter, --enter--active, --leave, --leave--active) | |
* - Work better with rAF batching strategy (see https://github.com/facebook/react/issues/2292) | |
* | |
* The CSSTransitionGroup component uses the 'transitionend' event, which |
launchctl unload /Library/LaunchAgents/org.macosforge.xquartz.startx.plist | |
sudo launchctl unload /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist | |
sudo rm -rf /opt/X11* /Library/Launch*/org.macosforge.xquartz.* /Applications/Utilities/XQuartz.app /etc/*paths.d/*XQuartz | |
sudo pkgutil --forget org.macosforge.xquartz.pkg | |
# Log out and log in |
var Promise = require('promise'); | |
// A function returns a function that will generates a promise when called. | |
// It will wait 1 second before fulfilling or rejecting the promise. Second argument f = true mean "fail!" | |
var fn = function(v, f) { | |
return function() { | |
return new Promise(function(fulfill, reject) { | |
setTimeout(function() { | |
console.log(new Date()); |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
# source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
# A list of available STUN server. | |
stun.l.google.com:19302 | |
stun1.l.google.com:19302 | |
stun2.l.google.com:19302 | |
stun3.l.google.com:19302 | |
stun4.l.google.com:19302 | |
stun01.sipphone.com | |
stun.ekiga.net |
var zlib = require('zlib'); | |
var compress = function(req, res, result) { | |
var acceptEncoding = req.headers['accept-encoding']; | |
if (!acceptEncoding) { acceptEncoding = ''; } | |
if (acceptEncoding.match(/\bdeflate\b/)) { | |
zlib.deflate(result, function(err, result) { | |
if (!err) { | |
res.writeHead(200, { 'content-encoding': 'deflate' }); | |
res.send(result); |
license: gpl-3.0 |
license: gpl-3.0 |