As configured in my dotfiles.
start new:
tmux
start new with session name:
| install PostgreSQL 9 in Mac OSX via Homebrew | |
| Mac OS X Snow Leopard | |
| System Version: Mac OS X 10.6.5 | |
| Kernel Version: Darwin 10.5.0 | |
| Install notes for PostgreSQL 9.0.1 install using Homebrew: | |
| sh-3.2# brew install postgresql |
| #!/bin/sh | |
| # Just copy and paste the lines below (all at once, it won't work line by line!) | |
| # MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY! | |
| function abort { | |
| echo "$1" | |
| exit 1 | |
| } | |
| set -e |
| license: gpl-3.0 |
| $( 'body' ).bind( 'paste', function( evt ) { | |
| var items = evt.originalEvent.clipboardData.items | |
| , paste; | |
| // Items have a "kind" (string, file) and a MIME type | |
| console.log( 'First item "kind":', items[0].kind ); | |
| console.log( 'First item MIME type:', items[0].type ); | |
| // If a user pastes image data, there are 2 items: the file name (at index 0) and the file (at index 1) | |
| // but if the user pastes plain text or HTML, index 0 is the data with markup and index 1 is the plain, unadorned text. |
As configured in my dotfiles.
start new:
tmux
start new with session name:
This tutorial guides you through creating your first Vagrant project.
We start with a generic Ubuntu VM, and use the Chef provisioning tool to:
Afterwards, we'll see how easy it is to package our newly provisioned VM
| var fs = require('fs'); | |
| var lame = require('lame'); | |
| var Speaker = require('speaker'); | |
| fs.createReadStream(process.argv[2]) | |
| .pipe(new lame.Decoder()) | |
| .on('format', function (format) { | |
| this.pipe(new Speaker(format)); | |
| }); |