Skip to content

Instantly share code, notes, and snippets.

<p>"Hello world"</p>
@adamwd392
adamwd392 / index.html
Last active August 26, 2015 23:40
Milky way panorama
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
margin: 0;
overflow: hidden;
}
</style>
@adamwd392
adamwd392 / index.html
Created August 26, 2015 23:43
Colorcomb
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
margin: 0;
}
</style>
<body>
@adamwd392
adamwd392 / index.html
Last active September 9, 2015 22:39
hw2
<!doctype HTML>
<meta charset="utf-8">
<title>demo</title>
<style>
.chart div {
font: 10px sans-serif;
background-color: steelblue;
text-align: right;
padding: 3px;
@adamwd392
adamwd392 / index.html
Last active September 16, 2015 23:04
hw3
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style>
body {
position: absolute;
margin: 0px;
}
@adamwd392
adamwd392 / index.html
Last active September 16, 2015 23:18
3circles
<!doctype html>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<svg width="720" height="120">
<circle cx="40" cy="60" r="10"></circle>
<circle cx="80" cy="60" r="10"></circle>
<circle cx="120" cy="60" r="10"></circle>
</svg>
@adamwd392
adamwd392 / index.html
Last active September 23, 2015 22:49
hw4
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style>
body {
position: absolute;
margin: 0px;
}
@adamwd392
adamwd392 / index.html
Last active September 19, 2015 21:50
hw4 v2
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style>
body {
position: absolute;
margin: 0px;
}
@adamwd392
adamwd392 / index.html
Last active September 24, 2015 01:05
bar chart iii
<!DOCTYPE html>
<meta charset="utf-8">
<title>Bar Chart III</title>
<style>
.chart rect {
fill: steelblue;
}
.chart text {
@adamwd392
adamwd392 / index.html
Last active September 30, 2015 23:13
hw5
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<style>
.bar {
fill: teal;
}