-
Notifications
You must be signed in to change notification settings - Fork 0
/
a.html
265 lines (242 loc) · 10.4 KB
/
a.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<style>
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
}
nav {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
.nav-logo {
display: inline-block;
font-family: 'Roboto Slab', serif;
font-size: 24px;
}
.nav-menu {
display: inline-block;
list-style: none;
margin: 0;
padding: 0;
}
.nav-menu li {
display: inline-block;
margin-left: 20px;
}
.nav-menu a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
.nav-menu a:hover,
.nav-menu a:focus {
text-decoration: underline;
}
.hero {
background-color: #eee;
text-align: center;
padding: 50px 20px;
}
h3 {
margin: 10px 0;
}
.rank a {
color: #333;
}
.projects {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px;
}
.project {
width: 300px;
margin-bottom: 20px;
position: relative;
}
.project-content {
position: absolute;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
width: 100%;
padding: 10px;
text-align: center;
text-decoration: none;
}
.project-underline {
display: block;
height: 2px;
background-color: #4CAF50;
margin: 10px 0;
}
.text-wrap {
padding: 50px 20px;
}
.text-wrap h2 {
font-family: 'Roboto Slab', serif;
}
.logo-end {
color: #4CAF50;
}
</style>
<script>
document.querySelectorAll('.project').forEach(project => {
project.addEventListener('mouseover', () => {
project.querySelector('.project-content').style.opacity = "1";
});
project.addEventListener('mouseout', () => {
project.querySelector('.project-content').style.opacity = "0";
});
});
</script>
</head>
<body>
작품설명
<nav>
<div class="nav-wrapper">
<h1 class="nav-logo">Hongchul Ju<span class="logo-end">_</span></h1>
<ul class="nav-menu">
<li><a href="#projects">Projects</a></li>
<li><a href="#about">About</a></li>
<li><a href="#Tech">Tech</a></li>
<li><a href="#awards">Awards</a></li>
<li><a href="https://jhc9639.blog.me">Blog</a></li>
<li><a href="https://github.com/wnghdcjfe" target="_blank" class="no-link"><i
class="fab fa-github"></i></a></li>
</ul>
</div>
</nav>
<div class="hero">
<h3>Hi I'm <a href="https://github.com/wnghdcjfe" target="_blank">Hongchul ju</a></h3>
<h3>A developer who makes beautiful code</h3>
<p class="rank">
<a href="https://raw.githubusercontent.com/wnghdcjfe/wnghdcjfe.github.io/master/4percent.JPG"
class="rank-value" target="_blank">Top 4%</a> at 2020 Kakao Front-End Development Challenge,
<a href="https://github.com/mochajs/mocha/graphs/contributors" class="rank-value">76th </a>Mocha
Contributor,
<a href="https://solved.ac/profile/zagabi" class="rank-value" target="_blank">Platinum 1</a> in BOJ
</p>
</div>
<ul class="projects" data-anchor="projects" id="projects">
<li class="project project-1 ripple load-bg">
<div class="project-image"></div>
<a href="https://github.com/wnghdcjfe/wnghdcjfe.github.io/blob/master/%EA%B8%B0%EC%83%81%EC%A0%95%EB%B3%B4%EC%A7%80%EC%9B%90%EC%B2%B4%EA%B3%84.md"
class="project-content" target="_blank">
<h3 class="project-title"><span>AMOS</span></h3>
<span class="project-underline"></span>
<div class="project-description"><span>Real-time Weather Monitoring System</span></div>
</a>
</li>
<li class="project project-2 ripple load-bg">
<div class="project-image"></div>
<a href="https://github.com/wnghdcjfe/IUtoon" class="project-content" target="_blank">
<h3 class="project-title"><span>IU toon</span></h3>
<span class="project-underline"></span>
<div class="project-description"><span>Singer IU Song Serving Page</span></div>
</a>
</li>
<li class="project project-3 ripple load-bg">
<div class="project-image"></div>
<a href="https://github.com/wnghdcjfe/wnghdcjfe.github.io/blob/master/knue.md" class="project-content"
target="_blank">
<h3 class="project-title"><span>KNUE</span></h3>
<span class="project-underline"></span>
<div class="project-description"><span>university community web site</span></div>
</a>
</li>
<li class="project project-4 ripple load-bg">
<div class="project-image"></div>
<a href="https://lucidcode.herokuapp.com/#/" class="project-content" target="_blank">
<h3 class="project-title"><span>Lucid Codeforce</span></h3>
<span class="project-underline"></span>
<div class="project-description"><span>A system that quickly finds answers to Codeforce.</span></div>
</a>
</li>
<li class="project project-5 ripple load-bg">
<div class="project-image"></div>
<a href="https://github.com/mochajs/mocha/graphs/contributors" class="project-content" target="_blank">
<h3 class="project-title"><span>Mocha.js</span></h3>
<span class="project-underline"></span>
<div class="project-description"><span>Javascript Test Framework</span></div>
</a>
</li>
<li class="project project-6 ripple load-bg">
<div class="project-image"></div>
<a href="https://github.com/wnghdcjfe/thousand_wooo_app" class="project-content" target="_blank">
<h3 class="project-title"><span>Solbang Notepad</span></h3>
<span class="project-underline"></span>
<div class="project-description"><span>Actor Chun Woo-hee's Notebook Page</span></div>
</a>
</li>
</ul>
<div class="about" data-anchor="about" id="about">
<div class="text-wrap animate-text ">
<h2>About<span class="logo-end">_</span></h2>
<p class="text-intro">
I started programming by developing a university community, and I joined the Air Force and developed a
project to provide weather data services. One of the most representative projects is the AMOS project
currently used by the airport control department.
</p>
<p class="text-intro">
Based on the experience of solving more than 1,300 algorithmic problems in BOJ, I have experienced
over 67% improvement in performance by using segments and a 15-fold increase in data growth, but 30%
improvement by removing unnecessary business logic and requests. </p>
</div>
</div>
<div class="Tech" data-anchor="Tech" id="Tech">
<div class="text-wrap animate-text ">
<h2>Tech<span class="logo-end">_</span></h2>
<p class="text-intro">Strong</p>
<p>
JS(ES5+) / Vue.js/ Vuex / React.js / Redux / D3.js /
Node.js / Express.js / Request.js / Cheerio.js /
Nightmare.js / Mocha.js / TypeScript / GraphQL /
HTML5 / CSS / Webpack / C++(PS) / Functional
Programming / MongoDB / Neo4j / Nginx</p>
<p class="text-intro">Knowledgeable</p>
<p>
Spring / Java / jQuery / Angular.js / PHP / Python / TensorFlow /
DL(LSTM, CNN) / Matplotlib / Numpy / Pandas /
Beautiful Soup 4 / Selenium / JSP /
MySQL / TiberoDB / FirebaseDB
</p>
<p class="text-intro">ETC</p>
<p>
Git / Docker / IOT / OPIC-IM2(20.02.29) / Secure Coding Completion(KISA)
</p>
</div>
</div>
<div class="awards" data-anchor="awards" id="awards">
<div class="text-wrap animate-text ">
<h2>Awards<span class="logo-end">_</span></h2>
<p class="text-intro"> 2020 Kakao Development Challenge Front-End Challenges</p>
<p> 20.07 / Top 4% / Programmers / <a href="https://bit.ly/2C96qdc">link</a></p>
<p class="text-intro"> 2019 Countributon – Mocha.js</p>
<p> 19.12.04 / Encouragement Prize / Ministry of Science and ICT</p>
<p class="text-intro"> citation (development of North Korean Artillery Weather Station)</p>
<p> 19.04.11 / defense Intelligence Headquarters <i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i> / Defense Department</p>
<p class="text-intro">citation (development of AMOS)</p>
<p> 18.08.20 / Brigadier General <i class="fas fa-star"></i> / Weather Group of R.O.K Air Force</p>
<p class="text-intro"> 2nd place in SW development competition for military in South Korea
</p>
<p> 17.01.24 / General <i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i
class="fas fa-star"></i> / Defense Department</p>
<p class="text-intro"> 1st place in Startup Korea Gangwon Hackathon</p>
<p> 15.12 13/ 1st place / Gangwon Creative Economy Innovation Center</p>
<p class="text-intro"> 2nd place in the 2015 Korea Presentation Contest</p>
<p> 15.01.29 / 2nd place in university student category / G1 Gangwon</p>
</div>
</div>
</body>
</html>