-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatement.html
More file actions
434 lines (374 loc) · 14.2 KB
/
statement.html
File metadata and controls
434 lines (374 loc) · 14.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Statement | Hideki Obote</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Source+Sans+3:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #0d1117;
--bg-secondary: #161b22;
--text-primary: #e6edf3;
--text-secondary: #8b949e;
--accent: #58a6ff;
--accent-green: #3fb950;
--accent-yellow: #d29922;
--accent-red: #f85149;
--border: #30363d;
--font-mono: 'JetBrains Mono', monospace;
--font-sans: 'Source Sans 3', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: var(--font-sans);
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.7;
}
.container {
max-width: 760px;
margin: 0 auto;
padding: 40px 24px;
}
.nav {
margin-bottom: 32px;
}
.nav__back {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--accent);
text-decoration: none;
}
.nav__back:hover { text-decoration: underline; }
/* Status Banner */
.status-banner {
background: linear-gradient(90deg, var(--accent-green), #238636);
padding: 10px 16px;
border-radius: 6px;
margin-bottom: 24px;
text-align: center;
font-weight: 600;
font-size: 0.9rem;
}
.header {
margin-bottom: 32px;
padding-bottom: 24px;
border-bottom: 1px solid var(--border);
}
.header__tag {
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--accent-yellow);
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 0.1em;
}
.header__title {
font-size: 2rem;
font-weight: 600;
margin-bottom: 8px;
}
.header__subtitle {
color: var(--text-secondary);
font-size: 1.05rem;
}
/* TL;DR */
.tldr {
background: var(--bg-secondary);
border: 2px solid var(--accent);
border-radius: 6px;
padding: 20px 24px;
margin-bottom: 32px;
}
.tldr__title {
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--accent);
margin-bottom: 10px;
text-transform: uppercase;
}
.tldr__list {
list-style: none;
}
.tldr__list li {
padding: 4px 0;
font-size: 0.95rem;
color: var(--text-primary);
}
.tldr__list li::before {
content: '→ ';
color: var(--accent-green);
}
.section {
margin-bottom: 36px;
}
.section__title {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--accent);
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 8px;
}
.section__title::before {
content: '##';
color: var(--border);
}
.text {
color: var(--text-secondary);
font-size: 1rem;
margin-bottom: 16px;
}
.text strong {
color: var(--text-primary);
}
.highlight-box {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 6px;
padding: 20px 24px;
margin: 20px 0;
}
.highlight-box--warning {
border-left: 3px solid var(--accent-yellow);
}
.highlight-box--info {
border-left: 3px solid var(--accent);
}
.highlight-box__title {
font-weight: 600;
margin-bottom: 8px;
font-size: 0.95rem;
}
.highlight-box__text {
color: var(--text-secondary);
font-size: 0.9rem;
}
/* What You Get Table */
.value-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
.value-table th,
.value-table td {
text-align: left;
padding: 12px 16px;
border-bottom: 1px solid var(--border);
}
.value-table th {
font-family: var(--font-mono);
font-size: 0.75rem;
color: var(--accent);
text-transform: uppercase;
background: var(--bg-secondary);
}
.value-table td {
font-size: 0.9rem;
}
.value-table td:first-child {
color: var(--text-primary);
font-weight: 500;
}
.value-table td:last-child {
color: var(--text-secondary);
}
.list {
list-style: none;
margin: 16px 0;
}
.list li {
padding: 8px 0 8px 24px;
position: relative;
color: var(--text-secondary);
}
.list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent-green);
}
.list li strong {
color: var(--text-primary);
}
.divider {
border: none;
border-top: 1px solid var(--border);
margin: 40px 0;
}
.contact {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 6px;
padding: 24px;
text-align: center;
}
.contact__title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 12px;
}
.contact__text {
color: var(--text-secondary);
font-size: 0.9rem;
margin-bottom: 16px;
}
.contact__links {
display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}
.contact__link {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--accent);
text-decoration: none;
}
.contact__link:hover { text-decoration: underline; }
.footer {
margin-top: 48px;
padding-top: 24px;
border-top: 1px solid var(--border);
text-align: center;
}
.footer__text {
font-size: 0.85rem;
color: var(--text-secondary);
}
.footer__link {
color: var(--accent);
text-decoration: none;
}
@media (max-width: 600px) {
.header__title { font-size: 1.6rem; }
.value-table th, .value-table td { padding: 10px 12px; font-size: 0.85rem; }
}
</style>
</head>
<body>
<div class="container">
<nav class="nav">
<a href="index.html" class="nav__back">← Back to Home</a>
</nav>
<div class="status-banner">
🔍 Currently open to remote opportunities (contract / full-time)
</div>
<header class="header">
<p class="header__tag">Personal Statement</p>
<h1 class="header__title">Why I'm Seeking International Remote Work</h1>
<p class="header__subtitle">A candid explanation for prospective employers</p>
</header>
<!-- TL;DR -->
<div class="tldr">
<p class="tldr__title">⚡ TL;DR (30 seconds)</p>
<ul class="tldr__list">
<li>35+ years experience, seeking remote work with international companies</li>
<li>Personal circumstances in Japan limit domestic options</li>
<li>Async-first text communication (Slack, email, GitHub)</li>
<li>Flexible on engagement terms — focused on long-term collaboration</li>
<li>Happy to discuss details privately if you're considering hiring me</li>
</ul>
</div>
<section class="section">
<h2 class="section__title">Summary</h2>
<p class="text">
I am a <strong>self-taught software engineer with 35+ years of experience</strong>, seeking remote work with international companies due to personal circumstances in Japan.
</p>
</section>
<section class="section">
<h2 class="section__title">What You Get</h2>
<table class="value-table">
<tr>
<th>Benefit</th>
<th>Evidence</th>
</tr>
<tr>
<td>High motivation</td>
<td>Determined to prove myself in a new environment</td>
</tr>
<tr>
<td>Commitment</td>
<td>Seeking long-term, stable remote relationships</td>
</tr>
<tr>
<td>Transparency</td>
<td>I communicate directly and honestly (as you can see)</td>
</tr>
<tr>
<td>Results-driven</td>
<td>I deliver through code, not politics</td>
</tr>
<tr>
<td>Flexible engagement</td>
<td>Contract, part-time, or full-time — minimal onboarding needed</td>
</tr>
</table>
</section>
<section class="section">
<h2 class="section__title">Background</h2>
<p class="text">
I experienced workplace issues at a major Japanese corporation that made it difficult to continue working in the Japanese domestic job market.
</p>
<p class="text">
Without going into excessive detail: I became a target of what could be described as <strong>systematic workplace harassment</strong> after raising concerns about certain practices. This experience taught me that the Japanese corporate environment can be challenging for those who speak up.
</p>
<div class="highlight-box highlight-box--warning">
<p class="highlight-box__title">⚠️ A Note on Japanese Corporate Culture</p>
<p class="highlight-box__text">
If you're considering hiring me and want to know more details, I'm happy to discuss privately. I believe in transparency, but I also believe some things are better explained in conversation than in public documents. Be prepared for a glimpse into some challenging aspects of Japanese corporate culture.
</p>
</div>
</section>
<section class="section">
<h2 class="section__title">What I'm Looking For</h2>
<ul class="list">
<li>Remote work with international companies</li>
<li>Async-first communication (Slack, email, GitHub). Open to voice meetings when needed.</li>
<li>Opportunities to demonstrate my skills through actual work</li>
<li>Fair evaluation based on deliverables, not office politics</li>
</ul>
<div class="highlight-box highlight-box--info">
<p class="highlight-box__title">📝 Communication Preference</p>
<p class="highlight-box__text">
I work best through async text communication — Slack, email, GitHub. This is a deliberate choice that allows me to deliver clear documentation, well-commented code, and thoughtful responses. Many of the world's best engineering teams already operate async-first. Open to voice/video meetings when needed for design discussions or team sync.
</p>
</div>
</section>
<section class="section">
<h2 class="section__title">Full Disclosure</h2>
<p class="text">
If you're considering hiring me and want to know more details about my situation, <strong>I'm happy to discuss privately</strong>. I believe in transparency, but I also believe some things are better explained in conversation than in public documents.
</p>
<p class="text">
What I can promise: I will be honest with you, I will work hard, and I will deliver quality code. My <strong>35+ years of experience</strong> speaks for itself.
</p>
</section>
<hr class="divider">
<div class="contact">
<h3 class="contact__title">Let's Connect</h3>
<p class="contact__text">
Interested in working together? I'm available for contract work and open to contract-to-hire opportunities.
</p>
<div class="contact__links">
<a href="mailto:obott9.dev@gmail.com" class="contact__link">obott9.dev@gmail.com</a>
<a href="https://github.com/obott9" class="contact__link">GitHub</a>
<a href="https://www.linkedin.com/in/hideki-obote-1b33b43a7/" class="contact__link">LinkedIn</a>
<a href="https://www.upwork.com/freelancers/~0146733eaa54bd44c8" class="contact__link">Upwork</a>
</div>
</div>
<footer class="footer">
<p class="footer__text">
© 2025 Hideki Obote | <a href="resume.html" class="footer__link">View Resume</a> | <a href="Hideki_Obote_Resume_EN.pdf" class="footer__link">Download PDF</a>
</p>
</footer>
</div>
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "4de4f49dc6af40d48f47a27f9e69d4e0"}'></script>
<!-- End Cloudflare Web Analytics -->
</body>
</html>