Skip to content

Instantly share code, notes, and snippets.

View OliverWS's full-sized avatar

Oliver Saunders Wilder OliverWS

View GitHub Profile
<html>
<body>
<iframe width="720" height="437" src="http://www.ustream.tv/embed/12527097?v=3&amp;wmode=direct" scrolling="no" frameborder="0" style="border: 0px none transparent;"> </iframe>
<br /><a href="http://www.ustream.tv/producer" style="padding: 2px 0px 4px; width: 400px; background: #ffffff; display: block; color: #000000; font-weight: normal; font-size: 10px; text-decoration: underline; text-align: center;" target="_blank">Free desktop streaming application by Ustream</a>
</body>
</html>
@OliverWS
OliverWS / index.html
Last active December 11, 2015 13:08
Study Diagrams
<!DOCTYPE html>
<meta charset="utf-8">
<style>
rect.box {
stroke: black;
stroke-width: 2;
fill: none;
}
</style>
@OliverWS
OliverWS / index.html
Created January 23, 2013 04:08
Boxplot
<html>
<head>
<script src="https://raw.github.com/sjkaliski/numbers.js/master/src/numbers.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
</head>
<body>
@OliverWS
OliverWS / index.html
Last active December 10, 2015 07:58
Simple Globe
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.graticule {
fill: none;
stroke: #777;
}
.boundary {
var venn = function(opts) {
var w = opts.w || 500,
h = opts.h || 500,
div = opts.div || "#venn";
var labels = opts.labels || ["1","2","3"];
var melabel = opts.melabel || "{ME}";
var svg = d3.select(div).append("svg:svg")
.attr("width", w)
.attr("height", h);