-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (116 loc) · 3.97 KB
/
index.html
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
122
123
124
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=yes"
/>
<title>conrad's website!</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css?family=Palanquin"
rel="stylesheet"
/>
</head>
<body>
<div class="container centered-content">
<div class="header">
<div class="name" id="nameSpinner">conrad soon</div>
<nav>
<a href="./">about</a>
<a href="./art-stuff.html">art stuff</a>
<a href="./thoughts.html">thoughts</a>
<button id="toggleTheme">Toggle Night Mode</button>
</nav>
</div>
<hr />
<h2>about me!</h2>
<ul>
<li>
i'm currently a cs and self-declared math major at the National
University of Singapore (NUS)!
</li>
<li>
you can reach me at conradsoon[at]gmail.com or
<a href="https://twitter.com/eigen_conrad">@eigen_conrad</a> on
twitter!
</li>
</ul>
<h2>experience</h2>
<ul>
<li>
i was a core swe c++ intern at <a href="https://">hudson river trading</a> - i worked on
various projects in C++ here!
</li>
<li>
i was a SWE intern at a crypto exchange for a while - i worked on
optimising trading systems in C++ here!
</li>
<li>
i was a SWE intern at
<a href="https://www.tech.gov.sg/">GovTech</a> - i built a cool
smart lighting system here!
</li>
</ul>
<h2>hire me!</h2>
<ul>
<li>
i like maths & enjoy cracking my head on algorithmic problems. i'm
proficient with working with lower level languages like C++. i really
love computational-type or optimisation-type problems.
</li>
<li>
it's always been my dream to go to the US to work. if you're a startup
that's willing to sponsor a J-1 for a scrappy young student that's
curious about everything, please reach out!
</li>
<li>
i'm a singapore citizen with work authorization in singapore. i'm also
eligible for the
<a href="https://www.dol.gov/agencies/whd/immigration/h1b1">H-1B1</a>
visa.
</li>
</ul>
<h2>trivia <span id="toggleStyle" style="cursor:pointer;">🤡</span></h2>
<div id="youtubeVideoContainer" style="display: none;"></div>
<ul>
<li>
as of 07/08/23 i have approximately
<a href="img/1000keychains.jpg">896 golang gopher keychains</a> and
96 golang gopher crocs jibbitz that i've made as a joke gone too
far.
</li>
<li>
if you'd like to buy some (i can do bulk orders as well), hit me up
on carousell!
</li>
</ul>
<!-- <p>
i like (computational) math a lot: here's some of the textbooks that
i've worked through on my own.
</p>
<ul>
<li>Understanding Analysis by Abbott</li>
<li>Linear Algebra Done Right by Stephen Axler</li>
<li>Numerical Linear Algebra by Trefethen & Bau (this is a WIP)</li>
</ul>
<p>
i've been trying to teach myself how to program competitively for a
while now.
</p> -->
<!-- <p>
i am unfortunately one of those "map-game" lovers. i really like maps, i
used to spend hours in class doodling entire worlds of fake maps.
</p> -->
<!-- <p>
i like drawing, and art in general. i used to design my own stickers to
sell in school.
</p> -->
<!-- <p>recently i've been obsessed with iain banks' the culture series.</p> -->
<hr />
</li>
</div>
<script src="theme-toggle.js"></script>
</body>
</html>