-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1366 lines (1190 loc) · 51 KB
/
Copy pathindex.html
File metadata and controls
1366 lines (1190 loc) · 51 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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alex Chen — Software Engineer</title>
<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=Instrument+Serif:ital@0;1&family=IBM+Plex+Mono:wght@300;400;500&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap" rel="stylesheet" />
<style>
/* ── Variables ─────────────────────────────────── */
:root {
--bg: #ffffff;
--bg2: #f7f8fa;
--bg3: #eef0f4;
--border: #e3e6ec;
--text: #1a1d23;
--muted: #7a8194;
--accent: #3b7eff;
--accent-bg: #eef3ff;
--accent-h: #2563eb;
--green: #16a34a;
--green-bg: #dcfce7;
--serif: 'Instrument Serif', serif;
--mono: 'IBM Plex Mono', monospace;
--sans: 'Plus Jakarta Sans', sans-serif;
}
/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--sans);
font-size: 15px;
line-height: 1.7;
overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
/* ── Layout ────────────────────────────────────── */
.container {
max-width: 860px;
margin: 0 auto;
padding: 0 24px;
}
/* ── Lang toggle ────────────────────────────────── */
.th { display: none; }
body.lang-th .th { display: revert; }
body.lang-th .en { display: none; }
.lang-btn {
font-family: var(--mono);
font-size: 12px;
padding: 5px 12px;
border-radius: 6px;
border: 1px solid var(--border);
background: var(--bg);
color: var(--muted);
cursor: pointer;
transition: all 0.18s;
letter-spacing: 0.04em;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn .active-lang { color: var(--accent); font-weight: 500; }
/* ── Navigation ─────────────────────────────────── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
border-bottom: 1px solid var(--border);
background: rgba(255,255,255,0.88);
backdrop-filter: blur(14px);
}
nav .inner {
max-width: 860px;
margin: 0 auto;
padding: 0 24px;
height: 52px;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-logo {
font-family: var(--mono);
font-size: 13px;
color: var(--muted);
letter-spacing: 0.05em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
display: flex;
gap: 28px;
list-style: none;
}
.nav-links a {
font-family: var(--mono);
font-size: 12px;
color: var(--muted);
letter-spacing: 0.08em;
text-transform: uppercase;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
/* ── Hero ───────────────────────────────────────── */
#hero {
padding-top: 130px;
padding-bottom: 80px;
position: relative;
}
/* subtle dot-grid background */
#hero::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle, #d0d8eb 1px, transparent 1px);
background-size: 24px 24px;
opacity: 0.45;
z-index: -1;
}
.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--mono);
font-size: 12px;
color: var(--accent);
background: var(--accent-bg);
border: 1px solid #c7d9ff;
border-radius: 999px;
padding: 4px 14px;
letter-spacing: 0.08em;
margin-bottom: 24px;
opacity: 0;
animation: fadeUp 0.6s ease 0.1s forwards;
}
.hero-name {
font-family: var(--serif);
font-size: clamp(52px, 8vw, 86px);
line-height: 1.0;
color: var(--text);
opacity: 0;
animation: fadeUp 0.7s ease 0.25s forwards;
}
.hero-name em {
font-style: italic;
color: var(--accent);
}
.hero-title {
font-family: var(--sans);
font-size: 16px;
font-weight: 400;
color: var(--muted);
margin-top: 20px;
max-width: 520px;
opacity: 0;
animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-cta {
display: flex;
gap: 12px;
margin-top: 40px;
flex-wrap: wrap;
opacity: 0;
animation: fadeUp 0.7s ease 0.55s forwards;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 22px;
border-radius: 8px;
font-family: var(--sans);
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.18s;
}
.btn-primary {
background: var(--accent);
color: #fff;
border: 1px solid var(--accent);
box-shadow: 0 2px 8px rgba(59,126,255,0.28);
}
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); text-decoration: none; box-shadow: 0 4px 14px rgba(59,126,255,0.36); }
.btn-ghost {
background: var(--bg);
color: var(--text);
border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: #b0b8cc; background: var(--bg2); text-decoration: none; }
/* ── Section base ───────────────────────────────── */
section {
padding: 72px 0;
border-top: 1px solid var(--border);
}
.section-label {
font-family: var(--mono);
font-size: 11px;
color: var(--accent);
letter-spacing: 0.18em;
text-transform: uppercase;
margin-bottom: 36px;
display: flex;
align-items: center;
gap: 12px;
}
.section-label::after {
content: '';
flex: 1;
height: 1px;
background: var(--border);
}
/* ── About ──────────────────────────────────────── */
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
}
.about-text p {
color: var(--muted);
margin-bottom: 16px;
font-size: 15px;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.about-meta { display: flex; flex-direction: column; gap: 20px; }
.meta-item {
display: flex;
flex-direction: column;
gap: 4px;
}
.meta-label {
font-family: var(--mono);
font-size: 11px;
color: var(--muted);
letter-spacing: 0.1em;
text-transform: uppercase;
}
.meta-value {
font-size: 14px;
color: var(--text);
}
.status-dot {
display: inline-flex;
align-items: center;
gap: 7px;
font-size: 13px;
font-weight: 500;
color: var(--green);
background: var(--green-bg);
border-radius: 999px;
padding: 3px 12px 3px 8px;
width: fit-content;
}
.status-dot::before {
content: '';
width: 7px; height: 7px;
border-radius: 50%;
background: var(--green);
animation: pulse 2s ease-in-out infinite;
}
/* ── Experience ─────────────────────────────────── */
.exp-list { display: flex; flex-direction: column; }
.exp-item {
display: grid;
grid-template-columns: 160px 1fr;
gap: 32px;
padding: 28px 0;
border-bottom: 1px solid var(--border);
}
.exp-item:last-child { border-bottom: none; }
.exp-period {
font-family: var(--mono);
font-size: 12px;
color: var(--muted);
padding-top: 3px;
}
.exp-company {
font-family: var(--serif);
font-size: 19px;
color: var(--text);
}
.exp-role {
font-family: var(--mono);
font-size: 11px;
color: var(--accent);
margin-top: 4px;
letter-spacing: 0.06em;
}
.exp-desc {
color: var(--muted);
font-size: 14px;
margin-top: 10px;
max-width: 520px;
}
.exp-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 14px;
}
.tag {
font-family: var(--mono);
font-size: 11px;
color: var(--accent);
background: var(--accent-bg);
border: 1px solid #c7d9ff;
padding: 3px 10px;
border-radius: 5px;
letter-spacing: 0.04em;
}
/* ── Skills ─────────────────────────────────────── */
.skills-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.skill-group {
background: var(--bg2);
padding: 22px 24px;
border: 1px solid var(--border);
border-radius: 12px;
}
.skill-group-name {
font-family: var(--mono);
font-size: 11px;
color: var(--accent);
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 14px;
}
.skill-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}
.skill-list li {
font-size: 13px;
color: var(--muted);
display: flex;
align-items: center;
gap: 8px;
}
.skill-list li::before {
content: '';
width: 5px; height: 5px;
border-radius: 50%;
background: var(--border);
flex-shrink: 0;
}
/* ── Projects ───────────────────────────────────── */
.projects-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.project-card {
background: var(--bg2);
border: 1px solid var(--border);
border-radius: 12px;
padding: 26px;
transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
position: relative;
overflow: hidden;
}
.project-card:hover {
border-color: #c7d9ff;
box-shadow: 0 6px 24px rgba(59,126,255,0.10);
transform: translateY(-2px);
}
.project-num {
font-family: var(--mono);
font-size: 11px;
color: var(--border);
letter-spacing: 0.1em;
margin-bottom: 14px;
}
.project-name {
font-family: var(--serif);
font-size: 20px;
color: var(--text);
margin-bottom: 8px;
}
.project-desc {
font-size: 13px;
color: var(--muted);
line-height: 1.6;
margin-bottom: 14px;
}
.project-links {
display: flex;
gap: 14px;
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.06em;
margin-top: 4px;
}
.project-links a {
color: var(--accent);
transition: color 0.2s;
}
.project-links a:hover { color: var(--accent-h); text-decoration: none; }
/* ── Education ──────────────────────────────────── */
.edu-list { display: flex; flex-direction: column; }
.edu-item {
display: grid;
grid-template-columns: 160px 1fr;
gap: 32px;
padding: 24px 0;
border-bottom: 1px solid var(--border);
}
.edu-item:last-child { border-bottom: none; }
.edu-year { font-family: var(--mono); font-size: 12px; color: var(--muted); padding-top: 3px; }
.edu-school { font-family: var(--serif); font-size: 18px; color: var(--text); }
.edu-degree { font-size: 13px; color: var(--muted); margin-top: 4px; }
/* ── Contact ────────────────────────────────────── */
#contact {
padding-bottom: 100px;
}
.contact-headline {
font-family: var(--serif);
font-size: clamp(32px, 5vw, 52px);
color: var(--text);
margin-bottom: 16px;
}
.contact-sub {
font-size: 14px;
color: var(--muted);
max-width: 440px;
margin-bottom: 40px;
}
.contact-links {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
/* ── Footer ─────────────────────────────────────── */
footer {
border-top: 1px solid var(--border);
padding: 24px 0;
background: var(--bg2);
}
footer .inner {
max-width: 860px;
margin: 0 auto;
padding: 0 24px;
display: flex;
justify-content: space-between;
align-items: center;
}
footer p {
font-family: var(--mono);
font-size: 11px;
color: var(--muted);
letter-spacing: 0.06em;
}
/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(16px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.35; }
}
.reveal {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
opacity: 1;
transform: none;
}
/* ── Responsive ─────────────────────────────────── */
@media (max-width: 640px) {
.nav-links { display: none; }
.about-grid { grid-template-columns: 1fr; gap: 32px; }
.exp-item { grid-template-columns: 1fr; gap: 8px; }
.edu-item { grid-template-columns: 1fr; gap: 8px; }
.skills-grid { grid-template-columns: 1fr 1fr; }
.projects-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
.skills-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<!-- ── Navigation ─────────────────────────── -->
<nav>
<div class="inner">
<span class="nav-logo"><span>~/</span>alex-chen</span>
<ul class="nav-links">
<li><a href="#about"><span class="en">About</span><span class="th">เกี่ยวกับ</span></a></li>
<li><a href="#experience"><span class="en">Experience</span><span class="th">ประสบการณ์</span></a></li>
<li><a href="#projects"><span class="en">Projects</span><span class="th">ผลงาน</span></a></li>
<li><a href="#contact"><span class="en">Contact</span><span class="th">ติดต่อ</span></a></li>
</ul>
<button class="lang-btn" id="lang-toggle" onclick="toggleLang()">
<span class="en"><span class="active-lang">EN</span> · TH</span>
<span class="th">EN · <span class="active-lang">TH</span></span>
</button>
</div>
</nav>
<div class="container">
<!-- ── Hero ───────────────────────────────── -->
<header id="hero">
<div class="hero-layout">
<div class="hero-text">
<p class="hero-eyebrow">
<span class="en">Software Engineer · Bangkok, Thailand</span>
<span class="th">วิศวกรซอฟต์แวร์ · กรุงเทพฯ ประเทศไทย</span>
</p>
<h1 class="hero-name">Alex<br /><em>Chen.</em></h1>
<p class="hero-title">
<span class="en">I build backend systems and developer tools — currently focused on distributed systems, API design, and keeping production from catching fire.</span>
<span class="th">สร้างระบบ backend และเครื่องมือสำหรับนักพัฒนา — มุ่งเน้น distributed systems, API design และดูแลให้ระบบ production ทำงานได้ราบรื่น</span>
</p>
<div class="hero-cta">
<a class="btn btn-primary" href="mailto:alex@example.com">
<span class="en">Get in touch ↗</span>
<span class="th">ติดต่อเลย ↗</span>
</a>
<a class="btn btn-ghost" href="https://github.com/alexchen" target="_blank">GitHub</a>
<a class="btn btn-ghost" href="https://linkedin.com/in/alexchen" target="_blank">LinkedIn</a>
</div>
<!-- shown only on print -->
<div class="print-contact">
<span class="en">alex@example.com · linkedin.com/in/alexchen · github.com/alexchen · Bangkok, Thailand</span>
<span class="th">alex@example.com · linkedin.com/in/alexchen · github.com/alexchen · กรุงเทพฯ ประเทศไทย</span>
</div>
</div>
<div class="hero-avatar-wrap">
<img class="hero-avatar" src="https://i.imgflip.com/5oaaz9.jpg" alt="Alex Chen" />
</div>
</div>
</header>
<!-- ── About ──────────────────────────────── -->
<section id="about">
<p class="section-label"><span class="en">About</span><span class="th">เกี่ยวกับ</span></p>
<div class="about-grid reveal">
<div class="about-text">
<p class="en">Software engineer with <strong>6 years of experience</strong> building scalable backend systems. I care deeply about clean interfaces, observable systems, and writing code that the next person can understand.</p>
<p class="th">วิศวกรซอฟต์แวร์ที่มีประสบการณ์ <strong>6 ปี</strong> ในการสร้างระบบ backend ที่รองรับการขยายตัว ให้ความสำคัญกับ interface ที่สะอาด ระบบที่ตรวจสอบได้ และโค้ดที่คนอื่นอ่านเข้าใจได้</p>
<p class="en">Before engineering, I studied computer science at Chulalongkorn University. I've shipped products used by hundreds of thousands of people and survived a few too many 3am incidents.</p>
<p class="th">ก่อนจะมาเป็นวิศวกร เรียนวิศวกรรมคอมพิวเตอร์ที่จุฬาลงกรณ์มหาวิทยาลัย เคยส่งมอบ product ที่มีผู้ใช้หลักแสนคน และผ่านวิกฤต on-call ตี 3 มาหลายครั้ง</p>
<p class="en">Outside of work: distance running, espresso tinkering, and reading about things I'll never have time to build.</p>
<p class="th">นอกเวลางาน: วิ่งระยะไกล, ทดลองชงเอสเพรสโซ, และอ่านเรื่องที่ไม่มีวันมีเวลาสร้าง</p>
</div>
<div class="about-meta">
<div class="meta-item">
<span class="meta-label"><span class="en">Status</span><span class="th">สถานะ</span></span>
<span class="status-dot"><span class="en">Open to opportunities</span><span class="th">เปิดรับโอกาสใหม่</span></span>
</div>
<div class="meta-item">
<span class="meta-label"><span class="en">Location</span><span class="th">ที่อยู่</span></span>
<span class="meta-value"><span class="en">Bangkok, Thailand (UTC+7)</span><span class="th">กรุงเทพฯ ประเทศไทย (UTC+7)</span></span>
</div>
<div class="meta-item">
<span class="meta-label"><span class="en">Languages</span><span class="th">ภาษา</span></span>
<span class="meta-value"><span class="en">Thai (native) · English (fluent)</span><span class="th">ไทย (ภาษาแม่) · อังกฤษ (คล่อง)</span></span>
</div>
<div class="meta-item">
<span class="meta-label"><span class="en">Focus areas</span><span class="th">ความเชี่ยวชาญ</span></span>
<span class="meta-value">Backend · Distributed systems · APIs</span>
</div>
</div>
</div>
</section>
<!-- ── Experience ─────────────────────────── -->
<section id="experience">
<p class="section-label"><span class="en">Experience</span><span class="th">ประสบการณ์</span></p>
<div class="exp-list">
<article class="exp-item reveal">
<div class="exp-period">2022 — Present</div>
<div>
<div class="exp-company">Acme Corp</div>
<div class="exp-role"><span class="en">Senior Software Engineer</span><span class="th">วิศวกรซอฟต์แวร์อาวุโส</span></div>
<p class="exp-desc en">Led the redesign of the payment processing pipeline, reducing p99 latency from 800ms to 120ms. Mentored a team of 4 engineers and introduced observability standards across 12 microservices.</p>
<p class="exp-desc th">นำการออกแบบใหม่ของ payment processing pipeline ลด p99 latency จาก 800ms เหลือ 120ms ดูแลทีม 4 คน และวางมาตรฐาน observability ใน 12 microservices</p>
<div class="exp-tags">
<span class="tag">Go</span><span class="tag">PostgreSQL</span><span class="tag">Kafka</span><span class="tag">Kubernetes</span><span class="tag">Grafana</span>
</div>
</div>
</article>
<article class="exp-item reveal">
<div class="exp-period">2020 — 2022</div>
<div>
<div class="exp-company">Startup XYZ</div>
<div class="exp-role"><span class="en">Software Engineer</span><span class="th">วิศวกรซอฟต์แวร์</span></div>
<p class="exp-desc en">Built the core data ingestion service processing 2M events/day. Designed the REST API consumed by 3 mobile clients. Took on-call ownership for all backend services.</p>
<p class="exp-desc th">สร้าง data ingestion service หลักที่รองรับ 2 ล้าน events ต่อวัน ออกแบบ REST API สำหรับ mobile client 3 ระบบ และดูแล on-call สำหรับ backend ทั้งหมด</p>
<div class="exp-tags">
<span class="tag">Python</span><span class="tag">FastAPI</span><span class="tag">Redis</span><span class="tag">AWS</span>
</div>
</div>
</article>
<article class="exp-item reveal">
<div class="exp-period">2019 — 2020</div>
<div>
<div class="exp-company">Freelance</div>
<div class="exp-role"><span class="en">Full-stack Developer</span><span class="th">นักพัฒนา Full-stack อิสระ</span></div>
<p class="exp-desc en">Delivered 6 client projects: e-commerce platforms, internal dashboards, and REST APIs. Managed scope, timeline, and deployments solo.</p>
<p class="exp-desc th">ส่งมอบโปรเจกต์ 6 ชิ้น ทั้ง e-commerce, dashboard ภายในองค์กร และ REST APIs บริหารขอบเขต ระยะเวลา และ deployment เองทั้งหมด</p>
<div class="exp-tags">
<span class="tag">Node.js</span><span class="tag">React</span><span class="tag">MySQL</span>
</div>
</div>
</article>
</div>
</section>
<!-- ── Skills ─────────────────────────────── -->
<section id="skills">
<p class="section-label"><span class="en">Skills</span><span class="th">ทักษะ</span></p>
<div class="skills-grid reveal">
<div class="skill-group">
<p class="skill-group-name"><span class="en">Languages</span><span class="th">ภาษาโปรแกรม</span></p>
<ul class="skill-list"><li>Go</li><li>Python</li><li>TypeScript</li><li>SQL</li><li>Bash</li></ul>
</div>
<div class="skill-group">
<p class="skill-group-name"><span class="en">Infra & Data</span><span class="th">โครงสร้างพื้นฐาน</span></p>
<ul class="skill-list"><li>PostgreSQL</li><li>Redis</li><li>Kafka</li><li>Kubernetes</li><li>Terraform</li></ul>
</div>
<div class="skill-group">
<p class="skill-group-name"><span class="en">Tools & Cloud</span><span class="th">เครื่องมือ & คลาวด์</span></p>
<ul class="skill-list"><li>AWS (EKS, RDS, S3)</li><li>Docker</li><li>Prometheus / Grafana</li><li>GitHub Actions</li><li>Datadog</li></ul>
</div>
</div>
</section>
<!-- ── Projects ───────────────────────────── -->
<section id="projects">
<p class="section-label"><span class="en">Projects</span><span class="th">ผลงาน</span></p>
<div class="projects-grid">
<article class="project-card reveal">
<p class="project-num">01</p>
<h3 class="project-name">Litequeue</h3>
<p class="project-desc en">A lightweight task queue for Go with exactly-once delivery semantics, backed by PostgreSQL. No external deps beyond your existing DB.</p>
<p class="project-desc th">Task queue น้ำหนักเบาสำหรับ Go รับประกัน exactly-once delivery โดยใช้ PostgreSQL เป็น backend ไม่ต้องพึ่งพา dependency อื่น</p>
<div class="exp-tags" style="margin-bottom:16px"><span class="tag">Go</span><span class="tag">PostgreSQL</span><span class="tag">Open Source</span></div>
<div class="project-links"><a href="https://github.com/alexchen/litequeue" target="_blank">↗ GitHub</a><a href="#" target="_blank">↗ Docs</a></div>
</article>
<article class="project-card reveal">
<p class="project-num">02</p>
<h3 class="project-name">Healthctl</h3>
<p class="project-desc en">CLI tool for aggregating health-check endpoints across a Kubernetes cluster into a single human-readable status page.</p>
<p class="project-desc th">เครื่องมือ CLI สำหรับรวม health-check endpoints ใน Kubernetes cluster ทั้งหมดมาแสดงในหน้า status เดียว</p>
<div class="exp-tags" style="margin-bottom:16px"><span class="tag">Go</span><span class="tag">Kubernetes</span><span class="tag">CLI</span></div>
<div class="project-links"><a href="https://github.com/alexchen/healthctl" target="_blank">↗ GitHub</a></div>
</article>
<article class="project-card reveal">
<p class="project-num">03</p>
<h3 class="project-name">BKK Runs</h3>
<p class="project-desc en">Community site aggregating running routes and events in Bangkok. Static site with auto-updated GPX data via GitHub Actions.</p>
<p class="project-desc th">เว็บชุมชนรวบรวมเส้นทางวิ่งและกิจกรรมในกรุงเทพฯ ข้อมูล GPX อัปเดตอัตโนมัติผ่าน GitHub Actions</p>
<div class="exp-tags" style="margin-bottom:16px"><span class="tag">Vanilla JS</span><span class="tag">Leaflet.js</span><span class="tag">GitHub Pages</span></div>
<div class="project-links"><a href="#" target="_blank">↗ Live</a><a href="#" target="_blank">↗ GitHub</a></div>
</article>
<article class="project-card reveal">
<p class="project-num">04</p>
<h3 class="project-name">Interview Prep DB</h3>
<p class="project-desc en">Personal Notion-to-JSON pipeline that syncs curated system design questions into a searchable static site.</p>
<p class="project-desc th">ระบบ sync ข้อมูลจาก Notion เป็น JSON สำหรับรวบรวมคำถาม system design ส่วนตัวไว้ในเว็บ static ที่ค้นหาได้</p>
<div class="exp-tags" style="margin-bottom:16px"><span class="tag">Python</span><span class="tag">Notion API</span><span class="tag">GitHub Actions</span></div>
<div class="project-links"><a href="#" target="_blank">↗ GitHub</a></div>
</article>
</div>
</section>
<!-- ── Education ──────────────────────────── -->
<section id="education">
<p class="section-label"><span class="en">Education</span><span class="th">การศึกษา</span></p>
<div class="edu-list">
<div class="edu-item reveal">
<div class="edu-year">2015 — 2019</div>
<div>
<div class="edu-school"><span class="en">Chulalongkorn University</span><span class="th">จุฬาลงกรณ์มหาวิทยาลัย</span></div>
<div class="edu-degree"><span class="en">B.Eng. Computer Engineering · GPA 3.6</span><span class="th">วศ.บ. วิศวกรรมคอมพิวเตอร์ · เกรดเฉลี่ย 3.6</span></div>
</div>
</div>
<div class="edu-item reveal">
<div class="edu-year">2023</div>
<div>
<div class="edu-school">Certified Kubernetes Administrator (CKA)</div>
<div class="edu-degree">Linux Foundation</div>
</div>
</div>
</div>
</section>
<section id="contact">
<p class="section-label"><span class="en">Contact</span><span class="th">ติดต่อ</span></p>
<h2 class="contact-headline reveal">
<span class="en">Let's work<br /><em style="font-family:var(--serif);font-style:italic;color:var(--accent)">together.</em></span>
<span class="th">มาทำงาน<br /><em style="font-family:var(--serif);font-style:italic;color:var(--accent)">ด้วยกัน</em></span>
</h2>
<p class="contact-sub reveal">
<span class="en">Open to full-time roles, contract work, and interesting side-projects. Response time usually < 24h.</span>
<span class="th">เปิดรับทั้งงานประจำ งานสัญญาจ้าง และโปรเจกต์น่าสนใจ ตอบกลับภายใน 24 ชั่วโมง</span>
</p>
<div class="contact-links reveal">
<a class="btn btn-primary" href="mailto:alex@example.com">alex@example.com ↗</a>
<a class="btn btn-ghost" href="https://linkedin.com/in/alexchen" target="_blank">LinkedIn</a>
<a class="btn btn-ghost" href="https://github.com/alexchen" target="_blank">GitHub</a>
</div>
</section>
</div><!-- /container -->
<!-- ── Export Bar ──────────────────────────────── -->
<div class="export-bar no-print">
<div class="export-inner">
<span class="export-label"><span class="en">Export resume</span><span class="th">ส่งออก resume</span></span>
<div class="export-actions">
<button class="export-btn" id="btn-print" onclick="window.print()">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 6 2 18 2 18 9"/><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"/><rect x="6" y="14" width="12" height="8"/></svg>
<span class="en">Print</span><span class="th">พิมพ์</span>
</button>
<button class="export-btn export-btn--compact" id="btn-supercompact" onclick="superCompactPrint()">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3H5a2 2 0 0 0-2 2v3"/><path d="M21 8V5a2 2 0 0 0-2-2h-3"/><path d="M3 16v3a2 2 0 0 0 2 2h3"/><path d="M16 21h3a2 2 0 0 0 2-2v-3"/></svg>
<span class="en">Super Compact</span><span class="th">Super Compact</span>
</button>
<button class="export-btn" id="btn-html" onclick="downloadHTML()">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
Download .html
</button>
<button class="export-btn" id="btn-copy" onclick="copyLink()">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/></svg>
<span class="en">Copy link</span><span class="th">คัดลอกลิงก์</span>
</button>
</div>
</div>
<!-- Thai export row -->
<div class="export-inner export-inner--thai">
<span class="export-label export-label--th">🇹🇭 <span class="en">Thai version</span><span class="th">เวอร์ชันภาษาไทย</span></span>
<div class="export-actions">
<button class="export-btn export-btn--thai" onclick="thPrint()">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 6 2 18 2 18 9"/><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"/><rect x="6" y="14" width="12" height="8"/></svg>
<span class="en">Print (TH)</span><span class="th">พิมพ์ภาษาไทย</span>
</button>
<button class="export-btn export-btn--thai export-btn--compact" onclick="thSuperCompactPrint()">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3H5a2 2 0 0 0-2 2v3"/><path d="M21 8V5a2 2 0 0 0-2-2h-3"/><path d="M3 16v3a2 2 0 0 0 2 2h3"/><path d="M16 21h3a2 2 0 0 0 2-2v-3"/></svg>
<span class="en">Super Compact (TH)</span><span class="th">Super Compact ภาษาไทย</span>
</button>
<button class="export-btn export-btn--thai" onclick="downloadHTMLThai()">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
Download .html (TH)
</button>
</div>
</div>
</div>
<footer>
<div class="inner">
<p>© 2025 Alex Chen</p>
<p><span class="en">Built with HTML · Hosted on GitHub Pages</span><span class="th">สร้างด้วย HTML · โฮสต์บน GitHub Pages</span></p>
</div>
</footer>
<style>
/* ── Export bar ──────────────────────────── */
.export-bar {
background: var(--bg2);
border-top: 1px solid var(--border);
padding: 20px 0;
}
.export-inner {
max-width: 860px;
margin: 0 auto;
padding: 0 24px;
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.export-label {
font-family: var(--mono);
font-size: 11px;
color: var(--muted);
letter-spacing: 0.12em;
text-transform: uppercase;
flex-shrink: 0;
}
.export-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.export-btn {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 9px 18px;
border-radius: 8px;
font-family: var(--sans);
font-size: 13px;
font-weight: 500;
cursor: pointer;
border: 1px solid var(--border);
background: var(--bg);
color: var(--text);
transition: all 0.18s;
white-space: nowrap;
}
.export-btn:hover {
border-color: #b0b8cc;
background: #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.export-btn svg {
flex-shrink: 0;
color: var(--muted);
}
.export-btn.export-btn--compact {
border-color: #c7d9ff;
color: var(--accent);
background: var(--accent-bg);
}
.export-btn.export-btn--compact:hover {
background: #ddeaff;
border-color: var(--accent);
}
.export-btn.export-btn--compact svg { color: var(--accent); }
.export-inner--thai {
border-top: 1px dashed var(--border);
padding-top: 14px;
margin-top: 4px;
}
.export-label--th {
color: var(--accent);
}
.export-btn--thai {
border-color: #c7d9ff;
color: var(--accent);
}
.export-btn--thai:hover {
background: var(--accent-bg);
border-color: var(--accent);
}
.export-btn--thai svg { color: var(--accent); }
/* ── Super Compact print (1 page) ───────────── */
@media print {
body.super-compact {
font-size: 7.5pt;
line-height: 1.3;
}
/* Tighter page margins */
body.super-compact-page { }
@page:nth(1) { } /* can't do JS page rules; handle via body class */
body.super-compact .hero-name { font-size: 20pt; }
body.super-compact .hero-title { font-size: 7.5pt; margin-top: 3pt; }
body.super-compact .print-contact { font-size: 7pt; margin-top: 3pt; }
body.super-compact .hero-avatar { width: 52pt; height: 52pt; }
body.super-compact .hero-layout { gap: 10pt; }
body.super-compact #hero {
padding-bottom: 7pt;
}
body.super-compact section {
padding: 5pt 0;
}
body.super-compact .section-label {
font-size: 6.5pt;
margin-bottom: 4pt;
}
/* About: hide the meta sidebar, keep only bio text */
body.super-compact .about-grid {
grid-template-columns: 1fr;
gap: 0;
}
body.super-compact .about-meta { display: none; }
body.super-compact .about-text p {
font-size: 7.5pt;
margin-bottom: 2pt;
color: #444;
}
/* Keep only first paragraph */
body.super-compact .about-text p:not(:first-child) { display: none; }
/* Experience: tighter, hide tags */
body.super-compact .exp-item {
grid-template-columns: 72pt 1fr;
gap: 8pt;
padding: 5pt 0;
}
body.super-compact .exp-period { font-size: 7pt; }
body.super-compact .exp-company { font-size: 9.5pt; }
body.super-compact .exp-role { font-size: 7pt; margin-top: 0; }
body.super-compact .exp-desc { font-size: 7.5pt; margin-top: 2pt; }
body.super-compact .exp-tags { display: none; }
/* Skills: single row of 3, no box */
body.super-compact .skills-grid {
grid-template-columns: repeat(3, 1fr);
gap: 4pt;