forked from awesome-devblog/awesome-devblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.yml
6076 lines (6076 loc) · 205 KB
/
db.yml
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
---
- name: 강규영
profile: people/ecogwiki.md
blog: http://www.ecogwiki.com/
rss: http://www.ecogwiki.com/sp.posts?_type=atom
description: ''
slideshare: https://www.slideshare.net/jania902
- name: 강관우
blog: https://brunch.co.kr/@kd4
description: Java
- name: 강대명
profile: people/charsyam.md
blog: https://charsyam.wordpress.com/
rss: http://charsyam.wordpress.com/feed/
description: 서버 사이드
twitter: https://twitter.com/charsyam
github: https://github.com/charsyam
linkedin: https://www.linkedin.com/in/daemyung-kang-7538a731/
slideshare: https://www.slideshare.net/charsyam2
- name: 강동혁
blog: https://brunch.co.kr/@dongkang
rss: https://brunch.co.kr/rss/@@1fY0
description: 인디 개발
- name: 강명서
blog: https://blog.leop0ld.org/
rss: https://blog.leop0ld.org/feed.xml
description: Django
twitter: https://twitter.com/__leop0ld__
facebook: https://www.facebook.com/leop0ld
linkedin: https://www.linkedin.com/in/leop0ld/
github: https://github.com/leop0ld
stackoverflow: https://stackoverflow.com/users/5506957/leop0ld
slideshare: https://www.slideshare.net/ssuseraaed82
- name: 강명훈
blog: http://kangmyounghun.blogspot.kr/
rss: http://kangmyounghun.blogspot.com/feeds/posts/default
description: 보안
- name: 강미경
blog: http://minieetea.com/
rss: http://minieetea.com/feed
description: 기획
facebook: https://www.facebook.com/minieetea
twitter: https://twitter.com/minieetea
github: https://github.com/minieetea
- name: 강민우
slideshare: https://www.slideshare.net/ssuser052dd11
- name: 강병수
blog: https://01010011.blog/
rss: https://01010011.blog/feed/
description: DevOps
- name: 강병욱
blog: https://medium.com/@brillante9111
rss: https://medium.com/feed/@brillante9111
description: 라이언봇
- name: 강상진
blog: https://brunch.co.kr/@sangjinkang
rss: https://brunch.co.kr/rss/@@JqQ
description: Network
twitter: https://twitter.com/Brandon_Kang
linkedin: https://www.linkedin.com/in/brandonkang/
slideshare: https://www.slideshare.net/BrandonK
- name: 강성일
blog: https://b.luavis.kr/
rss: https://b.luavis.kr/feed.xml
description: Python
facebook: https://www.facebook.com/luavis
github: https://github.com/luavis
- name: 강성진
blog: https://ujuc.kr/
rss: https://ujuc.kr/feed
description: 도서 리뷰
facebook: https://www.facebook.com/ujuckr
twitter: https://twitter.com/ujuc
- name: 강성훈
blog: http://mearie.org/
rss: http://j.mearie.org/rss
description: 카일루아
twitter: https://twitter.com/senokay/
github: https://github.com/lifthrasiir/
- name: 강성훈
blog: https://medium.com/@devholic
rss: https://medium.com/feed/@devholic
description: RxJava
- name: 강성희
blog: https://medium.com/@shaynekang
rss: https://medium.com/feed/@shaynekang
description: ''
- name: 강임성
blog: https://imseongkang.wordpress.com/
rss: https://imseongkang.wordpress.com/feed/
description: 게임 개발
twitter: https://twitter.com/Imseong
slideshare: https://www.slideshare.net/ImseongKang
- name: 강재호
blog: http://blog.greennuri.info/
rss: http://blog.greennuri.info/?feed=rss2
description: AI, Python
github: https://github.com/jaeho-kang
- name: 강전희
blog: https://newstars77.blog.me/
rss: https://newstars77.blog.me/rss
description: R
github: https://github.com/newstars
instagram: https://www.instagram.com/hellojany/
youtube: https://www.youtube.com/channel/UCBbH_NiLhu5uXQ74Tf-qQhg
facebook: https://www.facebook.com/newstars77
- name: 강준영
blog: https://juneyoung-kang.github.io/blog/
rss: https://juneyoung-kang.github.io/blog/feed
description: Web
facebook: https://www.facebook.com/juneyoungdev
instagram: https://www.instagram.com/juneyoung_kang/
twitter: https://twitter.com/juneyoung_kang
github: https://github.com/juneyoung-kang
home: http://juneyoung.kr/
- name: 강진우
profile: people/alden.md
blog: https://brunch.co.kr/@alden
rss: https://brunch.co.kr/rss/@@3Y0
description: Linux
- name: 강태욱
blog: http://daddynkidsmakers.blogspot.kr/
rss: http://daddynkidsmakers.blogspot.com/feeds/posts/default
description: IoT
- name: 강한별
blog: https://brunch.co.kr/@cloud09
rss: https://brunch.co.kr/rss/@@m6q
description: 데이터 분석
linkedin: https://www.linkedin.com/in/cloud09/
github: https://github.com/dearcloud09
- name: 강한용
blog: http://flowvalue.tistory.com/
rss: http://flowvalue.tistory.com/rss
description: Swift
github: https://github.com/skydice
- name: 강형석
blog: https://hskang9.github.io/
rss: https://hskang9.github.io/feed.xml
description: 머신러닝
facebook: https://www.facebook.com/hskang960
linkedin: https://www.linkedin.com/in/hyungsuk-kang-5217a7103/
github: https://github.com/hskang9
medium: https://medium.com/@hyungsukkang
instagram: https://www.instagram.com/hyungsuk_k/
- name: 강홍구
blog: https://wckhg89.github.io
rss: https://wckhg89.github.io/feed.xml
description: Web
github: https://github.com/wckhg89
- name: 강효원
slideshare: https://www.slideshare.net/apknight
- name: 강효준
facebook: http://facebook.com/kanghyojun
linkedin: https://www.linkedin.com/in/kanghyojun/
slideshare: https://www.slideshare.net/kanghyojun
- name: 경준호
blog: http://firejune.com/
rss: https://feeds.feedburner.com/firejune
description: Front-end
twitter: https://twitter.com/firejune
facebook: https://www.facebook.com/firejune
instagram: https://www.instagram.com/firejune/
github: https://github.com/firejune
linkedin: https://www.linkedin.com/in/firejune/
- name: 계주성
blog: http://kyejusung.com/
rss: http://kyejusung.com/feed/
description: ''
twitter: https://twitter.com/kyejusung
- name: 고득녕
blog: http://blog.naver.com/nackji80/
rss: http://blog.rss.naver.com/nackji80.xml
description: 네트워크
- name: 고명석
blog: http://ifyoudontknow-youcandothis.tistory.com/
rss: http://ifyoudontknow-youcandothis.tistory.com/rss
description: React
facebook: https://www.facebook.com/myeongsku
github: https://github.com/AlbertKo827
- name: 고명진
blog: https://rjs1197.github.io/
rss: https://rjs1197.github.io/feed.xml
description: C++
github: https://github.com/rjs1197
- name: 고명환
blog: https://brunch.co.kr/@maru7091
rss: https://brunch.co.kr/rss/@@LOc
description: 스타트업
- name: 고영빈
blog: http://akal.co.kr/
rss: http://akal.co.kr/?feed=rss2
description: Application, Ubuntu
facebook: https://www.facebook.com/youngbin.ko.984
twitter: https://twitter.com/akalkid
instagram: https://www.instagram.com/akalkid/
pinterest: https://www.pinterest.co.kr/akalkid/
- name: 고석진
blog: https://appear.github.io/
rss: https://appear.github.io/atom.xml
linkedin: https://www.linkedin.com/in/석진-고-07644614a/
github: https://github.com/appear
facebook: https://www.facebook.com/profile.php?id=100002748908784
- name: 고유영
blog: https://medium.com/@yooyoungko
description: Javascript
facebook: https://www.facebook.com/lunayyko
- name: 고종범
blog: https://brunch.co.kr/@jbgo
rss: https://brunch.co.kr/rss/@@24SO
description: 애자일
- name: 고형호
blog: http://hhko.tistory.com/
rss: http://hhko.tistory.com/rss
description: Functional Programming
- name: 곽민수
blog: https://brunch.co.kr/@imagineer
rss: https://brunch.co.kr/rss/@@YZF
description: 싱가폴 데이터 엔지니어
facebook: https://www.facebook.com/marcosdeseul/
github: https://github.com/marcosdeseul
linkedin: https://www.linkedin.com/in/minsoo-kwak-44367388/
youtube: https://www.youtube.com/channel/UCZ7c3OpOYicLQDDZyKevDDw
- name: 곽중선
blog: http://sunnykwak.tistory.com/
rss: http://sunnykwak.tistory.com/rss
description: Java
linkedin: https://www.linkedin.com/in/중선-곽-394574102/
slideshare: https://www.slideshare.net/sunnykwak90
- name: 곽희범
blog: http://norux.me/
rss: http://norux.me/rss
description: Javascript
github: https://github.com/norux
- name: 구교준
blog: http://danielku.com/
rss: http://danielku.com/atom.xml
description: AWS
facebook: https://www.facebook.com/kjunine
twitter: https://twitter.com/kjunine
linkedin: https://www.linkedin.com/in/kjunine/
github: https://github.com/kjunine
- name: 구동수
linkedin: https://www.linkedin.com/in/ninedongsu/
slideshare: https://www.slideshare.net/ssuserdec263
- name: 구영민
slideshare: https://www.slideshare.net/kym970918
- name: 구인본
blog: http://inbon.net/
rss: http://inbon.net/rss/
twitter: https://twitter.com/inbonk
facebook: https://www.facebook.com/inbonk
- name: 구자철
blog: http://forest71.tistory.com/
rss: http://forest71.tistory.com/rss
description: Java
facebook: https://www.facebook.com/profile.php?id=100012676655679
github: https://github.com/gujc71
- name: 구재현
blog: http://koosaga.com/
rss: http://koosaga.com/rss
description: 알고리즘
facebook: https://www.facebook.com/gs14004
- name: 구종만
profile: people/theyearlyprophet.md
blog: http://theyearlyprophet.com/
rss: http://feeds.feedburner.com/theyearlyprophet/GGGO
description: 알고리즘
twitter: https://twitter.com/jongman
github: https://github.com/jongman
linkedin: https://www.linkedin.com/in/jongman/
- name: 권경덕
blog: http://itstory.tk/
rss: http://itstory.tk/rss
description: Java
facebook: https://www.facebook.com/kkd927
- name: 권기호
blog: http://kwongyo.tistory.com/
rss: http://kwongyo.tistory.com/rss
description: ''
- name: 권남
blog: http://kwon37xi.egloos.com/
rss: http://rss.egloos.com/blog/kwon37xi
description: Java
- name: 권동준
blog: https://mayajuni.github.io/
rss: https://mayajuni.github.io/feed.xml
description: Web
github: https://github.com/mayajuni
facebook: https://www.facebook.com/dongjun.kwon.39
- name: 권민재
blog: https://mingrammer.com/
rss: https://mingrammer.com/index.xml
description: Python
github: https://github.com/mingrammer
medium: https://medium.com/@mingrammer
speakerdeck: https://speakerdeck.com/mingrammer
facebook: https://www.facebook.com/mingrammer
twitter: https://twitter.com/mingrammer
- name: 권보경
blog: http://www.elliekwon.com/
rss: http://www.elliekwon.com/feeds/posts/default
description: iOS
facebook: https://www.facebook.com/elliebkwon
linkedin: https://www.linkedin.com/in/elliekwon/
github: https://github.com/elliekwon
- name: 권성준
blog: https://gwonsungjun.github.io/
rss: https://gwonsungjun.github.io/atom.xml
description: Back-end
github: https://github.com/gwonsungjun
facebook: https://www.facebook.com/sungjun.gwon
twitter: https://twitter.com/kwen5600
- name: 권수호
blog: http://blog.naver.com/PostList.nhn?blogId=knix008
rss: http://blog.rss.naver.com/knix008.xml
description: C
- name: 권영재
blog: https://nesoy.github.io/
rss: https://nesoy.github.io/atom.xml
description: ''
github: https://github.com/nesoy
facebook: https://www.facebook.com/Nesoy92
linkedin: https://www.linkedin.com/in/young-jae-kwon-3514b3141/
slideshare: https://www.slideshare.net/YoungJaeKwon3
- name: 권용근
blog: https://kingbbode.github.io/
rss: https://kingbbode.github.io/feed.xml
description: Spring
github: https://github.com/kingbbode
tistory: http://kingbbode.tistory.com/
facebook: https://www.facebook.com/kingbbode
- name: 권용진
blog: https://brunch.co.kr/@nsung
rss: https://brunch.co.kr/rss/@@H9i
description: 퀀트
facebook: https://www.facebook.com/MrJin
linkedin: https://www.linkedin.com/in/yongjinkwon/
- name: 권욱제
blog: http://wookje.dance/
rss: http://wookje.github.io/rss/
description: 알고리즘
github: https://github.com/wookje
boj: https://www.acmicpc.net/user/wookje
codeforces: http://codeforces.com/profile/wookje.happy
facebook: https://www.facebook.com/profile.php?id=100008317802738
opgg: https://overlog.gg/detail/overview/239042227252217170213224
- name: 권윤학
blog: http://web-front-end.tistory.com/
rss: http://web-front-end.tistory.com/rss
description: Web
github: https://github.com/tienne
- name: 권재명
blog: http://dataninja.me/
rss: http://dataninja.me/feed.xml
description: Data Science
facebook: https://www.facebook.com/jaimie.kwon
github: https://github.com/jaimyoung
twitter: https://twitter.com/jaimyoung
linkedin: https://www.linkedin.com/in/statkwon/
- name: 권정민
blog: https://cojette.github.io/
rss: https://cojette.github.io/feed.xml
description: 데이터 분석
linkedin: https://www.linkedin.com/in/jeongmin-kwon-a5069734/
twitter: https://twitter.com/mazycat
github: https://github.com/cojette
slideshare: https://www.slideshare.net/cojette
brunch: https://brunch.co.kr/@cojette
- name: 권정혁
blog: http://xguru.net/guru
rss: http://xguru.net/feed
description: 개발 트렌드
twitter: https://twitter.com/xguru
facebook: https://www.facebook.com/xguru
linkedin: https://www.linkedin.com/in/xguru/
slideshare: https://www.slideshare.net/guruguru
- name: 권진호
blog: http://jinhokwon.tistory.com/
rss: http://jinhokwon.tistory.com/rss
description: Full Stack
- name: 권진환
blog: https://medium.com/@jinkwon711
rss: https://medium.com/feed/@jinkwon711
description: Python, Django
- name: 권창현
blog: http://thoughts.chkwon.net/
rss: http://thoughts.chkwon.net/feed/
description: 산업공학
facebook: https://www.facebook.com/thoughts.chkwon.net
twitter: https://twitter.com/chghyn
- name: 권태관
blog: https://taetaetae.github.io/
rss: https://taetaetae.github.io/atom.xml
description: Back-end
facebook: https://www.facebook.com/taetaetae0
linkedin: https://www.linkedin.com/in/태관-권-517825129/
- name: 권태국
blog: https://taeguk2.blogspot.com/
rss: https://taeguk2.blogspot.com/feeds/posts/default
linkedin: https://www.linkedin.com/in/taeguk/
facebook: https://www.facebook.com/xornrbboy
twitter: https://twitter.com/xornrbboy
github: https://github.com/taeguk
- name: 권태형
blog: https://taebbong.github.io/
rss: https://taebbong.github.io/feed.xml
description: Node.js
facebook: https://www.facebook.com/taebbong
linkedin: https://www.linkedin.com/in/taebbong/
github: https://github.com/TaeBbong
instagram: https://www.instagram.com/taebbong1127/
- name: 권태환
blog: http://thdev.tech/
rss: http://thdev.tech/feed.xml
description: Android, Kotlin
github: https://github.com/taehwandev
twitter: https://twitter.com/cafe_k
linkedin: https://www.linkedin.com/in/taehwankwon/
slideshare: https://www.slideshare.net/taehwandev
- name: 권혁우
blog: https://medium.com/@khwsc1
rss: https://medium.com/feed/@khwsc1
description: React
facebook: https://www.facebook.com/AlexHyuckKwon
- name: 권현아
blog: http://hyeooona825.tistory.com/
rss: http://hyeooona825.tistory.com/rss
description: 알고리즘
github: https://github.com/kwonhyeona
- name: 권희정
blog: https://gmlwjd9405.github.io/
rss: https://gmlwjd9405.github.io/feed
description: ''
github: https://github.com/gmlwjd9405
- name: 김강천
blog: https://medium.com/@rlarkdcjs12
rss: https://medium.com/feed/@rlarkdcjs12
description: Algorithm
- name: 김경록
blog: http://krksap.tistory.com/
rss: http://krksap.tistory.com/rss
description: Python, Java
github: https://github.com/Kyeongrok
youtube: https://www.youtube.com/channel/UCG6V3hF7lN5veSLXWkcMG3g
- name: 김광섭
linkedin: https://www.linkedin.com/in/kwangseob-kim-a2516541/
slideshare: https://www.slideshare.net/kimkwangseop
- name: 김광현(광파리)
blog: https://kwang82.blogspot.kr/
rss: https://kwang82.blogspot.com/feeds/posts/default
description: IT 소식
twitter: https://twitter.com/kwang82
facebook: https://www.facebook.com/kwang8e
- name: 김국현
blog: http://goodhyun.com/
rss: http://feeds.feedburner.com/goodhyun
description: IT 칼럼
twitter: https://twitter.com/goodhyun
hubzum: http://hub.zum.com/goodhyun
- name: 김기훈
blog: http://kihoonkim.github.io/
description: Agile
facebook: https://www.facebook.com/koreakihoon
github: https://github.com/kihoonkim
slideshare: https://www.slideshare.net/koreakihoon
linkedin: https://www.linkedin.com/in/kihoon-kim-4630ba13b/
- name: 김길호
blog: http://kilhokim.github.io/
description: ''
- name: 김나솔
blog: https://brunch.co.kr/@nassol
rss: https://brunch.co.kr/rss/@@14Ig
description: 개발자 영어
- name: 김나영
blog: https://blog.naver.com/phlox__
rss: https://rss.blog.naver.com/phlox__.xml
description: Front-end
github: https://github.com/AnnYKim
codepen: https://codepen.io/nykim_
home: https://nykim.net/
- name: 김나은
blog: https://brunch.co.kr/@appletreehill
rss: https://brunch.co.kr/rss/@@1d7C
description: EOS, HCI
- name: 김나형
blog: https://medium.com/@futureofdev
rss: https://medium.com/feed/@futureofdev
description: Android
github: https://github.com/Elice-kim
- name: 김남윤
blog: https://cheese10yun.github.io/
rss: https://cheese10yun.github.io/feed.xml
description: Node.JS, Spring
github: https://github.com/cheese10yun
linkedin: https://www.linkedin.com/in/남윤-김-567b2962/
slideshare: https://www.slideshare.net/ssuser565d51
- name: 김남훈
blog: http://namhoon.kim/
rss: http://namhoon.kim/rss
description: Jekyll, Firebase Korea
github: https://github.com/mydamyda
- name: 김놀부
blog: https://nolboo.kim/
rss: https://nolboo.kim/feed.xml
description: 번역 모음
github: https://github.com/nolboo
- name: 김대권
blog: http://nacyot.com/
rss: http://blog.nacyot.com/feed.xml
description: ''
github: https://github.com/nacyot
twitter: https://twitter.com/nacyo_t
linkedin: https://www.linkedin.com/in/nacyot/
slideshare: https://www.slideshare.net/ext
stackoverflow: https://stackoverflow.com/users/2689714/nacyot
- name: 김대기
blog: http://daegikim.github.io/
description: Web
github: https://github.com/DaegiKim
facebook: https://www.facebook.com/DaegiKimmm
linkedin: https://www.linkedin.com/in/daegi-kim-6b23045b/
stackoverflow: https://stackoverflow.com/users/2438290/daegikim
strava: https://www.strava.com/athletes/8753337
- name: 김대열
blog: http://shine10e.tistory.com/
rss: http://shine10e.tistory.com/rss
facebook: https://www.facebook.com/shine10e
naver: http://blog.naver.com/shine10ee
- name: 김대현
blog: http://hatemogi.com/
rss: http://blog.hatemogi.com/rss
description: 백엔드
github: https://github.com/hatemogi
twitter: https://twitter.com/hatemogi
medium: https://medium.com/@hatemogi
- name: 김대희
facebook: https://www.facebook.com/day.kim.7
github: https://github.com/zsaladin
linkedin: https://www.linkedin.com/in/daehee-kim/
slideshare: https://www.slideshare.net/daykim7
- name: 김덕기
blog: http://martian36.tistory.com/
rss: http://martian36.tistory.com/rss
description: 워드프레스
- name: 김덕주
blog: https://medium.com/@darkzeus86
rss: https://medium.com/feed/@darkzeus86
- name: 김덕현
blog: https://brunch.co.kr/@duk-hyun
rss: https://brunch.co.kr/rss/@@3L0s
description: 4차 산업혁명
naver: https://blog.naver.com/dhkim53
- name: 김덕홍
blog: http://insanehong.kr/
rss: http://insanehong.kr/rss.xml
description: ''
twitter: https://twitter.com/insanehong
- name: 김도곤
blog: http://dokonk.blogspot.kr/
rss: http://dokonk.blogspot.com/feeds/posts/default
description: DB
- name: 김도균
blog: http://www.dokyun.pe.kr/
rss: http://www.dokyun.pe.kr/rss
description: ''
- name: 김도현
blog: http://loboprix.com/
description: ''
- name: 김도형
blog: https://brunch.co.kr/@iliyard
rss: https://brunch.co.kr/rss/@@HP3
description: 게임 개발
- name: 김도훈
blog: https://dohoons.com/
rss: https://dohoons.com/blog/feed
description: Web
github: https://github.com/dohoons
- name: 김동건
blog: http://dgkim5360.tistory.com/
rss: http://dgkim5360.tistory.com/rss
description: Machine Learning
github: https://github.com/dgkim5360
- name: 김동민
slideshare: https://www.slideshare.net/ssuser2ced101
linkedin: https://www.linkedin.com/in/dongmin-kim-635921156/
- name: 김동열
blog: http://greatkim91.tistory.com/
rss: http://greatkim91.tistory.com/rss
description: Back-end
twitter: https://twitter.com/greatkim91
slideshare: https://www.slideshare.net/greatkim91
linkedin: https://www.linkedin.com/in/동열-김-27a70428/
- name: 김동우
blog: https://dongwoo.blog/
rss: https://dongwoo.blog/feed/
description: Javascript
github: https://github.com/dongwoo-kim
- name: 김동원
facebook: https://www.facebook.com/profile.php?id=100008960261854
slideshare: https://www.slideshare.net/ssuser6bb12d
linkedin: https://www.linkedin.com/in/eastcirclek/
twitter: https://twitter.com/eastcirclek
- name: 김동철
blog: https://medium.com/@idus_devteam
rss: https://medium.com/feed/@idus_devteam
description: 백엔드
- name: 김동현
facebook: https://www.facebook.com/digitalisx
github: https://github.com/Digitalisx
linkedin: https://www.linkedin.com/in/donghyun-kim-4a898012b/
slideshare: https://www.slideshare.net/ssuser5fc0a31
- name: 김동현
blog: http://rhlinux.tistory.com/
rss: http://rhlinux.tistory.com/rss
description: RedHat Linux
facebook: https://www.facebook.com/kim2da
- name: 김동환
blog: https://wraithkim.wordpress.com/
rss: https://wraithkim.wordpress.com/feed/
description: Algorithm
github: https://github.com/WraithKim
- name: 김래형
slideshare: https://www.slideshare.net/rerongs
- name: 김만수
blog: https://mansoo-sw.blogspot.kr/
rss: https://mansoo-sw.blogspot.com/feeds/posts/default
description: ''
- name: 김명신
blog: https://himskim.wordpress.com/
rss: https://himskim.wordpress.com/feed/
description: Microsoft
facebook: https://www.facebook.com/himskim
twitter: https://twitter.com/himskim
egloos: http://himskim.egloos.com/
- name: 김명주
blog: http://blog.naver.com/bansuk78
rss: http://blog.rss.naver.com/bansuk78.xml
description: Lagom
facebook: https://www.facebook.com/profile.php?id=100003114345953
slideshare: https://www.slideshare.net/ssuser45ecc2
- name: 김명준
blog: http://html5lab.kr/
description: 프론트엔드
- name: 김민규
blog: https://pkgonan.github.io/
rss: https://pkgonan.github.io/feed
description: Spring
github: https://github.com/pkgonan
- name: 김민근
blog: http://mingeun.com/
rss: http://mingeun.com/feed
description: Laravel
github: https://github.com/getsolaris
facebook: https://www.facebook.com/mingeun.kr
- name: 김민서
blog: http://blog.naver.com/mseokim011117
rss: http://blog.rss.naver.com/mseokim011117.xml
description: Swift
github: github.com/mseokim
- name: 김민석
blog: https://brunch.co.kr/@brunchqvxt
rss: https://brunch.co.kr/atom/@@O1Z
description: Spring Boot
- name: 김민수
blog: http://www.kmshack.kr/
rss: http://www.kmshack.kr/rss
description: 안드로이드
github: https://github.com/kmshack
facebook: https://www.facebook.com/kmshack
twitter: https://twitter.com/kmshack_kr
linkedin: https://www.linkedin.com/in/kmshack/
- name: 김민수
blog: http://alwayspr.tistory.com/
rss: http://alwayspr.tistory.com/rss
description: ''
- name: 김민우
blog: https://brunch.co.kr/@minu-log
rss: https://brunch.co.kr/rss/@@16ei
description: 데이터 분석
facebook: https://www.facebook.com/minwoo.minu
- name: 김민장
blog: http://minjang.github.io/
rss: http://minjang.github.io/feed.xml
description: 컴퓨터 아키텍처
linkedin: https://www.linkedin.com/in/minjang/
- name: 김민준
blog: https://velopert.com/
rss: https://velopert.com/feed
description: Front-end
github: https://github.com/velopert
facebook: https://www.facebook.com/velopert
- name: 김민태
blog: https://medium.com/@ibare
rss: https://medium.com/feed/@ibare
description: 자바스크립트
twitter: https://twitter.com/ibare
slideshare: https://www.slideshare.net/ibare
- name: 김민호
blog: https://isku.github.io/blog/
github: https://github.com/ISKU
linkedin: https://www.linkedin.com/in/minho-kim-059a395b/
facebook: https://www.facebook.com/minho.kim.798
home: https://isku.github.io/
- name: 김범준
blog: http://bomjun.tistory.com/
rss: http://bomjun.tistory.com/rss
description: ''
- name: 김범준
blog: http://nolsigan.github.io/
rss: http://nolsigan.github.io/feed.xml
description: ''
github: https://github.com/nolsigan
- name: 김범진
blog: https://medium.com/@beejei
rss: https://medium.com/feed/@beejei
description: ''
twitter: https://twitter.com/beejei
- name: 김병부
blog: http://myboor.tistory.com/
rss: http://myboor.tistory.com/rss
description: Java
slideshare: https://www.slideshare.net/benjaminbkim9
- name: 김병환
blog: http://kimbyeonghwan.tumblr.com/
rss: http://kimbyeonghwan.tumblr.com/rss
description: UX
- name: 김보원
blog: https://boribap.github.io/
description: Block Chain
facebook: https://www.facebook.com/kimbowon
github: https://github.com/boribap
instagram: https://www.instagram.com/kim_bo_1/
- name: 김봉조
blog: http://fishpoint.tistory.com/
rss: http://fishpoint.tistory.com/rss
description: 라즈베리 파이
- name: 김봉현
blog: https://harfangk.github.io/
rss: https://harfangk.github.io/feed.xml
description: Elixir
github: https://github.com/harfangk
twitter: https://twitter.com/harfangk
- name: 김상원
blog: https://brunch.co.kr/@hero4earth
rss: https://brunch.co.kr/rss/@@NjN
description: 데이터 분석
facebook: https://www.facebook.com/eddy.sangwon
github: https://github.com/hero4earth
linkedin: https://www.linkedin.com/in/hero4earth
home: http://hero4earth.com/
- name: 김상훈
blog: https://interpiler.com/
rss: http://interpiler.com/index.php/feed/
description: IT 칼럼
- name: 김상희
blog: https://medium.com/@sanghee
rss: https://medium.com/feed/@sanghee
description: Python
twitter: https://twitter.com/sangheestyle
- name: 김석기
blog: https://brunch.co.kr/@neo3xdh
rss: https://brunch.co.kr/rss/@@ERG
description: IT 칼럼
- name: 김석범
blog: http://chaoxifer.tistory.com/
rss: http://chaoxifer.tistory.com/rss
description: Linux, Windows
github: https://github.com/seokbeomKim
- name: 김석준
blog: http://seokjun.kr/
rss: http://seokjun.kr/rss/
description: React
linkedin: https://www.linkedin.com/in/seokjunkim/
- name: 김선영
blog: http://sunyzero.tistory.com/
rss: http://sunyzero.tistory.com/rss
description: Linux
- name: 김선철
blog: http://blog.naver.com/PostList.nhn?blogId=sckim007
rss: http://blog.rss.naver.com/sckim007.xml
description: ''
- name: 김선태
facebook: https://www.facebook.com/oasisgarden
linkedin: https://www.linkedin.com/in/suntae/
slideshare: https://www.slideshare.net/SuntaeKim7
- name: 김성렬
blog: http://kimsoungryoul.tistory.com/
rss: http://kimsoungryoul.tistory.com/rss
description: Java
- name: 김성빈
blog: http://sungbine.github.io/
rss: http://sungbine.github.io/feed.xml
description: Web
- name: 김성수
blog: http://sungsoo.github.io/
description: ''
facebook: https://www.facebook.com/sungsoo.kim.9693001
aboutme: https://about.me/sungsoo
twitter: https://twitter.com/sskim79
linkedin: https://www.linkedin.com/in/sung-soo-kim-48676a34/
- name: 김성식
blog: http://devopser.me/
description: DevOps
github: https://github.com/kssminus
- name: 김성원
blog: http://eaglesoft.tistory.com/
rss: http://eaglesoft.tistory.com/rss
description: Delphi, QuantumGrid
- name: 김성일
blog: http://dev-daddy.tistory.com/
rss: http://dev-daddy.tistory.com/rss
description: Android, Java
- name: 김성준
blog: https://brunch.co.kr/@sungjoonkim
rss: https://brunch.co.kr/rss/@@20dR
description: IT 컬럼
- name: 김성준
blog: https://brunch.co.kr/@student
rss: https://brunch.co.kr/rss/@@IaG
description: 스타트업
- name: 김성중
blog: http://sungjk.github.io/
rss: http://sungjk.github.io/feed.xml
description: ''
linkedin: https://www.linkedin.com/in/sungjungkim/
github: https://github.com/sungjk
facebook: https://www.facebook.com/k9109
- name: 김성현
blog: http://greemate.tistory.com/
rss: http://greemate.tistory.com/rss
description: 윈도우즈 커널
- name: 김성호
blog: http://shiren.github.io/
rss: http://shiren.github.io/feed.xml
description: Front-end
facebook: https://www.facebook.com/shirenbeat
github: https://github.com/shiren
twitter: https://twitter.com/shirenbeat
instagram: https://www.instagram.com/shiren/
- name: 김성훈
blog: http://www.se.or.kr/
description: 학교 생활
twitter: https://twitter.com/hunkimKR
- name: 김성훈
blog: http://elky84.github.io/
rss: https://elky84.github.io/feed.xml
description: C++, C#, Ruby, Python
github: https://github.com/elky84
- name: 김세창
blog: http://ksch93.tistory.com/
rss: http://ksch93.tistory.com/rss
description: Android
- name: 김소현
blog: https://aa9390.github.io/
rss: https://aa9390.github.io/feed.xml
description: 인공지능
github: https://github.com/aa9390
instagram: https://www.instagram.com/yn.yeon/
- name: 김소희
blog: http://green-webdesigner.tistory.com/
rss: http://green-webdesigner.tistory.com/rss
description: Front-end
github: https://github.com/onlyliving
instagram: https://www.instagram.com/soheegreen/
home: https://onlyliving.github.io/
- name: 김수로
blog: http://babysunmoon.tistory.com/
rss: http://babysunmoon.tistory.com/rss
description: ''
- name: 김수민
blog: https://brunch.co.kr/@flatdesign
rss: https://brunch.co.kr/rss/@@PUo
description: UX 디자인
- name: 김수보
blog: http://greypencil.tistory.com/
rss: http://greypencil.tistory.com/rss
description: IT 칼럼
facebook: https://www.facebook.com/kimsubo
wordpress: https://subokim.wordpress.com/
- name: 김순식
blog: http://i-bada.blogspot.kr/
rss: http://i-bada.blogspot.com/feeds/posts/default
description: ''
- name: 김승호
blog: http://raccoonyy.github.io/
rss: http://raccoonyy.github.io/rss/index.rss
description: Python
twitter: https://twitter.com/raccoonyy
facebook: https://www.facebook.com/raccoonyy
github: https://github.com/raccoonyy
- name: 김슬기
blog: http://blog.seulgi.kim/
rss: http://blog.seulgi.kim/feeds/posts/default
description: ''
- name: 김시은
blog: https://brunch.co.kr/@springboot
rss: https://brunch.co.kr/rss/@@2MrI
description: Spring Boot
- name: 김시준
blog: https://medium.com/@ksjksj0122
rss: https://medium.com/feed/@ksjksj0122
description: 블록체인
- name: 김영균
blog: https://chancethecoder.tistory.com
rss: https://chancethecoder.tistory.com/rss
description: 데이터 엔지니어
github: https://github.com/chancethecoder
home: http://chancethecoder.me/
linkedin: https://www.linkedin.com/in/youngkyun-kim
- name: 김영근
blog: https://medium.com/@younggun
rss: https://medium.com/feed/@younggun
description: PyCon
github: https://github.com/scari
twitter: https://twitter.com/scari_net
facebook: https://www.facebook.com/scari.net
linkedin: https://www.linkedin.com/in/younggun-kim/
slideshare: https://www.slideshare.net/scarinet
home: http://younggun.kim/
- name: 김영우
blog: http://datajournal.kr/
rss: http://datajournal.kr/feed/
description: 데이터 분석
github: https://github.com/youngwoos
- name: 김영웅
blog: http://keyassist.tistory.com/
rss: http://keyassist.tistory.com/rss
description: Data Science
facebook: https://www.facebook.com/keyassist
- name: 김영재
blog: https://youngjaekim.wordpress.com/
rss: https://youngjaekim.wordpress.com/feed/
description: ''
twitter: https://twitter.com/youngjaeKIM
linkedin: https://www.linkedin.com/in/youngjaekim/
slideshare: https://www.slideshare.net/youngjaekim58
stackoverflow: https://stackoverflow.com/users/361100/youngjae
- name: 김영재
blog: http://haviyj.tistory.com/
rss: http://haviyj.tistory.com/rss
description: Spring Boot
- name: 김영전
blog: https://qpfmtlcp.github.io
rss: https://qpfmtlcp.github.io/feed
description: ''
github: https://github.com/qpfmtlcp
- name: 김영중
blog: https://quarl894.github.io/
rss: https://quarl894.github.io/atom.xml
description: Android
github: https://github.com/quarl894
- name: 김영하
blog: https://brunch.co.kr/@fermat39
rss: https://brunch.co.kr/rss/@@sJg
description: ''
- name: 김영훈
blog: https://blog.martinwork.co.kr/
rss: https://blog.martinwork.co.kr/feed.xml
description: AI, Javascript
github: https://github.com/MartinYounghoonKim/
- name: 김요섭
blog: https://josephkim75.wordpress.com/
rss: https://josephkim75.wordpress.com/feed/
description: ''
- name: 김용균
blog: http://haruair.com/
rss: http://www.haruair.com/blog/feed
description: Web
twitter: https://twitter.com/haruair
- name: 김용균
github: https://github.com/edykim
twitter: https://twitter.com/heyedykim
linkedin: https://www.linkedin.com/in/edwardykim/
home: https://edykim.com/
- name: 김용묵
blog: http://moogi.new21.org/
rss: http://moogi.new21.org/tc/rss
description: 한글 언어, C++
- name: 김용일
blog: http://app-developer.tistory.com
rss: http://app-developer.tistory.com/rss
description: iOS
github: https://github.com/Developer-Leby
- name: 김용준
blog: https://kimkevin.net/
rss: https://blog.kimkevin.net/feed/
description: Android
linkedin: https://www.linkedin.com/in/imkimkevin/
github: https://github.com/kimkevin
facebook: https://www.facebook.com/imkimkevin
- name: 김용하
linkedin: https://www.linkedin.com/in/yongha/
twitter: https://twitter.com/ysoya
slideshare: https://www.slideshare.net/yonghakim900
- name: 김용현
blog: http://blog.naver.com/drvoss
rss: http://blog.rss.naver.com/drvoss.xml
description: C++
- name: 김용호
blog: https://medium.com/@kimyh1981