Skip to content

Instantly share code, notes, and snippets.

View rafidude's full-sized avatar

Rafi Dudekula rafidude

View GitHub Profile
@rafidude
rafidude / gist:8d0eddd2b7c4664bf7e4
Last active January 30, 2016 20:40
Minimal Style for a naked site
<style type="text/css">
body {
margin:40px auto;
max-width:650px;
line-height:1.6;
font-size:18px;
color:#444;
padding:0 10px
}
h1,h2,h3{line-height:1.2}
@rafidude
rafidude / Unix Commands
Created December 13, 2013 22:29
Unix command to find files recursively that contain a specific string
find . -name "*.coffee" -exec grep -q "variance" '{}' \; -print
@rafidude
rafidude / gist:940511
Created April 25, 2011 13:31
compile coffee-script and run nodemon
(coffee --compile --watch .&); nodemon server.js