start new:
tmux
start new with session name:
tmux new -s myname
| #!/usr/bin/python3.1 | |
| # This is script that extracts the trees of two commits to temporary | |
| # directories and then runs meld on both directories, so you can compare | |
| # them using meld's nice recursive browsing interface. | |
| # | |
| # This is for an answer to this question: | |
| # http://stackoverflow.com/questions/2006032/view-differences-of-branches-with-meld | |
| from subprocess import call, Popen, PIPE, check_call |
| language: node_js | |
| node_js: | |
| - 0.6 | |
| - 0.7 | |
| - 0.8 | |
| - 0.9 | |
| - 0.10 | |
| before_script: | |
| - npm install -g grunt-cli | |
| - curl -L https://github.com/n1k0/casperjs/archive/1.0.3.tar.gz | tar xz |
| <?php | |
| /** | |
| * Define type of server | |
| * | |
| * Depending on the type other stuff can be configured | |
| * Note: Define them all, don't skip one if other is already defined | |
| */ | |
| define( 'DB_CREDENTIALS_PATH', dirname( ABSPATH ) ); // cache it for multiple use |
| function server(){ | |
| local port="${1:-8000}" | |
| open "http://localhost:${port}/" | |
| python -m SimpleHTTPServer "$port" | |
| } |
| Se modifica el archivo en modo adminitrador: | |
| ~ sudo [nombre_editor] /etc/environment/ | |
| y se agregan estas líneas | |
| no_proxy="127.0.0.1,localhost" | |
| NO_PROXY="127.0.0.1,localhost" | |
| all_proxy=socks://172.21.0.12:3128/ | |
| ALL_PROXY=socks://172.21.0.12:3128/ |
| var loadQueue = function() { | |
| var q = queue(), | |
| defer = q.defer, | |
| dispatch = d3.dispatch("progress", "complete"), | |
| requests = []; | |
| q.defer = function(load, url) { | |
| return defer(function(callback) { | |
| var req = load(url, function(error, data) { | |
| req.loaded = req.total; |
| # First, download the latest version from: http://www.sublimetext.com/2 | |
| # In my case choice: Linux 64 bits [[http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.2%20x64.tar.bz2]] | |
| cd ~/downloads | |
| # unzip: Sublime Text 2.0.2 x64.tar.bz2 | |
| tar xf Sublime\ Text\ 2.0.2\ x64.tar.bz2 |
| var express = require('express'); | |
| var sys = require('util'); | |
| var oauth = require('oauth'); | |
| var app = express.createServer(); | |
| var _twitterConsumerKey = process.env['TWITTER_CONSUMER_KEY']; | |
| var _twitterConsumerSecret = process.env['TWITTER_CONSUMER_SECRET']; | |
| console.log("_twitterConsumerKey: %s and _twitterConsumerSecret %s", process.env['TWITTER_CONSUMER_KEY'], process.env['TWITTER_CONSUMER_SECRET']); |
| /*! ****************************** | |
| Handlebars helpers | |
| *******************************/ | |
| // debug helper | |
| // usage: {{debug}} or {{debug someValue}} | |
| // from: @commondream (http://thinkvitamin.com/code/handlebars-js-part-3-tips-and-tricks/) | |
| Handlebars.registerHelper("debug", function(optionalValue) { | |
| console.log("Current Context"); | |
| console.log("===================="); |