-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
246 lines (217 loc) · 13.2 KB
/
Copy pathindex.html
File metadata and controls
246 lines (217 loc) · 13.2 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
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reco Fu | 系統實證與協作規格書</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Noto+Serif+TC:wght@700&family=Noto+Sans+TC:wght@300;400;700&display=swap" rel="stylesheet">
<style>
:root {
--spec-blue: #003366;
--spec-grey: #454d55;
--spec-bg: #f8f9fa;
--spec-border: #dee2e6;
--accent: #2980b9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Noto Sans TC', sans-serif;
background-color: #e9ecef;
color: #212529;
line-height: 1.6;
padding: 40px 10px;
}
.spec-container {
max-width: 950px;
margin: 0 auto;
background: #ffffff;
border: 2px solid var(--spec-blue);
padding: 60px;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.spec-container::before {
content: "SERIAL_NO: 40Y_RECO_INT_21H";
position: absolute; top: 10px; right: 15px;
font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #ccc;
}
/* Header */
header { border-bottom: 3px solid var(--spec-blue); padding-bottom: 20px; margin-bottom: 40px; }
.name { font-family: 'Noto Serif TC', serif; font-size: 48px; color: var(--spec-blue); }
.tagline { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--spec-grey); margin-top: 5px; letter-spacing: 1px; }
/* Interaction Protocol */
.protocol-section {
background: #f1f4f8;
border-left: 5px solid var(--spec-blue);
padding: 25px;
margin-bottom: 30px;
}
.protocol-title { font-weight: 900; font-size: 18px; margin-bottom: 15px; color: var(--spec-blue); border-bottom: 1px solid #d1d9e6; padding-bottom: 5px; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.guide-item h5 { font-weight: 700; font-size: 13px; margin-bottom: 10px; color: var(--spec-grey); text-transform: uppercase; }
.guide-item ul { list-style: none; font-size: 14px; }
.guide-item ul li { margin-bottom: 5px; position: relative; padding-left: 15px; }
.guide-item ul li::before { content: "»"; position: absolute; left: 0; color: var(--spec-blue); }
/* Communication Ports (Contact) */
.contact-ports {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin-bottom: 40px;
}
.port-card {
border: 1px solid var(--spec-border);
padding: 15px;
text-decoration: none;
color: inherit;
display: flex;
align-items: center;
transition: 0.2s;
background: #fff;
}
.port-card:hover { border-color: var(--spec-blue); background: #f0f7ff; }
.port-card strong { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--spec-blue); width: 80px; }
.port-card span { font-size: 14px; color: #333; }
/* Ten Battles */
.section-title {
font-family: 'Noto Serif TC', serif; font-size: 22px; color: var(--spec-blue);
margin: 40px 0 25px 0; border-bottom: 1px solid var(--spec-blue);
display: flex; justify-content: space-between; align-items: baseline;
}
.section-title span { font-size: 12px; font-family: 'JetBrains Mono', monospace; color: #999; }
.battle-record { margin-bottom: 25px; padding-left: 15px; border-left: 1px solid #eee; }
.battle-line-1 { font-weight: 700; font-size: 16px; color: #111; display: flex; justify-content: space-between; }
.battle-line-2 { font-size: 14px; color: #333; margin-top: 3px; }
.battle-line-3 { font-size: 13px; color: #777; font-style: italic; }
/* Project Links */
.lab-links { display: flex; gap: 20px; margin-top: 30px; }
.lab-card {
flex: 1; border: 1px solid var(--spec-blue); padding: 20px;
text-decoration: none; color: inherit; transition: 0.3s;
background: #fafbfc;
}
.lab-card:hover { background: #eef6ff; transform: translateY(-3px); }
.lab-card strong { color: var(--spec-blue); font-size: 15px; display: block; margin-bottom: 5px; }
.lab-card p { font-size: 12px; color: #666; }
footer { margin-top: 80px; padding-top: 20px; border-top: 1px solid var(--spec-border); font-size: 11px; text-align: center; color: #999; }
@media (max-width: 750px) {
.spec-container { padding: 30px; }
.guide-grid, .contact-ports { grid-template-columns: 1fr; }
.lab-links { flex-direction: column; }
}
</style>
</head>
<body>
<div class="spec-container">
<header>
<div class="name">傅瑞乾 Reco Fu</div>
<div class="tagline">SYSTEMS ARCHITECT | ROOT CAUSE ANALYST | 40Y DATA INTEGRITY</div>
</header>
<!-- 💡 介面說明書 -->
<div class="protocol-section">
<div class="protocol-title">🔌 系統協作協議 (User Interface Spec)</div>
<div class="guide-grid">
<div class="guide-item">
<h5>💪 核心特質 (Pros)</h5>
<ul>
<li><strong>根因判定</strong>:無視表面修補,直接定址物理或協議層失效點。</li>
<li><strong>零遺失紀錄</strong>:40 年數據零遺失、零中毒,誠信寫在硬體邏輯中。</li>
<li><strong>高難度導向</strong>:專注於有趣、強大、具備挑戰性的非線性系統難題。</li>
</ul>
</div>
<div class="guide-item">
<h5>⚠️ 運行規範 (Specs)</h5>
<ul>
<li><strong>高密度溝通</strong>:請跳過寒暄與裝熟,直接交換邏輯、數據與真跡。</li>
<li><strong>反官僚架構</strong>:不參與冗餘會議,目標是極速解決問題並交付報告。</li>
<li><strong>單焦點主權</strong>:一次專注開好一台車,確保 100% 的執行精度。</li>
</ul>
</div>
</div>
</div>
<!-- 📡 通訊埠 (Contact Ports) -->
<div class="contact-ports">
<a href="mailto:reco.fu@gmail.com" class="port-card">
<strong>EMAIL</strong> <span>reco.fu@gmail.com</span>
</a>
<a href="https://www.linkedin.com/in/recofu/" target="_blank" class="port-card">
<strong>LINKEDIN</strong> <span>in/recofu</span>
</a>
<a href="https://pda.104.com.tw/profile/share/jLvRSTxdj3PtJwQt4cCOoMIYbOmq5i5T" target="_blank" class="port-card">
<strong>104</strong> <span>Reco Fu Profile</span>
</a>
</div>
<!-- ⚔️ 十場實證紀錄 -->
<div class="section-title">📜 歷史真跡紀錄 <span>(MTM CALIBRATED)</span></div>
<div class="battle-record">
<div class="battle-line-1"><span>2022–至今 | ChatGPT 整合與 AI 安全治理</span> <span>ChatGPT Expert</span></div>
<div class="battle-line-2">自研 GDI 即時守護系統與安全 API 框架,使漏洞風險下降 75% 並提升 20% 用戶體驗。</div>
<div class="battle-line-3">與數個 AI 高強度對練,校正非線性風險,確保大模型在企業環境的穩定運行。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>2021–2022 | 柬埔寨 Pih Group MIS 副理</span> <span>MIS Sub-Manager</span></div>
<div class="battle-line-2">建立 99.9% SLA 即時監控系統,完成 ISO 及 C-TPAT 反恐驗證 100% 審計成功率。</div>
<div class="battle-line-3">在極端異地環境建置據點,從零建構工廠數據化與自動化架構。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>2017–2018 | LF Internet SRE 系統工程師</span> <span>SRE Specialist</span></div>
<div class="battle-line-2">獨立診斷業界無人能解的 Broadcom NIC VMQ 隨機故障,解決數百次當機。</div>
<div class="battle-line-3">部署混合雲架構 (AWS/GCP/Azure),精通 Splunk 事件分析與 F5 Big-IP 流量治理。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>2015 | 柬埔寨勒索病毒戰役:8 小時救援</span> <span>Crisis Management</span></div>
<div class="battle-line-2">工廠遭襲全線停擺,於 8 小時內達成 100% 數據恢復且支付零贖金,救回生產命脈。</div>
<div class="battle-line-3">24 小時內交付 Root Cause 報告並重構防禦體系,守住 40 年零中毒之物理底線。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>2010–2014 | 越南與泰國 MIS 建廠治理</span> <span>Regional IT Lead</span></div>
<div class="battle-line-2">主導志強興業與 TY 集團跨國 IT 建設,導入 ERP 系統使生產管理效率提升 10%。</div>
<div class="battle-line-3">在泰國政治動盪期間維持機房 100% 穩定,平衡專業技術與地區風險管理。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>2003–2020 | 無人值守量化系統開發</span> <span>Quant Architect</span></div>
<div class="battle-line-2">人在海外,機器在台運行 9 年。5 萬起步達成 27 倍收益,經歷多次黑天鵝實證。</div>
<div class="battle-line-3">驗證了具備熔斷機制與日誌完整性的自動化系統,能扛過颱風、停電與自然災害。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>1999–2003 | 國家金融骨幹與 3G 核心部署</span> <span>Infrastructure</span></div>
<div class="battle-line-2">建置台灣證交所、期交所、集保中心全國 ATM/T1 骨幹,協助部署首座 3G 中心。</div>
<div class="battle-line-3">在高併發金融命脈環境中,確保每一筆交易路由的絕對零誤差與高可用性。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>1996–1998 | 全國戶役政與電信計費電腦化</span> <span>System Integration</span></div>
<div class="battle-line-2">負責全國規模帳單處理與中華電信催費流程,實現戶役政從紙本到數位的轉型。</div>
<div class="battle-line-3">處理國家級海量敏感數據,實證了高吞吐量物理環境下的穩定性與零殘留防禦。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>1994–1995 | 國軍精實專案與資訊兵</span> <span>Military Automation</span></div>
<div class="battle-line-2">於高雄工兵學校獨立完成測考題庫與資料庫電腦化,顯著提升軍事單位作業效率。</div>
<div class="battle-line-3">在嚴謹環境下展現高品質交付,開啟「人、機、法、環」之體系整合生涯。</div>
</div>
<div class="battle-record">
<div class="battle-line-1"><span>1984–1993 | FidoNet 先驅與電機工程基礎</span> <span>The Genesis</span></div>
<div class="battle-line-2">南開電機工程出身。建立台灣首批 FidoNet 節點 (6:722/228),奠定底層邏輯。</div>
<div class="battle-line-3">從 0 軌與 MBR 級別定義協議安全,確立了拒絕黑盒、追求物理真實的系統基因。</div>
</div>
<!-- 🔗 實證連結 -->
<div class="section-title">🧪 實證項目 (Empirical Projects) <span>(ZERO-KNOWLEDGE PROOF)</span></div>
<div class="lab-links">
<a href="https://github.com/RecoFu/mouse-account-verification" target="_blank" class="lab-card">
<strong>🐭 小白鼠實驗 (Mouse Account)</strong>
<p>九年全自動交易實證紀錄。Merkle Root 校驗完成,紀錄線性邏輯在 AI 蜂巢環境下的崩潰瞬間。</p>
</a>
<a href="https://github.com/RecoFu/Google-Daily-Insights" target="_blank" class="lab-card">
<strong>🎯 GDI 系統 (AI 安全與情報)</strong>
<p>與數個 AI 對練、校正非線性風險的實踐場域,專注於分散式安全治理架構。</p>
</a>
</div>
<footer>
RECO FU | 40 Years of Uncompromising Integrity<br>
• Experience DB Over Backtesting: 拒絕盲目回測。建置跨越 40 年的故障模式經驗庫,利用 R-CaaS 在毫秒間判定邏輯奇點。<br>
• Intervention Protocol: 實踐索羅斯反射性原理——在介入金融與 IT 架構時,同步計算「干預誘發的系統偏離」。<br>
• Logic Sovereignty: 從 1986 (C)Brain 病毒解剖到 2025 AI 治理。頻寬僅分配給「具備反思性」的結構化問題。<br>
• The 9-Year Proof: 實證「無人值守」系統在物理與金融雙重壓力下的反射調整力。<br>
</footer>
</div>
</body>
</html>