-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
763 lines (753 loc) · 26.1 KB
/
index.html
File metadata and controls
763 lines (753 loc) · 26.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aiden's Home</title>
<meta name="description" content="Portfolio for software engineer Aiden" />
<meta name="author" content="Aiden" />
<link rel="icon" type="image/png" href="images/icons8-globe-24.png" />
<script
src="https://kit.fontawesome.com/46cad14323.js"
crossorigin="anonymous"
></script>
<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=Open+Sans:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script src="main.js" defer></script>
</head>
<body>
<!-- Navbar -->
<nav id="navbar">
<div class="navbar__logo">
<a href="#"><i class="fa-solid fa-fire"></i> Aiden</a>
</div>
<ul class="navbar__menu">
<li class="navbar__menu__item active" data-link="#home">Home</li>
<li class="navbar__menu__item" data-link="#about">About</li>
<li class="navbar__menu__item" data-link="#skills">Skills</li>
<li class="navbar__menu__item" data-link="#work">My Toy Project</li>
<li class="navbar__menu__item" data-link="#testimonials">
Award & History
</li>
<li class="navbar__menu__item" data-link="#contact">Contact</li>
</ul>
<!-- Toggle Button -->
<button class="navbar__toggle-btn">
<i class="fa-solid fa-bars"></i>
</button>
</nav>
<!-- Home -->
<section id="home">
<div class="home__container">
<img
src="images/my_profile.png"
alt="Aiden's profile photo"
class="home__avatar"
/>
<h1 class="home__title">
Hello, <br />I'm Aiden, Client App / Web Developer
</h1>
<h2 class="home__description">
Software expert capable of developing both web frontend and mobile
apps.
</h2>
<button class="home__contact">Contact Me</button>
</div>
</section>
<!-- About -->
<section id="about" class="section section__container">
<h1>About Me</h1>
<br />
<ul>
<li>
<a href="https://aidenkoog.github.io">
<div>
<h3><b>● (Not open) RESUME (English)</b></h3>
</div>
</a>
</li>
<li>
<a href="https://aidenkoog.github.io">
<div>
<h3><b>● (Not open) RESUME (Korean)</b></h3>
</div>
</a>
</li>
</ul>
<br />
<p>
As a senior developer specializing in Android and Kotlin,
I have developed a wide range of UI applications and services
across Mobile, OTT, Kiosk, DID, TV, Web, PC, and IoT environments.
I believe that development should contribute to a company’s goals
rather than just personal preferences,
so I always focus on designing well-structured
and scalable code from the beginning of a project
to ensure both efficiency and maintainability.
I continuously explore new technologies to stay adaptable
to changes in a company’s or team’s development direction.
In my experience developing apps and web pages,
I have primarily implemented login functionality
and additional features using REST APIs.
I also have hands-on experience in real-time device control
using the AWS IoT Mobile SDK and BLE for Android apps,
as well as data handling via WebSocket for web applications.
Currently, I develop Android and Flutter apps while leading the software team.
</p>
<div class="about__majors">
<div class="major">
<div class="major__icon">
<i class="fab fa-html5"></i>
</div>
<h2 class="major__title">Front-end</h2>
<div class="major__description">
HTML, CSS, Javascript, Typescript, Dart<br />Flutter, React, Vue, Web
APIs
</div>
</div>
<div class="major">
<div class="major__icon">
<i class="fa-solid fa-mobile-screen"></i>
</div>
<h2 class="major__title">Mobile-Native</h2>
<div class="major__description">Android<br />Kotlin, Java, iOS, Swift</div>
</div>
<div class="major">
<div class="major__icon">
<i class="fa-solid fa-mobile"></i>
</div>
<h2 class="major__title">Mobile-Cross-Platform</h2>
<div class="major__description">
React Native, Flutter, <br />Javascript, Typescript, Dart
</div>
</div>
</div>
<div class="about__jobs">
<div class="job">
<i class="fa-solid fa-building"></i>
<div class="job__description">
<p class="job__name">
Currently working as Android, Flutter Engineer and Project Manager
</p>
<p class="job__period">2024 Jan - Present</p>
</div>
</div>
<div class="job">
<i class="fa-regular fa-building"></i>
<div class="job__description">
<p class="job__name">
Worked as Android Mobile Engineer
</p>
<p class="job__period">2023 Jun - 2024 Feb</p>
</div>
</div>
<div class="job">
<i class="fa-regular fa-building"></i>
<div class="job__description">
<p class="job__name">
Worked as Client Mobile, Watch App, Web and Mobile Engineer
</p>
<p class="job__period">2022 Sept - 2023 May</p>
</div>
</div>
<div class="job">
<i class="fa-regular fa-building"></i>
<div class="job__description">
<p class="job__name">Worked as Android Mobile Engineer and Project Leader</p>
<p class="job__period">2021 Aug - 2022 Sept</p>
</div>
</div>
<div class="job">
<i class="fa-regular fa-building"></i>
<div class="job__description">
<p class="job__name">Worked as Android Mobile & OTT Engineer</p>
<p class="job__period">2014 Jan - 2021 Jul</p>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section id="skills" class="section">
<div class="section__container">
<h1>Skills</h1>
<h2>Skills & Attributes</h2>
<p>
I have an understanding of the entire software life cycle, am
interested in learning new things, and can develop in a team
environment or alone. They are good at planning and documenting, and
have a concept of punctuality in projects and group life. And I'm
always trying to manage my stress to complete the project. I think the
basis for everything is consistency and repetition. I try to have fun
with what I do through constant repetition.
</p>
<div class="skillset">
<div class="skillset__left">
<h3 class="skillset__title">Skills</h3>
<ul class="skillset__list">
<li><span>Android SDK</span></li>
<li><span>AOSP</span></li>
<li><span>Kotlin</span></li>
<li><span>Java</span></li>
<li><span>Hilt / Dagger</span></li>
<li><span>MVVM</span></li>
<li><span>RxJava</span></li>
<li><span>Retrofit</span></li>
<li><span>Coroutine</span></li>
<li><span>React.js / React Native</span></li>
<li><span>Vue.js</span></li>
<li><span>Typescript</span></li>
<li><span>Javascript</span></li>
<li><span>Flutter</span></li>
<li><span>Dart</span></li>
<li><span>iOS</span></li>
<li><span>Swift</span></li>
<li><span>React Hook</span></li>
<li><span>Recoil</span></li>
<li><span>Axios</span></li>
<li><span>GetX</span></li>
<li><span>HTML</span></li>
<li><span>CSS</span></li>
<li><span>Python</span></li>
</ul>
</div>
<div class="skillset__right">
<div class="tools">
<h3 class="skillset__title">Tools</h3>
<ul class="tools__list">
<li><span>Android Studio</span></li>
<li><span>Visual Studio Code</span></li>
<li><span>Postman</span></li>
<li><span>Swagger</span></li>
</ul>
</div>
<div class="etc">
<h3 class="skillset__title">Etc</h3>
<ul class="etc__list">
<li><span>Git</span></li>
<li><span>GitHub / Bitbucket</span></li>
<li><span>Gerrit</span></li>
<li><span>Jira</span></li>
<li><span>Confluence</span></li>
<li><span>Slack</span></li>
<li><span>Notion</span></li>
<li><span>Zeplin</span></li>
<li><span>Figma</span></li>
<li><span>Windows</span></li>
<li><span>MacOS</span></li>
<li><span>Linux (Ubuntu)</span></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Work -->
<section id="work" class="section">
<div class="section__container">
<h1>My Toy Projects</h1>
<h3>Projects</h3>
<div class="work__categories">
<button class="category__btn selected" data-filter="*">
All<span class="category__count">25</span>
</button>
<button class="category__btn" data-filter="toy">
DevToy Projects (2024)<span class="category__count">1</span>
</button>
<button class="category__btn" data-filter="front-end">
React.Js & Flutter App (2023)<span class="category__count">9</span>
</button>
<button class="category__btn" data-filter="mobile-native">
Android-Native (2023)<span class="category__count">8</span>
</button>
<button class="category__btn" data-filter="mobile-cross-platform">
React-Native (2023)<span class="category__count">2</span>
</button>
<button class="category__btn" data-filter="etc">
Vanila-Js (2023)<span class="category__count">3</span>
</button>
<button class="category__btn" data-filter="study">
Study Project (2023)<span class="category__count">2</span>
</button>
</div>
<div class="work__projects">
<a
href="https://github.com/aidenkoog/toy-programming"
class="project"
target="_blank"
data-type="toy"
>
<img
src="images/projects/project.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>App & Web DevToy Projects</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/flutter/admin_web_desktop"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Flutter Admin Web & Desktop App</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/flutter/admin_web"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Flutter Admin Web</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/flutter/userlist"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Flutter Userlist Mobile App</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/react_js/websocket-module"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>React Websocket Module</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/react_js/admin_web"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>React Admin Web</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/react_js/my_portfolio"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>React My Portfolio Web</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/react_js/shopping_mall"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>React Shopping Mall</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/react_js/dating-app-ui"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>React Dating App UI</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/react_js/webrtc-server-client"
class="project"
target="_blank"
data-type="front-end"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>React WebRTC Client & Server</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/react_native/ble_comm_app"
class="project"
target="_blank"
data-type="mobile-cross-platform"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>React Native BLE Mobile App</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/ble-manager-module"
class="project"
target="_blank"
data-type="mobile-cross-platform"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>React Native BLE Module For Mobile App</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/vanila_js/my_portfolio"
class="project"
target="_blank"
data-type="etc"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Vanila-Js My Portfolio Web</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/vanila_js/template"
class="project"
target="_blank"
data-type="etc"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Vanila-Js Simple Template Web</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/vanila_js/cute-calculator"
class="project"
target="_blank"
data-type="etc"
>
<img
src="images/projects/web.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Vanila-Js Calculator Web</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-til-today-i-learned"
class="project"
target="_blank"
data-type="study"
>
<img
src="images/projects/project.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>TIL (Today I Learn)</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-programming-practice"
class="project"
target="_blank"
data-type="study"
>
<img
src="images/projects/project.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Programming Practice</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/android/features/userlist"
class="project"
target="_blank"
data-type="mobile-native"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Android Userlist Mobile App</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/android/wear_os_launcher-template"
class="project"
target="_blank"
data-type="mobile-native"
>
<img
src="images/projects/watch.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Android Wear OS Launcher App</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/android/ipc-aidl-template"
class="project"
target="_blank"
data-type="mobile-native"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Android IPC AIDL Template</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/android/testapp_template"
class="project"
target="_blank"
data-type="mobile-native"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Android TestApp Template</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/android/app-template"
class="project"
target="_blank"
data-type="mobile-native"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Android App Template</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/android/features/simple-news-list-app"
class="project"
target="_blank"
data-type="mobile-native"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Android Simple News List App</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/android/features/note_memo_app"
class="project"
target="_blank"
data-type="mobile-native"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Android Note Memo App</span>
</div>
</a>
<a
href="https://github.com/aidenkoog/awesome-app-architecture/tree/master/android/features/image_viewer"
class="project"
target="_blank"
data-type="mobile-native"
>
<img
src="images/projects/phone.png"
alt="MyProject"
class="project__img"
/>
<div class="project__description">
<h3>Github</h3>
<span>Android Image Viewer App</span>
</div>
</a>
</div>
</div>
</section>
<!-- Tesimonials -->
<section id="testimonials" class="section">
<div class="section__container">
<h1>Award & History</h1>
<h3>See what they say about me</h3>
<div class="testimonials">
<div class="testimonial">
<img
src="images/human.png"
alt="Coworker"
class="testimonial__avatar"
/>
<div class="testimonial__speech-bubble">
<p>
Manager Aiden changed and improved the communication
method of the Mobile app for the US to the MQTT protocol
communication method and successfully completed the app launch.
</p>
<p class="name">
<a href="https://aidenkoog.github.io">Mobile App Team</a>
/ 2nd Company.
</p>
</div>
</div>
<div class="testimonial">
<div class="testimonial__speech-bubble">
<p>
From 2012 to 2013, Aiden, a university student, completed
the development of a modeling tool in the Java language while
diligently conducting a research project on business software
integrated modeling methods.
</p>
<p class="name">
<a href="https://www.knu.ac.kr/"
>Kyungpook National University (KNU)</a
>
</p>
</div>
<img
src="images/human.png"
alt="Coworker"
class="testimonial__avatar"
/>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section">
<h2 class="contact__title">
If you have any additional questions about me, please email me.
</h2>
<h2 class="contact__email">k037686@gmail.com</h2>
<div class="contact__links">
<a href="https://github.com/aidenkoog" target="_blank">
<i class="fab fa-github"></i>
</a>
<a
href="https://www.linkedin.com/in/dongwan-koo-2041bb13b/ "
target="_blank"
>
<i class="fab fa-linkedin"></i>
</a>
</div>
<p class="contact__rights">2023 Aiden Koo - All rights reserved</p>
</section>
<!-- Arrow up -->
<button class="arrow-up">
<i class="fa-solid fa-arrow-up"></i>
</button>
</body>
</html>