Skip to content

Instantly share code, notes, and snippets.

@EastendLab
EastendLab / index.html
Created April 4, 2013 14:48
HTML: unordered list
<ul>
<li></li>
</ul>
@EastendLab
EastendLab / gist:5310557
Created April 4, 2013 13:55
CASPERJS: comment
this.test.comment('comment');
@EastendLab
EastendLab / index.html
Created April 4, 2013 13:53
HTML: boilerplate
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="">
</head>
<body>
<script src=""></script>
@EastendLab
EastendLab / console-log.sublime-snippet
Created April 4, 2013 13:42
SUBLIME SNIPPET: console.log
<snippet>
<content><![CDATA[console.log('$1 -> ', $2);$0]]></content>
<tabTrigger>log</tabTrigger>
<scope>text.html,source.js</scope>
<description>console.log()</description>
</snippet>