-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (114 loc) · 4.58 KB
/
index.html
File metadata and controls
121 lines (114 loc) · 4.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>casey</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div id="topscreen">
<div id="container"></div>
<div class="outer">
<div class="container">
<div class="nav">
<a href="https://caseymanning.github.io/moments">moments</a>
<a href="https://are.na/casey-yyy">are.na</a>
<a href="/moments/pureinformation">pure-information</a>
<a href="/vibes/">vibes</a>
<!-- <a href="https://spaaace.itch.io/">itch.io</a> -->
<!-- <a href="https://github.com/CaseyManning">github</a> -->
<div style="position: relative;"><span id="emailbutton">contact</span><span id="email"></span></div>
</div>
<p>hello, i'm casey! i make software and art and games and writing and things like that. i live in san francisco. email me if you want to chat.
</p>
<div class="posts">
<span>scroll for items ↓</span>
</div>
</div>
<canvas id="borderCanvas" width="1300" height="600"></canvas>
</div>
</div>
<div id="below">
<div class="item">
<div>
<a href="posts/code-review">notes on rolling my own ai code review</a>
</div>
<div style="height: 90px;"></div>
</div>
<div class="item">
<div>
<a href="https://spaaace.itch.io/trainride">A Long Train Ride</a>
<small>A short narrative mystery game about ghosts, train rides, and family.</small>
</div>
<img src="projectimages/gt1.png" alt="A Long Train Ride">
<img src="projectimages/gt3.png" alt="A Long Train Ride">
</div>
<div class="item">
<div>
<a href="https://substacks.space">Substacks Map</a>
<small>visual mapping + categorization of newsletters on substack to understand writer communities and patterns. data is from 2022</small>
</div>
<img src="projectimages/sm1.png" alt="Substacks Map">
<img src="gliding.webp" alt="Substacks Map">
</div>
<div class="item">
<div>
<a href="portfolio.html">3D Modelling & Animation</a>
<small>Artwork made with Blender and a little bit of Houdini.</small>
</div>
<img src="images/therig_thumb.png" alt="3D Modelling & Animation">
<img src="images/lifters_thumb.png" alt="3D Modelling & Animation">
</div>
<div class="item">
<div>
<a href="tastebench">Taste benchmark explorations</a>
<small>Some explorations of a simple benchmark for LLM writing abilities / "writing taste."</small>
</div>
<img src="tastebench/model_ratios.png" alt="Taste benchmark explorations">
</div>
<div class="item">
<div>
<a href="salad/">a salad for linda</a>
<small>The only salad casey knows how to make. a delicious dinner.</small>
</div>
<img src="salad/salad-before-mixing.jpg" alt="A salad for linda">
<img src="salad/salad-mixed.jpg" alt="A salad for linda">
</div>
</div>
</body>
<div id="images"></div>
<script>
document.getElementById("emailbutton").addEventListener("click", async function() {
const emailChars = ["c", "a", "s", "e", "y", "t", "m", "a", "n", "n", "i", "n", "g", "@", "g", "m", "a", "i", "l", ".", "c", "o", "m"];
// document.getElementById("email").innerHTML = emailChars.join("");
document.getElementById("email").innerHTML = "";
for (const char of emailChars) {
document.getElementById("email").innerHTML += char;
await new Promise(resolve => setTimeout(resolve, 10));
}
});
const c = document.getElementById('borderCanvas');
const ctx = c.getContext('2d');
const jitter = n => (Math.random() - 0.5) * n;
ctx.lineWidth = 3;
ctx.strokeStyle = 'black';
ctx.beginPath();
const width = 1300;
const height = 600;
for (let t = 0; t <= width; t += 10) {
ctx.lineTo(t, 0 + jitter(2));
}
for (let t = 0; t <= height; t += 10) {
ctx.lineTo(width + jitter(2), t);
}
for (let t = width; t >= 0; t -= 10) {
ctx.lineTo(t, height + jitter(2));
}
for (let t = height; t >= 0; t -= 10) {
ctx.lineTo(0 + jitter(2), t);
}
ctx.stroke();
</script>
<script src="words.js"></script>
</html>