Skip to content

Instantly share code, notes, and snippets.

View haehn's full-sized avatar
🤠

Daniel Haehn haehn

🤠
View GitHub Profile
@haehn
haehn / plotly.html
Created February 8, 2024 21:25
CS617 Plotly.js 1
<html>
<head>
<script src='https://cdn.plot.ly/plotly-latest.min.js'></script>
</head>
<body>
<div id='myDiv'></div>
<script>
var semesters = ['F16', 'Sp17', 'F17', 'Sp18', 'F18', 'Sp19', 'F19', 'Sp20', 'F20', 'Sp21', 'F21', 'Sp22', 'F22', 'Sp23', 'F23'];
@haehn
haehn / svg.html
Created February 27, 2024 02:22
SVG Shapes
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: white;
background-color: black;
width: 100%;
height: 100%;
@haehn
haehn / index.html
Created March 6, 2024 14:40
JacobsCatsVsDogz
<html>
<head>
<title>CATZ vs DOGZ</title>
<style>
body {
color: white;
background: black;
overflow: hidden;
margin: 20px;
@haehn
haehn / index.html
Created April 11, 2024 13:28
CS617 Storytelling Starter Code
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/vega@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-lite@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-embed@latest"></script>
</head>
<body>
<div id='text1'>
@haehn
haehn / tumor.html
Created August 23, 2024 21:26
iTCGA: Tumor+Fibers+Volume
<html>
<head>
<style>
body {
background: black;
margin: 0;
padding: 0;
overflow: hidden !important;
}