Skip to content

Instantly share code, notes, and snippets.

@shawngraham
shawngraham / index.html
Created January 18, 2016 00:34 — forked from anonymous/index.html
January 18 hist5702w
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
letter-spacing:-5px;
@shawngraham
shawngraham / README.md
Last active January 11, 2016 02:50 — forked from anonymous/index.html
Presentation

Jan 11

Opening slide deck, just to get things rolling.

@shawngraham
shawngraham / README.md
Last active December 18, 2015 17:04 — forked from mbostock/.block
Cluster Dendrogram II

A variation of the cluster dendrogram using a different style of curved links to avoid intersection.

@shawngraham
shawngraham / index.html
Created December 11, 2015 18:08 — forked from anonymous/index.html
Presentation
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
letter-spacing:-5px;
@shawngraham
shawngraham / index.html
Created December 4, 2015 01:41 — forked from anonymous/index.html
Presentation
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
letter-spacing:-5px;
@shawngraham
shawngraham / index.html
Created December 4, 2015 01:40 — forked from anonymous/index.html
Presentation
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
letter-spacing:-5px;
@shawngraham
shawngraham / index.html
Last active December 4, 2015 01:39 — forked from anonymous/index.html
Presentation
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
letter-spacing:-5px;
@shawngraham
shawngraham / index.html
Last active December 4, 2015 01:26 — forked from anonymous/index.html
Presentation
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
letter-spacing:-5px;
@shawngraham
shawngraham / index.html
Last active November 26, 2015 16:38 — forked from anonymous/index.html
Presentation
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
letter-spacing:-5px;
@shawngraham
shawngraham / git-mv-with-history
Created November 3, 2015 00:46 — forked from emiller/git-mv-with-history
git utility to move/rename file or folder and retain history with it.
#!/bin/bash
#
# git-mv-with-history -- move/rename file or folder, with history.
#
# Moving a file in git doesn't track history, so the purpose of this
# utility is best explained from the kernel wiki:
#
# Git has a rename command git mv, but that is just for convenience.
# The effect is indistinguishable from removing the file and adding another
# with different name and the same content.