-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1356 lines (1212 loc) · 40.7 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
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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>최민석, Minseok Choi</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<style>
/********************************************
* reset from
* http://meyerweb.com/eric/tools/css/reset/
*******************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/****************
* COMMONS
****************/
body,
html {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 13px;
color: #40484f;
font-weight: 400;
letter-spacing: 0;
line-height: 1.46153846;
text-align: left;
-webkit-text-size-adjust: 100%;
}
p {
display: block;
margin-bottom: 1.3em;
}
a {
color: #0095ff;
text-decoration: none;
}
a:hover {
color: #0c65a5;
text-decoration: underline;
}
ul {
margin-top: 1rem;
}
li {
list-style-type: square;
list-style-position: outside;
margin-left: 1.3em;
}
.highlights > li > p {
margin-bottom: 0.5em;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.67rem;
}
h3 {
font-size: 1.27rem;
}
em {
color: #757575;
}
blockquote {
margin-bottom: 1em;
}
strong {
font-weight: 700;
}
/* main container */
#resume {
padding: 1rem;
margin-top: 2rem;
}
/* every section wrapper */
.section {
margin-bottom: 1rem;
}
section .location {
margin-right: .5em;
color: #606d76;
font-weight: 700;
}
#contact {
margin-top: .5rem;
}
#profiles .item {
padding: 0;
}
#header>#profiles,
#header>#contact,
#skills,
#languages,
#interests {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: flex-start;
justify-content: flex-start;
}
#header>div {
line-height: 1.5;
}
#header>div>div {
margin-right: 1.2em;
}
#header h1.name {
font-size: 2.8rem;
font-weight: 100;
line-height: 100%;
}
#header h2.label {
color: #202931;
font-size: 1.47rem;
font-weight: 300;
}
#header .picture {
width: 11em;
float: right;
border-radius: 4px;
}
.main-summary {
background: #f1f8ff;
padding: 1.2em 1em;
margin-top: 1rem;
}
.main-summary p {
margin: .15em 0 0;
}
h2.section-title {
display: inline-block;
background: #fff;
padding: 0 1em 0.3em 0;
color: #ff6d1f;
text-transform: uppercase;
font-weight: 600;
border: none;
font-size: .9rem;
}
.section>header {
position: relative;
}
.fa {
margin-right: 0.25em;
}
.section>header::after {
position: absolute;
left: 0;
top: .7em;
height: 1px;
background: #ccc;
content: "";
width: 100%;
z-index: -100;
display: block;
}
.section.main-summary>section {
margin: 0;
}
.section>section>header {
font-size: 1.38rem;
position: relative;
margin-top: .7em;
}
.section>section>header:first-of-type {
margin: 0;
}
.section>section>header .space-left {
position: absolute;
left: -1.56rem;
top: 5px;
color: #aaa;
line-height: 1;
opacity: 0;
}
.position,
.company,
.organization,
.institution,
.date,
.area,
.studyType,
.title,
.awarder {
display: inline;
}
.position,
.studyType,
.area,
.title,
.language,
.name {
font-weight: 600;
}
.company::before,
.institution::before,
.organization::before,
.awarder::before {
content: "at "
}
.company,
.institution,
.organization,
.awarder {
color: #606d76;
font-weight: 400;
}
.section header .date {
font-size: 1rem;
display: inline-table;
padding: .1em 0;
font-weight: 600;
}
ul.keywords,
ul.courses {
margin-top: .5em;
}
ul.keywords li,
ul.courses li {
display: inline-block;
margin: 2px 2px 2px 0;
padding: 4px 5px 5px;
font-size: .9rem;
line-height: 1;
color: #3e6d8e;
background-color: #dfeaf1;
border: 0 solid #dfeaf1;
white-space: nowrap;
}
ul.keywords li:hover,
ul.courses li:hover {
background: #dfeaf0;
}
.item {
padding: .5em 0;
}
.gpa {
padding-bottom: .5em;
}
.fa.social {
font-size: 1.1em;
}
/* Social Media Brand Colors */
.google-plus {
color: #dd4b39;
}
.tumblr {
color: #32506d;
}
.foursquare {
color: #0072b1;
}
.facebook {
color: #3b5998;
}
.linkedin {
color: #007bb6;
}
.pinterest {
color: #cb2027;
}
.dribbble {
color: #ea4c89;
}
.instagram {
color: #517fa4;
}
.twitter {
color: #00aced;
}
.soundcloud {
color: #ff3a00;
}
.wordpress {
color: #21759b;
}
.youtube {
color: #bb0000;
}
.github {
color: #171515;
}
.stack-overflow {
color: #828386;
position: relative;
}
.flickr {
color: #ff0084;
}
.stack-overflow::after {
position: absolute;
left: 0;
content: '\f16c';
color: #f68a1f;
overflow: hidden;
height: 100%;
}
.telegram {
color: #2291c3;
}
#languages .item,
#skills .item,
#interests .item {
width: 15em;
padding: 0 .5em .5em 0;
border-bottom: none;
}
#skills .item {
width: 16em;
}
#skills .item .keywords {
width: 15em;
}
/* Skill chart */
.level {
margin-bottom: .5em;
}
.level .bar {
border: 1px solid #ddd;
display: block;
width: 10em;
height: 5px;
position: relative;
}
.level .bar::after {
position: absolute;
content: " ";
top: 0;
left: 0;
background: black;
height: 5px;
}
.level.beginner .bar::after {
background: #EB5F51;
width: 2.5em;
}
.level.intermediate .bar::after {
background: #ffdf1f;
width: 5em;
}
.level.advanced .bar::after,
.level.fluent .bar::after {
background: #5CB85C;
width: 7.5em;
}
.level.master .bar::after,
.level.native.speaker .bar::after {
background: #59C596;
width: 10em;
}
#references .item {
padding-left: .5em;
border-left: 5px solid #ff6d1f;
}
.toggle-item {
visibility: hidden;
}
/******************
* HELPER CLASSES
******************/
.clear::after {
content: "";
display: table;
clear: both;
}
.display {
display: block;
opacity: 1 !important;
}
.margin1 {
margin-bottom: .5rem;
}
/****************
* TABLET
****************/
@media screen and (min-width: 602px) {
#resume {
width: 80%;
margin: 0 auto;
}
}
/****************
* LAPTOP
****************/
@media screen and (min-width: 1025px) {
li {
margin-left: 1.5em;
}
#resume {
width: 820px;
margin: 2rem auto;
}
.section>section>header .space-left {
opacity: 1;
cursor: pointer;
}
.section>section {
margin-left: 1.67rem;
}
.toggle-item {
transform: translate(-9999px);
}
.toggle-item+label {
display: block;
margin-top: -16px;
}
.toggle-item:checked+label:after {
content: '\f0d7';
}
.toggle-item+label:after {
float: left;
cursor: pointer;
margin-left: -20px;
color: #aaa;
font-size: 16px;
content: '\f0da';
font-family: Fontawesome;
}
.toggle-item~.item {
height: 0;
opacity: 0;
}
.toggle-item:checked~.item {
height: auto;
opacity: 1;
transition: all .5s linear;
}
.company::before,
.institution::before,
.organization::before,
.awarder::before {
content: "| ";
}
.header-left {
float: left;
width: 70%;
word-break: normal;
}
.section header .date {
float: right;
padding: .2em;
}
.display {
display: none;
}
.display:not(.none) {
display: block;
}
}
@media print {
#resume {
width: 80%;
margin: 2rem auto;
padding: 0;
-ms-word-wrap: break-word;
word-wrap: break-word;
line-height: 1.3;
/*font-family: Arial, Georgia, "Lucida Grande", sans-serif;*/
}
@page {
margin: 1cm 1.4cm;
}
.item-count {
display: none;
}
p {
font-size: 0.9em;
line-height: 1.5;
}
.company::before,
.institution::before,
.organization::before,
.awarder::before {
content: "at ";
}
.main-summary {
padding: 2rem 0;
}
.section {
margin: .8rem 0;
padding: 0;
}
.section header {
padding-bottom: .15rem;
}
.section .location {
padding-bottom: .15rem;
}
.stack-overflow::after {
content: "";
}
.fa.social {
color: #828386;
}
ul {
margin-top: .4em;
}
ul,
li {
padding: 0;
}
ul.highlights li p {
font-size: .8em;
}
ul.keywords li,
ul.courses li {
margin: 0;
padding: 0;
font-size: .8rem;
}
ul.keywords li::after,
ul.courses li::after {
padding: 0 0 0 .1rem;
content: " |";
}
ul.keywords::before,
ul.courses::before {
font-size: .8rem;
font-weight: 600;
}
#skills .keywords::before {
content: '';
}
.section p {
margin: 0;
padding: 0;
}
ul.courses::before {
content: "Major courses: ";
}
ul.keywords li:last-of-type::after,
ul.courses li:last-of-type::after {
content: "";
}
.level em {
font-style: normal;
padding: .1em 0;
}
.level .bar {
display: none;
}
#profiles .item {
padding: 0;
}
.item.display {
display: block;
opacity: 1 !important;
}
}
</style>
</head>
<body>
<div id="resume">
<header id="header" class="clear">
<div>
<h1 class="name">최민석, Minseok Choi</h1>
<h2 class="label">Web Programmer</h2>
</div>
<div id="contact">
<div class="email">
<span class="fa fa-envelope-o"></span>
<a href="mailto:cms9597@gmail.com">cms9597@gmail.com</a>
</div>
<div class="phone">
<span class="fa fa-mobile"></span>
<a href="tel:010-2034-5401">010-2034-5401</a>
</div>
</div>
<div id="profiles">
<div class="item">
<div class="username">
<span class="fa fa-github github social"></span>
<span class="url">
<a target="_blank" href="https://www.github.com/Curzy">Curzy</a>
</span>
</div>
</div>
<div class="item">
<div class="username">
<span class="fa fa-facebook facebook social"></span>
<span class="url">
<a target="_blank" href="https://www.facebook.com/Curzy.choi">Minseok Choi</a>
</span>
</div>
</div>
<div class="item">
<div class="username">
<span class="fa fa-tumblr tumblr social"></span>
<span class="url">
<a target="_blank" href="https://curzy95.tumblr.com">Curzy95</a>
</span>
</div>
</div>
<div class="item">
<div class="username">
<span class="fa fa-codepen codepen social"></span>
<span class="url">
<a target="_blank" href="http://codepen.io/Curzy/">Curzy</a>
</span>
</div>
</div>
</div>
</header>
<section class="section margin1" style="margin-top: 1rem;">
<header>
<h2 class='section-title'>Skills</h2>
</header>
<section id="skills">
<div class="item">
<h3 class="name">
Programming Languages
</h3>
<ul class="keywords">
<li>Python</li>
<li>Javascript</li>
</ul>
</div>
<div class="item">
<h3 class="name">
Web Back-end
</h3>
<ul class="keywords">
<li>Django</li>
<li>Celery</li>
</ul>
</div>
<div class="item">
<h3 class="name">
Web Front-end
</h3>
<ul class="keywords">
<li>ReactJS</li>
<li>Webpack</li>
<li>HTML</li>
<li>CSS</li>
</ul>
</div>
<div class="item">
<h3 class="name">
Deployment
</h3>
<ul class="keywords">
<li>AWS EC2</li>
<li>AWS CodeDeploy</li>
<li>nginx</li>
</ul>
</div>
</section>
</section>
<section class="section">
<header>
<h2 class='section-title'>Work Experience <span class="item-count">(4)</span></h2>
</header>
<section id="work">
<section class="work-item">
<input id="work-item-0" type="checkbox" class="toggle-item" checked="checked" />
<label for="work-item-0"></label>
<header>
<div class="position">Programmer</div>
<div class="company">Move</div>
<div class="date">
<span class="startDate">April 2017</span>
<span class="endDate">- August 2017</span>
</div>
</header>
<span class="website">
<a target="_blank" href="http://move.is/">http://move.is/</a>
</span> <div class="item" id="work-item">
<div class="summary">
<p><p>대입 수험생들의 입학 가능성을 진단하는 <a target='_blank' href='https://apply.orbi.kr'>오르비 모의지원</a>을 개발하였습니다. 오르비 모의지원은 매년 약 4만명 이상의 수험생의 데이터를 확보하여, 예측 알고리즘을 통해 지원 가능성을 제공했습니다. 저는 이 프로젝트에서 합격 커트라인 알고리즘 코어를 제외한, 유저 뷰 단, 자사 다른 서비스와 통신하는 API, 점수 입력부터 대학별 점수로의 변환 로직, 어드민 등 서비스 파트를 개발하였습니다. </p></p>
</div>
<ul class="highlights">
<li><p>Python2, 그리고 여러 레거시가 남아있는 <a target='_blank' href='https://faitcalc.orbi.kr'>(구)오르비 모의지원</a>을 대학의 학과간의 연관관계 데이터, 학과의 히스토리 추적을 위한 DB 관계 리모델링 등 나은 예측을 위한 목적으로 다시 개발되는 프로젝트에 참여했습니다.</p></li>
<li><p>nginx + uWSGI + Flask + SQLAlchemy로 AWS 인프라 위에서 서비스 하고 있습니다.</p></li>
<li><p>대입예측 시스템의 개발은 Programming의 과정도 많지만 그에 못지 않게 각 대학별 모집요강 문서(pdf, hwp 등 통일되지 않은 다양한 양식)를 읽고, 대학별로 반영하는 수능 응시 과목, 반영 비율, 내신 계산식, 모집 계열, 각 학과의 모집 인원 + 수시 이월 인원 등의 정보를 코드와 데이터베이스로 옮겨내는 과정의 비용이 매우 큽니다.(약 400개의 학과 대응)</p></li>
<li><p>이를 위해 각 학교별, 계열별로 값을 바꾸어 계산식을 만들어 낼 수 있는 Dict, 공통 계산 함수들을 포함하고 있는 Class를 정의하고, 특이사항(계열이 인문/자연으로 나뉜것이 아닌 매우 디테일하게 나누어져 있는 경우, 특정 과목에만 일정 비율 가산점을 부여하는 경우 등)에는 학교별 Class를 커스텀하여 사용할 수 있게 하였습니다. 이를 통해 현재 서울 주요대, 의/수의/한의/치과 대학에 대한 점수 계산, 비교, 커트라인 산출을 개발하였습니다.</p></li>
<li><p>또한 개발자의 많은 수작업이 필요하므로 그 외의 부분에서 작업하는 코스트의 효율성을 높이기 위해 Jenkins + AWS CodeDeploy의 조합으로 Commit -> Test -> Build -> Deploy의 과정의 효율을 높였습니다. Develop 브랜치를 바라보는 Pull Request는 자동으로 Jenkins가 감지하여 빌드, 빌드 완료시 CodeDeploy로 트리거하여 배포하여 적용사항을 확인할 수 있고. Master 커밋은 개발자가 직접 Jenkins에서 빌드를 시작하면 그 이후의 과정이 자동으로 이루어집니다.</p></li>
<li><p>모의지원 서비스는 지난 6월 모의고사에서 약 5000명 가량의 유저가 접속하여 점수를 기록하였고. CloudWatch 대시보드를 사용하여 모니터링, EC2의 Load Balancer + Auto Scaling Group을 사용하여 트래픽에 따른 자동화된 서버 스케일링 등 적극적으로 AWS를 활용하여 유연한 인프라를 운영하였습니다.</p></li>
<li><p>프론트엔드는 JinJa2 템플릿 엔진을 사용하고, 유저들의 과목별, 총 점수의 분포 등 지표를 D3.js를 활용하여 그려주었습니다.</p></li>
</ul>
</div>
</section>
<section class="work-item">
<input id="work-item-1" type="checkbox" class="toggle-item" />
<label for="work-item-1"></label>
<header>
<div class="position">Programmer</div>
<div class="company">Wolsemap</div>
<div class="date">
<span class="startDate">February 2016</span>
<span class="endDate">- April 2017</span>
</div>
</header>
<div class="item" id="work-item">
<div class="summary">
<p><p>서울 지하철 월세 지도. 독일의 부동산 사이트 <a target='_blank' href='https://www.immobilienscout24.de'>immobilienscout24</a>의 독일 도시별 지하철 노선도 주변 one-room apartment의 평균 가격을 나타내는 <a target='_blank' href='https://www.immobilienscout24.de/immobilienbewertung/ratgeber/mietpreise-und-kaufpreise/mietspiegel/miet-map-berlin.html'>Miet-Map</a>에 영향을 받아 시작한 프로젝트 입니다. 서울 수도권 지하철 노선을 따라 조금 더 한국에 맞추어 보증금, 월세의 평균 정보를 나타내어 서울에서, 홀로, 살기 위해 가장 기본적이고 중요한 '주'의 비용에 대한 기준을 세울 수 있는 지표를 보여주려 하였습니다.</p></p>
</div>
<ul class="highlights">
<li><p>nginx + uWSGI + Django로 AWS EC2에서 서비스 하고 있습니다.</p></li>
<li><p>다방, 직방의 API요청과 응답의 구조를 분석하여 매일 밤 지하철 역별 평균 월세 정보를 가져오고 있습니다</p></li>
<li><p>Django + Celery로 매일밤 지하철 역에 대한 요청을 보내 JSON데이터를 받아 크롤링하며 Network 응답 시간에 따른 Block을 줄이기위해 Threading을 사용하였다가, 파이썬에서 Thread를 활용하는 문제때문에, 변경하였습니다.</p></li>
<li><p>비동기 태스크를 위한 Celery를 온전히 사용하기 위해 멀티쓰레딩을 제거하고 Celery Worker프로세서의 수를 늘려 크롤링 시간을 줄였습니다.</p></li>
<li><p>Front에서 JSON으로 가공된 데이터를 react-d3를 활용하여 월세, 보증금의 변화를 그래프로 그리고 있습니다.</p></li>
<li><p>SVG 지하철 노선도의 코드를 알맞게 그룹짓고, 수정하였습니다.</p></li>
<li><p>매 달 13.4 USD의 서버비가 지출되고 있어 CPU사용량을 가장 많이 사용하는 rabbitmq는 AWS SQS로, celery worker는 lambda의 scheduled event, ec2 인스턴스는 lambda를 활용하여 서버리스로 변경하려 합니다.</p></li>
<li><p>Will: 호선별, 지역별 데이터 통계, 그래프 제공, async, 네이버 부동산 크롤링, 지하철 노선도 리팩토링, 서버리스</p></li>
</ul>
</div>
</section>
<section class="work-item">
<input id="work-item-2" type="checkbox" class="toggle-item" />
<label for="work-item-2"></label>
<header>
<div class="position">Web Programmer</div>
<div class="company">BalanceCareer</div>
<div class="date">
<span class="startDate">February 2016</span>
<span class="endDate">- December 2016</span>
</div>
</header>
<span class="website">
<a target="_blank" href="https://studysearch.co.kr/">https://studysearch.co.kr/</a>
</span> <div class="item" id="work-item">
<div class="summary">
<p><p>발란스커리어는 영어 회화 그룹 스터디 매칭 서비스 스터디서치를 운영하고 있는 스타트업 입니다. 2월에 입사해 몇개월간 세일즈 팀에서 예비고객을 실제 결제 고객으로 유도해내었고, 스터디서치 세일즈팀을 위한 툴, 사업기획, 마케팅 담당자들을 위한 데이터 통계, 어드민을 주로 개발했습니다.</p></p>
</div>
<ul class="highlights">
<li><p>Django view에서 데이터를 처리하고 JSON으로 보내어 React로 데이터 필터링, Tabular view등을 구현해 어드민 사용자가 데이터를 쉽게 볼 수 있도록 개발했습니다.</p></li>
<li><p>상담을 동해 스터디를 소개할 때, 데스크탑과 모바일 환경 모두에서 커리큘럼과 리더의 소개를 더 잘 보일수 있는 소개 페이지를 제작 했습니다. <a target='_blank' href='https://studysearch.co.kr/introduce/6151/'>스터디 소개 링크</a></p></li>
<li><p>Flux 패턴을 활용해 다양한 컴포넌트, 페이지에서 동시에 갱신되는 Notification을 구현했습니다.</p></li>
<li><p>매주 스터디룸의 예약목록을 스프레드 시트로 만들고, 각 스터디룸 담당자에게 보내고 예약이 가능한지 회신받는 과정을 Google Drive, Sheets API, xlsxwriter를 활용해 Celery 태스크로 자동화 하였습니다</p></li>
<li><p>기존에 우선 기능 구현만을 위해 작성된 코드등을 보다 나은 가독성, 퍼포먼스를 위한 리팩토링, DB Transaction을 줄이기 위한 Django ORM 쿼리 최적화 작업을 했습니다.</p></li>
</ul>
</div>
</section>
<section class="work-item">
<input id="work-item-3" type="checkbox" class="toggle-item" />
<label for="work-item-3"></label>
<header>
<div class="position">Assistant Engineer</div>
<div class="company">Samsung Electronics</div>
<div class="date">
<span class="startDate">February 2014</span>
<span class="endDate">- February 2015</span>
</div>
</header>
<span class="website">
<a target="_blank" href="http://www.samsung.com/sec/">http://www.samsung.com/sec/</a>
</span> <div class="item" id="work-item">
<div class="summary">
<p><p>입사후 처음엔 개발용 시료들을 해외 연구소로 보내는 TF팀에서 통관 관련 서류 작업을 하였습니다. 개발과는 관련이 없는 업무였지만 업무중 마주하는 문제들을 프로그래밍을 활용해 해결하고, 업무 효율을 높혀왔습니다. </p></p>
</div>