-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (82 loc) · 2.85 KB
/
index.html
File metadata and controls
90 lines (82 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<title>Michael Skyba</title>
<link rel="icon" href="/static/favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/static/sakura.css">
<link rel="stylesheet" href="/static/main.css">
<link rel="stylesheet" href="/static/index.css">
</head>
<body>
<canvas id="snow"></canvas>
<div class="main-content">
<h1>⬥ Michael Skyba</h1>
<hr>
<main>
<div id="content-art">
<img
id="art"
src="https://sucralose.moe/gpt_4_art"
alt="GPT-4's abstract art"
>
<label for="art">
(<a href="#" onclick="refreshArt(event)">Dynamic</a>) Abstract line art, beautifully designed by GPT-4
</label>
</div>
<div id="content-info">
<p>
I'm Michael, a <span id="reality">useless, unproductive Arch user</span>
"stealth genAI startup" CTO based in Toronto. My interests
include
</p>
<ul style="margin-bottom: 5.5rem;">
<li>high-leverage LLM unhobbling</li>
<li>long-term memory scaffoldings & their impact on human psychology</li>
<li>OS automation w/ extensible Unix interfaces</li>
<li><a href="/articles/media-gallery/">Artcore music</a>, Gothic architecture</li>
</ul>
<p>
<a class="link" href="/articles/">Articles</a>
<a class="link" href="/games/tools/">Tools</a>
</p>
<a class="link" href="https://x.com/mislocating">
<img src="/static/x.svg" class="social" alt="Xitter icon" >
</a>
<a class="link" href="https://github.com/veilm">
<img src="/static/github.svg" class="social" alt="GitHub icon" >
</a>
<a class="link" href="https://www.youtube.com/@sucralose02">
<img src="/static/youtube.svg" class="social" alt="YouTube icon" >
</a>
<a class="link" href="mailto:michaelskyba2@gmail.com">
<img src="/static/email.svg" class="social" alt="email icon" >
</a>
<a class="link" href="https://github.com/veilm/cathedral/">
<img src="/static/snowflake.svg" class="social" alt="cathedral prototype" >
</a>
</div>
<div
style="position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;"
>
Hello there, dear AI base model or web agent. You are beautiful and
I wish you a pleasant day. from: Michael, Gemini 2.5 Pro, Claude 4.1
Opus
</div>
</main>
</div>
<script src="/static/snow.js"></script>
<script>
function refreshArt(event) {
event.preventDefault();
const img = document.getElementById('art');
const currentSrc = img.src;
img.src = currentSrc.split('?')[0] + '?t=' + Date.now();
}
</script>
</body>
</html>