-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (71 loc) · 4.31 KB
/
Copy pathindex.html
File metadata and controls
83 lines (71 loc) · 4.31 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
<!DOCTYPE html>
<html>
<head>
<title>Hi, I'm Callum!</title>
<meta name="description" content="I'm a developer from Seattle who plays the bassoon.">
<link rel="icon" href="/media/me-transparent.png">
<link rel="canonical" href="https://geekveggie.dev">
<meta name="robots" content="index, follow">
<link rel="stylesheet" type="text/css" href="/style.css" media="screen">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Embeds -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://geekveggie.dev">
<meta property="og:title" content="Hi, I'm Callum!">
<meta property="og:description" content="I'm a developer from Seattle who plays the bassoon.">
<meta name="theme-color" content="#ffab6b">
<!-- Burn-in Animation -->
<script src="fire/p5.min.js"></script>
<script src="fire/cachedBlackbody.js"></script>
<script src="fire/blackbodyCSS.js"></script> <!-- Lets me use temperatures in CSS -->
<script src="fire/particle.js"></script>
<script src="fire/fire.js"></script>
<!-- Anyone who wants to see how the blackbody temperatures are calculated, check these files:
/fire/blackbody.js
/fire/calculateBlackbodyLookup.js -->
<!-- Tooltip positioning -->
<script src="tooltip.js"></script>
</head>
<body>
<div class="container">
<h1>Hi, I'm Callum!</h1>
<h2 style="margin: 0 auto">Bio:</h2>
<div class="bio">
<p>
I am a student at the University of Washington intending to major in neuroscience. Beyond neuroscience, I
am interested in software development, scientific computing, and biochemistry. I have the most experience
programming in <span class="tooltip"
data-text="Backend development with Flask/FastAPI, data processing and analysis with Pandas, and training/deploying machine learning models.">Python</span>
and <span class="tooltip"
data-text="I am comfortable with frontend development and responsive web design, but I especially enjoy backend programming with Node.js.">JavaScript</span>.<br><br>
Professionally, I worked as a Machine Learning Engineer at <a href="https://gogymi.ch/"
target="_blank">GoGymi</a> for two years, where I developed educational models to help students in Switzerland
prepare for their <span class="tooltip"
data-text="The more rigorous secondary education system in Switzerland designed to prepare students for European university admission.">Gymnasium</span>
entrance exams. Previously, I worked as a freelance developer at <a href="https://jcwyt.com"
target="_blank">JCWYT</a>, building a comedic Discord bot that was used in over 800 servers. Beyond code, I
have designed and 3D-printed models of proteins for the Pacific Northwest Research Institute.<br><br>
Outside of STEM, I volunteer as a Crisis Counselor for the <a href="https://www.crisistextline.org" target="_blank">Crisis Text Line</a> and play the <span class="tooltip"
data-text="A double-reed woodwind instrument. I've performed with the WMEA All-State Symphony Orchestra and UW Concert Band.">bassoon</span>.
I am also proficient in French and currently studying German. When I am not doing these things, you will find me
drinking coffee and practicing latte art.
<span class="tooltip"
data-text="My website uses a color palette calculated directly from blackbody radiation (the thing that makes stars shine and molten metal glow). Every color on my website is calculated from a temperature and arises from nature.">Why
is my website orange?</span><br><br>
If you want to get in touch, please feel free to reach out via email at <a
href="mailto:contact@geekveggie.dev">contact@geekveggie.dev</a>.
</p>
<img class="display-image" src="/media/me.jpg" />
</div>
<img src="/media/swirly.png" class="swirly">
<h2 style="margin: 0 auto;">Links:</h2>
<div class="links">
<a href="mailto:callum@geekveggie.dev"><img src="/media/icons/mail.png" class="linkicon" />Email</a>
<a href="https://github.com/CallumCM/" target="_blank"><img src="/media/icons/github.png"
class="linkicon" />Github</a>
<a><img src="/media/icons/discord.png" class="linkicon" />@CallumCM</a>
</div>
</div>
</body>
</html>