Skip to content

Instantly share code, notes, and snippets.

@russ-
russ- / gist:1782133
Created February 9, 2012 19:07
Semantic Separation Example: List grid of cakes
<!DOCTYPE html>
<html>
<head>
<title>Semantic Separation Example</title>
<style type="text/css">
#imagegrid {
max-width: 900px;
}
#imagegrid li {
@russ-
russ- / gist:1648278
Created January 20, 2012 16:32
table snippet
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Row 1</td>
<td>Content</td>
</tr>
</table>
@russ-
russ- / setup.py
Created December 21, 2011 23:50
stathat setup.py
from distutils.core import setup
setup(name = "stathat",
author = "StatHat",
url = "http://stathat.com",
version = "1.0.0",
packages = [
'stathat',
],