- 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
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
---- 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
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
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
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
[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
/* | |
The MIT License (MIT) | |
Copyright (c) 2013 Cloudtone Inc. | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
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
diff --git a/lib/index.js b/lib/index.js | |
index e3fde1b..5dd58ae 100644 | |
--- a/lib/index.js | |
+++ b/lib/index.js | |
@@ -22,8 +22,15 @@ module = module.exports = function (mock_path, libs){ | |
var new_path = path; | |
var foo = libs.filter(function(libname){ | |
- // XXX - this check may not be sufficient =0( | |
- return path.match(new RegExp(libname+'$')); |
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@wardrobe /usr/ports]# ps aux | |
USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND | |
root 10 90.0 1.3 0 7016 - RL 11:27PM 630:24.78 [idle] | |
root 0 61.9 1.3 0 7048 - RLs 11:27PM 337:01.52 [kernel] | |
root 1 0.0 0.0 9404 144 - ILs 11:27PM 0:00.05 /sbin/init -- | |
root 2 0.0 1.3 0 7016 - DL 11:27PM 0:00.00 [crypto] | |
root 3 0.0 1.3 0 7016 - DL 11:27PM 0:00.00 [crypto returns] | |
root 4 0.0 1.3 0 7016 - DL 11:27PM 0:54.64 [pf purge] | |
root 5 0.0 1.3 0 7016 - DL 11:27PM 0:00.00 [xpt_thrd] | |
root 6 0.0 1.3 0 7016 - DL 11:27PM 1:37.19 [pagedaemon] |