Skip to content

Instantly share code, notes, and snippets.

@AaronFoltz
AaronFoltz / dabblet.css
Created August 19, 2012 02:47 — forked from anonymous/dabblet.css
CSS States
/* CSS States */
body {
background: url(http://dabblet.com/img/noise.png);
background-color: #F5F2F0;
font-family: Georgia, serif;
font-size: 18px;
line-height: 1.6em;
text-shadow: 0 2px 0 white;
color: #222;
}
@AaronFoltz
AaronFoltz / coderwall.js
Created August 12, 2011 02:36
Coderwall Badge Script for Blogs (or any other Web Page)
/*
*
* coderwall.js
*
* Code to display coderwall.com badges
*
*/
var coderwallJSONurl ="http://www.coderwall.com/hermanjunge.json?callback=?";
var height = 75;
@AaronFoltz
AaronFoltz / counter.sh
Created July 20, 2011 02:04 — forked from jessex/counter.sh
Count all lines of code for java source files in certain directories.
find YahooProxy STBProxy RestEasy YahooAuthorization Client-ProxyHarness ClientProxyTest Proxy-ServerHarness -name '*.java' | xargs wc -l