-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout-me.html
213 lines (184 loc) · 5.98 KB
/
about-me.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About me</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WYN9NX50KS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-WYN9NX50KS');
</script>
<link rel="canonical" href="https://zypeh.github.io">
<meta name="description" content="Hi, I'm Zheng Yan PEH. And this is my past experience.">
<meta name="og:description" content="Hi, I'm Zheng Yan PEH. And this is my past experience.">
<meta property="og:title" content="Zheng Yan PEH (zypeh)">
<meta property="og:site_name" content="zypeh's blog">
<meta property="og:url" content="https://zypeh.github.io">
<meta property="twitter:card" content="summary">
<meta property="twitter:site" content="@ZhengYanPeh">
<meta property="twitter:creator" content="@ZhengYanPeh">
<meta property="og:type" content="website">
<style>
@import url('https://rsms.me/inter/inter.css');
body {
font-size: 16px;
font-family: 'Inter', sans-serif;
text-rendering: optimizeLegibility;
color: #3c4043;
line-height: 20px;
min-height: 100%;
}
main {
max-width: 1000px;
padding: 2rem;
margin: auto;
position: static;
}
main p {
font-size: 3rem;
font-weight: 500;
padding: 2rem 0;
line-height: 1.1875;
margin: 0;
letter-spacing: -3px;
}
section {
padding-bottom: 2rem;
}
section p {
font-size: 1rem;
letter-spacing: 0;
}
h1 {
line-height: 1.1;
padding-top: 3rem;
padding-bottom: 1rem;
}
h2,
h3 {
padding: 2rem 0;
margin: 0;
}
hr {
border: 1px solid #333;
}
.details {
display: flex;
justify-content: space-between;
}
.details p {
max-width: 30rem;
}
.details:not(:nth-of-type(1)) {
padding-top: 3rem;
}
.experience h3 {
padding-bottom: 1rem;
}
.experience p {
padding: 0
}
.experience p:not(:nth-of-type(1)) {
padding-top: 1rem;
}
::selection {
color: #43C59E;
}
.past h2 {
max-width: 30rem;
line-height: 1.2;
}
@media only screen and (max-width: 767px) {
main p {
font-size: 26px;
line-height: 1.23077;
}
.details {
flex-direction: column;
}
.experience h3 {
font-size: 32px;
line-height: 1.13077;
}
.experience p {
font-size: 1rem;
}
.past h2 {
padding-top: 0;
}
.past h2:not(:nth-of-type(1)) {
padding-top: 2rem;
}
.experience h3 {
padding-top: 0;
}
}
@media only screen and (max-width: 479px) {
main p {
font-size: 26px;
line-height: 1.23077;
letter-spacing: -0.3px;
}
}
</style>
</head>
<body>
<main>
<header>
<h2>About Zheng Yan PEH</h2>
<p>I have experience in both frontend and backend development, and entrepreneurship too.</p>
<p>I now live in Kuala Lumpur, Malaysia. And I am available for hire.</p>
<p>Currently I am learning Haskell and working on a hobby compiler.</p>
</header>
<hr>
<section id="experiences">
<div class="details">
<div>
<h2>Experiences</h2>
</div>
<div class="experience">
<h3>Associated Full Stack Developer at Revenue Monster</h3>
<p>
Revenue Monster empowering businesses by seamlessly integrating Mobile Payments, Loyalty
Programs and Social Media.
</p>
<p>
I am helping to design, build and run services and internal tooling. Including building
micro-services to aggregate transactions between different e-wallets using Kubernetes and GRPC.
</p>
</div>
</div>
<div class="details">
<div></div>
<div class="experience">
<h3>Tech Lead and Co-founder at UniSTAY</h3>
<p>
UniSTAY.co is a platform that is dedicated only for students looking for accommodations nearby
their universities.
</p>
<p>
It is incubated under Malaysia Largest Telco Accerelator (Telekom Malaysia) and the ASEAN
largest accelerator programme (MaGIC Accelerator Programme).
</p>
</div>
</div>
</section>
<hr>
<section id="misc">
<div class="details">
<div class="header">
<h2>Historical Affiliations</h2>
</div>
<div class="past">
<p>I am one of the main speaker in Functional Programming Club Malaysia.</p>
</div>
</div>
</section>
</main>
</body>
</html>