generated from caltechlibrary/py-cli-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_is_person.py
2478 lines (2472 loc) · 50.9 KB
/
test_is_person.py
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
# =============================================================================
# @file test_is_person.py
# @brief Py.test cases for parts of name_utils.py
# @created 2022-12-23
# @license Please see the file named LICENSE in the project directory
# @website https://github.com/caltechlibrary/iga
# =============================================================================
from collections import namedtuple
from iga.name_utils import (
split_name,
is_person,
)
# Some of these names came from the following gist accessed on 2023-01-17:
# https://gist.github.com/paulmillr/2657075/a31455729440672467ada20ac10452d74a871e54
# Some real-life examples that we can't handle.
#
# * Ingy döt Net -- someone being cute, but it's not a real name
#
# * Wynn Netherland -- spaCy thinks it's a geopolitical entity, which IMHO is
# actually reasonable (I wouldn't be sure it's a person without Googling).
#
# * Rico Sta. Cruz -- "Sta. Cruz" is probably Santa Cruz, but neither PP nor
# nameparser figure it out and instead they think "Sta" is a middle name.
#
# * hitode909, lijing00333 -- these are login handles, not human names, so
# it's perfectly reasonable we can't classify them as person or company.
#
# * Company names Ovid, A.G. Edwards, H.B. Fuller are human names, so these are
# ambiguous cases. Currently we fail on them and I don't know what to do.
#
# The following examples are businesses and I can't figure out what to do. PP
# *could* tag them as companies, but PP also erroneously tags some human names
# as company, so the only way to avoid incorrectly tagging human names as
# companies is to *always* ignore PP's tag if it comes out as company
# -- which means we always fail on these:
#
# * Account for Github research
# * Practical Arduino - The Book
# * Sony Xperia Developer World
PEOPLE = [
"Martin Luther King, Jr.",
"Yihui Xie",
"José Valim",
"Kevin Sawicki",
"Jordan Sissel",
"Alon Zakai",
"Erik Michaels-Ober",
"Shougo",
"Edward A. Kmett",
"Sven Fuchs",
"Ryan Bigg",
"Nathan Rajlich",
"Dominic Tarr",
"David Fowler",
"Dr Nic Williams",
"Michael Snoyman",
"Kohsuke Kawaguchi",
"Yichun Zhang",
"Paul Miller",
"Ayende Rahien",
"Tokuhiro Matsuno",
"Aaron Heckmann",
"Kenneth Reitz",
"Lukas Kahwe Smith",
"William Durand",
"lifesinger",
"Benjamin Eberlei",
"Hsiaoming Yang",
"Fedor Indutny",
"Igor Wiedler",
"Jordi Boggiano",
"Daniel Greenfeld",
"Zeno Rocha",
"Irakli Gozalishvili",
"Ask Solem Hoel",
"Cristi Burcă",
"Durran Jordan",
"Rico Sta. Cruz",
"Linus Torvalds",
"Joshua Timberman",
"Benjamin Arthur Lupton",
"mattn",
"Philip (flip) Kromer",
"Derick Bailey",
"Will Bond",
"Anil Madhavapeddy",
"Yusuke Suzuki",
"Scott González",
"Lloyd Hilaiel",
"Wes McKinney",
"Konstantin Kudryashov",
"Demis Bellot",
"Eric Meyer",
"Mattt Thompson",
"Dustin Sallings",
"John Wiegley",
"Maxwell Salzberg",
"Magnar Sveen",
"Dale Harvey",
"Benoit Chesneau",
"David Grudl",
"Phil Hagelberg",
"James Burke",
"Samuel Clay",
"Jeremy D. Miller",
"Addy Osmani",
"Henri Bergius",
"Adam Vandenberg",
"Steve Losh",
"Luke Daley",
"Jared Hanson",
"Philip Arndt",
"Rick Waldron",
"Mark Story",
"John MacFarlane",
"Jeremy Ashkenas",
"David Dollar",
"Mike Bostock",
"R. Tyler Croy",
"Mark Otto",
"Wesley Beary",
"Ricardo Signes",
"Gregory Brown",
"John-David Dalton",
"Paul Betts",
"Paul Reioux",
"Tony Arcieri",
"Kana Natsuno",
"Ben Alman",
# "Astro",
"Jeff Forcier",
"Sindre Sorhus",
"Marijn Haverbeke",
"Richard Huang",
"Tim Caswell",
"Joshua Peek",
"Mitchell Hashimoto",
"James Coglan",
"Rafael Mendonça França",
"Michael Aufreiter",
"Damien Elmes",
"Jake Wharton",
"Yuvi Panda",
"Yurii Rashkovskii",
"Andrews Medina",
"Konstantin Haase",
"Jörn Zaefferer",
"Daniel Shiffman",
"Josh Abernathy",
"Anthony Grimes",
"Randall Degges",
"Eloy Durán",
"Travis Swicegood",
"Amos Wenger",
"Remy Sharp",
"Nathan Marz",
"Jeremy Kahn",
"Bryan O'Sullivan",
"Nicolas Perriault",
"Peter Steinberger",
"Ben Noordhuis",
"Shay Banon",
"Guillermo Rauch",
"Christophe Coevoet",
"Jeff Casimir",
"Mickael Daniel",
"Carl Meyer",
"Mr.doob",
"hadley wickham",
"Antonin Hildebrand",
"Jasper Van der Jeugt",
"Rebecca Murphey",
"Christian Amor Kvalheim",
"Evan Coury",
"Jakub Vrána",
"Mark McGranaghan",
"Steve Klabnik",
"Ricardo Quesada",
"lestrrat",
"Aaron Patterson",
"Aaron Straup Cope",
"Thomas Davis",
"Charles Oliver Nutter",
"Kris Kowal",
"Douglas Campos",
"Aslak Hellesøy",
"Yukihiro "Matz" Matsumoto",
"Paul Irish",
"Jose Diaz-Gonzalez",
"Tim Branyen",
"Ryan Weaver",
"Derick Rethans",
"Shawn M Moore",
"Christian Johansen",
"Charlie Robbins",
"Scott Jehl",
"Phil Sturgeon",
"José Lorenzo Rodríguez",
"Xinchen Hui",
"Tomas Doran",
"Peter Wagenet",
"Josh Suereth",
"Jackson Tian",
"Lance Pollard",
"Sebastian Bergmann",
"Carlos Antonio da Silva",
"Alessandro Franceschi",
"Xueqiao Xu",
"Kyle McDonald",
"Jeff Verkoeyen",
"Nadim Kobeissi",
"Johannes",
"James George",
"Sam Soffes",
"Jannis Leidel",
"John Mettraux",
"Mark Harrah",
"Dan Kubb",
"Olivier Grisel",
"Tomás Pollak",
"Piotr Sarnacki",
"Felix Geisendörfer",
"Pedro Teixeira",
"saber",
"Sean Cribbs",
"Ariya Hidayat",
"Naitik Shah",
"Marcus Westin",
"Coda Hale",
"James Ward",
"Mislav Marohnić",
"Álvaro Justen",
"Brian Noguchi",
"Wynn Netherland",
"Koushik Dutta",
"Oliver Drobnik",
"Richard Schneeman",
"Salvatore Sanfilippo",
"fat-kun",
"Christopher Jeffrey",
"SHIBATA Hiroshi",
"Miller Medeiros",
"David DeSandro",
"Piotr Solnica",
"Bernardo Heynemann",
"Matthew Eernisse",
"Lim Chee Aun",
"John Myles White",
"James Tauber",
"arturo",
"Andy Lester",
"Andrey “A.I” Sitnik",
"Nuno Job",
"rick",
"Mathias Meyer",
"Yi-Ting Cheng",
"Eric Holscher",
"Ricardo Cerqueira",
"Vojta Jina",
"Andrew Nacin",
"Jon Leighton",
"John Nunemaker",
"Nicholas Semendyaev",
"Allan Odgaard",
"Michael Ficarra",
"Maciej Małecki",
"Ryan Davis",
"Jaisen Mathai",
"Sergey Chikuyonok",
"Vicent Martí",
"FURUHASHI Sadayuki",
"James Reeves",
"Arnout Kazemier",
"Dean Sofer",
"Daniel Hillenbrand",
"Joshua Holbrook",
"Charles Leifer",
"Mike Perham",
"David Walsh",
"Dave Reisner",
"Thomas Reynolds",
"Phus Lu",
"Javier Jiménez",
# "Fuji, Goro",
"Justin Hileman",
"Vincent Driessen",
"Jason Davies",
"Caolan McMahon",
"Igor Minar",
"Jonathan "Duke" Leto",
"Zach Holman",
"Patrick Debois",
"AlteredQualia",
"Hongli Lai",
"Matthew McCullough",
"Luke Redpath",
"Fogus",
"Nathan Weizenbaum",
"Xavier Noria",
"Nathan Hamblen",
"Jed Schmidt",
"Stevan Little",
"Chris Done",
"Bozhidar Batsov",
"Stefan Kanev",
"Craig Campbell",
"antimatter15",
"Ian Bicking",
"Dennis Reimann",
"Miguel de Icaza",
"Mathias Bynens",
"Ward Cunningham",
"Tim Pope",
"Nicolas Gramlich",
"Sam Pullara",
"Aldo Cortesi",
"Tatsuhiko Miyagawa",
"Juan Lopes",
"Evan Phoenix",
"Kang-min Liu",
"Jan Lehnardt",
"Rob Allen",
"thinca",
"Jonas Nicklas",
"R.I.Pienaar",
"Steve Kondik",
"Jim Weirich",
"Jason Lee",
"jerpelea",
"Max Lapshin",
"Alex MacCaw",
"Yehuda Katz",
"Grigory Bakunov",
"Bert Belder",
"Pedro Melo",
"Jonathan Wight",
"James Smith",
"Daniel Sperl",
"Harper Reed",
"Brad Fitzpatrick",
"Johan Tibell",
"Assaf Arkin",
"Christoph Pojer",
"Cal Henderson",
"Eric Bidelman",
"David Keegan",
"Akira Matsuda",
"Divya Manian",
"Mihai Bazon",
"Alex Young",
"Bryan Veloso",
"Chris O'Hara",
"Harry Roberts",
"Eric Barnes",
"Rob "Hurricane" Ashton",
"Tobias Schneider",
"astaxie",
"Nils Adermann",
"Alexander Makarov",
"Young Hahn",
"Artur Adib",
"Mahdi Yusuf",
"Mark Nottingham",
"Paul Rouget",
"Gabriel Falcão",
"Brett Terpstra",
"Ralph Schindler",
"Hakim El Hattab",
"Brian Rosner",
"Dayle Rees",
"Nick Sieger",
"John Polacek",
"dennis zhuang",
"Magnus Woldrich",
"Alexandre Gomes Gaigalas",
"Allan Jardine",
"Karel Minarik",
"Bernhard Schussek",
"Olivier Poitrey",
"Matthias Tretter",
"Francois Zaninotto",
"Kentaro Kuribayashi",
"Alexis Sellier",
"Nicolas Gallagher",
"Tualatrix Chou",
"Evan Martin",
"Jeffrey Zhao",
"Lyric Wai",
"Chris Banes",
"Tim Sharpe",
"Aaron Swartz",
"Bodil Stokke",
"Xavier Shay",
"Nick Quaranto",
"Carbo Kuo",
"Tekkub",
"Alexander Artemenko",
"Rob Hudson",
"Gosuke Miyashita",
"David Chelimsky",
"André Arko",
"Keiji, Yoshimi",
"Jacob Appelbaum",
"Anton Kovalyov",
"Corey Donohoe",
"Irene Ros",
"Gina Trapani",
"Joshua Clayton",
"Michael G. Schwern",
"Chris Anderson",
"Alex Sexton",
"Alex Gaynor",
"Ryan Grove",
"Andy Dawson",
"Paul Querna",
"Ivan Sagalaev",
"Juriy Zaytsev",
"Fred Wu",
"Shota Fukumori",
"Jeff Lindsay",
"Josh Lockhart",
"Mary Rose Cook",
"Pat Allan",
"Memo Akten",
"Matt Aimonetti",
"Zach Carter",
"Valerio Proietti",
"Tomasz Figa",
"youpy",
"Davies Lliu",
"Ethan Schoonover",
"cho45",
"Feross Aboukhadijeh",
"Adán Miguel Sánchez Albert",
"TAKANO Mitsuhiro",
"Qiang Xue",
"Weibin Yao(姚伟斌)",
"Max Goodman",
"Idan Gazit",
"Endy Muhardin",
"Shaun McCormick",
"Mikito Takada",
"ara.t.howard",
"Gareth Rushgrove",
"adam j. sontag",
"Jon Rohan",
"Bartek Szopka",
"Santiago Pastorino",
"Mikeal Rogers",
"Nate Abele",
"Bulat Shakirzyanov",
"David Heinemeier Hansson",
"Armin Ronacher",
"Max Ogden",
"Ryan Bates",
"Andreas Gal",
"Jamie Rumbelow",
"Corey Haines",
"Sebastian Tschan",
"Caleb Troughton",
"Theodore Watson",
"Jerome Gravel-Niquet",
"James Turnbull",
"Yuichiro MASUI",
"Guillaume Bort",
"Jeremy Bush",
"hitode909",
"Magnus Holm",
"Arun Agrawal",
"Miško Hevery",
# "云风", # it's a user account on github, called "cloudwu"
"James Dennis",
"Guilherme Blanco",
"Luciano Ramalho",
"Jeremy Kemper",
"Yoshihiro Sugi",
"Dan Croak",
"Alex Ott",
"Lea Verou",
"Elijah Insua",
"Kris Zyp",
"finscn",
"Jonas Bonér",
"Mat Marquis",
"Keith Rarick",
"Mohamed Mansour",
"James Golick",
"Stuart Sierra",
"James Padolsey",
"Michel Martens",
"Dexter.Yy",
"Julia West",
"Scott Chacon",
"Shuo Chen",
"Ilya Grigorik",
"Mark Murphy",
"Kit Cambridge",
"Lourens Naudé",
"Brock Whitten",
"Limor "Ladyada" Fried",
"Josh Nichols",
"brian d foy",
"Ben Edmunds",
"Jonathan H. Wage",
"jugyo",
"Gianni Chiappetta",
"Henrique Bastos",
"Martin Grenfell",
"Brian LeRoux",
"Brandon Keepers",
"James Chen",
"Brad Larson",
"Heather Arthur",
"Wayne E. Seguin",
"Mark Jaquith",
"Karl Seguin",
"Nando Vieira",
"John Resig",
"Rob Fuller",
"Sam Vermette",
"Trevor Turk",
"simurai",
"Eric Butler",
"Kevin Ballard",
"Rasmus Andersson",
"Kazuho Oku",
"Daisuke Murase",
"Chris Williams",
"motemen",
"Daniel Kerr",
"Aman Gupta",
"Darcy Laycock",
"Robbie Hanson",
"Swaroop C H",
"Ryan Petrich",
"Zachary Voase",
"Mike Chambers",
"Nick Lockwood",
"Kris Wallsmith",
"Jack Danger Canty",
"Felix Gnass",
"Chris Eppstein",
"Moxie Marlinspike",
"Thomas Fuchs",
"Kyle Simpson",
"Michael Bleigh",
"Phil Haack",
"Drew Neil",
"Trek Glowacki",
"Max Howell",
"Cody Lindley",
"Dave Gamache",
"Jamie Wilkinson",
"Joe Hewitt",
"Peter Seibel",
"Steven Sanderson",
"Damian Edwards",
"Daniel Shaw",
"Alvaro Videla",
"Mugunth Kumar",
"Jacob Kaplan-Moss",
"Gary Bernhardt",
"Scott Schiller",
"Peteris Krumins",
"honcheng",
"Paul Kinlan",
"Sam Stephenson",
"Shaun Smith",
"Victor Coulon",
"Tianyi Cui",
"Yusuke Yamamoto",
"Ivo Wetzel",
"Paul Lewis",
"Michael Hartl",
"Yoshimasa Niwa",
"komagata",
"Daniel Lindsley",
"Brandon Mathis",
"Brad Frost",
"Dustin Diaz",
"Charlie McConnell",
"James Bennett",
"Florian Ragwitz",
"Michael Fellinger",
"Paolo Fragomeni",
"Jonathan 'Wolf' Rentzsch",
"Abraham Williams",
"Pavel",
"Nick Fitzgerald",
"Guillaume Laforge",
"James Edward Gray II",
"Robby Russell",
"Scott Hanselman",
"Devin Price",
"Brian Lopez",
"Qiangning Hong",
"Kakutani Shintaro",
"Kevin van Zonneveld",
"Albert Pham",
"Christian Neukirchen",
"Chris Granger",
"Mike Alsup",
"Rasmus Lerdorf",
"Harry Marr",
"Luís Almeida",
"Uli Kusterer",
"Avdi Grimm",
"Ryan Tomayko",
"Shaofei Cheng",
"Juan Basso",
"Liam McLoughlin",
"Jon Maddox",
"Justin Palmer",
"Tom McFarlin",
"Justin Abrahms",
"Thiago Belem",
"Martian Z",
"Cédric Luthi",
"YAMAGUCHI EIKICHI",
"James Tucker",
"Kazuhiro Osawa",
"Christian Heilmann",
"Justin Windle",
"Tom Dale",
"Marc-André Cournoyer",
"Satoshi Nakagawa",
"Nathan Smith",
"Ben Firshman",
"Steve Francia",
"Boris Smus",
"Nicolás Sanguinetti",
"Richard Crowley",
"Aaron Quint",
"Jeff Gilfelt",
"Shi Chuan",
"Tomohito Ozaki",
"chromatic",
"Wen-Tien Chang",
"Graham Weldon",
"Ernie Miller",
"Blake Mizerany",
"Pádraic Brady",
# "lijing00333",
"Larry Wall",
"Brandon Jones",
"David Nolen",
"James Tang",
"Leevi Graham",
"Ben Schwarz",
"Rei",
"Evan Miller",
"Takuto Wada",
"Giles",
"Michael Fields",
"Eric Davis",
"John-Paul Bader",
"Pamela Fox",
"Ed Finkler",
"Ryan Seddon",
"Jean Carlo Nascimento",
"August "Gus" Mueller",
"Edwin Chen",
"Simon Rozet",
"Fabio Kung",
"Christiano Milfont",
"Anthony Ettinger",
"Carl Lerche",
"Robey Pointer",
"Dustin L. Howett",
"Boris Moore",
"John Barnette",
"nicolas garcia belmonte",
"Joshua Hull",
"Peter Alfonso",
"Timothee "TTimo" Besset",
"Dmitri",
"Dan Horrigan",
"Kevin Whinnery",
"Egor Homakov",
"Bryan Helmkamp",
"Ciaran Jessup",
"Reg Braithwaite",
"Christophe Coenraets",
"Dinner Bone",
"Guilherme Silveira",
"Mitchell Simoens",
"Zed A. Shaw",
"Evan Wallace",
"Nicholas C. Zakas",
"Douglas Crockford",
"Loiane Groner",
"Jack Moffitt",
"Tim Lucas",
"Seth Fitzsimmons",
"Jeff Haynie",
"Yuichi Tateno",
"Gabriel Handford",
"朱建刚",
"Dan Eden",
"Scott Taylor",
"Karlisson Bezerra",
"Matt Biddulph",
"Tom Preston-Werner",
"Chris Wanstrath",
"Paul Tarjan",
"Justin French",
"Johan Nilsson",
"Adam Shanks",
"Wang, Xiaozhe",
"Tobias Lütke",
"Stuart Halloway",
"Kyle Neath",
"Kishikawa Katsumi",
"Douglas Neiner",
"Amir Salihefendic",
"Yusuke Wada",
"Aral Balkan",
"Tyler Hall",
"Jeremy McAnally",
"Chad Scira",
"Marcus Ramberg",
"Woody Gilk",
"James Pearce",
"Steve Streza",
"Nick Johnson",
"Nick Gerakines",
"John Sheehan",
"David Pollak",
"Paul Dix",
"Marcos Tapajós",
"Stig Brautaset",
"Chris Coyier",
"Pete Warden",
"Jack Moore",
"Joel Hooks",
"Christophe Grand",
"Dann",
"Steve Jenson",
"lzyy",
"Daniel Lopes",
"Yuki Sonoda (Yugui)",
"Thomas Aylott",
"Atsushi Kobayashi",
"Greg Young",
"Cameron McEfee",
"Geoffrey Grosenbach",
"Dave Rupert",
"Hooopo",
"Adam Wiggins",
"Rich Hickey",
"Jesse Newland",
"Claus Wahlers",
"Garann Means",
"Dustin Whittle",
"Indragie Karunaratne",
"Drew Conway",
"Joe Stump",
"Matteo Spinelli",
"Carlos Brando",
"Jonathan Rockway",
"Mike Ash",
"Hilary Mason",
"Jimmy Bogard",
"Tim Holman",
"Naoya Ito",
"Francisco Ryan Tolmasky I",
"Andy Matuschak",
"Daniel Spiewak",
"Ola Bini",
"Ayaka Ikezawa",
"Devin Ross",
"Eric Florenzano",
"Jeffrey Way",
"Alex Payne",
"Matt Ranney",
"Nick Kallen",
"Cliff Moon",
"Phil Calçado",
"Mark Allison",
"Robin Lu",
"Jeff Balogh",
"Richard Jones",
"Gregg Pollack",
"Greg Borenstein",
"Tom Robinson",
"Ari",
"Dmitry Baranovskiy",
"Patrick Wyatt",
"Josh Susser",
"yuiseki",
"Sam de Freyssinet",
"Tim Burks",
"Chad Fowler",
"Fabio Akita",
"angus croll",
"Nico Hagenburger",
# "闲耘™",
"Grant Paul",
"Sebastian Riedel",
"Zach Beane",
"Yin Wang",
"Steve Dekorte",
"Adrian Kosmaczewski",
"Carlos Villela",
"Kyle Bragger",
"bret",
"Xin Liu",
"Brandon Kelly",
"Jay Freeman (saurik)",
"Julie Ann Horvath",
"Rob Conery",
"Dave DeLong",
"Matthijs Hollemans",
"Vladimir Kolesnikov",
"Andrei Zmievski",
"Erica Sadun",
"Robert C. Martin",
"Michael Hoisie",
"Steve Smith",
"Ben Orenstein",
"Michael Koziarski",
"joe armstrong",
"Daniel Neighman",
"Daniel Peebles",
"Peter Cooper",
"Guilherme Chapiewski",
"Brandon Aaron",
"Christian Van Der Henst S.",
"Dave Fayram",
"Nicole Sullivan",
"Matthew A. Russell",
"Jamis Buck",
"Joel Perras",
"Nathan Borror",
"Jonnie Hallman",
"Pat Nakajima",
"Joshua Hill",
"Hitoshi Amano",
"Jim Dovey",
"Ben Cherry",
"Micheil Smith",
"Obie Fernandez",
"Paulo Silveira",
"Peter E Higgins",
"Pratik",
"Adam Stacoviak",
"Joe Damato",
"Matt Gemmell",
"Paul Neave",
"Robert Hodgin",
"Corey Johnson",
"Rob Hawkes",
"Ole Zorn",
"Nodester",
"Jeremy Keith",
"Jordan Mechner",
"Joe Ricioppo",
"Dan Webb",
"jawahar",
"Andrew Gerrand",
"Loren Brichter",
"Simon Willison",
"Leah Culver",
"Vinicius Teles",
"mala",
"Sergey Tikhonov",
"Matt Todd",
"kevin",
"Brendan Eich",
"Cyril Mottier",
"Grant Skinner",
"Blaine Cook",
"kejun",
"Masafumi Otsune",
"Nicolas Haunold",
"Marcel Molina",
"Jason Morrissey",
"Dan Benjamin",
"Robert Penner",
"John Freddy Vega",
"Romain Guy",
"Adam 'Atomic' Saltsman",
"Ching-Lan 'digdog' HUANG 黃 青嵐",
"Bret Taylor",
"Paul Pajo",
"Krystal Mok",
"Yuval Kogman",
"Peter Boctor",
"Aaron Newton",
# "The Octocat",
"布客飞龙",
"小弟调调",
"芋道源码",
"三咲智子",
"题叶",
"王下邀月熊",
"张炎泼",
"徐明",
"灵茶山艾府",
"王诗翔",
"云游君",
"吴晟",
"卡色",
"罗泽轩",
"贤心",
"前端开发博客",
"李鼎",
"响马",
"管宜尧",
# "辉鸭蛋",
"伊撒尔",
"依云",
"程序员",
"大帅老猿",
"阿崔",
"吴多益",
"荣顶",
"李宗英",
"安正超",
"彭于斌",
"大漠穷秋",
"文翼",
"曾哥",
"崔庆才丨静觅",
"一蓑烟雨",
"유용민",
"정승훈",
"도경",
"이정호",
"박현우",
"김성길",
# "깃짱",
"전민재",
"안예성",
"구영표",
"박준현",
"변찬우",
"이은비",
"권강빈",
"洪民憙",
"정현수",
"최미래",
"백승하",
# "스타샤",
"신수형",
"임우찬",
"신종화",
"이강욱",
"윤정민",
"이석호",
"김지현",
"전해성",
"이정호",
"심미진",
"웹스토리보이",
"이수진",
"김서진",
"최민재",
"황준승",
"백여우",
"전해림",
"니콜라스",
"박준현",
"김노트",
"강대현",
"김재호",
"김세현",
"임세현",
"시니어코딩",
"이정은",
"김준환",
"한규진",
"신준서",
"강지석",
"김승우",
"테디",
"고석진",
"이정민",
"임동현",
"권용빈",
"차승호",
"나상우",
"이규진빌규진",
"박찬인",
"김한수",
"차경민",
"김도형",
"홍정현",
"소연",
"우준성",
"이선우",
"이원중",
"강수진",
"정우일",
"박우빈",
"황성현",