forked from awesome-devblog/awesome-devblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.yml
11189 lines (11189 loc) · 389 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: 강경석
blog: https://all-dev-kang.tistory.com/
github: https://github.com/gyeongseokKang
description: 편리함을 추구하는 개발자의 지식 블로그
rss: https://all-dev-kang.tistory.com/rss
- name: 강교일
blog: https://kdevkr.github.io/
description: 초보 개발 이야기
github: https://github.com/kdevkr
- name: 강경완
linkedin: https://www.linkedin.com/in/경완-강-847a66111/
slideshare: https://www.slideshare.net/ssuser3e521c
- name: 강경태
blog: https://bob-full.tistory.com/
rss: https://bob-full.tistory.com/rss
description: Spring Boot
facebook: https://www.facebook.com/profile.php?id=100003012256912
- name: 강규영
profile: people/ecogwiki.md
slideshare: https://www.slideshare.net/jania902
- name: 강관우
blog: https://brunch.co.kr/@kd4
description: 웹개발
rss: https://brunch.co.kr/rss/@@xTa
- name: 강대명
profile: people/charsyam.md
blog: https://charsyam.wordpress.com/
rss: https://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://kdy1.github.io/
rss: https://kdy1.github.io/index.xml
description: swc
github: https://github.com/kdy1
facebook: https://www.facebook.com/profile.php?id=100024888122318
- name: 강동혁
blog: https://brunch.co.kr/@dongkang
rss: https://brunch.co.kr/rss/@@1fY0
description: 인디 개발
- name: 강동희
blog: https://medium.com/@kanglpmg
description: iOS, RxSwift
github: https://github.com/k-lpmg
- name: 강명서
description: Django
stackoverflow: https://stackoverflow.com/users/5506957/leop0ld
slideshare: https://www.slideshare.net/ssuseraaed82
- name: 강명훈
blog: https://kangmyounghun.blogspot.kr/
rss: https://kangmyounghun.blogspot.com/feeds/posts/default
description: 보안
- name: 강미경
blog: https://minieetea.com/
rss: https://minieetea.com/feed
description: 기획
facebook: https://www.facebook.com/minieetea
twitter: https://twitter.com/minieetea
github: https://github.com/minieetea
- name: 강민경
blog: https://mingule.tistory.com/
rss: https://mingule.tistory.com/rss
github: https://github.com/ddongule
- name: 강민규
blog: https://velog.io/@stella6767
rss: https://v2.velog.io/rss/stella6767
github: https://github.com/stella6767
- name: 강민우
slideshare: https://www.slideshare.net/ssuser052dd11
- name: 강민우
blog: https://medium.com/@minukang
rss: https://medium.com/feed/@minukang
description: Front-end
facebook: https://www.facebook.com/minwoo.kang.77
github: https://github.com/minuukang
- name: 강병수
blog: https://01010011.blog/
rss: https://01010011.blog/feed/
description: DevOps
- name: 강병욱
blog: https://medium.com/@lesimor
rss: https://medium.com/feed/@lesimor
description: 라이언봇
- name: 강사룡
blog: https://thinkinginruby.wordpress.com/
rss: https://thinkinginruby.wordpress.com/feed/
facebook: https://www.facebook.com/saryong.kang
speakerdeck: https://speakerdeck.com/saryong
rocketpunch: https://www.rocketpunch.com/@justfaceit
- 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
facebook: https://www.facebook.com/brandon.kang.9674
- 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://devkingdom.tistory.com/
rss: https://devkingdom.tistory.com/rss
facebook: https://www.facebook.com/seongji.kang.9
youtube: https://www.youtube.com/channel/UCyK4XIn3F8GJ7JQYq0NXGQA
- name: 강성진
blog: https://ujuc.github.io/
rss: https://ujuc.github.io/feeds/rss.xml
description: '-'
github: https://github.com/ujuc
- name: 강성훈
blog: https://mearie.org/
rss: https://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://lazymatlab.tistory.com/
rss: https://lazymatlab.tistory.com/rss
description: Python, Matlab
facebook: https://www.facebook.com/keizikang
- name: 강성희
blog: https://medium.com/@shaynekang
rss: https://medium.com/feed/@shaynekang
description: ''
- name: 강승호
blog: https://willseungh0.tistory.com/
rss: https://willseungh0.tistory.com/rss
description: Back-end
github: https://github.com/seungh0
- name: 강신동
description: Machine Learning
slideshare: https://www.slideshare.net/uspace
- name: 강영진
blog: https://medium.com/@youngjin.kang
rss: https://medium.com/feed/@youngjin.kang
github: https://github.com/youngjin-k
description: Front-end
- name: 강영훈
blog: https://brunch.co.kr/@yhkang0513
rss: https://brunch.co.kr/rss/@@3waF
description: 코딩 교육
- name: 강우진
blog: https://kangwoojin.github.io/
rss: https://kangwoojin.github.io/feed.xml
description: If I can take it, I can make it
github: https://github.com/KangWooJin
- 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: https://jaeseokk.dev
rss: https://jaeseokk.dev/rss.xml
description: React
github: https://github.com/jaeseokk
twitter: https://twitter.com/kang89kr
- name: 강전혁
blog: https://kdinner.tistory.com/
rss: https://kdinner.tistory.com/rss
description: Javascript
facebook: https://www.facebook.com/dinner.kang
github: https://github.com/DinnerKang
- name: 강전희
blog: https://newstars.tistory.com
rss: https://newstars.tistory.com/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
naver: https://blog.naver.com/newstars77
- name: 강준영
blog: https://juneyoung.io/
rss: https://juneyoung.io/rss.xml
description: Web Backend/Server
facebook: https://www.facebook.com/stevejkang
instagram: https://www.instagram.com/stevejkang
twitter: https://twitter.com/stevejkang_
github: https://github.com/stevejkang
linkedin: https://www.linkedin.com/in/iam-stevejkang/
home: https://juneyoung.io/
- name: 강준현
blog: https://junhyunny.github.io/
github: https://github.com/Junhyunny
rss: https://junhyunny.github.io/feed.xml
description: Java, Spring, Back-End
- name: 강진우
profile: people/alden.md
blog: https://brunch.co.kr/@alden
rss: https://brunch.co.kr/rss/@@3Y0
description: Linux
- name: 강지회
blog: https://medium.com/@jihoi-kang
rss: https://medium.com/feed/@jihoi-kang
github: https://github.com/jihoi-kang
description: Android
- name: 강태욱
blog: https://daddynkidsmakers.blogspot.kr/
rss: https://daddynkidsmakers.blogspot.com/feeds/posts/default
description: IoT
- name: 강태희
blog: https://taylor-kang.github.io/
rss: https://taylor-kang.github.io/feed.xml
github: https://github.com/taylor-kang
- name: 강필모
blog: https://ivorycirrus.github.io/
rss: https://ivorycirrus.github.io/feed.xml
description: Javascript
facebook: https://www.facebook.com/ivorycirrus
github: https://github.com/ivorycirrus
- name: 강한별
blog: https://brunch.co.kr/@cloud09
rss: https://brunch.co.kr/rss/@@m6q
description: 데이터 분석
linkedin: https://www.linkedin.com/in/dearcloud09/
github: https://github.com/dearcloud09
twitter: https://twitter.com/dearcloud09
- name: 강한용
blog: https://flowvalue.tistory.com/
rss: https://flowvalue.tistory.com/rss
description: Swift
github: https://github.com/skydice
- name: 강형석
blog: https://medium.com/@hyungsukkang
rss: https://medium.com/feed/@hyungsukkang
description: 머신러닝
facebook: https://www.facebook.com/hskang960
linkedin: https://www.linkedin.com/in/hyungsuk-kang-5217a7103/
github: https://github.com/hskang9
instagram: https://www.instagram.com/hyungsuk_k/
home: https://hskang9.github.io/
- name: 강홍구
blog: https://wckhg89.github.io
rss: https://wckhg89.github.io/feed.xml
description: Web
github: https://github.com/wckhg89
- name: 강화수
blog: https://hwasurr.io
github: https://github.com/hwasurr
rss: https://hwasurr.io/rss.xml
- name: 강효원
slideshare: https://www.slideshare.net/apknight
- name: 강효준
facebook: https://facebook.com/kanghyojun
linkedin: https://www.linkedin.com/in/kanghyojun/
slideshare: https://www.slideshare.net/kanghyojun
- name: 경준호
blog: https://firejune.com/
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: https://jusung.github.io/
rss: https://jusung.github.io/feed.xml
description: iOS
twitter: https://twitter.com/kyejusung
youtube: https://www.youtube.com/channel/UCbxHx9ZcngAr0Sy0Ms6Jz0A
- name: 고경운
blog: https://armadillo-dev.github.io/
rss: https://armadillo-dev.github.io/feed.xml
description: Front-end
github: https://github.com/armadillo-dev
facebook: https://www.facebook.com/profile.php?id=100035362523359
- name: 고경철
facebook: https://www.facebook.com/kyoungchul.koh
youtube: https://www.youtube.com/user/kckohkoh
- name: 고득녕
blog: https://blog.naver.com/nackji80/
rss: https://rss.blog.naver.com/nackji80.xml
description: 네트워크
- name: 고명석
blog: https://ifyoudontknow-youcandothis.tistory.com/
rss: https://ifyoudontknow-youcandothis.tistory.com/rss
description: React
facebook: https://www.facebook.com/myeongsku
slideshare: https://www.slideshare.net/skyizblue
- name: 고명진
gitlab: https://gitlab.com/rjs1197/
- name: 고명환
blog: https://brunch.co.kr/@maru7091
rss: https://brunch.co.kr/rss/@@LOc
description: 스타트업
- name: 고석진
blog: https://appear.github.io/
linkedin: https://www.linkedin.com/in/석진-고-07644614a/
github: https://github.com/appear
facebook: https://www.facebook.com/profile.php?id=100002748908784
- name: 고영빈
blog: https://akal.co.kr/
rss: https://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://robertjune.medium.com/
rss: https://medium.com/feed/@robertjune
facebook: https://www.facebook.com/profile.php?id=100012348969710
- name: 고영훈
blog: https://koyo.kr/
rss: https://koyo.kr/index.xml
description: Network
github: https://github.com/koyokr
linkedin: https://www.linkedin.com/in/younghun-ko-249125135/
- name: 고유영
blog: https://medium.com/@yooyoungko
description: Javascript
facebook: https://www.facebook.com/lunayyko
- name: 고은연
blog: https://velog.io/@koeunyeon
rss: https://v2.velog.io/rss/koeunyeon
description: 스타트업
github: https://github.com/koeunyeon
- name: 고은정
blog: https://velog.io/@godori
rss: https://v2.velog.io/rss/godori
description: Front-end
github: https://github.com/godori
- name: 고은정
blog: https://velog.io/@edie_ko
rss: https://v2.velog.io/rss/edie_ko
github: https://github.com/positiveko
- name: 고재현
blog: https://delphiforwin.blogspot.com/
rss: https://delphiforwin.blogspot.com/feeds/posts/default?alt=rss
facebook: https://www.facebook.com/profile.php?id=100010782283968
- name: 고종범
blog: https://brunch.co.kr/@jbgo
rss: https://brunch.co.kr/rss/@@24SO
description: 애자일
- name: 고현민
youtube: https://www.youtube.com/channel/UC2nkWbaJt1KQDi2r2XclzTQ
facebook: https://www.facebook.com/yalcodic/
- name: 고형호
blog: https://hhko.tistory.com/
rss: https://hhko.tistory.com/rss
description: Functional Programming
- name: 공재웅
blog: https://whackur.tistory.com/
rss: https://whackur.tistory.com/rss
description: Hacking
facebook: https://www.facebook.com/profile.php?id=100006824888016
youtube: https://www.youtube.com/channel/UCYQypPGSvtCOwPOvFDZPVDw
- name: 공진기
slideshare: https://www.slideshare.net/JinGiKong
linkedin: https://www.linkedin.com/in/jin-gi-kong-289154121/
- name: 공채원
blog: https://leonkong.cc/
rss: https://leonkong.cc/atom.xml
description: React Native
github: https://github.com/ChaeWonKong
facebook: https://www.facebook.com/wonchaekong
- 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: https://sunnykwak.tistory.com/
rss: https://sunnykwak.tistory.com/rss
description: Java
linkedin: https://www.linkedin.com/in/중선-곽-394574102/
slideshare: https://www.slideshare.net/sunnykwak90
- name: 곽희범
blog: https://norux.me/
rss: https://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: 구상철
blog: https://na982.tistory.com/
rss: https://na982.tistory.com/rss
description: Algorithm
facebook: https://www.facebook.com/profile.php?id=100000697013969
youtube: https://www.youtube.com/channel/UC_KRcBNnFQoN6EsvG87H6cg
- name: 구영민
blog: https://youngminz.netlify.app
description: 백엔드
rss: https://youngminz.netlify.app/rss.xml
linkedin: https://www.linkedin.com/in/youngminz
github: https://github.com/youngminz
stackoverflow: https://stackoverflow.com/users/3096304/youngminz
- name: 구인본
blog: https://inbon.net/
twitter: https://twitter.com/inbonk
facebook: https://www.facebook.com/inbonk
- name: 구자철
blog: https://forest71.tistory.com/
rss: https://forest71.tistory.com/rss
description: Java
facebook: https://www.facebook.com/profile.php?id=100012676655679
github: https://github.com/gujc71
- name: 구재현
blog: https://koosaga.com/
rss: https://koosaga.com/rss
description: 알고리즘
facebook: https://www.facebook.com/gs14004
- name: 구종만
profile: people/theyearlyprophet.md
blog: http://theyearlyprophet.com/
rss: https://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: https://itstory.tk/
rss: https://itstory.tk/rss
description: Java
facebook: https://www.facebook.com/kkd927
- name: 권기웅
blog: https://blog.naver.com/rnjsrldnd123
rss: https://rss.blog.naver.com/rnjsrldnd123.xml
description: Java
facebook: https://www.facebook.com/profile.php?id=100000783953232
- name: 권기현
blog: https://rlg1133.tistory.com/
rss: https://rlg1133.tistory.com/rss
github: https://github.com/Gyeony95
- name: 권기호
blog: https://kwongyo.tistory.com/
rss: https://kwongyo.tistory.com/rss
description: ''
- 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://kminito.tistory.com/
rss: https://kminito.tistory.com/rss
facebook: https://www.facebook.com/min.kwon.9
- 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: https://sksggg123.github.io
rss: https://sksggg123.github.io/feed.xml
description: 출퇴근길 개발 읽기
github: https://github.com/sksggg123
facebook: https://www.facebook.com/profile.php?id=100001583537117
- name: 권보경
blog: https://elliekwon.github.io/
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: https://velog.io/@0307kwon
rss: https://v2.velog.io/rss/0307kwon
description: Front-end
github: https://v2.velog.io/rss/0307kwon
- name: 권수호
blog: https://blog.naver.com/PostList.nhn?blogId=knix008
rss: https://rss.blog.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: 권오흠
youtube: https://www.youtube.com/channel/UC-cOmaeWLm7Ii7erMQNatvA
- name: 권용근
blog: https://blog.kingbbode.com/
rss: https://blog.kingbbode.com/rss
description: Spring
github: https://github.com/kingbbode
tistory: https://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
backjoon: 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: https://web-front-end.tistory.com/
rss: https://web-front-end.tistory.com/rss
description: Web
github: https://github.com/tienne
- name: 권장호
blog: https://hojak99.tistory.com
rss: https://hojak99.tistory.com/rss
description: Java, Spring
github: https://github.com/hojak99
rocketpunch: https://www.rocketpunch.com/@hojak99
- name: 권재명
blog: https://dataninja.me/
rss: https://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: https://xguru.net/
rss: https://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: https://medium.com/@jinkwon711
rss: https://medium.com/feed/@jinkwon711
description: Python, Django
- name: 권진호
blog: https://jinhokwon.github.io/
rss: https://jinhokwon.github.io/feed.xml
github: https://github.com/jinhokwon
- 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/index.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
home: https://taeguk.github.io/
- name: 권태형
blog: https://taebbong.github.io/
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: https://hoorooroob.tistory.com/
rss: https://hoorooroob.tistory.com/rss
description: Python, Django, Backend
github: https://github.com/TaeHyoungKwon
- name: 권태환
blog: https://thdev.tech/
rss: https://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
speakerdeck: https://speakerdeck.com/taehwandev
- name: 권혁우
blog: https://medium.com/@khwsc1
rss: https://medium.com/feed/@khwsc1
description: React
facebook: https://www.facebook.com/AlexHyuckKwon
- name: 권혁우
blog: https://velog.io/@pllap
rss: https://v2.velog.io/rss/@pllap
github: https://github.com/pllap
description: Backend
- name: 권현수
blog: https://hye-on-astrogrammer.tistory.com/
rss: https://hye-on-astrogrammer.tistory.com/rss
description: JavaScript, HTML, CSS
github: https://github.com/helloworld-hellohyeon
- name: 권현아
blog: https://hyeooona825.tistory.com/
rss: https://hyeooona825.tistory.com/rss
description: 알고리즘
github: https://github.com/kwonhyeona
- name: 권희정
blog: https://gmlwjd9405.github.io/
rss: https://gmlwjd9405.github.io/feed
description: Spring
github: https://github.com/gmlwjd9405
- name: 김가영
blog: https://velog.io/@jujube0
rss: https://v2.velog.io/rss/jujube0
github: https://github.com/jujube0
- name: 김강령
blog: https://brunch.co.kr/@thinkaboutlove
rss: https://brunch.co.kr/rss/@@1SwI
description: 디자인
facebook: https://www.facebook.com/profile.php?id=100009197477798
- name: 김강우
blog: https://kangwoo.kr/
rss: https://kangwoo.kr/feed/
description: Machine Learning
- name: 김강천
blog: https://medium.com/@rlarkdcjs12
rss: https://medium.com/feed/@rlarkdcjs12
description: Algorithm
- name: 김강호
blog: https://cimfalab.github.io/deepscan/
rss: https://cimfalab.github.io/deepscan/atom.xml
description: Javascript
github: https://github.com/cimfalab
home: https://cimfalab.github.io/
- name: 김경록
blog: https://krksap.tistory.com/
rss: https://krksap.tistory.com/rss
description: Python, Java
github: https://github.com/Kyeongrok
youtube: https://www.youtube.com/channel/UCG6V3hF7lN5veSLXWkcMG3g
- name: 김경환
blog: https://brunch.co.kr/@dalgudot
rss: https://brunch.co.kr/rss/@@6C10
description: UI/UX
facebook: https://www.facebook.com/dalgudot
- name: 김경환
blog: https://onduway.tistory.com/
rss: https://onduway.tistory.com/rss
facebook: https://www.facebook.com/profile.php?id=100002679231859
- name: 김광섭
linkedin: https://www.linkedin.com/in/kwangseob-kim-a2516541/
slideshare: https://www.slideshare.net/kimkwangseop
- name: 김광순
blog: https://velog.io/@kskim
rss: https://v2.velog.io/rss/kskim
github: https://github.com/KS-KIM
- name: 김광현
nickname: 광파리
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: https://wave1994.tistory.com/
rss: https://wave1994.tistory.com/rss
description: 주니어 백엔드 개발자 성장 로그
github: https://github.com/Wave1994-Hoon
facebook: https://www.facebook.com/profile.php?id=100004740005006
- name: 김국현
blog: http://goodhyun.com/
rss: https://feeds.feedburner.com/goodhyun
description: IT 칼럼
twitter: https://twitter.com/goodhyun
hubzum: http://hub.zum.com/goodhyun
- name: 김기민
youtube: https://www.youtube.com/channel/UCgRzsmLLRz-yq0svQA3cLXw
- name: 김기수
nickname: 토끼도둑
blog: https://rabbitthief37.github.io/
rss: https://rabbitthief37.github.io/feed
description: 잡다한 지식
facebook: https://www.facebook.com/RabbitThief
github: https://github.com/RabbitThief37
- name: 김기완
blog: https://morian-kim.tistory.com/
rss: https://morian-kim.tistory.com/feed
github: https://github.com/rldhks8745
rocketpunch: https://www.rocketpunch.com/@sdaff1004
description: 주니어 풀스택 개발자 morian-kim
- name: 김기현
github: https://github.com/kh-kim
linkedin: https://www.linkedin.com/in/ki-hyun-kim/
- name: 김기훈
blog: https://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: https://kilhokim.github.io/
description: ''
- name: 김나영
blog: https://blog.naver.com/phlox__
rss: https://rss.blog.naver.com/phlox__.xml
description: Front-end
codepen: https://codepen.io/nykim_
home: https://nykim.net/
- name: 김나영
blog: https://feel5ny.github.io/
rss: https://feel5ny.github.io/feed.xml
description: Front-end
github: https://github.com/feel5ny
facebook: https://www.facebook.com/feel5ny
linkedin: https://www.linkedin.com/in/feel5ny/
speakerdeck: https://speakerdeck.com/feel5ny
- name: 김나영
blog: https://nykim.work/
rss: https://nykim.work/rss
description: Front-end
github: https://github.com/nana-like
codepen: https://codepen.io/nykim_
naver: https://blog.naver.com/phlox__
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: https://ict-nroo.tistory.com/
rss: https://ict-nroo.tistory.com/rss
description: JPA
github: https://github.com/namjunemy
- name: 김남훈
blog: https://namhoon.kim/
rss: https://namhoon.kim/atom.xml
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: https://velog.io/@heehee
rss: https://v2.velog.io/rss/heehee
- name: 김대권
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
speakerdeck: https://speakerdeck.com/nacyot
- name: 김대기
blog: https://daegikim.github.io/
rss: https://daegikim.github.io/feed.xml
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: 김대성
facebook: https://www.facebook.com/gmindk
github: https://github.com/gmind7
slideshare: https://www.slideshare.net/gmind7
home: https://gmind7.github.io/
- name: 김대열
blog: https://shine10e.tistory.com/
rss: https://shine10e.tistory.com/rss
facebook: https://www.facebook.com/shine10e
naver: https://blog.naver.com/shine10ee
- name: 김대영
nickname: DevBruce
blog: https://devbruce.github.io/
rss: https://devbruce.github.io/feed.xml
description: DeepLearning, Develop
linkedin: https://www.linkedin.com/in/devbruce/
github: https://github.com/devbruce
kaggle: https://www.kaggle.com/devbruce
- name: 김대원
blog: https://prudentcircle.gitlab.io
description: DevOps
facebook: https://www.facebook.com/prudentcircle
github: https://github.com/prudentcircle
twitter: https://twitter.com/prudentcircle
- name: 김대현
blog: https://medium.com/@hatemogi
rss: https://medium.com/feed/happyprogrammer-in-jeju
description: 백엔드
github: https://github.com/hatemogi
twitter: https://twitter.com/hatemogi
home: https://hatemogi.com/
- name: 김대현
blog: https://velog.io/@denmark-banana
rss: https://v2.velog.io/rss/denmark-banana
github: https://github.com/denmark-banana
- 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: https://martian36.tistory.com/
rss: https://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
youtube: https://www.youtube.com/channel/UCOB_NlfphKSQWwR6gcADhtQ
- name: 김도곤
blog: https://dokonk.blogspot.kr/
rss: https://dokonk.blogspot.com/feeds/posts/default
description: DB
- name: 김도균
blog: https://www.dokyun.pe.kr/
rss: https://www.dokyun.pe.kr/rss
description: ''
- name: 김도현
blog: https://blog.naver.com/do9562
rss: https://rss.blog.naver.com/do9562.xml
description: Algorithm
- 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: https://medium.com/@kimdohun0104
rss: https://medium.com/feed/@kimdohun0104
github: https://github.com/kimdohun0104
- name: 김동건
blog: https://dgkim5360.tistory.com/
rss: https://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: https://dongbum.io/
rss: https://dongbum.io/feed.xml
description: DONGBUM on blog
github: https://github.com/dongbum
linkedin: https://www.linkedin.com/in/dongbumkim/
facebook: https://www.facebook.com/dongbum9
- name: 김동범
blog: https://brocess.tistory.com/
rss: https://brocess.tistory.com/rss
description: 행복한디벨로퍼
- name: 김동석
blog: https://bluedskim.github.io
rss: https://bluedskim.github.io/categories/tech/index.xml
description: fullstack developer, Java, ReactJS, Linux, Chromebook
github: https://github.com/bluedskim
twitter: https://twitter.com/Humanize12
instagram: https://www.instagram.com/bluedskim/
soundcloud: https://soundcloud.com/bluedskim
youtube: https://www.youtube.com/user/bluedskim/videos
- name: 김동신
blog: https://dosh.kim/
rss: https://dosh.kim/rss
description: 실리콘밸리
linkedin: https://www.linkedin.com/in/doshkim/
- name: 김동영
blog: https://pers0n4.io
rss: https://pers0n4.io/rss.xml
github: https://github.com/pers0n4
linkedin: https://www.linkedin.com/in/dong-young-kim/
description: Web
- name: 김동열
blog: https://greatkim91.tistory.com/
rss: https://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: 김동욱
blog: https://www.kidow.kr/
github: https://github.com/kidow
- 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://blog.naver.com/nanotoly
rss: https://rss.blog.naver.com/nanotoly.xml
description: AI, 스타트업
facebook: https://www.facebook.com/profile.php?id=100008189377563
linkedin: https://www.linkedin.com/in/dongeun-kim-114a44187
youtube: https://www.youtube.com/channel/UCB_qK0V8LR73NMYjtz29O9A
- name: 김동이
blog: https://velog.io/@dongyi
rss: https://v2.velog.io/rss/dongyi
linkedin: https://www.linkedin.com/in/dongyikim/
github: https://github.com/dongyi-kim
facebook: https://www.facebook.com/dongyi93
- name: 김동인
blog: https://velog.io/@owljoa
rss: https://v2.velog.io/rss/owljoa
github: https://github.com/owljoa
- name: 김동철
blog: https://medium.com/@idus_devteam
rss: https://medium.com/feed/@idus_devteam
description: 백엔드
- name: 김동하
blog: https://velog.io/@dongha1992
rss: https://v2.velog.io/rss/dongha1992
description: Front-end
- name: 김동한
blog: https://dev.to/itscreater
rss: https://dev.to/feed/itscreater
github: https://github.com/itscreater
- 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: https://rhlinux.tistory.com/
rss: https://rhlinux.tistory.com/rss
description: RedHat Linux
facebook: https://www.facebook.com/kim2da
slideshare: https://www.slideshare.net/ssuser6feedd
linkedin: https://www.linkedin.com/in/동현-김-46462b118/
- name: 김동현
nickname: Austin Kim
blog: http://rousalome.egloos.com/
rss: http://rss.egloos.com/blog/rousalome
description: 리눅스 커널
- name: 김동현
blog: https://codegizer.me/
rss: https://codegizer.me/feed.xml
github: https://github.com/codegizer
twitter: https://twitter.com/codegizer_kim