-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·377 lines (317 loc) · 16 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"><!-- charset meta element should be the first thing in <head> -->
<title>Eunchong Kim's Home Page</title>
<!-- The HTML <meta> Element ================================================== -->
<meta name="keywords" content="Eunchong, Kim, newini, HomePage">
<meta name="description" content="This is Eunchong Kim's Home Page">
<meta name="author" content="Eunchong C. Kim">
<!-- Setting the Viewport ================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS ================================================== -->
<!-- CDN -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<!-- Local -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/hover.css">
<link rel="stylesheet" href="assets/css/custom.css">
<!-- JS Script which need to load at head ================================================== -->
<!-- Favicons ================================================== -->
<link rel="shortcut icon" href="assets/images/n-logo.png" >
</head>
<body>
<!-- Header ================================================== -->
<header id="home">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="navbar">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="assets/images/newini-logo.png" alt="newini-logo" width="50">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active hvr-underline-from-center" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#resume">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#badge">Badge</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#work">Work</a>
</li>
<li class="nav-item">
<a class="nav-link hvr-underline-from-center" href="#contact">Contact</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarScrollingDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Language
</a>
<ul class="dropdown-menu" aria-labelledby="navbarScrollingDropdown">
<li><a class="dropdown-item" href="?locale=en">English</a></li>
<li><a class="dropdown-item" href="?locale=ja">Japanese</a></li>
<li><a class="dropdown-item" href="?locale=ko">Korean</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Home article -->
<article class='container py-5 my-5 text-white'>
<div class='row'>
<h1 id='home_message' class='text-center'>Welcome to Eunchong C. Kim's Home Page</h1>
<p class='text-center'>
I'm AI Engineer, based in Tokyo, Japan.
</p>
</div>
</article>
</header>
<!-- Begin of Main ================================================== -->
<main>
<!-- About article ================================================== -->
<article id="about" class='container py-5'>
<h2>About me</h2>
<section class='row'>
<div class='col-3'>
<img src='assets/images/eunchong_kim.jpg' class="img-thumbnail" alt='Eunchong Kim' height=200>
</div>
<div class="col-auto vl"></div>
<div class='col'>
<h3>Eunchong Kim</h3>
<p>Hello AI World!</p>
</div>
</section>
</article>
<!-- Resume article ================================================== -->
<article id="resume" class='container py-5'>
<h2>Resume</h2>
<!-- Education -->
<section class='row py-3'>
<div class='col-3'>
<h3 class='resume-title'>EDUCATION</h3>
</div>
<div class="col-auto vl"></div>
<div class='col'>
<h4><a href="https://www.titech.ac.jp/english" class="link-secondary hvr-sweep-to-right">
Tokyo Institute of Technology</a></h4>
<p>Department of Physics, School of Science <span>•</span> <em>2013~2021</em></p>
</div>
</section><!-- End of EDUCATION section -->
<!-- Work -->
<section class='row py-3'>
<div class='col-3'>
<h3 class='resume-title'>WORK</h3>
</div>
<div class="col-auto vl"></div>
<div class='col'>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<h4><a href='https://www.aeonfinancial.co.jp/' class='link-secondary hvr-sweep-to-right'>
AEON Financial Service Co., Ltd.</a></h4>
<p>Manager <span>•</span> <em>2024~</em></p>
</li>
<li class="list-group-item">
<h4>
Global AI Innovations Laboratory Co., Ltd.</h4>
<p>AI Engineer <span>•</span> <em>2021~2024</em></p>
</li>
</ul>
</div>
</section><!-- End of WORK section -->
<!-- Skills -->
<section id='skills' class='row py-3'>
<div class='col-3'>
<h3 class='resume-title'>SKILLS</h3>
</div>
<div class="col-auto vl"></div>
<div class='col'>
<ul class="list-group list-group-flush">
<li class="list-group-item"
data-bs-toggle="popover"
title='Credit Scoring'
data-bs-content='Develop default detector which used in the finance'
>
Credit Scoring
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 80%" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</li>
<li class="list-group-item"
data-bs-toggle="popover"
title='Demand Forecast'
data-bs-content='Develop statistical and machine-learning model to forecast demand'
>
Demand Forecast
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</li>
<li class="list-group-item"
data-bs-toggle="popover"
title='AWS certification'
data-bs-content='AWS Certified Cloud Practitioner'
>
Amazon Web Service
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</li>
<li class="list-group-item"
data-bs-toggle="popover"
title='C++'
data-bs-content='Experience on software developemt and data analysis.'
>
C++
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 60%" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</li>
<li class="list-group-item"
data-bs-toggle="popover"
title='Python3'
data-bs-content='Experience on application developemt and data analysis.'
>
Python3
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 70%" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</li>
<li class="list-group-item"
data-bs-toggle="popover"
title='Rails on Ruby'
data-bs-content='Experience on website development and deployment/maintenance.'
>
Rails on Ruby
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</li>
<li class="list-group-item"
data-bs-toggle="popover"
title='JavaScript'
data-bs-content='Experience on browser-work game developement.'
>
JavaScript
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 60%" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</li>
</ul>
<p></p>
</div>
</section><!-- End of Skills section -->
</article>
<!-- Badge article ================================================== -->
<article id="badge" class='container py-5'>
<h2 class='text-center'>Qualification</h2>
<div class='row'>
<section class='col-auto'>
<div class="card work-div">
<img src="assets/images/badges/engineer2023_1_regular.png" class="work-image" alt="jdla-e-badge">
<div class="card-body work-body" style='witdh: 100%;'>
<h3 class="work-title">Deep Learning for ENGINEER (E資格)</h3>
<p class="card-text">Advanced deep learning knowledge and actual implementation capabilities qualified by Japan Deep Learning Association (JDLA)</p>
<a href="https://www.openbadge-global.com/api/v1.0/openBadge/v2/Wallet/Public/GetAssertionShare/ZEgwR1lBK0RvWWM0QTZVYTYvbE4rUT09" class="btn btn-secondary" target="_blank">View badge in Lecos</a>
</div>
</div>
</section>
<section class='col-auto'>
<div class="card work-div">
<img src="assets/images/badges/aws_cp.png" class="work-image" alt="aws-cp-badge">
<div class="card-body work-body" style='witdh: 100%;'>
<h3 class="work-title">AWS Certified Cloud Practitioner</h3>
<p class="card-text">Foundation knowledge of Amazon Web Services (AWS)</p>
<a href="https://www.credly.com/badges/e4f281dc-9fa1-43e9-bd04-55af6d34dcf9" class="btn btn-secondary" target="_blank">View badge in Credly</a>
</div>
</div>
</section>
</div>
</article>
<!-- Works article ================================================== -->
<article id="work" class='container py-5'>
<h2 class='text-center'>Work</h2>
<p class="text-center text-black-50"><span>see my works</span></p>
<div class='row'>
<section class='col-auto'>
<div class="card work-div">
<img src="assets/images/works/pyi2c.png" class="work-image" alt="pyi2c logo">
<div class="card-body work-body" style='witdh: 100%;'>
<h3 class="work-title">pyi2c: I2C interface package</h3>
<p class="card-text">I developed a simple I2C interface wrote in python for Pi, powered by smbus2, and useful function to handle byte data.</p>
<a href="https://pypi.org/project/pyi2c/" class="btn btn-secondary" target="_blank">View in PyPI</a>
</div>
</div>
</section>
<section class='col-auto'>
<div class="card work-div">
<img src="assets/images/works/uno_game.png" class="work-image" alt="uno game">
<div class="card-body work-body" style='witdh: 100%;'>
<h3 class="work-title">Standalone UNO game in JS</h3>
<p class="card-text">I wrote for UNO game in pure JavaScript from scratch. It is standalone. Single player mode (serverless) and multiplayer mode are available.</p>
<a href="https://newini.github.io/uno-game-js/" class="btn btn-secondary" target="_blank">DEMO</a>
</div>
</div>
</section>
<section class='col-auto'>
<div class="card work-div">
<img src="assets/images/works/gtic_logo.png" class="work-image" alt="gtic-logo">
<div class="card-body work-body" style='witdh: 100%;'>
<h3 class="work-title">GTIC's Home Page</h3>
<p class="card-text">I maintained and improved greatly GTIC's (Global Techno Innovation Cafe) Home Page, powered by Ruby on Rails.</p>
<a href="https://gtic.jp/?locale=en" class="btn btn-secondary" target="_blank">View web site</a>
</div>
</div>
</section>
<section class='col-auto'>
<div class="card work-div">
<img src="assets/images/works/localdb_logo.png" class="work-image" alt="localdb-logo">
<div class="card-body work-body" style='witdh: 100%;'>
<h3 class="work-title">LocalDB for YARR</h3>
<p class="card-text">I devised and developed database function and its utilities, powered by MongoDB, for a data acquisition system named YARR (Yet Another Rapid Readout).</p>
<a href="https://localdb-docs.readthedocs.io/en/master/" class="btn btn-secondary" target="_blank">View LocalDB docs</a>
</div>
</div>
</section>
</div>
</article>
<!-- Contact article ================================================== -->
<article id="contact" class='container py-5'>
<h2 class='text-center'>Contact me</h2>
<p class="text-center text-black-50"><span>via</span></p>
<section class="text-center">
<a href="https://facebook.com/100004773005387" class="btn hvr-icon-fade" target="_blank"><i class="fab fa-3x fa-facebook hvr-icon"></i></a>
<!--
<a href="https://www.linkedin.com/in/eunchong-kim" class="btn hvr-icon-fade"><i class="fab fa-3x fa-linkedin hvr-icon"></i></a>
-->
<a href="http://github.com/newini" class="btn hvr-icon-fade" target="_blank"><i class="fab fa-3x fa-github hvr-icon"></i></a>
<a href="http://newini.wordpress.com" class="btn hvr-icon-fade" target="_blank"><i class="fab fa-3x fa-wordpress hvr-icon"></i></a>
<a href="mailto: [email protected]" class="btn hvr-icon-fade"><i class="far fa-3x fa-envelope hvr-icon"></i></a>
</section>
</article>
</main>
<!-- footer ================================================== -->
<footer class="footer mt-auto py-3 bg-dark text-white-50">
<div class="container">
<p class="float-end mb-1">
<a href="#" class="hvr-icon-wobble-vertical text-white-50">Back to top <i class="fa fa-2x fa-arrow-up hvr-icon"></i></a>
</p>
<p class="mb-1">Copyright © 2023 Eunchong Kim. All Rights Reserved.
Many powerfull resouces listed in <a href='https://github.com/newini/newini.github.io'>README.md</a> are used.</p>
</div>
</footer>
<!-- Java Script ================================================== -->
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>