Skip to content

Instantly share code, notes, and snippets.

View tylerstalder's full-sized avatar

Tyler Stalder tylerstalder

View GitHub Profile
@tmcw
tmcw / index.html
Created June 4, 2013 21:54
My Starting-Point Index File
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel='stylesheet' type='text/css' href='' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<meta name='viewport' content='initial-scale=1.0 maximum-scale=1.0'>
</head>
<body>
<script src=''></script>
var singly = require('./singly');
singly.getProtectedResource('/services/twitter/timeline', user, function(err, response) {
console.log(response); // this will be the JSON response from Singly for given user
});
@trevorturk
trevorturk / gist:1756760
Created February 7, 2012 02:37
Bare minimum html5 template
<!DOCTYPE html>
<html>
<head>
<title>title</title>
</head>
<body>
<p>body</p>
</body>
</html>