-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1543 lines (1467 loc) · 70.4 KB
/
Copy pathindex.html
File metadata and controls
1543 lines (1467 loc) · 70.4 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="zh-Hant">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>何玟叡 Wayne He — Senior Android Engineer</title>
<meta name="description" content="何玟叡 Wayne He — 擁有 6 年經驗的 Android 開發工程師,專注於 MVVM 架構、Jetpack 與 Kotlin Multiplatform 跨平台技術。">
<link rel="canonical" href="https://waynehe1221.github.io/">
<!-- Open Graph / social preview -->
<meta property="og:type" content="profile">
<meta property="og:site_name" content="何玟叡 Wayne He">
<meta property="og:title" content="何玟叡 Wayne He — Senior Android Engineer">
<meta property="og:description" content="6 年 Android 開發經驗,專注於 MVVM 架構、Jetpack 與 Kotlin Multiplatform 跨平台技術。">
<meta property="og:url" content="https://waynehe1221.github.io/">
<meta property="og:locale" content="zh_TW">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="何玟叡 Wayne He — Senior Android Engineer">
<meta name="twitter:description" content="6 年 Android 開發經驗,專注於 MVVM 架構、Jetpack 與 Kotlin Multiplatform 跨平台技術。">
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#0d1117" media="(prefers-color-scheme: dark)">
<!-- 結構化資料:讓搜尋引擎把這頁認成「一個人」而不只是一份網頁 -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "何玟叡",
"alternateName": "Wayne He",
"url": "https://waynehe1221.github.io/",
"email": "mailto:thumbe31949@gmail.com",
"jobTitle": "Android 資深高階工程師",
"description": "擁有 6 年 Android 開發經驗,專注於 MVVM 架構與 Jetpack,並投入行動裝置端 AI 運算應用與 Kotlin Multiplatform 跨平台開發。",
"worksFor": {
"@type": "Organization",
"name": "中華資安國際股份有限公司",
"alternateName": "CHT Security",
"url": "https://www.chtsecurity.com/"
},
"alumniOf": {
"@type": "CollegeOrUniversity",
"name": "臺北市立大學 資訊科學系"
},
"address": {
"@type": "PostalAddress",
"addressRegion": "新北市",
"addressCountry": "TW"
},
"knowsAbout": [
"Android", "Kotlin", "Java", "Jetpack Compose", "MVVM",
"Kotlin Multiplatform", "Compose Multiplatform",
"行動裝置端 AI 推論", "Mobile Application Security"
],
"sameAs": [
"https://github.com/WayneHe1221",
"https://tw.linkedin.com/in/%E7%8E%9F%E5%8F%A1-%E4%BD%95-82a766b1"
]
}
</script>
<script>
// 在渲染前套用主題,避免深色模式使用者看到白底閃爍
(function () {
try {
var saved = localStorage.getItem("theme");
if (saved === "dark" || saved === "light") {
document.documentElement.setAttribute("data-theme", saved);
}
} catch (e) { /* localStorage 不可用時沿用系統偏好 */ }
})();
</script>
<style>
:root {
color-scheme: light;
--bg: #ffffff;
--bg-alt: #f6f8fa;
--text: #1f2328;
--text-soft: #57606a;
--border: #e1e4e8;
--accent: #2563eb;
--accent-hover: #1d4ed8;
--accent-soft: #e8f0fe;
--on-accent: #ffffff;
--nav-bg: rgba(255, 255, 255, 0.85);
--shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
--ai-bg: #f3e8ff;
--ai-fg: #6b21a8;
--ai-border: #e2ceff;
--pending-bg: #fff4e5;
--pending-fg: #8a4b00;
--pending-border: #ffe0b8;
--ok-bg: #e6f7ec;
--ok-fg: #1a7f37;
--ok-border: #b7e4c7;
--radius: 10px;
--maxw: 800px;
--font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC",
"Microsoft JhengHei", "Noto Sans TC", Roboto, Helvetica, Arial, sans-serif;
--mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}
/* ---- Dark theme ---- */
/* 預設跟隨系統;使用者手動切換時由 data-theme 覆蓋 */
@media (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) {
color-scheme: dark;
--bg: #0d1117;
--bg-alt: #161b22;
--text: #e6edf3;
--text-soft: #9198a1;
--border: #30363d;
--accent: #4493f8;
--accent-hover: #6cb0fa;
--accent-soft: rgba(56, 139, 253, 0.16);
--on-accent: #0d1117;
--nav-bg: rgba(13, 17, 23, 0.85);
--shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
--ai-bg: rgba(168, 85, 247, 0.16);
--ai-fg: #d9b3ff;
--ai-border: rgba(168, 85, 247, 0.38);
--pending-bg: rgba(245, 158, 11, 0.16);
--pending-fg: #fcd34d;
--pending-border: rgba(245, 158, 11, 0.38);
--ok-bg: rgba(63, 185, 80, 0.16);
--ok-fg: #57d364;
--ok-border: rgba(63, 185, 80, 0.38);
}
}
:root[data-theme="dark"] {
color-scheme: dark;
--bg: #0d1117;
--bg-alt: #161b22;
--text: #e6edf3;
--text-soft: #9198a1;
--border: #30363d;
--accent: #4493f8;
--accent-hover: #6cb0fa;
--accent-soft: rgba(56, 139, 253, 0.16);
--on-accent: #0d1117;
--nav-bg: rgba(13, 17, 23, 0.85);
--shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
--ai-bg: rgba(168, 85, 247, 0.16);
--ai-fg: #d9b3ff;
--ai-border: rgba(168, 85, 247, 0.38);
--pending-bg: rgba(245, 158, 11, 0.16);
--pending-fg: #fcd34d;
--pending-border: rgba(245, 158, 11, 0.38);
--ok-bg: rgba(63, 185, 80, 0.16);
--ok-fg: #57d364;
--ok-border: rgba(63, 185, 80, 0.38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--font);
color: var(--text);
background: var(--bg);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
/* ---- Nav ---- */
header.nav {
position: sticky;
top: 0;
z-index: 10;
background: var(--nav-bg);
backdrop-filter: saturate(180%) blur(10px);
border-bottom: 1px solid var(--border);
}
.nav-inner {
max-width: var(--maxw);
margin: 0 auto;
padding: 14px 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.nav-brand { font-weight: 700; letter-spacing: 0.3px; }
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav-links a { color: var(--text-soft); font-size: 0.92rem; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 18px; }
/* ---- Theme toggle ---- */
.theme-toggle {
flex: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
padding: 0;
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--bg-alt);
color: var(--text-soft);
cursor: pointer;
font: inherit;
line-height: 1;
transition: color 0.15s ease, border-color 0.15s ease;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.theme-toggle svg { width: 17px; height: 17px; display: block; }
/* 淺色時顯示月亮(點了會變深色);深色時顯示太陽 */
.theme-toggle .icon-sun { display: none; }
@media (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
:root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }
/* ---- Layout ---- */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0 8px; scroll-margin-top: 70px; }
.section-label {
font-family: var(--mono);
font-size: 0.8rem;
color: var(--accent);
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 8px;
}
h2 { font-size: 1.5rem; margin: 0 0 24px; }
/* ---- Hero ---- */
.hero { padding: 84px 0 36px; }
.hero h1 { font-size: 2.6rem; line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.5px; }
.hero h1 .en { color: var(--text-soft); font-weight: 500; font-size: 1.6rem; }
.hero .role { font-size: 1.15rem; color: var(--accent); font-weight: 600; margin: 0 0 20px; }
.hero p { font-size: 1.08rem; color: var(--text-soft); max-width: 660px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
display: inline-block;
padding: 10px 20px;
border-radius: var(--radius);
font-size: 0.95rem;
font-weight: 600;
border: 1px solid var(--border);
transition: all 0.15s ease;
}
.btn-primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
/* ---- About ---- */
.about p { color: var(--text-soft); font-size: 1.02rem; }
.about strong { color: var(--text); }
.edu {
margin-top: 20px;
padding: 14px 18px;
background: var(--bg-alt);
border-radius: var(--radius);
border: 1px solid var(--border);
font-size: 0.95rem;
}
.edu .k { font-family: var(--mono); color: var(--accent); font-size: 0.82rem; }
/* ---- Skills ---- */
.skills-grid {
display: grid;
grid-template-columns: 1fr; /* 一個分類一列,橫向排開比較好掃讀 */
gap: 12px;
}
.skill-card {
display: flex;
align-items: baseline;
gap: 18px;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 14px 20px;
background: var(--bg-alt);
}
.skill-card h3 {
margin: 0;
font-size: 1rem;
flex: none;
width: 96px;
}
.skill-card .tags { flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
font-family: var(--mono);
font-size: 0.8rem;
background: var(--accent-soft);
color: var(--accent);
padding: 3px 10px;
border-radius: 999px;
}
/* ---- Timeline (experience) ---- */
.timeline { border-left: 2px solid var(--border); padding-left: 24px; margin-left: 4px; }
.item { position: relative; padding-bottom: 34px; }
.item:last-child { padding-bottom: 0; }
.item::before {
content: "";
position: absolute;
left: -31px;
top: 6px;
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--accent);
border: 2px solid var(--bg);
}
.item .when { font-family: var(--mono); font-size: 0.82rem; color: var(--text-soft); }
.item h3 { margin: 4px 0 2px; font-size: 1.1rem; }
.item .org { color: var(--accent); font-size: 0.95rem; margin-bottom: 4px; font-weight: 600; }
.item .desc { color: var(--text-soft); font-size: 0.96rem; margin: 4px 0 0; }
.item ul { margin: 10px 0 0; padding-left: 18px; color: var(--text-soft); }
.item li { margin-bottom: 5px; }
/* ---- Role progression (晉升軌跡) ---- */
.roles {
margin: 10px 0 2px;
border-left: 2px solid var(--accent-soft);
padding-left: 12px;
}
.role-row {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 4px 10px;
font-size: 0.9rem;
}
.role-row + .role-row { margin-top: 2px; }
.role-row .role-name { color: var(--text); font-weight: 600; }
.role-row:not(:first-child) .role-name { color: var(--text-soft); font-weight: 400; }
.role-row .role-when { font-family: var(--mono); font-size: 0.78rem; color: var(--text-soft); }
/* ---- Projects ---- */
.proj-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr)); /* 固定一列 2 個 */
gap: 18px;
}
/* 專案經歷:卡片內容較多,一列只放一個,讀起來不會被壓縮 */
.proj-grid.single { grid-template-columns: 1fr; }
/* 整列寬的卡片改用左右分欄:截圖靠左、條列靠右,
填掉原本兩側的空白,卡片高度也縮短不少。 */
.proj-grid.single .proj-card {
display: grid;
/* 截圖欄貼合內容寬度,但以 .shots 的 max-width 為上限:
3 張以內剛好排滿,超過就在欄內左右捲動;沒有截圖時軌道收成 0。 */
grid-template-columns: minmax(0, max-content) 1fr;
column-gap: 24px;
align-items: start;
}
/* 標題與底部連結列橫跨整個卡片寬度 */
.proj-grid.single .proj-card > h3,
.proj-grid.single .proj-card > .proj-org,
.proj-grid.single .proj-card > .sub,
.proj-grid.single .proj-card > .stack,
.proj-grid.single .proj-card > .badges,
.proj-grid.single .proj-card > .platforms,
.proj-grid.single .proj-card > .shots-note,
.proj-grid.single .proj-card > .link-row { grid-column: 1 / -1; }
.proj-grid.single .proj-card > .shots { grid-column: 1; }
.proj-grid.single .proj-card > ul { grid-column: 2; }
/* 沒有截圖的卡片,條列自己占滿整列 */
.proj-grid.single .proj-card:not(:has(.shots)) > ul { grid-column: 1 / -1; }
/* grid 中 margin-top:auto 不再產生推擠效果,改用固定間距 */
.proj-grid.single .proj-card > .link-row { margin-top: 16px; }
/* 截圖超過 3 張時在欄內左右捲動 */
.proj-grid.single .shots {
max-width: 244px; /* 約等於 3 張縮圖的寬度 */
scroll-snap-type: inline proximity;
overscroll-behavior-inline: contain;
}
.proj-grid.single .shots button { scroll-snap-align: start; }
/* 捲動箭頭(由 JS 在有溢出時才插入,沒有 JS 也還能原生捲動) */
.shots-wrap { position: relative; min-width: 0; }
.proj-grid.single .proj-card > .shots-wrap { grid-column: 1; }
.shots-nav {
position: absolute;
top: 68px; /* 2px 上內距 + 132px 縮圖的一半,對齊縮圖垂直中心 */
transform: translateY(-50%);
width: 26px;
height: 26px;
padding: 0;
display: grid;
place-items: center;
border: 1px solid var(--border);
border-radius: 999px;
background: var(--bg);
color: var(--text);
cursor: pointer;
box-shadow: var(--shadow);
transition: border-color 0.15s ease, color 0.15s ease;
}
.shots-nav:hover { border-color: var(--accent); color: var(--accent); }
.shots-nav:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.shots-nav svg { width: 15px; height: 15px; }
.shots-nav-prev { left: -10px; }
.shots-nav-next { right: -10px; }
/* display: grid 會蓋掉 hidden 屬性預設的 display: none,要補回來 */
.shots-nav[hidden] { display: none; }
@media (max-width: 760px) {
.proj-grid { grid-template-columns: 1fr; }
/* 窄螢幕放不下「截圖 + 條列」並排,收回上下堆疊 */
.proj-grid.single .proj-card { display: flex; flex-direction: column; }
.proj-grid.single .proj-card > .link-row { margin-top: auto; }
/* 堆疊後截圖列可用整個卡片寬度,解除 3 張的寬度上限 */
.proj-grid.single .shots { max-width: none; }
}
.proj-card {
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 20px;
display: flex;
flex-direction: column;
transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.proj-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.proj-card h3 {
margin: 0 0 4px;
font-size: 1.08rem;
display: flex;
align-items: center;
gap: 9px;
}
/* 上架產品的 App icon */
.app-icon {
width: 26px;
height: 26px;
border-radius: 6px;
flex: none;
background: var(--bg-alt);
}
.proj-card .proj-org {
font-size: 0.78rem;
color: var(--accent);
font-weight: 600;
margin: 0 0 6px;
}
.proj-card .sub { color: var(--text-soft); font-size: 0.9rem; margin: 0 0 10px; }
.proj-card .stack { font-family: var(--mono); font-size: 0.78rem; color: var(--accent); margin-bottom: 12px; }
.proj-card ul { margin: 0; padding-left: 18px; color: var(--text-soft); font-size: 0.92rem; }
.proj-card li { margin-bottom: 4px; }
.proj-card .link-row {
margin-top: auto; /* 貼齊卡片底部,讓同列卡片的連結列對齊 */
padding-top: 12px;
border-top: 1px solid var(--border);
font-size: 0.86rem;
display: flex;
align-items: center;
gap: 6px;
}
.proj-card .link-row .muted { color: var(--text-soft); font-family: var(--mono); font-size: 0.78rem; }
.platforms {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-bottom: 12px;
}
.platform {
font-family: var(--mono);
font-size: 0.72rem;
border: 1px solid var(--border);
color: var(--text-soft);
padding: 2px 8px;
border-radius: 4px;
}
/* ---- Badges ---- */
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; }
.badge {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 0.75rem;
font-weight: 600;
padding: 3px 9px;
border-radius: 999px;
border: 1px solid transparent;
white-space: nowrap;
}
.badge-ai {
background: var(--ai-bg);
color: var(--ai-fg);
border-color: var(--ai-border);
}
.badge-pending {
background: var(--pending-bg);
color: var(--pending-fg);
border-color: var(--pending-border);
}
/* 現在主力投入的產品 */
.badge-flagship {
background: var(--accent-soft);
color: var(--accent);
border-color: var(--accent);
}
.badge-new {
background: var(--ok-bg);
color: var(--ok-fg);
border-color: var(--ok-border);
}
.badge-cert {
background: var(--bg-alt);
color: var(--text-soft);
border-color: var(--border);
}
.badge svg { width: 12px; height: 12px; }
/* ---- 專利與認證 ---- */
.cert-list { display: flex; flex-direction: column; gap: 16px; }
.cert-item {
display: flex;
gap: 16px;
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--bg-alt);
padding: 18px 20px;
}
.cert-kind {
flex: none;
font-family: var(--mono);
font-size: 0.72rem;
letter-spacing: 0.5px;
color: var(--accent);
background: var(--accent-soft);
border: 1px solid var(--accent-soft);
border-radius: 4px;
padding: 3px 8px;
height: fit-content;
margin-top: 3px;
white-space: nowrap;
}
.cert-body { min-width: 0; }
.cert-body h3 { margin: 0 0 6px; font-size: 1rem; line-height: 1.5; }
.cert-meta {
margin: 0 0 8px;
font-family: var(--mono);
font-size: 0.78rem;
line-height: 1.7;
color: var(--text-soft);
}
.cert-desc { margin: 0 0 10px; font-size: 0.9rem; color: var(--text-soft); }
.cert-body .link-row { margin: 0; }
@media (max-width: 560px) {
.cert-item { flex-direction: column; gap: 10px; }
.cert-kind { margin-top: 0; }
}
/* ---- Screenshot gallery ---- */
.shots {
display: flex;
gap: 8px;
overflow-x: auto;
padding: 2px 2px 10px;
margin: 2px 0 4px;
scrollbar-width: thin;
}
.shots button {
flex: none;
padding: 0;
border: 1px solid var(--border);
border-radius: 8px;
background: var(--bg-alt);
cursor: zoom-in;
overflow: hidden;
line-height: 0;
transition: border-color 0.15s ease, transform 0.15s ease;
}
.shots button:hover { border-color: var(--accent); transform: translateY(-2px); }
.shots button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.shots img { height: 132px; width: auto; display: block; }
.shots-note {
margin: 0 0 12px;
font-size: 0.8rem;
line-height: 1.55;
color: var(--text-soft);
}
/* ---- Lightbox ---- */
.lightbox {
position: fixed;
inset: 0;
z-index: 100;
display: none;
align-items: center;
justify-content: center;
padding: 24px;
background: rgba(0, 0, 0, 0.82);
backdrop-filter: blur(4px);
}
.lightbox[open] { display: flex; }
.lightbox img {
max-width: min(100%, 520px);
max-height: calc(100vh - 96px);
width: auto;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox .lb-caption {
position: absolute;
bottom: 22px;
left: 0;
right: 0;
text-align: center;
color: #e6edf3;
font-size: 0.86rem;
padding: 0 20px;
}
.lightbox .lb-close {
position: absolute;
top: 16px;
right: 18px;
width: 38px;
height: 38px;
border: 1px solid rgba(255, 255, 255, 0.28);
border-radius: 50%;
background: rgba(0, 0, 0, 0.35);
color: #fff;
font-size: 1.1rem;
line-height: 1;
cursor: pointer;
}
.lightbox .lb-close:hover { background: rgba(255, 255, 255, 0.16); }
.lightbox .lb-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 42px;
height: 42px;
border: 1px solid rgba(255, 255, 255, 0.28);
border-radius: 50%;
background: rgba(0, 0, 0, 0.35);
color: #fff;
font-size: 1.3rem;
line-height: 1;
cursor: pointer;
}
.lightbox .lb-nav:hover { background: rgba(255, 255, 255, 0.16); }
.lightbox .lb-prev { left: 14px; }
.lightbox .lb-next { right: 14px; }
@media (max-width: 560px) {
.lightbox .lb-nav { width: 36px; height: 36px; }
.lightbox .lb-prev { left: 6px; }
.lightbox .lb-next { right: 6px; }
}
/* ---- Store links ---- */
.stores { display: flex; flex-wrap: wrap; gap: 8px; }
.store-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.82rem;
font-weight: 600;
padding: 5px 11px;
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text);
transition: border-color 0.15s ease, color 0.15s ease;
}
.store-link:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.store-link svg { width: 14px; height: 14px; flex: none; }
/* ---- Contact ---- */
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-row { display: flex; gap: 10px; align-items: baseline; }
.contact-row .k {
font-family: var(--mono);
font-size: 0.85rem;
color: var(--text-soft);
min-width: 88px;
}
/* ---- Footer ---- */
footer {
border-top: 1px solid var(--border);
margin-top: 72px;
padding: 28px 20px;
text-align: center;
color: var(--text-soft);
font-size: 0.85rem;
}
@media (max-width: 560px) {
.hero h1 { font-size: 2rem; }
.hero h1 .en { font-size: 1.2rem; }
.nav-links { display: none; }
/* 窄螢幕放不下「標題 + 標籤」同列,改回上下堆疊 */
.skill-card { flex-direction: column; align-items: stretch; gap: 10px; }
.skill-card h3 { width: auto; }
}
/* ---- 列印 / 另存 PDF ----
瀏覽器「列印 → 儲存為 PDF」就會套用這組樣式:強制淺色、
攤平橫向捲動的截圖列、避免卡片被分頁切斷。 */
.print-only { display: none; }
@media print {
/* 不管使用者當下是深色或淺色,列印一律用淺色,避免整頁滿版深底 */
:root, :root[data-theme="dark"], :root[data-theme="light"] {
--bg: #ffffff;
--bg-alt: #ffffff;
--text: #000000;
--text-soft: #444444;
--border: #bbbbbb;
--accent: #14507d;
--accent-soft: #eef3f8;
--ai-bg: #f4f4f4;
--ai-fg: #333333;
--ai-border: #cccccc;
--pending-bg: #f4f4f4;
--pending-fg: #333333;
--pending-border: #cccccc;
--ok-bg: #f4f4f4;
--ok-fg: #333333;
--ok-border: #cccccc;
--shadow: none;
}
@page { margin: 14mm 12mm; }
html { scroll-behavior: auto; }
body { line-height: 1.55; font-size: 10.5pt; }
.nav, .theme-toggle, .hero-cta, .lightbox, .shots-nav { display: none !important; }
.print-only { display: block; }
main { padding: 0; }
.hero { padding: 0 0 12px; }
section { margin-top: 18px; }
/* 卡片、經歷、認證盡量不要被切在兩頁之間 */
.proj-card, .item, .cert-item, .skill-card { break-inside: avoid; }
h2, h3, .section-label { break-after: avoid; }
.proj-card { box-shadow: none; }
/* 螢幕上是橫向捲動,列印時攤成可換行、縮小的縮圖 */
.shots {
overflow: visible !important;
flex-wrap: wrap;
gap: 5px;
}
.shots img { height: 78px; }
.shots-wrap { overflow: visible !important; }
/* 列印時把重要連結的網址一起印出來,紙本才追得到 */
.cert-body .store-link::after,
.contact-row a[href^="http"]::after {
content: " (" attr(href) ")";
font-family: var(--mono);
font-size: 0.72rem;
color: var(--text-soft);
word-break: break-all;
}
footer { margin-top: 24px; border-top: 1px solid var(--border); }
}
</style>
</head>
<body>
<header class="nav">
<div class="nav-inner">
<span class="nav-brand">何玟叡 Wayne He</span>
<div class="nav-right">
<nav class="nav-links">
<a href="#about">關於我</a>
<a href="#skills">技能</a>
<a href="#experience">工作經歷</a>
<a href="#credentials">專利認證</a>
<a href="#projects">專案</a>
<a href="#side-projects">個人專案</a>
<a href="#contact">聯絡</a>
</nav>
<button class="theme-toggle" id="themeToggle" type="button"
aria-label="切換深色/淺色模式" title="切換深色/淺色模式">
<svg class="icon-moon" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
<svg class="icon-sun" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<circle cx="12" cy="12" r="4"></circle>
<path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"></path>
</svg>
</button>
</div>
</div>
</header>
<main>
<!-- ===== Hero ===== -->
<section class="hero" id="top">
<h1>何玟叡 <span class="en">Wayne He</span></h1>
<p class="role">Android 資深高階工程師 · MVVM / Jetpack / Kotlin Multiplatform</p>
<p>
擁有 6 年 Android 開發經驗,專注於以 MVVM 架構與 Jetpack 撰寫更高效、更穩定的應用程式,
近期投入行動裝置端的 AI 運算應用並取得發明專利,同時以 Kotlin Multiplatform 延伸跨平台開發。
期望為團隊帶來新的助力,推動 App 產品全面性的成長。
</p>
<div class="hero-cta">
<a class="btn btn-primary" href="#contact">聯絡我</a>
<a class="btn btn-ghost" href="https://github.com/WayneHe1221" target="_blank" rel="noopener">GitHub</a>
<button class="btn btn-ghost" type="button" id="printBtn">下載 PDF</button>
</div>
</section>
<!-- ===== About ===== -->
<section class="about" id="about">
<div class="section-label">01 / About</div>
<h2>關於我</h2>
<p>
6 年 Android 開發經驗,具備以 <strong>Kotlin / Java</strong> 維護及開發專案的經驗,
目前專注於以 <strong>MVVM 架構</strong> 及 <strong>Jetpack</strong> 撰寫更高效的應用程式,
並以 <strong>Kotlin Multiplatform</strong> 實作可同時發佈到五個平台的跨平台專案,
喜歡透過參與研討會及聚會獲取技術新知。
</p>
<p>
善於針對 <strong>專案結構優化</strong>、<strong>記憶體使用優化</strong> 以及
<strong>協助產品擴展技術應用</strong>,不僅是個人的技術展現,
在團隊合作上也有十足的信心,為團隊成員帶來正向助益。
</p>
<div class="edu">
<span class="k">EDUCATION</span> | 台北市立大學 — 資訊科學系 學士(2015 – 2019)
</div>
</section>
<!-- ===== Skills ===== -->
<section id="skills">
<div class="section-label">02 / Skills</div>
<h2>Android 開發技能</h2>
<div class="skills-grid">
<div class="skill-card">
<h3>Jetpack</h3>
<div class="tags">
<span class="tag">Hilt</span>
<span class="tag">Coroutine</span>
<span class="tag">Navigation</span>
<span class="tag">Room</span>
<span class="tag">Compose</span>
</div>
</div>
<div class="skill-card">
<h3>架構與測試</h3>
<div class="tags">
<span class="tag">MVVM</span>
<span class="tag">JUnit</span>
<span class="tag">Mockk</span>
</div>
</div>
<div class="skill-card">
<h3>網路與資料</h3>
<div class="tags">
<span class="tag">Retrofit</span>
<span class="tag">OkHttp</span>
<span class="tag">SQLCipher</span>
<span class="tag">Firestore</span>
</div>
</div>
<div class="skill-card">
<h3>跨平台</h3>
<div class="tags">
<span class="tag">Kotlin Multiplatform</span>
<span class="tag">Compose Multiplatform</span>
</div>
</div>
<div class="skill-card">
<h3>影音與 AI</h3>
<div class="tags">
<span class="tag">MediaPipe</span>
<span class="tag">ExoPlayer</span>
<span class="tag">OpenCV</span>
<span class="tag">JNI</span>
</div>
</div>
<div class="skill-card">
<h3>工具與監控</h3>
<div class="tags">
<span class="tag">Crashlytics</span>
<span class="tag">LeakCanary</span>
<span class="tag">Google Analytics</span>
<span class="tag">GitHub Actions</span>
</div>
</div>
</div>
</section>
<!-- ===== Experience ===== -->
<section id="experience">
<div class="section-label">03 / Experience</div>
<h2>工作經歷</h2>
<div class="timeline">
<div class="item">
<div class="when">2023.06 – Present · Taipei, Taiwan</div>
<h3>Android 資深高階工程師</h3>
<div class="org">CHT Security 中華資安國際</div>
<div class="roles">
<div class="role-row">
<span class="role-name">升遷自 高階工程師</span>
<span class="role-when">2023.06 – 2026.03</span>
</div>
</div>
<p class="desc">專責 Android 開發,負責通信網路功能平台、加密通訊與防詐產品,並根據數據提出產品未來方向及優化。</p>
<ul>
<li>行動裝置端的 AI 運算應用技術研究:主導以 Kotlin Multiplatform 驗證端側 AI 模型的落地可行性,
成果轉為原生產品「防詐隊長」(2026.07 上線)</li>
<li>研究成果取得中華民國發明專利(第一發明人,證書號 I904976)</li>
<li>開發通信防護應用技術,產品通過行動應用 App 基本資安標章(MAS 標章)</li>
<li>引入 MVVM 及單元測試,以提升專案穩定性</li>
<li>建構開發流程及自動化佈署工作</li>
<li>整理研討會及技術新知,促進內部技術交流</li>
</ul>
</div>
<div class="item">
<div class="when">2022.06 – 2023.02 · Taipei, Taiwan</div>
<h3>Android Engineer</h3>
<div class="org">立應科技有限公司</div>
<p class="desc">負責開發公司商業化部門的 App 產品,以 MVVM 架構搭配 DI 套件建構,並串接廣告 SDK 獲取收益。</p>
<ul>
<li>獨立開發訊息備份工具並上架</li>
<li>維護各個 App 的廣告系統</li>
<li>維護各個 App 的未崩潰率超過 99%</li>
<li>研究競品 App 的功能</li>
</ul>
</div>
<div class="item">
<div class="when">2021.03 – 2022.05 · Taipei, Taiwan</div>
<h3>Android 工程師</h3>
<div class="org">英屬維京群島商易創投有限公司</div>
<p class="desc">負責開發電商 App 平台,主要與香港開發團隊遠端合作。</p>
<ul>
<li>透過 UI 元件模組化提升程式碼複用比例</li>
<li>翻新 Google Analytics 埋點模組及埋點位置</li>
<li>使用 ExoPlayer 為產品新增影片播放功能</li>
<li>基於前端商業邏輯部署,實作推薦商品給用戶的功能</li>
</ul>
</div>
<div class="item">
<div class="when">2020.04 – 2021.02 · Taipei, Taiwan</div>
<h3>Android 工程師</h3>
<div class="org">傲視科技 StrateVision</div>
<p class="desc">負責開發 Android TV 平台 App,協助與客戶溝通需求及釋疑的工作。</p>
<ul>
<li>透過 log、ANR、tombstone 除錯 App 問題</li>
<li>協助裝置通過 Google 官方 CTS 相關認證</li>
</ul>
</div>
</div>
</section>
<!-- ===== Patents & Certifications ===== -->
<section id="credentials">
<div class="section-label">04 / Patents & Certifications</div>
<h2>專利與認證</h2>
<div class="cert-list">
<div class="cert-item">
<span class="cert-kind">發明專利</span>
<div class="cert-body">
<h3>利用人工智慧防詐之使用者裝置、方法及電腦可讀媒介</h3>
<p class="cert-meta">
中華民國專利證書號 I904976 / 2025.11.11 公告 / 申請日 2024.12.20(案號 113149965)<br>
申請人:中華資安國際股份有限公司 / <strong>第一發明人</strong>
</p>
<p class="cert-desc">
以端側 AI 模型解析裝置上的推播通知,判定詐騙訊息後告警並移除高風險通知;
分析結果回傳優化後再更新裝置端模型。此專利即「防詐隊長」的核心技術。
</p>
<div class="link-row stores">
<a class="store-link" href="https://tiponet.tipo.gov.tw/twpat1/twpatusr/00227/GA-I904976.pdf?392085763"
target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><path d="M14 2v6h6"/></svg>
專利公報 PDF
</a>
</div>
</div>
</div>
<div class="cert-item">
<span class="cert-kind">資安標章</span>
<div class="cert-body">
<h3>行動應用 App 基本資安標章(MAS 標章)</h3>
<p class="cert-meta">中華網安助手 / CHT Security 中華資安國際</p>
<p class="cert-desc">依 MAS 基本資安規範完成檢測並取得標章。</p>
</div>
</div>
<div class="cert-item">
<span class="cert-kind">平台認證</span>
<div class="cert-body">
<h3>Google CTS 相容性測試</h3>