-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
119 lines (114 loc) · 4.23 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
<!DOCTYPE HTML>
<html>
<title>Alex Kang</title>
<head>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<!-- Other Stuff -->
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#64FFDA">
<!-- Styling -->
<link rel="stylesheet" type="text/css" href="comicneue/font.css" />
<style>
a {
color: #E3C936;
cursor: url("cursor.gif"), auto;
}
body, html {
background-color: #1D222B;
color: #FFFEED;
font-family: "Comic Sans MS", "Comic Neue", sans-serif;
cursor: url("cursor.gif"), auto;
overflow-x: hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
h1 { font-size: 32px; }
h2 { font-size: 20px; }
.content {
max-width: 469px;
margin: auto;
}
.disclaimer { font-size: 8px; }
.stuck_pixel {
position: fixed;
width: 1px;
height: 1px;
background-color: red;
left: 69%;
top: 30%;
}
</style>
</head>
<body>
<div class="content">
<!-- Title Section -->
<h1>Popeye's #6 Combo, Spicy</h1>
<h2>with Cajun Fries and an Orange Fanta</h2>
<img src="profile-pic.png" style="width:100%; max-width:400px" />
<h4>Thanks <a href="https://twitter.com/angelabalberto">Angela</a> for the illustrations <3</h4>
<h3>formerly known as Alex Kang</h3>
<!-- About Section -->
I'm into
<ul>
<li>Decluttering</li>
<li>Keyboards</li>
<li>Mobile development</li>
<li>Photography</li>
<li>(not) watching hentai</li>
</ul>
When I'm not watching hentai, I've worked on
<ul>
<li><a target="_blank" href="https://play.google.com/store/apps/details?id=supply.alex.nookphone">NookPhone Launcher</a></li>
<li>Berkeley Mobile (<a target="_blank" href="https://itunes.apple.com/us/app/asuc-mobile/id912243518">iOS</a>/<a href="https://play.google.com/store/apps/details?id=com.asuc.asucmobile">Android</a>)</li>
<li><a target="_blank" href="https://play.google.com/store/apps/details?id=com.alexkang.loopboard">LoopBoard</a></li>
<li><a target="_blank" href="montage">MontageBoard</a></li>
<li>... and more on my GitHub</li>
</ul>
Actual job experience
<ul>
<li>Google (2016 - present)
<ul>
<li>Working on YouTube Music.</li>
<li>Worked on the Nearby team, focusing on offline peer-to-peer technology with Nearby Connections.</li>
</ul>
</li>
<li>Ericsson (2015)
<ul>
<li>Worked on user proximity via Bluetooth for the MediaRoom platform on iOS and Android. Also worked on voice commands.</li>
</ul>
</li>
<li>Tag (2014)
<ul>
<li>Social media app startup. Worked on various camera and UI features on Android.</li>
</ul>
</li>
</ul>
<!-- Socials -->
<p>
Follow me:
<ul>
<li><a target="_blank" href="https://github.com/AlexKang">GitHub</a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/asapketchup">LinkedIn</a></li>
<li><a target="_blank" href="https://music.youtube.com/playlist?list=PLFrVsa3BZCLRpUashuZRkjKk-I2HjJhvu">What am I listening to?</a></li>
</ul>
</p>
<p>
Hit me up at <a href="mailto:[email protected]">[email protected]</a>.
</p>
<p>
View my <a target="_blank" href="https://docs.google.com/document/d/1AwL7ib07eggW_eruxpR2MlI2rCKCCLfBLx2DZRj80nM/edit?usp=sharing">résúmé</a>.
</p>
<!-- Other Annoying Things -->
<div class="disclaimer">fuck bootstrap</div>
<div class="stuck_pixel"></div>
</div>
</body>
</html>