throw new FuckingError("missing stuff")
// logs (╯°□°)╯︵ ┻━┻ : missing stuff
This file contains hidden or 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
console.log((function(d,l,a,b,c){ | |
while(--l>-1)a=d[l],b=(+("0x"+a)).toString(2),d[l]=a?(c=[],c[16-b.length]=1,c.join(0)+b):"" | |
return d.join("\n").replace(/0/g,".").replace(/1/g,"#") | |
})("g3c1eg7f7fg3ffegff8g1c0g80g".split(/g/),8)) |
This file contains hidden or 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 express = require("express") | |
, http = require("http") | |
, path = require("path") | |
, app = express() | |
, parameters = process.argv.slice(2) | |
, port = parameters[0] && parseInt(parameters[0], 10) || 8080 | |
, colors = { | |
green: function (str) { | |
return "\033[0m\033[32m" + str + "\033[0m" | |
}, |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ANSIBlueColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECcw | |
LjIzNTA3MDA3NzMgMC4zNTkzMDQzNzM2IDAuNjM4OTU3Njc5MwAQAYAC0hAREhNaJGNs | |
YXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9yohIUWE5TT2JqZWN0XxAPTlNLZXllZEFyY2hp |
This file contains hidden or 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
.Block | |
&-element | |
color: #000 | |
&--modifier | |
color: #c33 | |
&--modifier | |
position: relative |
This file contains hidden or 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
;(function(win){ | |
var doc = win.document | |
, i = keys(doc.body.appendChild(doc.createElement("iframe")).contentWindow) | |
return keys(win).filter(function(a){return i.indexOf(a) == -1}) | |
})(window) |
This file contains hidden or 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
/* goodbye chrome crap */ | |
input[type=date]::-webkit-clear-button, | |
input[type=date]::-webkit-inner-spin-button | |
input[type=date]::-webkit-calendar-picker-indicator { | |
display: none | |
} |
This file contains hidden or 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
function getRelativeCoords(target, evt){ | |
var clientRect = target.getBoundingClientRect() | |
return { | |
x : evt.clientX - clientRect.left | |
, y : evt.clientY - clientRect.top | |
} | |
} |
This file contains hidden or 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 klass = (function(){ | |
var k = {} | |
, createObject = | |
typeof Object.create == "function" ? | |
function(object){ | |
return Object.create(object) | |
} : | |
function(object){ | |
function F(){} |