-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1052 lines (965 loc) · 79.1 KB
/
Copy pathindex.html
File metadata and controls
1052 lines (965 loc) · 79.1 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>Alphaeus Ng — AI Research Engineer</title>
<meta name="description" content="AI Research Engineer at Panasonic (Singapore). Production ML, applied CV, Python/Streamlit automation, NTU B.Eng CS 2024. CV download and selected work.">
<meta name="author" content="Alphaeus Ng">
<meta name="theme-color" content="#0A0F1C">
<meta name="color-scheme" content="dark">
<meta name="referrer" content="strict-origin-when-cross-origin">
<!-- Open Graph / Social -->
<meta property="og:title" content="Alphaeus Ng — AI Research Engineer">
<meta property="og:description" content="AI systems for real operations, plus open work on Scripture study tools. Based in Singapore.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://alphaeusng.github.io">
<meta property="og:image" content="https://alphaeusng.github.io/assets/alphaeus-portrait.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://alphaeusng.github.io/assets/alphaeus-portrait.jpg">
<link rel="canonical" href="https://alphaeusng.github.io/">
<link rel="icon" href="assets/alphaeus-portrait.jpg" type="image/jpeg">
<!-- Resource hints: critical third parties only -->
<link rel="preconnect" href="https://cdn.tailwindcss.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="dns-prefetch" href="https://www.google.com">
<!-- Tailwind CSS (CDN - zero build). D3 / html2canvas intentionally omitted here:
the knowledge-graph case study embeds pages/seeking-biblical-truth/ via iframe. -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Elegant Fonts (single load; avoid duplicate @import in <style>) -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap">
<!-- Custom CSS (extracted from monolithic HTML) -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/home.css">
</head>
<body id="top" class="bg-[#0A0F1C] text-[#F8FAFC] antialiased">
<a class="skip-link" href="#story">Skip to content</a>
<!-- Navigation -->
<nav id="nav" class="site-nav fixed top-0 left-0 right-0 z-50 transition-all duration-300" aria-label="Primary">
<div class="max-w-7xl mx-auto px-6">
<div class="flex items-center justify-between h-20">
<!-- Logo -->
<a href="#top" class="nav-home-link flex items-center gap-x-3 rounded-xl focus:outline-none focus-visible:ring-1 focus-visible:ring-[#C9A227]/45">
<div class="w-9 h-9 rounded-full bg-gradient-to-br from-[#C9A227] to-[#A68B1F] flex items-center justify-center shadow-[0_0_0_1px_rgba(201,162,39,0.25)]">
<span class="text-[#0A0F1C] font-semibold text-xl tracking-tighter">A</span>
</div>
<div>
<div class="nav-home-title font-semibold tracking-tight text-xl">Alphaeus Ng</div>
<div class="text-[10px] uppercase tracking-[0.14em] text-[#64748B] leading-none mt-1 hidden sm:block">AI · systems · Singapore</div>
</div>
</a>
<!-- Desktop Nav: Work → Faith → Connect (identity order, not resume-first only) -->
<div class="hidden md:flex items-center gap-x-3 text-sm font-medium">
<div class="nav-menu" data-nav-menu>
<a href="#story" data-nav-group="portfolio" class="nav-link nav-pill" aria-haspopup="true" aria-expanded="false" aria-controls="nav-submenu-portfolio">
<span class="nav-pill-label">Work</span>
</a>
<div id="nav-submenu-portfolio" class="nav-submenu" role="menu" aria-hidden="true">
<a href="#story" class="nav-submenu-link" role="menuitem">The Story</a>
<a href="#journey" class="nav-submenu-link" role="menuitem">Journey</a>
<a href="#craft" class="nav-submenu-link" role="menuitem">Projects</a>
<a href="#thoughts" class="nav-submenu-link" role="menuitem">Thoughts</a>
<a href="#cv-downloads" class="nav-submenu-link" role="menuitem">Resume / CV</a>
</div>
</div>
<div class="nav-menu" data-nav-menu>
<a href="#reflections" data-nav-group="faith" class="nav-link nav-pill" aria-haspopup="true" aria-expanded="false" aria-controls="nav-submenu-faith">
<span class="nav-pill-label">Faith</span>
</a>
<div id="nav-submenu-faith" class="nav-submenu" role="menu" aria-hidden="true">
<a href="#reflections" class="nav-submenu-link" role="menuitem">North star</a>
<a href="#church-home" class="nav-submenu-link" role="menuitem">Church</a>
<a href="#journey-documents" class="nav-submenu-link" role="menuitem">Journey documents</a>
<a href="pages/seeking-biblical-truth/" class="nav-submenu-link" role="menuitem">Vault browser</a>
</div>
</div>
<div class="nav-menu" data-nav-menu>
<a href="#connect" data-nav-group="connect" class="nav-link nav-pill" aria-haspopup="true" aria-expanded="false" aria-controls="nav-submenu-connect">
<span class="nav-pill-label">Connect</span>
</a>
<div id="nav-submenu-connect" class="nav-submenu" role="menu" aria-hidden="true">
<button type="button" class="nav-submenu-link email-copy-btn" role="menuitem" data-email="alphaolivegreen@gmail.com" data-email-label="Email">Email</button>
<a href="https://github.com/AlphaeusNg" target="_blank" rel="noopener noreferrer" class="nav-submenu-link" role="menuitem">GitHub</a>
<a href="https://www.linkedin.com/in/alphaeus-ng" target="_blank" rel="noopener noreferrer" class="nav-submenu-link" role="menuitem">LinkedIn</a>
</div>
</div>
</div>
<!-- Mobile Menu Button -->
<button id="mobile-menu-btn"
class="md:hidden w-10 h-10 flex items-center justify-center text-[#CBD5E1] hover:text-white"
aria-label="Toggle menu"
aria-controls="mobile-menu"
aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
<!-- Project quick-link tabs (desktop/tablet) -->
<div id="project-tabs" class="project-tabs-bar" aria-label="Project quick links">
<div class="project-tabs-inner">
<span class="project-tabs-label">Projects</span>
<a class="project-tab" href="https://alphaeusng.github.io/AIly/" target="_blank" rel="noopener noreferrer" title="Local-first AI productivity ally">AIly <span class="project-tab-ext" aria-hidden="true">↗</span></a>
<a class="project-tab" href="https://alphaeusng.github.io/KoboForge/" title="Client-side EPUB converter for Kobo">KoboForge</a>
<a class="project-tab" href="https://alphaeusng.github.io/AlpArcade/" target="_blank" rel="noopener noreferrer" title="Mini-game arcade">AlpArcade <span class="project-tab-ext" aria-hidden="true">↗</span></a>
<a class="project-tab" href="https://alphaeusng.github.io/VerseKeep/" target="_blank" rel="noopener noreferrer" title="Scripture memory games">VerseKeep <span class="project-tab-ext" aria-hidden="true">↗</span></a>
<a class="project-tab" href="https://alphaeusng.github.io/ChristoDay/" target="_blank" rel="noopener noreferrer" title="Christ-centered daily reading">ChristoDay <span class="project-tab-ext" aria-hidden="true">↗</span></a>
<a class="project-tab" href="https://alphaeusng.github.io/CardFitSG/" target="_blank" rel="noopener noreferrer" title="SG cashback card fit">CardFitSG <span class="project-tab-ext" aria-hidden="true">↗</span></a>
<a class="project-tab" href="pages/seeking-biblical-truth/" title="Public vault browser">Biblical Truth</a>
<a class="project-tab" href="pages/conviction.html" title="Conviction (TSLA) notes">Conviction</a>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden border-t border-[color:var(--nav-border)] bg-[#0A0F1C]/98">
<div class="px-6 py-6 flex flex-col gap-y-4 text-sm font-medium">
<div class="mobile-nav-group rounded-2xl border border-[color:var(--nav-border)] bg-white/[0.03] px-4 py-3">
<button type="button" class="mobile-nav-toggle w-full text-left" aria-expanded="false" aria-controls="mobile-portfolio-links">
<span class="block text-[15px] font-semibold text-white">Work</span>
<span class="block text-[11px] uppercase tracking-[1.8px] text-[#64748B] mt-1">Story, craft, writing, CV</span>
</button>
<div id="mobile-portfolio-links" class="mobile-nav-panel hidden mt-3">
<a href="#story" class="mobile-link mobile-submenu-link">The Story</a>
<a href="#journey" class="mobile-link mobile-submenu-link">Journey</a>
<a href="#craft" class="mobile-link mobile-submenu-link">Projects</a>
<a href="#thoughts" class="mobile-link mobile-submenu-link">Thoughts</a>
<a href="#cv-downloads" class="mobile-link mobile-submenu-link">Resume / CV</a>
</div>
</div>
<div class="mobile-nav-group rounded-2xl border border-[color:var(--nav-border-hover)] bg-[#C9A227]/8 px-4 py-3">
<button type="button" class="mobile-nav-toggle w-full text-left" aria-expanded="true" aria-controls="mobile-project-links">
<span class="block text-[15px] font-semibold text-white">Projects</span>
<span class="block text-[11px] uppercase tracking-[1.8px] text-[#94A3B8] mt-1">Quick links to every app</span>
</button>
<div id="mobile-project-links" class="mobile-nav-panel mt-3">
<div class="flex gap-x-2">
<a href="https://alphaeusng.github.io/AIly/" target="_blank" rel="noopener noreferrer" class="mobile-link mobile-submenu-link flex-1">AIly</a>
<a href="https://github.com/AlphaeusNg/AIly/releases" target="_blank" rel="noopener noreferrer" class="mobile-link mobile-submenu-link" title="Windows and Android packages">Packages</a>
</div>
<a href="https://alphaeusng.github.io/KoboForge/" class="mobile-link mobile-submenu-link">KoboForge</a>
<a href="https://alphaeusng.github.io/AlpArcade/" target="_blank" rel="noopener noreferrer" class="mobile-link mobile-submenu-link">AlpArcade</a>
<a href="https://alphaeusng.github.io/VerseKeep/" target="_blank" rel="noopener noreferrer" class="mobile-link mobile-submenu-link">VerseKeep</a>
<a href="https://alphaeusng.github.io/ChristoDay/" target="_blank" rel="noopener noreferrer" class="mobile-link mobile-submenu-link">ChristoDay</a>
<a href="https://alphaeusng.github.io/CardFitSG/" target="_blank" rel="noopener noreferrer" class="mobile-link mobile-submenu-link">CardFitSG</a>
<a href="pages/seeking-biblical-truth/" class="mobile-link mobile-submenu-link">Biblical Truth</a>
<a href="pages/conviction.html" class="mobile-link mobile-submenu-link">Conviction</a>
</div>
</div>
<div class="mobile-nav-group rounded-2xl border border-[color:var(--nav-border)] bg-white/[0.03] px-4 py-3">
<button type="button" class="mobile-nav-toggle w-full text-left" aria-expanded="false" aria-controls="mobile-faith-links">
<span class="block text-[15px] font-semibold text-white">Faith</span>
<span class="block text-[11px] uppercase tracking-[1.8px] text-[#94A3B8] mt-1">Christ, Scripture, church</span>
</button>
<div id="mobile-faith-links" class="mobile-nav-panel hidden mt-3">
<a href="#reflections" class="mobile-link mobile-submenu-link">North star</a>
<a href="#church-home" class="mobile-link mobile-submenu-link">Church</a>
<a href="#journey-documents" class="mobile-link mobile-submenu-link">Journey documents</a>
<a href="pages/seeking-biblical-truth/" class="mobile-link mobile-submenu-link">Vault browser</a>
</div>
</div>
<div class="mobile-nav-group rounded-2xl border border-[color:var(--nav-border)] bg-white/[0.03] px-4 py-3">
<button type="button" class="mobile-nav-toggle w-full text-left" aria-expanded="false" aria-controls="mobile-connect-links">
<span class="block text-[15px] font-semibold text-white">Connect</span>
<span class="block text-[11px] uppercase tracking-[1.8px] text-[#94A3B8] mt-1">Email + social</span>
</button>
<div id="mobile-connect-links" class="mobile-nav-panel hidden mt-3">
<button type="button" class="mobile-link mobile-submenu-link email-copy-btn" data-email="alphaolivegreen@gmail.com" data-email-label="Email">Email</button>
<a href="https://github.com/AlphaeusNg" target="_blank" rel="noopener noreferrer" class="mobile-link mobile-submenu-link">GitHub</a>
<a href="https://www.linkedin.com/in/alphaeus-ng" target="_blank" rel="noopener noreferrer" class="mobile-link mobile-submenu-link">LinkedIn</a>
</div>
</div>
</div>
</div>
</nav>
<button
id="mobile-menu-scrim"
class="mobile-menu-scrim"
type="button"
aria-label="Close navigation menu"
hidden
></button>
<!-- Hero (extra top pad for nav + project tabs on md+) -->
<header id="home-hero" class="hero-ambient pt-24 md:pt-32 min-h-0 md:min-h-[100dvh] flex items-center relative overflow-hidden">
<div class="hero-light-field" aria-hidden="true"></div>
<div class="hero-orbit hero-orbit-gold" aria-hidden="true"></div>
<div class="hero-orbit hero-orbit-blue" aria-hidden="true"></div>
<div class="max-w-7xl mx-auto px-6 pt-12 pb-16 md:pt-16 md:pb-20 relative z-10">
<div class="grid md:grid-cols-12 gap-x-8 items-center">
<!-- Text content -->
<div class="md:col-span-7 lg:col-span-7">
<!-- Status badge -->
<div class="inline-flex items-center gap-x-2 rounded-full bg-white/5 px-4 py-1.5 text-xs tracking-[1.5px] font-medium text-[#94A3B8] border border-white/10 mb-5 md:mb-8">
<div class="w-1.5 h-1.5 bg-emerald-400 rounded-full animate-pulse"></div>
AI RESEARCH ENGINEER @ PANASONIC · SINGAPORE
</div>
<h1 class="text-[clamp(2.6rem,11vw,5.25rem)] md:text-[80px] lg:text-[84px] leading-[0.9] font-semibold tracking-tighter section-header mb-4 md:mb-5">
Alphaeus Ng
</h1>
<p class="text-2xl md:text-3xl text-[#E2E8F0] tracking-tight mb-3">
AI Research Engineer
</p>
<p class="text-xl md:text-2xl text-[#E2E8F0] tracking-tight font-medium leading-snug max-w-[36ch] mb-8">
Production ML and applied CV — systems that have to work outside a notebook.
</p>
<p class="max-w-[46ch] text-lg md:text-xl text-[#94A3B8] leading-relaxed">
Currently at Panasonic (Singapore) building supply-chain automation end to end. Previously at HTX on checkpoint computer vision. B.Eng Computer Science, NTU (2024).
</p>
<p class="mt-5 max-w-[46ch] text-lg md:text-xl text-[#94A3B8] leading-relaxed mb-8 hidden sm:block">
Outside work I study Scripture and theology with the same seriousness I bring to debugging models. That is not a slogan — it is how I try to live and work.
</p>
<div class="hidden sm:flex flex-wrap gap-2 mb-10">
<span class="proof-chip">Python · Streamlit · PyTorch</span>
<span class="proof-chip">YOLO / Detectron2</span>
<span class="proof-chip">Flask · React · Next.js</span>
<span class="proof-chip">Singapore · 2024 graduate</span>
</div>
<div class="flex flex-col sm:flex-row flex-wrap items-start sm:items-center gap-3">
<a href="assets/resume.pdf"
download="Alphaeus-Ng-Resume.pdf"
class="btn-solid group inline-flex items-center justify-center gap-x-3 bg-white font-semibold px-8 py-4 rounded-2xl hover:bg-[#C9A227] transition-all active:scale-[0.985]">
Download CV (PDF)
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.25" d="M4 16v2a2 2 0 002 2h12a2 2 0 002-2v-2M7 10l5 5m0 0l5-5m-5 5V4" />
</svg>
</a>
<a href="#craft"
class="btn-quiet inline-flex items-center justify-center gap-x-3 px-8 py-4 rounded-2xl border border-white/15 hover:bg-white/5 font-medium transition-all">
Selected work
</a>
<a href="#connect"
class="btn-outline inline-flex items-center justify-center gap-x-3 px-8 py-4 rounded-2xl border border-[#C9A227]/35 hover:border-[#C9A227]/65 hover:bg-[#C9A227]/8 font-medium transition-all">
Contact
</a>
</div>
</div>
<!-- Hero visual / Swipeable portrait treatment -->
<div class="md:col-span-5 lg:col-span-5 mt-12 md:mt-0">
<div class="portrait-showcase mx-auto max-w-[360px] md:max-w-none" data-portrait-easter-egg>
<div class="portrait-phone">
<div class="portrait-phone-header">
<div>
<div class="portrait-phone-kicker">Interactive reveal</div>
<div class="portrait-phone-title">AI suit vs the real photo</div>
</div>
<button type="button" class="portrait-phone-status" data-portrait-reset>Again?</button>
</div>
<div id="hero-portrait-compare" class="portrait-compare" data-portrait-compare tabindex="0" role="button" aria-label="Portrait of Alphaeus Ng" aria-expanded="false" style="--portrait-reveal: 100%;">
<img
src="assets/alphaeus-portrait-original.jpg"
alt="Portrait of Alphaeus Ng"
class="portrait-image portrait-image-original"
width="400"
height="508"
draggable="false"
loading="eager"
decoding="async"
fetchpriority="high">
<div class="portrait-overlay">
<img
src="assets/alphaeus-portrait.jpg"
alt="Polished portrait of Alphaeus Ng"
class="portrait-image portrait-image-generated"
width="896"
height="1152"
draggable="false"
loading="eager"
decoding="async">
</div>
<!-- Procedural shatter FX layers (populated by js/main.js on click) -->
<div class="portrait-fx-flash" aria-hidden="true"></div>
<div class="portrait-shatter-layer" data-portrait-shatter aria-hidden="true"></div>
<div class="portrait-chip-layer" data-portrait-chips aria-hidden="true"></div>
<div class="portrait-dust-layer" data-portrait-dust aria-hidden="true"></div>
<div class="portrait-cracks" data-portrait-cracks aria-hidden="true"></div>
<div class="portrait-note">Hey, someone's a detective! The polished version was generated using <a href="https://grok.com/imagine/post/6d615f1f-3cba-4374-9be6-61b2b0319c55" target="_blank" rel="noreferrer noopener">Grok Imagine</a>.</div>
<div class="portrait-divider" aria-hidden="true">
<div class="portrait-handle">
<span></span>
<span></span>
</div>
</div>
</div>
<div class="portrait-phone-footer">
<button type="button" class="portrait-toggle" data-portrait-snap="100">AI suit</button>
<button type="button" class="portrait-toggle" data-portrait-snap="0">Original</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Subtle decorative elements -->
<div class="hero-grid absolute inset-0 subtle-grid pointer-events-none"></div>
<div class="absolute bottom-12 right-8 hidden xl:block">
<div class="flex items-center gap-x-3 text-[10px] tracking-[2px] text-[#475569] rotate-90 origin-bottom-right">
SCROLL TO BEGIN <div class="w-8 h-px bg-white/30"></div>
</div>
</div>
</header>
<!-- The Story -->
<section id="story" class="max-w-5xl mx-auto px-6 pt-20 pb-20 md:pt-24 md:pb-28 scroll-mt-20">
<div class="grid md:grid-cols-12 gap-x-16 gap-y-10">
<div class="md:col-span-5">
<div class="sticky top-24">
<div class="uppercase tracking-[3px] text-xs font-semibold text-[#94A3B8] mb-3">WHO I AM</div>
<h2 class="section-header text-6xl leading-none tracking-tighter">The Story</h2>
<p class="mt-8 text-sm leading-relaxed text-[#64748B] max-w-[28ch]">How I got here — in engineering and in faith.</p>
</div>
</div>
<div class="md:col-span-7 md:pt-8">
<div class="prose-elegant space-y-6 max-w-2xl">
<p>I first got drawn into AI watching systems like <a href="https://deepmind.google/research/alphago/" target="_blank" rel="noopener noreferrer" class="transition">AlphaGo</a> and <a href="https://deepmind.google/blog/alphastar-mastering-the-real-time-strategy-game-starcraft-ii/" target="_blank" rel="noopener noreferrer" class="transition">AlphaStar</a>. That curiosity led into computer science, then into production systems that have to hold up outside a clean notebook.</p>
<p>I am an AI Research Engineer at <a href="https://www.panasonic.com/sg/home.html" target="_blank" rel="noopener noreferrer" class="transition">Panasonic</a> (Singapore), owning internal supply-chain automation tools end to end. Before that I interned at <a href="https://www.htx.gov.sg/" target="_blank" rel="noopener noreferrer" class="transition">HTX</a> on checkpoint computer vision. Both roles rewarded the same habit: finish the last 20% that makes something actually usable.</p>
<p>Outside work I read Scripture and study theology. I do not treat faith as branding. I treat it as the claim that Jesus is Lord — which means my work, speech, and study should be answerable to something truer than my preferences.</p>
</div>
<div class="story-quote mt-10 pl-7 py-1">
<p class="text-2xl leading-tight text-[#E2E8F0] tracking-[-0.01em] section-header">
“The created creating,<br>pursuing the Uncaused Cause.”
</p>
<p class="mt-3 text-sm tracking-wide text-[#64748B]">— A line I still use as a check on myself</p>
</div>
</div>
</div>
</section>
<div class="elegant-divider max-w-5xl mx-auto px-6"></div>
<!-- Journey -->
<section id="journey" class="max-w-5xl mx-auto px-6 py-20 md:py-24 scroll-mt-20">
<div class="flex justify-between items-end mb-12">
<div>
<div class="uppercase tracking-[3px] text-xs font-semibold text-[#94A3B8] mb-3">PATH</div>
<h2 class="section-header text-6xl tracking-tighter">Journey</h2>
</div>
<div class="hidden md:block text-right text-sm text-[#64748B]">
Singapore-based
</div>
</div>
<div class="max-w-3xl space-y-12">
<!-- Panasonic -->
<div class="timeline-item flex gap-6">
<div class="w-8 h-8 mt-1 flex-shrink-0 rounded-full bg-[#C9A227] flex items-center justify-center">
<div class="w-3 h-3 bg-[#0A0F1C] rounded-full"></div>
</div>
<div class="flex-1">
<div class="flex flex-wrap items-baseline justify-between gap-x-4">
<div>
<h3 class="font-semibold text-2xl tracking-tight">AI Research Engineer</h3>
<p class="text-[#94A3B8]"><a href="https://www.panasonic.com/sg/home.html" target="_blank" rel="noopener noreferrer" class="transition">Panasonic</a> • Singapore</p>
</div>
<div class="text-sm font-medium text-[#64748B] tabular-nums">2024 — Present</div>
</div>
<p class="mt-3 text-[#94A3B8]">
Own internal supply-chain automation tools end to end (Python, Streamlit): replaced brittle Excel workflows for planning teams and cut planning cycle time by roughly 5×. Scope covers data ingestion, UI, and the last-mile reliability work that makes tools stick.
</p>
<p class="mt-2 text-sm text-[#64748B]">Stack: Python · Streamlit · internal data pipelines</p>
</div>
</div>
<!-- HTX -->
<div class="timeline-item flex gap-6">
<div class="w-8 h-8 mt-1 flex-shrink-0 rounded-full bg-[#C9A227] flex items-center justify-center">
<div class="w-3 h-3 bg-[#0A0F1C] rounded-full"></div>
</div>
<div class="flex-1">
<div class="flex flex-wrap items-baseline justify-between gap-x-4">
<div>
<h3 class="font-semibold text-2xl tracking-tight">AI Developer Intern</h3>
<p class="text-[#94A3B8]"><a href="https://www.htx.gov.sg/" target="_blank" rel="noopener noreferrer" class="transition">HTX</a> (Home Team Science & Technology Agency) — CBRNE Centre</p>
</div>
<div class="text-sm font-medium text-[#64748B] tabular-nums">2023</div>
</div>
<p class="mt-3 text-[#94A3B8]">
Built computer-vision pipelines for prohibited-item detection on operational X-ray imagery at Singapore checkpoints (data collection at sites including Tuas, Woodlands, and Changi; annotation; training; evaluation; handoff). Models contributed to deployed border capability.
</p>
<p class="mt-2 text-sm text-[#64748B]">
Stack: YOLOv7 · Detectron2 · Python ·
<a href="https://www.htx.gov.sg/join-us/our-stories/2023/htx-intern-stories--an-intern-s-gambit-into-the-world-of-ai" target="_blank" rel="noopener noreferrer">HTX public write-up →</a>
</p>
</div>
</div>
<!-- NTU -->
<div class="timeline-item flex gap-6">
<div class="w-8 h-8 mt-1 flex-shrink-0 rounded-full bg-[#C9A227] flex items-center justify-center">
<div class="w-3 h-3 bg-[#0A0F1C] rounded-full"></div>
</div>
<div class="flex-1">
<div class="flex flex-wrap items-baseline justify-between gap-x-4">
<div>
<h3 class="font-semibold text-2xl tracking-tight">B.Eng Computer Science</h3>
<p class="text-[#94A3B8]"><a href="https://www.ntu.edu.sg/" target="_blank" rel="noopener noreferrer" class="transition">Nanyang Technological University</a></p>
</div>
<div class="text-sm font-medium text-[#64748B] tabular-nums">2020 — 2024</div>
</div>
<p class="mt-3 text-[#94A3B8]">
Final Year Project: scene-text detection + translation pipeline (EasyOCR, PyTorch, Flask, React) for natural images and manga panels, with in-image re-rendering. Also completed URECA research under Prof Andrea Nanetti / Prof Erik Cambria on Engineering Historical Memory.
</p>
<p class="mt-2 text-sm text-[#64748B]">Open source FYP:
<a href="https://github.com/AlphaeusNg/FYP" target="_blank" rel="noopener noreferrer">github.com/AlphaeusNg/FYP →</a>
</p>
</div>
</div>
</div>
<!-- Skills for scanners / ATS-minded readers -->
<div class="mt-16 rounded-3xl border border-white/10 bg-[#111827] p-7 md:p-8">
<div class="uppercase tracking-[2.5px] text-[10px] font-semibold text-[#94A3B8] mb-4">SKILLS & TOOLS</div>
<div class="grid sm:grid-cols-2 lg:grid-cols-4 gap-6 text-sm">
<div>
<div class="text-[#E2E8F0] font-semibold mb-2">ML / CV</div>
<p class="text-[#94A3B8] leading-relaxed">PyTorch, YOLO, Detectron2, EasyOCR, model evaluation, data annotation pipelines</p>
</div>
<div>
<div class="text-[#E2E8F0] font-semibold mb-2">Backend & apps</div>
<p class="text-[#94A3B8] leading-relaxed">Python, Flask, Streamlit, REST APIs, Socket.IO, Redis</p>
</div>
<div>
<div class="text-[#E2E8F0] font-semibold mb-2">Frontend</div>
<p class="text-[#94A3B8] leading-relaxed">React, Next.js, TypeScript, Tailwind, static web tooling</p>
</div>
<div>
<div class="text-[#E2E8F0] font-semibold mb-2">Practices</div>
<p class="text-[#94A3B8] leading-relaxed">End-to-end ownership, operational constraints, local-first privacy, clear handoff docs</p>
</div>
</div>
</div>
<div class="mt-16">
<div class="uppercase tracking-[2.5px] text-[10px] font-semibold text-[#64748B] mb-4">OTHER CHAPTERS</div>
<div class="grid items-start gap-4 md:grid-cols-3">
<details class="chapter-disclosure rounded-2xl border border-white/10 bg-[#111827] p-5">
<summary class="chapter-disclosure-summary">
<div class="text-[11px] font-medium uppercase tracking-[1.8px] text-[#94A3B8]">2015 — 2018</div>
<div class="mt-2">
<div>
<h3 class="text-xl font-semibold tracking-tight">Diploma in Biomedical Science</h3>
<p class="mt-1 text-sm text-[#64748B]"><a href="https://www.sp.edu.sg/" target="_blank" rel="noopener noreferrer" class="transition">Singapore Polytechnic</a></p>
</div>
</div>
</summary>
<p class="mt-4 text-sm leading-6 text-[#94A3B8]">Studied biomedical science before switching to computing. It gave me a lasting appreciation for careful measurement, evidence, and attention to detail.</p>
</details>
<details class="chapter-disclosure rounded-2xl border border-white/10 bg-[#111827] p-5">
<summary class="chapter-disclosure-summary">
<div class="text-[11px] font-medium uppercase tracking-[1.8px] text-[#94A3B8]">2018 — 2020</div>
<div class="mt-2">
<div>
<h3 class="text-xl font-semibold tracking-tight">Combat Medic Sergeant</h3>
<p class="mt-1 text-sm text-[#64748B]">MMI • <a href="https://www.mindef.gov.sg/about-us/" target="_blank" rel="noopener noreferrer" class="transition">Singapore Armed Forces</a></p>
</div>
</div>
</summary>
<p class="mt-4 text-sm leading-6 text-[#94A3B8]">Served as a combat medic sergeant during national service. It was a meaningful experience that taught me to stay calm in high-pressure situations, respond to emergencies, and make careful decisions with limited time and information.</p>
</details>
<details class="chapter-disclosure rounded-2xl border border-white/10 bg-[#111827] p-5">
<summary class="chapter-disclosure-summary">
<div class="text-[11px] font-medium uppercase tracking-[1.8px] text-[#94A3B8]">2021 — 2022</div>
<div class="mt-2">
<div>
<h3 class="text-xl font-semibold tracking-tight"><a href="https://www.ntu.edu.sg/education/undergraduate-research-experience-on-campus-%28ureca%29" target="_blank" rel="noopener noreferrer" class="transition">URECA</a> Student Researcher</h3>
<p class="mt-1 text-sm text-[#64748B]">NTU SCSE • Prof Andrea Nanetti</p>
</div>
</div>
</summary>
<p class="mt-4 text-sm leading-6 text-[#94A3B8]">Worked on the <a href="https://engineeringhistoricalmemory.com/Sentiment.php" target="_blank" rel="noopener noreferrer">Engineering Historical Memory</a> website as part of my URECA project under <a href="https://www.linkedin.com/in/andreananetti/" target="_blank" rel="noopener noreferrer">Prof Andrea Nanetti</a> and <a href="https://www.linkedin.com/in/erikcambria/" target="_blank" rel="noopener noreferrer">Prof Erik Cambria</a>, with the work also referenced in <a href="https://www.taylorfrancis.com/books/oa-mono/10.4324/9781003310860/computational-engineering-historical-memories-andrea-nanetti" target="_blank" rel="noopener noreferrer"><em>Computational Engineering of Historical Memories</em></a>.</p>
</details>
</div>
</div>
</section>
<!-- The Craft -->
<section id="craft" class="bg-[#111827] py-20 md:py-24 scroll-mt-20">
<div class="max-w-5xl mx-auto px-6">
<div class="mb-12">
<div class="uppercase tracking-[3px] text-xs font-semibold text-[#94A3B8] mb-3">WHAT I BUILD</div>
<h2 class="section-header text-6xl tracking-tighter">The Craft</h2>
<p class="mt-4 max-w-2xl text-[#94A3B8]">Selected work with outcomes and links. Case studies open in-page; demos and repos where they exist.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- HTX Work -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="htx-threat">
<div>
<div class="project-badge mb-4">APPLIED COMPUTER VISION</div>
<h3 class="text-3xl tracking-tighter font-semibold">Threat Detection Systems</h3>
<p class="text-sm text-[#64748B] mt-1">HTX CBRNE · Internship 2023</p>
</div>
<p class="mt-6 text-[#94A3B8]">End-to-end CV for prohibited-item detection on checkpoint X-ray imagery: on-site data collection, annotation QC, training (YOLOv7 / Detectron2), evaluation, and handoff into operational use at Singapore borders.</p>
<div class="mt-6 overflow-hidden rounded-2xl border border-white/10 bg-[#111827]">
<img
src="assets/xray-baggage-sample.jpg"
alt="Sample X-ray images from baggage and cargo inspection with a red bounding box"
class="h-44 w-full object-cover"
width="850"
height="528"
loading="lazy"
decoding="async">
</div>
<p class="mt-3 text-xs leading-relaxed text-[#64748B]">
Illustrative X-ray figure (public research image, not operational data).
<a href="https://www.researchgate.net/figure/Sample-of-X-ray-images-from-baggage-top-and-cargo-bottom-inspection-red-bounding-box_fig4_395349804"
target="_blank"
rel="noopener noreferrer"
>Source →</a>
</p>
<div class="pt-6 mt-6 border-t border-white/10 flex items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>DEPLOYED CAPABILITY</div>
<button type="button" onclick="openRichProjectModal('htx-threat')" class="project-card-open linkish font-medium normal-case tracking-normal" aria-label="Open Threat Detection Systems case study">Case study →</button>
</div>
</div>
<!-- FYP -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="scene-text">
<div>
<div class="project-badge mb-4">COMPUTER VISION + NLP</div>
<h3 class="text-3xl tracking-tighter font-semibold">Scene Text Translator</h3>
<p class="text-sm text-[#64748B] mt-1">NTU Final Year Project · 2024</p>
</div>
<p class="mt-6 text-[#94A3B8]">Pipeline: detect text in natural images / manga → context-aware translation → erase and re-render in place. Flask API + React UI; evaluated on Manga109 and real photos.</p>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>PYTORCH · EASYOCR · FLASK</div>
<div class="flex gap-x-3 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('scene-text')" class="project-card-open linkish font-medium" aria-label="Open Scene Text Translator case study">Case study →</button>
<a href="https://github.com/AlphaeusNg/FYP" target="_blank" rel="noopener noreferrer" class="font-medium">GitHub →</a>
</div>
</div>
</div>
<!-- VotaFun -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="votafun">
<div>
<div class="project-badge mb-4">FULL-STACK · REAL-TIME</div>
<h3 class="text-3xl tracking-tighter font-semibold">VotaFun</h3>
<p class="text-sm text-[#64748B] mt-1">NTU module project · live demo</p>
</div>
<p class="mt-6 text-[#94A3B8]">Real-time group decision app: join a room, share preferences, get LLM-ranked options with explanations, vote together. Model assists; people decide. Next.js + Flask + Socket.IO + Redis.</p>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>NEXT.JS · SOCKET.IO · LLM</div>
<div class="flex gap-x-3 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('votafun')" class="project-card-open linkish font-medium" aria-label="Open VotaFun case study">Case study →</button>
<a href="https://votafun.onrender.com/" target="_blank" rel="noopener noreferrer" class="font-medium">Live demo →</a>
</div>
</div>
</div>
<!-- AIly -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="aily">
<div>
<div class="project-badge mb-4">LOCAL-FIRST ALLY</div>
<h3 class="text-3xl tracking-tighter font-semibold">AIly</h3>
<p class="text-sm text-[#64748B] mt-1">Your AI Ally · targets, usage, blocks</p>
</div>
<p class="mt-6 text-[#94A3B8] flex-1">Local-first ally for the targets you set: capacity-honest plans, consent-gated usage, and self-admin blocks. PWA now; the Windows package is unsigned dogfood without OS hard-blocks yet.</p>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>PWA · ANDROID · TAURI</div>
<div class="flex flex-wrap gap-x-3 gap-y-2 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('aily')" class="project-card-open linkish font-medium" aria-label="Open AIly case study">Case study →</button>
<a href="https://alphaeusng.github.io/AIly/" target="_blank" rel="noopener noreferrer" class="font-medium">Open AIly →</a>
<a href="https://github.com/AlphaeusNg/AIly/releases" target="_blank" rel="noopener noreferrer" class="font-medium">Packages →</a>
</div>
</div>
</div>
<!-- KoboForge -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="koboforge">
<div>
<div class="project-badge mb-4">LOCAL-FIRST TOOLING</div>
<h3 class="text-3xl tracking-tighter font-semibold">KoboForge</h3>
<p class="text-sm text-[#64748B] mt-1">Documents + images → Kobo-ready · no upload</p>
</div>
<p class="mt-6 text-[#94A3B8]">Browser-only Kobo converter: repair and export EPUBs, page through real device profiles, or resize and dither images to exact Kobo screen dimensions.</p>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>PDF.JS · MAMMOTH · JSZIP</div>
<div class="flex gap-x-3 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('koboforge')" class="project-card-open linkish font-medium" aria-label="Open KoboForge case study">Case study →</button>
<a href="https://alphaeusng.github.io/KoboForge/" class="font-medium">Launch →</a>
</div>
</div>
</div>
<!-- ChristoDay -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="christoday">
<div class="project-badge mb-4">FAITH × CODE</div>
<h3 class="text-3xl tracking-tighter font-semibold">ChristoDay</h3>
<p class="text-sm text-[#64748B] mt-1">Christ-centered weekday gospel reading</p>
<p class="mt-6 text-[#94A3B8] flex-1">5–10 minute natural segments through Matthew, Mark, Luke, Philippians, and Jude. Asia/Singapore schedule, optional live Scripture, private journal, streaks. Weekends are rest — not homework.</p>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>STATIC · LOCAL-FIRST</div>
<div class="flex gap-x-3 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('christoday')" class="project-card-open linkish font-medium" aria-label="Open ChristoDay case study">Case study →</button>
<a href="https://alphaeusng.github.io/ChristoDay/" target="_blank" rel="noopener noreferrer" class="font-medium">Open ChristoDay →</a>
</div>
</div>
</div>
<!-- CardFitSG -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="cardfitsg">
<div class="project-badge mb-4">SG PRACTICAL</div>
<h3 class="text-3xl tracking-tighter font-semibold">CardFitSG</h3>
<p class="text-sm text-[#64748B] mt-1">Fuss-free cashback card fit calculator</p>
<p class="mt-6 text-[#94A3B8] flex-1">Ranks Singapore cashback cards for large one-off spends and simple monthly use — no miles maxxing theatre. Dated catalog, explicit disclaimer, client-side only.</p>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>STATIC · SGD</div>
<div class="flex gap-x-3 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('cardfitsg')" class="project-card-open linkish font-medium" aria-label="Open CardFitSG case study">Case study →</button>
<a href="https://alphaeusng.github.io/CardFitSG/" target="_blank" rel="noopener noreferrer" class="font-medium">Open CardFitSG →</a>
</div>
</div>
</div>
<!-- VerseKeep -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="versekeep">
<div class="project-badge mb-4">FAITH × CODE</div>
<h3 class="text-3xl tracking-tighter font-semibold">VerseKeep</h3>
<p class="text-sm text-[#64748B] mt-1">Scripture meditation, then memory</p>
<p class="mt-6 text-[#94A3B8] flex-1">Sit with a verse, its context, an application, and a prayer. Optional drills by topic, worship music, and a local Amen streak — no account required.</p>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>STATIC · LOCAL-FIRST</div>
<div class="flex gap-x-3 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('versekeep')" class="project-card-open linkish font-medium" aria-label="Open VerseKeep case study">Case study →</button>
<a href="https://alphaeusng.github.io/VerseKeep/" target="_blank" rel="noopener noreferrer" class="font-medium">Open VerseKeep →</a>
</div>
</div>
</div>
<!-- AlpArcade -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col" data-project-slug="alparcade">
<div class="project-badge mb-4">PLAY</div>
<h3 class="text-3xl tracking-tighter font-semibold">AlpArcade</h3>
<p class="text-sm text-[#64748B] mt-1">Need a break? Have an AlpArcade</p>
<p class="mt-6 text-[#94A3B8] flex-1">Eight browser cabinets — tic-tac-toe, snake, rhythm, and more — with local XP, a daily challenge, and optional Google scoreboards. Free play never requires an account.</p>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>STATIC · WEB AUDIO</div>
<div class="flex gap-x-3 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('alparcade')" class="project-card-open linkish font-medium" aria-label="Open AlpArcade case study">Case study →</button>
<a href="https://alphaeusng.github.io/AlpArcade/" target="_blank" rel="noopener noreferrer" class="font-medium">Open AlpArcade →</a>
</div>
</div>
</div>
<!-- Seeking Biblical Truth -->
<div class="card group bg-[#0A0F1C] border border-white/10 rounded-3xl p-8 flex flex-col md:col-span-2 lg:col-span-2" data-project-slug="seeking-biblical-truth">
<div class="flex items-start justify-between">
<div>
<div class="project-badge mb-4">FAITH × CODE</div>
<h3 class="text-3xl tracking-tighter font-semibold">Seeking Biblical Truth</h3>
<p class="text-sm text-[#64748B] mt-1">Full-page public vault browser with graph navigation</p>
</div>
<div class="text-right">
<a href="https://github.com/AlphaeusNg/Seeking-Biblical-Truth" target="_blank" rel="noopener noreferrer"
class="inline-block transition">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
</svg>
</a>
</div>
</div>
<p class="mt-6 text-[#94A3B8] max-w-3xl">A public <a href="https://obsidian.md/" target="_blank" rel="noopener noreferrer" class="transition">Obsidian</a> vault with Python tooling for Scripture study: notes, backlinks, and a live knowledge graph, so the work is browsable rather than locked in private folders.</p>
<div class="mt-6 grid gap-4 sm:grid-cols-2">
<div class="rounded-2xl border border-white/10 bg-[#111827] p-5">
<div class="text-[10px] font-semibold uppercase tracking-[2px] text-[#94A3B8]">In the browser</div>
<p class="mt-3 text-sm leading-6 text-[#CBD5E1]">Open notes, toggle rendered vs raw Markdown, follow links, and drag the live graph.</p>
</div>
<div class="rounded-2xl border border-white/10 bg-[#111827] p-5">
<div class="text-[10px] font-semibold uppercase tracking-[2px] text-[#94A3B8]">Locally</div>
<p class="mt-3 text-sm leading-6 text-[#CBD5E1]">Clone the repo and open the vault in Obsidian for canvases, plugins, and full editing.</p>
</div>
</div>
<div class="pt-6 mt-auto border-t border-white/10 flex flex-wrap items-center justify-between gap-3 text-xs tracking-widest text-[#64748B]">
<div>OPEN SOURCE · PYTHON + OBSIDIAN</div>
<div class="flex flex-wrap items-center gap-x-4 gap-y-2 normal-case tracking-normal">
<button type="button" onclick="openRichProjectModal('seeking-biblical-truth')" class="project-card-open linkish font-medium" aria-label="Open Seeking Biblical Truth case study">Case study →</button>
<a href="pages/seeking-biblical-truth/" class="font-medium">Open vault →</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Interests / writing directions (honest, not fake dated posts) -->
<section id="thoughts" class="max-w-5xl mx-auto px-6 py-20 md:py-24 scroll-mt-20">
<div class="mb-12">
<div class="uppercase tracking-[3px] text-xs font-semibold text-[#94A3B8] mb-3">INTERESTS</div>
<h2 class="section-header text-6xl tracking-tighter">What I think about</h2>
<p class="mt-4 max-w-2xl text-[#94A3B8] leading-relaxed">
Themes I return to in work and study. Not a finished blog — longer notes live under Faith and on GitHub.
</p>
</div>
<div class="grid sm:grid-cols-2 gap-5" id="thoughts-list">
<div class="blog-post bg-[#111827] border border-white/10 rounded-2xl p-6">
<h3 class="font-semibold text-[1.05rem] tracking-tight leading-snug mb-2 text-[#E2E8F0]">Durable tools over demo theatre</h3>
<p class="text-[#94A3B8] text-sm leading-relaxed">I care more about systems that stay useful after launch than about model novelty alone — evaluation, handoff, and the last 20% of reliability.</p>
</div>
<div class="blog-post bg-[#111827] border border-white/10 rounded-2xl p-6">
<h3 class="font-semibold text-[1.05rem] tracking-tight leading-snug mb-2 text-[#E2E8F0]">Precision in language</h3>
<p class="text-[#94A3B8] text-sm leading-relaxed">Whether the domain is ML metrics or doctrine, sloppy words hide bad reasoning. Define terms; show work; admit uncertainty.</p>
</div>
<div class="blog-post bg-[#111827] border border-white/10 rounded-2xl p-6">
<h3 class="font-semibold text-[1.05rem] tracking-tight leading-snug mb-2 text-[#E2E8F0]">Models are maps, not territory</h3>
<p class="text-[#94A3B8] text-sm leading-relaxed">Statistical and theological models compress reality. Forgetting that is how you confuse the explanation with the world.</p>
</div>
<div class="blog-post bg-[#111827] border border-white/10 rounded-2xl p-6">
<h3 class="font-semibold text-[1.05rem] tracking-tight leading-snug mb-2 text-[#E2E8F0]">Making serious study navigable</h3>
<p class="text-[#94A3B8] text-sm leading-relaxed">
See
<a href="pages/seeking-biblical-truth/">Seeking Biblical Truth</a>
and the journey documents under
<a href="#reflections">Faith</a>.
</p>
</div>
</div>
</section>
<!-- Faith -->
<section id="reflections" class="max-w-5xl mx-auto px-6 py-20 md:py-24 scroll-mt-20">
<div class="mb-12">
<div class="uppercase tracking-[3px] text-xs font-semibold text-[#94A3B8] mb-3">FAITH</div>
<h2 class="section-header text-6xl tracking-tighter">Faith</h2>
<p class="mt-4 max-w-3xl text-[#94A3B8] leading-relaxed">Work matters. Christ matters more. Church, study notes, and the longer record of how I got here — not a decorative footer.</p>
</div>
<div class="grid lg:grid-cols-[1.05fr_0.95fr] gap-8 items-start">
<div class="space-y-6">
<div class="scripture bg-[#111827] p-8 rounded-3xl text-[#CBD5E1]">
<p class="text-xl leading-snug tracking-tight">“In the beginning was the Word, and the Word was with God, and the Word was God.”</p>
<p class="text-right mt-5 text-sm text-[#64748B]">— John 1:1</p>
</div>
<div id="church-home" class="scroll-mt-24 bg-[#111827] border border-white/10 rounded-3xl p-7">
<div class="uppercase tracking-[2.5px] text-[10px] font-semibold text-[#94A3B8] mb-3">CHURCH</div>
<h3 class="text-2xl tracking-tight font-semibold"><a href="https://www.bukitarang.church/" target="_blank" rel="noopener noreferrer" class="transition">Bethesda Church Bukit Arang</a></h3>
<p class="mt-3 text-[#94A3B8] leading-relaxed">I attend Bethesda Church Bukit Arang. It has been one of the places where the gospel became more personal, concrete, and formative in my life.</p>
<p class="mt-3 text-sm text-[#64748B]">114 Serangoon Avenue 3, Singapore 556110</p>
<a href="https://www.google.com/maps/search/?api=1&query=Bethesda+Church+Bukit+Arang+114+Serangoon+Avenue+3+Singapore+556110"
target="_blank"
rel="noopener noreferrer"
class="mt-4 inline-flex items-center gap-2 rounded-full border border-[#C9A227]/40 bg-[#C9A227]/8 px-4 py-2 text-sm font-medium text-[#E8C547] hover:border-[#C9A227]/70 hover:bg-[#C9A227]/14 transition">
Open in Google Maps ↗
</a>
</div>
<div id="journey-documents" class="scroll-mt-24 bg-[#111827] border border-white/10 rounded-3xl p-7">
<div class="uppercase tracking-[2.5px] text-[10px] font-semibold text-[#94A3B8] mb-3">SUMMARY</div>
<div class="space-y-4 text-[#94A3B8] leading-relaxed">
<p>I started with inherited belief and a lot of apologetics. Over time, that became a more personal search for truth, with Scripture first, Christ at the center, and enough honesty to admit that some of my favorite frameworks were too small.</p>
<p>That meant wrestling seriously with sovereignty, free will, baptism, church life, and the kind of teaching that produces repentance, joy, unity, and love for Jesus.</p>
<p>The thing that has held steady is simple: salvation is by grace alone, through faith alone, in Jesus alone. If doctrine does not make us more honest, more humble, and more alive to God, something is off.</p>
</div>
</div>
</div>
<div class="space-y-5">
<div class="bg-[#111827] border border-white/10 rounded-3xl p-7">
<div class="uppercase tracking-[2.5px] text-[10px] font-semibold text-[#94A3B8] mb-4">JOURNEY DOCUMENTS</div>
<div class="space-y-5 text-sm">
<div>
<a href="https://docs.google.com/document/d/1Xb46dDpXdGp3hn8I7LrbZVnPESaVp7uEMHAo_5Cy_-Y/edit?usp=sharing" target="_blank" rel="noopener noreferrer" class="font-medium">Thoughts on the Bible</a>
<p class="mt-1 text-[#94A3B8]">Started in 2020 as an attempt to read what the Bible actually says, slowly and honestly, even when the answers are inconvenient.</p>
</div>
<div>
<a href="https://docs.google.com/document/d/1Ya9AB-ZIPlb9tagGyHr9ZiijVUpt_HElWuIR6ZwrQ3E/edit?usp=sharing" target="_blank" rel="noopener noreferrer" class="font-medium">God's Will & Sovereignty</a>
<p class="mt-1 text-[#94A3B8]">A long study of free will, depravity, responsibility, and divine sovereignty that pushed me toward a more careful and humble view of doctrine.</p>
</div>
<div>
<a href="https://docs.google.com/document/d/1qqXT6QfX_3ep1EMuEpqc021aJ3Vwd1EOTasuRBkqR1I/edit?usp=sharing" target="_blank" rel="noopener noreferrer" class="font-medium">Alphaeus' thoughts</a>
<p class="mt-1 text-[#94A3B8]">My reflections on moving church, and why I came to believe I needed a more Christ-centered, grace-filled place to grow.</p>
</div>
<div>
<a href="https://docs.google.com/document/d/1n96U7_bafQTATQ9rka5kOTmFwYKz1C3Q9V8nYBkf2Kg/edit?usp=sharing" target="_blank" rel="noopener noreferrer" class="font-medium">Baptism Testimony</a>
<p class="mt-1 text-[#94A3B8]">A short account of apologetics, sin, and the point where grace stopped being a concept and became something I actually needed.</p>
</div>
<div>
<a href="https://docs.google.com/presentation/d/1hNu3gjw93FmK6fgL74YbJVZAVtH_Zj3T3uolCAHzxoI/edit?usp=sharing" target="_blank" rel="noopener noreferrer" class="font-medium">Revelation 21:9–21 sermon deck</a>
<p class="mt-1 text-[#94A3B8]">From my brief season pursuing a Masters in Ministry at <a href="https://www.hcu.edu/" target="_blank" rel="noopener noreferrer" class="transition">Heritage Christian University</a>. It focuses on the New Jerusalem, final victory, and God dwelling with His people.</p>
</div>
</div>
</div>
<div class="bg-[#111827] border border-white/10 rounded-3xl p-7">
<div class="uppercase tracking-[2.5px] text-[10px] font-semibold text-[#94A3B8] mb-3">NORTH STAR</div>
<p class="text-[#E2E8F0] text-lg tracking-tight section-header">The created creating, pursuing the Uncaused Cause.</p>
<p class="mt-3 text-sm leading-relaxed text-[#94A3B8]">A personal reminder: build things that are true enough to use, and keep studying under the God who made the world those models approximate.</p>
</div>
</div>
</div>
</section>
<!-- Connect -->
<section id="connect" class="border-t border-white/10 bg-[#111827] py-20 md:py-24 scroll-mt-20">
<div class="max-w-3xl mx-auto px-6 text-center">
<div class="uppercase tracking-[3px] text-xs font-semibold text-[#94A3B8] mb-3">CONTACT</div>
<h2 class="section-header text-6xl tracking-tighter mb-4">Connect</h2>
<p class="text-lg md:text-xl text-[#94A3B8] max-w-xl mx-auto leading-relaxed">
Based in Singapore. For roles, collaborations, or questions about the work: email or LinkedIn. CV downloads below (no form, no login).
</p>
<div id="cv-downloads" class="mt-9 max-w-xl mx-auto w-full text-left">
<div class="bg-[#0F172A] border border-white/10 rounded-2xl p-5 sm:p-6">
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-y-1 mb-4">
<div>
<div class="uppercase tracking-[2.5px] text-[10px] font-semibold text-[#94A3B8]">RESUME / CV</div>
<div class="text-[17px] sm:text-lg font-semibold tracking-tight text-white mt-0.5">Direct download</div>
</div>
<div class="text-[10px] text-[#64748B] sm:text-right font-medium">File on site · PDF & DOCX</div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-2.5">
<a href="assets/resume.pdf" download="Alphaeus-Ng-Resume.pdf"
class="group flex items-center gap-3 rounded-xl border border-white/15 bg-white/[0.035] px-4 py-3 hover:border-[#C9A227] hover:bg-[#C9A227]/10 transition-all">
<div class="flex h-9 w-9 flex-shrink-0 items-center justify-center rounded-lg bg-[#C9A227]/10 text-[#C9A227] text-xs font-bold">PDF</div>
<div class="min-w-0">
<div class="font-semibold text-[#E2E8F0] group-hover:text-white text-sm">Download PDF</div>
<div class="text-[11px] text-[#94A3B8]">Best for ATS / printing</div>
</div>
</a>
<a href="assets/resume.docx" download="Alphaeus-Ng-Resume.docx"
class="group flex items-center gap-3 rounded-xl border border-white/15 bg-white/[0.035] px-4 py-3 hover:border-[#C9A227] hover:bg-[#C9A227]/10 transition-all">
<div class="flex h-9 w-9 flex-shrink-0 items-center justify-center rounded-lg bg-[#C9A227]/10 text-[#C9A227] text-[10px] font-bold">DOCX</div>
<div class="min-w-0">
<div class="font-semibold text-[#E2E8F0] group-hover:text-white text-sm">Download DOCX</div>
<div class="text-[11px] text-[#94A3B8]">Editable Word format</div>
</div>
</a>
</div>
<p class="mt-4 text-[11px] text-[#64748B] leading-relaxed">
Prefer a live link?
<a href="https://docs.google.com/document/d/13kFCvREXmmXATNZhuG3DNd3wkhK-uHIq/edit?usp=drive_link" target="_blank" rel="noopener noreferrer">Open Google Drive version →</a>
</p>
</div>
</div>
<div class="mt-8 flex flex-col items-center gap-y-4">
<button type="button"
class="email-copy-btn group flex w-full max-w-md items-center justify-center gap-x-3 rounded-2xl border border-white/15 px-8 py-4 text-base sm:text-lg font-medium hover:bg-[#C9A227]/10 hover:border-[#C9A227]/55 transition-all"
data-email="alphaolivegreen@gmail.com"
data-email-label="alphaolivegreen@gmail.com"
aria-label="Copy email address alphaolivegreen@gmail.com">
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2.01 2.01 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
<span class="email-copy-label break-all">alphaolivegreen@gmail.com</span>
</button>
<div class="flex flex-wrap justify-center gap-3 pt-1 text-sm">
<a href="https://www.linkedin.com/in/alphaeus-ng" target="_blank" rel="me noopener noreferrer" class="px-6 py-2.5 rounded-full border border-white/10 hover:border-[#C9A227]/50 transition">
LinkedIn
</a>
<a href="https://github.com/AlphaeusNg" target="_blank" rel="me noopener noreferrer" class="px-6 py-2.5 rounded-full border border-white/10 hover:border-[#C9A227]/50 transition">
GitHub
</a>
</div>
</div>
<!-- Fun side link — deliberately separate from professional contact -->
<a href="https://alphaeusng.github.io/AlpArcade/" target="_blank" rel="noopener noreferrer"
class="mt-10 mx-auto max-w-md w-full group flex items-center gap-4 rounded-2xl border border-white/10 bg-white/[0.03] px-5 py-4 text-left hover:border-[#C9A227]/45 hover:bg-[#C9A227]/8 transition-all">
<div class="flex h-11 w-11 flex-shrink-0 items-center justify-center rounded-xl bg-[#C9A227]/12 text-lg" aria-hidden="true">🕹️</div>
<div class="min-w-0 flex-1">
<div class="text-[11px] uppercase tracking-[2px] text-[#94A3B8] font-semibold">Arcade</div>
<div class="text-[15px] font-semibold text-[#E2E8F0] group-hover:text-white">Need a break? Have an AlpArcade</div>
<div class="text-[12px] text-[#64748B] mt-0.5">Tic-tac-toe · shooter · snake · reaction · memory</div>
</div>
<span class="text-[#C9A227] text-sm font-medium flex-shrink-0">Play →</span>
</a>
<div class="mt-14 text-[10px] tracking-[1.5px] text-[#475569]">
SINGAPORE · OPEN TO RELEVANT OPPORTUNITIES
</div>
</div>
</section>
<!-- Support lives outside connect; Feedback mounts in the page footer -->
<div class="border-t border-white/10 bg-[#0B1220] py-12 px-6">
<div class="support-card mx-auto max-w-xl w-full">
<div class="support-card-copy">
<div class="support-card-top">
<div>
<div class="support-card-eyebrow">SUPPORT MY OPEN PROJECTS</div>
<h3>Found something helpful?</h3>
</div>
</div>
<p>
If one of my projects saved you time, or you would simply like to
support more open work, you can buy me a <a href="https://ko-fi.com/K1V623R7BV" target="_blank" rel="me noopener noreferrer">coffee</a>. No pressure —
everything here stays free to use.
</p>
</div>
</div>
</div>
<footer class="py-10 text-center text-xs text-[#475569] border-t border-white/5">
<p class="mb-2 text-[11px] tracking-[0.08em] text-[#64748B]">The created creating, pursuing the Uncaused Cause.</p>
© Alphaeus Ng. All rights reserved.
<span class="mx-2 opacity-40">·</span>
<a href="https://github.com/AlphaeusNg/alphaeusng.github.io" target="_blank" rel="noopener noreferrer">Source code</a>
<span class="mx-2 opacity-40">·</span>
<a href="https://ko-fi.com/K1V623R7BV" target="_blank" rel="me noopener noreferrer">Support me on Ko-fi</a>
<span class="mx-2 opacity-40">·</span>
<a href="pages/conviction.html" class="transition">Conviction</a>
<span class="mx-2 opacity-40">·</span>
<a href="https://alphaeusng.github.io/AIly/" target="_blank" rel="noopener noreferrer" class="transition">AIly</a>
<span class="mx-2 opacity-40">·</span>
<a href="https://alphaeusng.github.io/KoboForge/" class="transition">KoboForge</a>
<span class="mx-2 opacity-40">·</span>
<a href="https://alphaeusng.github.io/AlpArcade/" target="_blank" rel="noopener noreferrer" class="transition">AlpArcade</a>
<span class="mx-2 opacity-40">·</span>
<a href="https://alphaeusng.github.io/VerseKeep/" target="_blank" rel="noopener noreferrer" class="transition">VerseKeep</a>
<span class="mx-2 opacity-40">·</span>
<a href="https://alphaeusng.github.io/ChristoDay/" target="_blank" rel="noopener noreferrer" class="transition">ChristoDay</a>
<span class="mx-2 opacity-40">·</span>
<a href="https://alphaeusng.github.io/CardFitSG/" target="_blank" rel="noopener noreferrer" class="transition">CardFitSG</a>
<span class="mx-2 opacity-40">·</span>
<a href="pages/seeking-biblical-truth/" class="transition">Biblical Truth</a>
<span class="mx-2 opacity-40">·</span>
<span id="site-version" class="font-mono text-[#64748B]" title="Bump js/version.js on each deploy">v—</span>
</footer>
<script src="js/version.js"></script>
<!-- Rich Project Case Study Modal (hardened minimal shell) -->
<!-- All project-specific content (text, visuals, actions) is injected by openRichProjectModal via targeted DOM updates.
The original full Seeking Biblical Truth static markup has been stripped (was dead weight; never shown post-JS).
Stable IDs establish a clear DOM contract for the renderer (see JS comments in openRichProjectModal). -->
<div id="project-modal" class="hidden fixed inset-0 z-[100] flex items-center justify-center p-4 md:p-8" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="modal-title">
<!-- Backdrop -->
<div onclick="closeProjectModal()" class="modal-backdrop absolute inset-0 bg-black/85"></div>
<!-- Modal panel -->
<div class="modal relative w-full max-w-[720px] bg-[#0A0F1C] border border-white/10 rounded-3xl shadow-2xl overflow-hidden max-h-[94vh] flex flex-col">
<!-- Header (stable IDs for hardened selection) -->
<div id="modal-header" class="flex items-start justify-between px-8 pt-7 pb-6 border-b border-white/10">
<div id="modal-header-content">
<div id="modal-badges" class="flex items-center gap-x-3 mb-2">
<!-- Badges populated dynamically by openRichProjectModal (project-badge class) -->
</div>
<h3 id="modal-title" class="section-header text-[34px] leading-none tracking-tighter"></h3>
</div>
<button onclick="closeProjectModal()"
class="mt-1 w-9 h-9 flex items-center justify-center text-[#64748B] hover:text-[#C9A227] transition rounded-full hover:bg-white/5 focus:outline-none focus:ring-1 focus:ring-[#C9A227]/40"
aria-label="Close modal">
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2.5">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<!-- Scrollable case study body (populated by renderer; .case-study CSS applies to children) -->
<div id="modal-case-study-body" class="case-study overflow-y-auto px-8 py-7 text-[15px] flex-1">
<!-- Content (intro, h4 sections, .intersection, quotes, visuals) injected via appendChild / textContent. Starts empty. -->
</div>
<!-- Footer actions (primary/secondary links populated dynamically) -->
<div id="modal-footer-actions" class="px-8 py-5 bg-[#111827] border-t border-white/10 flex flex-col sm:flex-row sm:items-center gap-3 text-sm">
<!-- Action buttons injected by openRichProjectModal -->
</div>