- mylifesetto: Sia - Breathe Me
- mylifesetto: Massive Attack - Angel (subwoofer way up)
- mylifesetto: Zero 7 - Today
- mylifesetto: Rachel Yamagata - Reason Why
- mylifesetto: Black Sabbath - War Pigs [http://xrl.us/fdwmc]
- mylifesetto: Smoke City - Underwater Love [http://xrl.us/e8czh]
- mylifesetto: Stiff Little Fingers - Gotta Gettaway [http://xrl.us/e7zgc]
- mylifesetto: Jimi Hendrix - All Along The Watchtower [http://xrl.us/e7t84]
- mylifesetto: Skunk Anansie - Secretly [http://xrl.us/b7ego]
- mylifesetto: Wheat - Don't I hold you [http://xrl.us/b7eft]
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
[root@build ~/configurator/node_modules/node-ncurses-0.4.1]# node-gyp -d rebuild | |
gyp info it worked if it ends with ok | |
gyp info using [email protected] | |
gyp info using [email protected] | sunos | x64 | |
gyp info spawn python | |
gyp info spawn args [ '/opt/local/lib/node_modules/node-gyp/gyp/gyp', | |
gyp info spawn args 'binding.gyp', | |
gyp info spawn args '-f', | |
gyp info spawn args 'make', | |
gyp info spawn args '-I', |
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 util = require("util"); | |
var stream = require("stream"); | |
var ee = require("events").EventEmitter; | |
var Readable = stream.Readable; | |
var emitter = new ee(); | |
// basically just to show stuff going from one place to abother | |
var pushed = ['a', 'b', 'c', 'd', 'e']; | |
var pulled = []; |
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
FATAL:/Developer/usr/bin/../libexec/gcc/darwin/x86_64/as: I don't understand '-' flag! | |
[BUILD] bin/__divdi3.o | |
In file included from <command-line>:0: | |
include/compiler.h:192:1: error: "__weak" redefined | |
<built-in>: error: this is the location of the previous definition | |
make: *** [bin/__divdi3.o] Error 1 |
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
set nocp " Use vim defaults, not vi ones | |
" set dg " Use digraphs | |
set fo+=r " Auto-format comments while typing | |
set com-=:% " '%' doesn't start comments | |
set hls " Highlight search pattern matches | |
set nojs " Join lines with only one space | |
set kp= " No external help system | |
set mps+=<:> " Make % work with <> | |
set mls=1 " Check one line for modelines |
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
---- HOSTS | |
GET /hosts/<hostname> | |
{ owner: "bob", private: "true", committers: ["bob", "fred"] } | |
GET /hosts/<hostname>/committers | |
["bob", "fred"] | |
GET /hosts/<hostname>/owner | |
["bob"] |
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
exports.normalizeArray = function(arr) { | |
var [final_array, items, item] = [ [], arr.slice(0), null ]; | |
while(items.length){ | |
item = items.shift(); | |
if( (item == undefined) || (item == '') || (item == '.') ){ | |
// do nothing | |
} else if(item == '..'){ | |
final_array.pop(); | |
} else { |
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 require; | |
(function(){ | |
var module = {}; | |
require = function(module_name, stack){ | |
if(!stack) stack = []; | |
var self = arguments.callee; | |
var resolved = resolve(module_name, stack); | |
var [use_string, breakup] = [resolved.identifier, resolved.breakup]; |
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
# In .ssh/config: | |
Host * | |
ControlMaster no # Connections by default are not a master | |
ControlPath ~/.ssh/master-%r@%h:%p | |
ServerAliveInterval 60 | |
ServerAliveCountMax 60 | |
# On normal connections, if there is no master running on the ControlPath it will behave as normal | |
ssh some.host |
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 strict; | |
use warnings; | |
use Encode; | |
use HTTP::Request; | |
use LWPx::ParanoidAgent; | |
use JavaScript; | |
use Try::Tiny; | |