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
// Init boilerplate | |
function CanvasQuery(c){ | |
"use strict"; | |
if(!(this instanceof CanvasQuery)) return new CanvasQuery(c); | |
if(typeof c == "string"){ | |
var canvas = document.getElementById(c); | |
if(!canvas) throw new Error("Canvas element #" + c + " doesn't exist"); | |
} | |
if(typeof canvas == "undefined"){ | |
if(c.getContext) canvas = c; |
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
/* Source: http://nicolasgallagher.com/micro-clearfix-hack/ */ | |
/* For modern browsers */ | |
.cf:before, | |
.cf:after { | |
content:""; | |
display:table; | |
} | |
.cf:after { |
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.prototype.curry = function(){ | |
if(arguments.length < 1) return this; | |
var args = Array.prototype.slice.call(arguments), | |
method = this; | |
return function(){ | |
return method.apply(this, args.concat(Array.prototype.slice.call(arguments))); | |
} | |
} |
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
<component lightWeight="true"> | |
<attach event="onpropertychange" onevent="checkPropertyChange()" /> | |
<attach event="ondetach" onevent="restore()" /> | |
<attach event="onresize" for="window" onevent="restore();init()" /> | |
<script type="text/javascript"> | |
//<![CDATA[ | |
var viewportwidth = (typeof window.innerWidth != 'undefined' ? window.innerWidth : element.document.documentElement.clientWidth); | |
// Shortcut for the document object | |
var doc = element.document; |
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
// Kommentare | |
#KommentareListe | |
list-style none | |
counter-reset kommentare | |
&:not(:empty) | |
border-bottom 1px dotted $border | |
.comment | |
clear both | |
border-top 1px dotted $border | |
&:first-child |
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 stylus = require('stylus'), | |
connect = require('connect'), | |
nib = require('nib'); | |
var basepath = '/..'; | |
var compile = function(str, path){ | |
return stylus(str) | |
.set('filename', path) | |
.set('warn', true) |
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
// Quelle: http://www.quirksmode.org/js/findpos.html | |
function findPos(obj){ | |
var curleft = 0, curtop = 0; | |
if(obj.offsetParent){ | |
do { | |
curleft += obj.offsetLeft; | |
curtop += obj.offsetTop; | |
} while(obj = obj.offsetParent); | |
} | |
return [curleft, curtop]; |
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
# Git-Branch im Terminal anzeigen und den Lambda-Hacker raushängen lassen | |
underline=`tput smul` | |
nounderline=`tput rmul` | |
bold=`tput bold` | |
normal=`tput sgr0` | |
GIT_PS1_SHOWDIRTYSTATE=1 | |
PS1='${bold}λ ${normal}\w$(__git_ps1 " [${underline}%s${nounderline}]") \$ ' |
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
irc = require 'irc' | |
http = require 'http' | |
# Client erstellen | |
bot_name = 'Hixie' | |
bot_channels = ['#webhonks'] | |
bot = new irc.Client 'irc.freenode.net', bot_name, { | |
userName: 'hixie' | |
realName: 'Ein Bot in CoffeeScript', |
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
/** | |
* flexible fluid <figure> and <figcaption> | |
*/ | |
html * { font-size:100%; } | |
body { | |
background: #efefef; | |
min-height:100%; | |
font-size: 85%; |
OlderNewer