-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1616 lines (1574 loc) ยท 66.5 KB
/
index.html
File metadata and controls
1616 lines (1574 loc) ยท 66.5 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="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="apple-touch-icon" sizes="57x57" href="assets/logo.ico/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="assets/logo.ico/apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="assets/logo.ico/apple-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="assets/logo.ico/apple-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="assets/logo.ico/apple-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="assets/logo.ico/apple-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="assets/logo.ico/apple-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/logo.ico/apple-icon-180x180.png" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="assets/logo.ico/android-icon-192x192.png"
/>
<link rel="icon" type="image/png" sizes="32x32" href="assets/logo.ico/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="assets/logo.ico/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="assets/logo.ico/favicon-16x16.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png" />
<meta name="theme-color" content="#ffffff" />
<title>๐It's eong time๐</title>
<!-- Font Awesome icons (free version)-->
<script
src="https://use.fontawesome.com/releases/v5.12.1/js/all.js"
crossorigin="anonymous"
></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,700"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic"
rel="stylesheet"
type="text/css"
/>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">TOP</a
><button
class="navbar-toggler navbar-toggler-right text-uppercase font-weight-bold bg-primary1 text-white rounded"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
Menu <i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#project"
>Project</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#Development"
>Technology Stack</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#activity"
>Activity</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#travel"
>Travel</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="#contact"
>Contact</a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- Masthead Avatar Image--><img
class="masthead-avatar mb-5"
src="assets/img/eong.png"
alt=""
/>
<!-- Masthead Heading-->
<h1 class="masthead-heading text-uppercase mb-0">๋ ์คํ์! ์คํ์์ ์์๋ณด์!</h1>
<!-- Masthead Subheading-->
<p class="masthead-subheading font-weight-light mb-0"></p>
<br /><br /><br />
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white">About Eong</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="container">
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">
<a
href="https://www.16personalities.com/ko/%EC%84%B1%EA%B2%A9%EC%9C%A0%ED%98%95-enfp"
target="_blank"
>โจENFPโจ</a
>
</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ 1995.04.25</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ TVXQ!</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">
๐คธ๐ปโโ๏ธ
<a
href="https://user-images.githubusercontent.com/24339310/96337762-53c53680-10c4-11eb-9441-9bafe8c280ea.jpg"
target="_blank"
>๋ด์ฌํ๋ 221์๊ฐ</a
>
</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">โพ ์ผ์ฑ ๋ผ์ด์จ์ฆ</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ท ์ฌ์ง ์ฐ๊ธฐ๐ฅฐ</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ก 6K5 YVL</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ป ์๋จ๋ํ๊ต ํ๊ณผ๋์๋ฆฌ PnC</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ ์ด๋ก์ฐ์ฐ ์ด๋ฆฐ์ด์ฌ๋จ ํ๋ณด๋จ</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ป ์๋จ๋ํ๊ต SOS ์ฐ๊ตฌ์ค</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ Google Map ์ง์ญ๊ฐ์ด๋</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">๐ป ์๋จ๋ํ๊ต ์ปดํจํฐ๊ณตํ๊ณผ ์กธ์
</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">
๐ป ์๋จ๋ํ๊ต ์ฐํํ๋ ฅ๋จ TLO ์ฐ๊ตฌ์<br /> ์ปดํจํ
๋ฐ ๋ฉ๋ชจ๋ฆฌ์์คํ
์ฐ๊ตฌ์ค
</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead">
๐
<a href="https://www.ssafy.com/ksp/jsp/swp/swpMain.jsp" target="_blank">SSAFY</a> 3๊ธฐ
</p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead"> ๐ป๋๋ณด์ ๋ณดํต์ </p>
</div>
<div class="col-lg-4 ml-mine mb-0">
<p class="lead"> ๐LG์ ํ๋ฌ์ค๐ </p>
</div>
</div>
</div>
</header>
<!-- Project Section-->
<section class="page-section portfolio" id="project">
<div class="container">
<!-- Portfolio Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Project</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Grid Items-->
<div class="row">
<!-- Project Item 1-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal1">
๐ PacMan
</div>
</div>
<!-- Project Item 2-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal2">
๐งก APFS
</div>
</div>
<!-- Project Item 3-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal3">
๐ OverQuake
</div>
</div>
<!-- Project Item 4-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal4">
๐ MIC Drop
</div>
</div>
<!-- Project Item 5-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal5">
๐ YU Mart
</div>
</div>
<!-- Project Item 6-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal6">
๐ Happy House
</div>
</div>
<!-- Project Item 7-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal7">
๐ Possible Red
</div>
</div>
<!-- Project Item 8-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal8">
๐ค Last Meal
</div>
</div>
<!-- Project Item 9-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal9">
โ
NH ํฌ์์ฆ๊ถ ์ฑ๋ํตํฉ
</div>
</div>
<!-- Project Item 10-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal10">
โ
5์ฐจ ์ฌ๋์ง์๊ธ <br>์ ์๋์ธต ์ถ๊ฐ ์ฌ๋์ง์๊ธ
</div>
</div>
<!-- Project Item 11-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#ProjectModal11">
โ
์ถ์ฐ๋ฐ์ฐ์ฒ <br>์ฒซ๋ง๋จ์ด์ฉ๊ถ
</div>
</div>
</div>
</div>
</section>
<!-- Development Section -->
<section class="page-section bg-primary text-white mb-0" id="Development">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white">Technology Stack</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fa fa-wrench" aria-hidden="true"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="container">
<div class="col-lg-4 ml-mine mb-0">
<p class="lead_contact">
<br /><br />
๐ก Language <br />
</p>
</div>
<div class="dev-align">
<img class="rounded eong_size" src="assets/img/dev/C.png" />
<img class="rounded eong_size" src="assets/img/dev/C++.png" />
<img class="rounded eong_size" src="assets/img/dev/Java.png" />
</div>
<!-- ========================================== -->
<div class="col-lg-4 ml-mine mb-0">
<p class="lead_contact">
<br /><br />
๐ก Back-End <br />
</p>
</div>
<div class="dev-align">
<img class="rounded eong_size" src="assets/img/dev/Amazon EC2_1.png" />
<img class="rounded eong_size" src="assets/img/dev/Apache tomcat.png" />
<img class="rounded eong_size" src="assets/img/dev/Spring Boot.png" />
<img class="rounded eong_size" src="assets/img/dev/MySQL.png" />
<img class="rounded eong_size" src="assets/img/dev/mariadb.png" />
<img class="rounded eong_size" src="assets/img/dev/nginx.png" />
</div>
<!-- ========================================== -->
<div class="col-lg-4 ml-mine mb-0">
<p class="lead_contact">
<br /><br />
๐ก Front-End <br />
</p>
</div>
<div class="dev-align">
<img class="rounded eong_size" src="assets/img/dev/Android Studio.png" />
<img class="rounded eong_size" src="assets/img/dev/Vue.js.png" />
<img class="rounded eong_size" src="assets/img/dev/html5.png" />
</div>
<!-- ========================================== -->
<div class="col-lg-4 ml-mine mb-0">
<p class="lead_contact">
<br /><br />
๐ก Tools <br />
</p>
</div>
<div class="dev-align">
<img class="rounded eong_size" src="assets/img/dev/Visual Studio.png" />
<img class="rounded eong_size" src="assets/img/dev/Visual Studio Code.png" />
<img class="rounded eong_size" src="assets/img/dev/eclipse.png" />
<img class="rounded eong_size" src="assets/img/dev/IntelliJ.png" />
<img class="rounded eong_size" src="assets/img/dev/Docker.png" />
</div>
<!-- ========================================== -->
<div class="col-lg-4 ml-mine mb-0">
<p class="lead_contact">
<br /><br />
๐ก SCM (Source Code Management) <br />
</p>
</div>
<div class="dev-align">
<img class="rounded eong_size" src="assets/img/dev/Git Lab.png" />
<img class="rounded eong_size" src="assets/img/dev/GitHub.png" />
<img class="rounded eong_size" src="assets/img/dev/Trello.jpg" />
<img class="rounded eong_size" src="assets/img/dev/Jira.jpg" />
<img class="rounded eong_size" src="assets/img/dev/Source Tree.png" />
<img class="rounded eong_size" src="assets/img/dev/mattermost.png" />
<img class="rounded eong_size" src="assets/img/dev/jenkins.png" />
</div>
</div>
</div>
</section>
<!-- Skills Section-->
<section class="page-section portfolio" id="activity">
<div class="container text-center">
<!-- TRAVEL Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">
activity
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="far fa-smile-wink"></i></div>
<div class="divider-custom-line"></div>
</div>
<a
class="btn mx-3"
href="https://github.com/oheong/It-s_eong_time"
target="_blank"
><i class="fab fa-github"></i> git-hub</a><br />
<a
class="btn mx-3"
href="https://www.acmicpc.net/user/enffl9568"
target="_blank"
><i class="fas fa-code"></i> backjun</a><br />
<a
class="btn mx-3"
href="https://github.com/oheong/oheong-s_daily_development"
target="_blank"
><i class="fab fa-dailymotion"></i> ๊ฐ๋ฐ์ผ์ง</a><br />
<a
class="btn mx-3"
href="https://www.instagram.com/oheong/"
target="_blank"
><i class="fab fa-instagram"></i> instagram</a><br />
</div>
</section>
<!-- new Travel Section-->
<section class="page-section portfolio bg-primary text-white mb-0" id="travel">
<div class="container">
<!-- About Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-white mb-0">Travel</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-plane"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- TRAVEL Grid Items-->
<div class="row">
<!-- TRAVEL Item 1-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal1">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/london.jpg" alt="" />
</div>
</div>
<!-- TRAVEL Item 2-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal2">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/paris.jpg" alt="" />
</div>
</div>
<!-- TRAVEL Item 3-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal3">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/swiss.jpg" alt="" />
</div>
</div>
<!-- TRAVEL Item 4-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal4">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/salzburg.jpg" alt="" />
</div>
</div>
<!-- TRAVEL Item 5-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal5">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/budapest.jpg" alt="" />
</div>
</div>
<!-- TRAVEL Item 6-->
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal6">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/prague.jpg" alt="" />
</div>
</div>
<!-- TRAVEL Item 7-->
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal7">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/hongkong.JPG" alt="" />
</div>
</div>
<!-- TRAVEL Item 8-->
<div class="col-md-6 col-lg-4 mb-5 mb-md-0">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal8">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/jeju.jpg" alt="" />
</div>
</div>
<!-- TRAVEL Item 9-->
<div class="col-md-6 col-lg-4">
<div class="portfolio-item mx-auto" data-toggle="modal" data-target="#TravelModal9">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div class="portfolio-item-caption-content text-center text-white">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="assets/img/travel/happy_wang_mandu.jpg" alt="" />
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section-->
<section class="page-section" id="contact">
<div class="container">
<!-- Contact Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">
Contact Me
</h2>
<!-- Contact Section Form-->
<br /><br />
<div class="col-lg-4 ml-mine mb-0">
<p class="lead_contact">๐งeongoh@lguplus.co.kr</p>
<p class="lead_contact">
๐ฑinstagram : <a href="https://www.instagram.com/oheong/" title="์ธ์คํ ๋๋ฌ์คใ
" target="_blank" style="color: black;">โจ@oheong</a>
</p>
</div>
</div>
</section>
<!-- Footer-->
<footer class="footer text-center">
<div class="container">
<div class="row">
<!-- Footer Location-->
<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Location</h4>
<p class="lead mb-0">
Gyeongsan-si, Gyeongsangbuk-do<br />
Republic of Korea
</p>
</div>
<!-- Footer About Text-->
<div class="col-lg-4">
<h4 class="text-uppercase mb-4">Byeใฐโ</h4>
<img
width="100px"
class="masthead-avatar mb-5 rounded-circle"
src="assets/img/bye.jpg"
alt=""
/>
</div>
<div class="col-lg-4 mb-5 mb-lg-0">
<a href="https://hits.seeyoufarm.com"><img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Foheong.github.io&count_bg=%23F4207E&title_bg=%23555555&icon=lg.svg&icon_color=%23E7E7E7&title=hello&edge_flat=true"/></a>
</div>
</div>
</div>
</footer>
<!-- Copyright Section-->
<section class="copyright py-4 text-center text-white">
<div class="container"><small>Copyright ยฉ It's eong time 2020</small></div>
</section>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes)-->
<div class="scroll-to-top d-lg-none position-fixed">
<a class="js-scroll-trigger d-block text-center text-white rounded" href="#page-top"
><i class="fa fa-chevron-up"></i
></a>
</div>
<!-- Project Modals-->
<!-- Project Modal 1-->
<div
class="portfolio-modal modal fade"
id="ProjectModal1"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal1Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">
'์๋ฃ๊ตฌ'์กฐ์ ํฉ๋งจ
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image--><img
class="img-fluid rounded mb-5"
src="assets/img/project/packman.png"
alt=""
/><!-- Portfolio Modal - Text-->
<p class="mb-5 popup_font_size">
2015<br />
๋ฐฉํฅํค๋ฅผ ์ฌ์ฉํ์ฌ ๊ณ ์์ด๋ฅผ ํผํด ์ฅ์๊ฒ ๋จน์ด๋ฅผ ๋จน์ฌ๋ณด์ โ<br />
JAVA
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project Modal 2-->
<div
class="portfolio-modal modal fade"
id="ProjectModal2"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal2Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">
Automatically Pets Feeding System
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image--><img
class="img-fluid rounded mb-5"
src="assets/img/project/APFS.jpg"
alt=""
/><!-- Portfolio Modal - Text-->
<p class="mb-5 popup_font_size">
2016<br />
๋ฐ๋ ค๋๋ฌผ์ ํผ์ ๋๋๊ณ ์์ฐํ๋์ ํด์ผํ๋ ํ๋์ธ๋ค์๊ฒ ํ์ํ ์ต์ ์ ๋ฌผ๊ฑด โ<br />
๋ฌผ์ ์์ด ์ผ์ ํ๊ฒ ์ ์ง๋๊ณ ์๊ฐ๋ง๋ค ๋จน์ด๊ฐ ๋์จ๋ค โโ<br />
Z80<br />
moter & water sensor
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project Modal 3-->
<div
class="portfolio-modal modal fade"
id="ProjectModal3"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal3Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">
Over Quake
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image--><img
class="img-fluid rounded mb-5"
src="assets/img/project/overquake.JPG"
alt=""
/><!-- Portfolio Modal - Text-->
<p class="mb-5 popup_font_size">
2016<br />
์ฌ๋์์์ ๊ฒ์์ ํตํด ์ฝ๊ฒ ๋ฐฐ์ฐ์ โ<br />
๋ฐฉํฅํค๋ก ๋จ์ด์ง๋ ๋ฌผ๊ฑด์ ํผํ๊ณ , ์์กด์๋ค๊ณผ ์๋์ ๋๋์ด๊ฐ๋ฉฐ ์ด์๋จ๊ธฐ โ<br />
์์ดํ
๋ค์ ํฉ์ฑํด ์์กด์ ํ์ํ ๋ฌผ๊ฑด๋ค์ ๋ง๋ค์ด๋ณด์ โ<br />
JAVA + libGDX<br />
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project Modal 4-->
<div
class="portfolio-modal modal fade"
id="ProjectModal4"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal4Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">
๋ฌด์ ๋ง์ดํฌ
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image--><img
class="img-fluid rounded mb-5"
src="assets/img/project/embedded_project.jpg"
alt=""
/>
<!-- Portfolio Modal - Text-->
<p class="mb-5 popup_font_size">
2016<br />
๋ธ๋ฃจํฌ์ค๋ก ํด๋ํฐ๊ณผ ์ฐ๋ํ์ฌ MR์ ๋ฐ์์ ๊ฐ์ด๋
ธ๋๋ฐฉ์ฒ๋ผ ์ฌ์ฉํ ์ ์๋ ๋ง์ดํฌ
โ<br />
๋ฅผ ๋ง๋ค๋ ค๊ณ ํ์ผ๋,,,,,<br />
๋ง์ดํฌ ์
๋ ฅ/์คํผ์ปค ์ถ๋ ฅ Device Driver ๊ฐ๋ฐ์ ๋ชปํ์ โ โ<br />
์ ์๋ง ์ถ๋ ฅํ๋๋ก ๊ฐ๋ฐํจ๐ฅฐ<br />
Raspberry Pi + Ubuntu
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project Modal 5-->
<div
class="portfolio-modal modal fade"
id="ProjectModal5"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal5Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">YU Mart</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image--><img
class="img-fluid rounded mb-5"
src="assets/img/project/yumart.jpg"
alt=""
/><!-- Portfolio Modal - Text-->
<p class="mb-5 popup_font_size">
2018<br />
๋งํธ์์ ์ผ์ด๋ ์ ์๋ ๋ชจ๋ ๋ฌธ์ ๋ฅผ ์ดํ ํ๋๋ก ํด๊ฒฐํ๋ผ โ<br />
1. ์ค๋ด ์์น ์ฐพ๊ธฐ<br />
2. ๋ฏธ์ ์ฐพ๊ธฐ<br />
3. ์ฃผ์ฐจ์ฅ ์ํฉ ๋ฐ ๋ด ์ฃผ์ฐจ ์์น ์ฐพ๊ธฐ<br />
4. ๋ฌผ๊ฑด ์์น<br />
5. ๊ธฐํ ๊ธฐ๋ฅ โ<br />
fingerprinting<br />
Android + Arduino + BLE
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project Modal 6-->
<div
class="portfolio-modal modal fade"
id="ProjectModal6"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal6Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">
Happy House
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image--><img
class="img-fluid rounded mb-5"
src="assets/img/project/happyhouse.png"
alt=""
/><!-- Portfolio Modal - Text-->
<p class="mb-5 popup_font_size">
2020<br />
ํ๋์ ๋ถ๋์ฐ ๊ฑฐ๋ ์ ๋ณด์ ์ํํธ ์ ๋ณด๋ฅผ ๋ณผ ์ ์๋ ์น ํ์ด์งโ<br />
์ํ๋ ์ง์ญ์ ํ๊ฒฝ์ ๋ณด์ ์ธ๊ทผ ์ง์ญ์ ์๊ถ์ ๋ณด ์ ๊ณตโ<br />
์ด์ฌ ๊ฐ๊ธฐ ์ , ํ์ํ ์ ๋ณด๋ฅผ ํ ๋ฒ์ ๋ค ์ป์ ์ ์๋ Happy House๋ก ์ค์ธ์โใฐโโ
<br />Spring boot & Vue<br />
๐ปBack-end<br />
1. REST API ๊ฐ๋ฐ<br />
2. ๋ฐ์ดํฐ๋ฒ ์ด์ค ๊ตฌ์ถ
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project Modal 7-->
<div
class="portfolio-modal modal fade"
id="ProjectModal7"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal7Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">
Possible Red
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image--><img
class="img-fluid rounded mb-5"
src="assets/img/project/PossibleRed.png"
alt=""
/><!-- Portfolio Modal - Text-->
<p class="mb-5 popup_font_size">
2020<br />
ํน์ ๋ณธ์ธ์ด ์์ฌ์ผ์ผ์ ํ๋ณธ์ด๋ผ ์๊ฐํ๋์โ<br />
ํ์คํ ๋๊ธฐ๋ถ์ฌ์ ํจ๊ป ์ฌ๋ฏธ์ ์ฆ๊ฑฐ์์ ๋๋ผ๊ณ ์ถ์ผ์ ๊ฐ์โ<br />
Possible Red์์ ๋ค๋ฅธ ์ฌ๋๋ค๊ณผ ํจ๊ป ๋ฏธ์
์ ๋ฌ์ฑํ๋ฉฐ ์ฑ์ทจ๊ฐ์ ๋๊ปด๋ณด์ธ์โ<br />
Possible Red๋ ์ฌ๋ฌ ์ฌ๋๋ค๊ณผ ํจ๊ป ๋ชฉํ๋ฅผ ์ ํ๊ณ , ๋ฌ์ฑํด๋๊ฐ๋ฉฐ ๊ฒฐ๊ณผ๋ฅผ ๊ณต์ ํ ์
์๋ PWA ํ๋ซํผ์
๋๋ค.<br />
Spring boot & Vue<br />
๐ป Backend<br />
1. ๋ฐ์ดํฐ๋ฒ ์ด์ค ์ค๊ณ ๋ฐ ๊ตฌ์ถ<br />
2. Spring boot REST API ๊ฐ๋ฐ<br />
3. ์๋ฒ ๊ด๋ฆฌ(AWS ํด๋ผ์ฐ๋ ์ฐ๋ ๋ฐ ๋ฐฐํฌ)<br />
๐จ Frontend : ์น ํ์ด์ง ๊ฐ๋ฐ
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project Modal 7-->
<div
class="portfolio-modal modal fade"
id="ProjectModal7"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal7Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">
Possible Red
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-code"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image--><img
class="img-fluid rounded mb-5"
src="assets/img/project/PossibleRed.png"
alt=""
/><!-- Portfolio Modal - Text-->
<p class="mb-5 popup_font_size">
2020<br />
ํน์ ๋ณธ์ธ์ด ์์ฌ์ผ์ผ์ ํ๋ณธ์ด๋ผ ์๊ฐํ๋์โ<br />
ํ์คํ ๋๊ธฐ๋ถ์ฌ์ ํจ๊ป ์ฌ๋ฏธ์ ์ฆ๊ฑฐ์์ ๋๋ผ๊ณ ์ถ์ผ์ ๊ฐ์โ<br />
Possible Red์์ ๋ค๋ฅธ ์ฌ๋๋ค๊ณผ ํจ๊ป ๋ฏธ์
์ ๋ฌ์ฑํ๋ฉฐ ์ฑ์ทจ๊ฐ์ ๋๊ปด๋ณด์ธ์โ<br />
Possible Red๋ ์ฌ๋ฌ ์ฌ๋๋ค๊ณผ ํจ๊ป ๋ชฉํ๋ฅผ ์ ํ๊ณ , ๋ฌ์ฑํด๋๊ฐ๋ฉฐ ๊ฒฐ๊ณผ๋ฅผ ๊ณต์ ํ ์
์๋ PWA ํ๋ซํผ์
๋๋ค.<br /><br />
Spring boot & Vue<br /><br />
๐ป Backend<br /><br />
1. ๋ฐ์ดํฐ๋ฒ ์ด์ค ์ค๊ณ ๋ฐ ๊ตฌ์ถ<br />
2. Spring boot REST API ๊ฐ๋ฐ<br />
3. ์๋ฒ ๊ด๋ฆฌ(AWS ํด๋ผ์ฐ๋ ์ฐ๋ ๋ฐ ๋ฐฐํฌ)<br />
๐จ Frontend : ์น ํ์ด์ง ๊ฐ๋ฐ
</p>
</div>