This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
forked from Devographics/entities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.yml
1849 lines (1647 loc) · 28.7 KB
/
people.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
# personal sites and blogs
- id: tyler_mcginnis
name: Tyle McGinnis
homepage: https://tylermcginnis.com/
tags:
- courses
- react
- js
patterns:
- tyler ?mc( |-)?ginnis
- id: sarah_drasner
twitterName: sarah_edo
name: Sarah Drasner
homepage: https://sarahdrasnerdesign.com/
patterns:
- sara drasner
tags:
- javascript
- blogs
- css
- id: heydon_pickering
twitterName: heydonworks
name: Heydon Pickering
homepage: https://heydonworks.com/
blog: https://heydonworks.com/latest/
rss: https://heydonworks.com/feed.xml
tags:
- blogs
- css
patterns:
- heydon
- id: kent_c_dodds
twitterName: kentcdodds
name: Kent C. Dodds
homepage: https://kentcdodds.com/blog/
tags:
- js
- react
- blogs
patterns:
- kent( )?c(.)?( )?do(o)?dds
- kent dodds
- id: dan_abramov
twitterName: overreacted
name: Dan Abramov
homepage: https://overreacted.io/
tags:
- js
- react
- blogs
patterns:
- overreacted
- overeacted
- abramov
- dan abromov
- id: robin_wieruch
name: Robin Wieruch
homepage: https://www.robinwieruch.de/
tags:
- js
- blogs
patterns:
- wieruch
- id: pony_foo
name: Pony Foo
homepage: https://ponyfoo.com/
tags:
- js
- blogs
patterns:
- pony ?foo
- id: david_walsh
name: David Walsh
homepage: https://davidwalsh.name/
tags:
- js
- blogs
- id: flavio_copes
twitterName: flaviocopes
name: Flavio Copes
homepage: https://flaviocopes.com/
tags:
- js
- blogs
patterns:
- flavio( )?copes
- id: ahmad_shadeed
twitterName: shadeed9
name: Ahmad Shadeed
homepage: https://ishadeed.com/
tags:
- css
- blogs
patterns:
- shadeed
- id: andy_bell
twitterName: piccalilli_
name: Andy Bell
homepage: https://piccalil.li/
tags:
- css
- blogs
patterns:
- picc?alil\.?l?(i|y)
- andy()?bell
- id: chen_hui_jing
twitterName: hj_chen
name: Chen Hui Jing
homepage: https://chenhuijing.com/
tags:
- css
- blogs
patterns:
- chen ?hui ?jing
- id: jeremy_keith
twitterName: adactio
name: Jeremy Keith
homepage: https://adactio.com/
tags:
- css
- blogs
patterns:
- jeremy ?keith
- id: lea_verou
twitterName: leaverou
name: Lea Verou
homepage: https://lea.verou.me/
tags:
- css
- blogs
- id: sara_soueidan
twitterName: sarasoueidan
name: Sara Soueidan
homepage: https://www.sarasoueidan.com/
patterns:
- sarah soueidan
- saoudan
- souidan
tags:
- css
- blogs
- id: josh_comeau
twitterName: JoshWComeau
name: Josh Comeau
homepage: https://joshwcomeau.com/
tags:
- blogs
- css
- js
patterns:
- josh ?w?( |.|. )?com(m)?eau
- comeau
- josh w c
- id: rachel_andrew
twitterName: rachelandrew
name: Rachel Andrew
homepage: https://rachelandrew.co.uk/
tags:
- css
- id: jen_simmons
twitterName: jensimmons
name: Jen Simmons
homepage: https://jensimmons.com/
tags:
- css
- id: kevin_j_powell
twitterName: kevinjpowell
name: Kevin Powell
homepage: https://www.kevinpowell.co/
youtubeName: kevinpowell
tags:
- css
patterns:
- kevin powell
- kevin powel
- ken powell
- kevin_powell
- id: harry_roberts
twitterName: csswizardry
name: Harry Roberts
homepage: https://css_wizardry.com
tags:
- css
patterns:
- harry ?roberts
- id: stephanie_walter
twitterName: walterstephanie
name: Stéphanie Walter
homepage: https://stephaniewalter.design/
patterns:
- stefanie walter
- stéphanie walter
tags:
- css
- id: tania_rascia
name: Tania Rascia
homepage: https://www.taniarascia.com/
tags:
- javascript
- id: brad_frost
twitterName: brad_frost
name: Brad Frost
homepage: http://bradfrost.com/
tags:
- css
- id: dave_rupert
twitterName: davatron5000
name: Dave Rupert
homepage: https://daverupert.com/
tags:
- css
- id: wes_bos
twitterName: wesbos
name: Wes Bos
homepage: https://wesbos.com/
tags:
- courses
- css
patterns:
- wes ?bos
- id: chris_coyier
twitterName: chriscoyier
name: Chris Coyier
bio: Creator of CSS Tricks and Codepen.
homepage: https://css-tricks.com
tags:
- css
patterns:
- Chris Coier
- Chris Coiyer
- Chris Coyer
- id: christian_heilmann
twitterName: codepo8
name: Christian Heilmann
homepage: https://christianheilmann.com/
patterns:
- Chris Heilmann
tags:
- css
- id: adrian_roselli
twitterName: aardrian
name: Adrian Roselli
homepage: https://adrianroselli.com/
tags:
- css
- id: bruce_lawson
twitterName: brucel
name: Bruce Lawson
homepage: https://brucelawson.co.uk/
tags:
- css
- id: eric_meyer
twitterName: meyerweb
name: Eric Meyer
homepage: https://meyerweb.com/
tags:
- css
- id: peter_paul_koch
twitterName: ppk
name: Peter Paul Koch
homepage: https://www.quirksmode.org/
tags:
- css
- blogs
patterns:
- ppk
- id: una_kravets
twitterName: una
name: Una Kravets
homepage: https://una.im/
tags:
- css
patterns:
- una
- id: ethan_marcotte
twitterName: beep
name: Ethan Marcotte
homepage: https://ethanmarcotte.com/
tags:
- css
- id: kitty_giraudel
twitterName: kittygiraudel
name: Kitty Giraudel
homepage: https://kittygiraudel.com/
tags:
- css
- id: stephanie_eckles
twitterName: 5t3ph
name: Stephanie Eckles
homepage: https://moderncss.dev/
patterns:
- steph eckles
related:
- moderncss
tags:
- css
- id: hidde_de_vries
twitterName: hdv
name: Hidde De Vries
homepage: https://hiddedevries.nl/en/
tags:
- css
- id: adam_argyle
twitterName: argyleink
name: Adam Argyle
homepage: https://nerdy.dev/
tags:
- css
- id: ana_tudor
twitterName: anatudor
name: Ana Tudor
homepage: https://www.patreon.com/anatudor
patterns:
- anna tudor
tags:
- css
- id: kilian_valkhof
twitterName: kilianvalkhof
name: Kilian Valkhof
homepage: https://kilianvalkhof.com/
tags:
- css
- id: eric_w_bailey
twitterName: ericwbailey
name: Eric Bailey
homepage: https://ericwbailey.design/
tags:
- css
patterns:
- eric bailey
- id: max_bock
twitterName: mxbck
name: Max Böck
homepage: https://mxb.dev/
tags:
- css
- id: miriam_suzanne
twitterName: TerribleMia
name: Miriam Suzanne
homepage: https://www.miriamsuzanne.com/
tags:
- css
- id: bramus_van_damme
twitterName: bramus
name: Bramus Van Damme
homepage: https://www.bram.us/
patterns:
- bram.us
- bramus
tags:
- css
- id: adam_wathan
twitterName: adamwathan
name: Adam Wathan
patterns:
- adam watham
homepage: https://adamwathan.me/
tags:
- css
- id: philip_walton
twitterName: philwalton
name: Philip Walton
homepage: https://philipwalton.com/
tags:
- js
- id: michelle_barker
twitterName: MicheBarks
name: Michelle Barker
homepage: https://css-irl.info/
rss: https://css-irl.info/rss.xml
tags:
- css
related:
- css_irl
- id: sarah_fossheim
twitterName: SarahFossheim
name: Sarah Fossheim
homepage: https://fossheim.io/
tags:
- css
- javascript
- blogs
- id: philip_jagenstedt
twitterName: foolip
name: Philip Jägenstedt
homepage: https://foolip.org/
blog: https://blog.foolip.org/
tags:
- css
- blogs
- id: scott_kellum
twitterName: ScottKellum
name: Scott Kellum
homepage: https://typetura.com/
tags:
- css
- id: christopher_kirk_nielsen
twitterName: ckirknielsen
name: Christopher Kirk-Nielsen
homepage: https://chriskirknielsen.com/
tags:
- css
blog: https://chriskirknielsen.com/blog/
rss: https://chriskirknielsen.com/rss.xml
- id: ej_mason
twitterName: codeability
name: EJ Mason
homepage: https://www.ejmason.com/
tags:
- accessibility
- id: scott_o_hara
twitterName: scottohara
name: Scott O'Hara
homepage: https://www.scottohara.me/
blog: https://www.scottohara.me/writing/
rss: https://www.scottohara.me/feed.xml
github: scottaohara
patterns:
- scott o( |')?hara
tags:
- css
- javascript
- accessibility
- id: leonie_watson
twitterName: LeonieWatson
homepage: https://tink.uk/
blog: https://tink.uk/
rss: https://tink.uk/feed.xml
tags:
- accessibility
- id: monica_dinculescu
name: Monica Dinculescu
twitterName: notwaldorf
homepage:
blog:
rss:
tags:
- css
- id: lynn_fisher
name: Lynn Fisher
twitterName: lynnandtonic
homepage: https://lynnandtonic.com/
blog:
rss:
tags:
- css
- id: cassie_evans
name: Cassie Evans
twitterName: cassiecodes
homepage: https://www.cassie.codes/
blog:
rss:
tags:
- css
- id: mandy_michael
name: Mandy Michael
twitterName: Mandy_Kerr
homepage:
blog:
rss:
tags:
- css
- id: charlie_gerard
name: Charlie Gerard
twitterName: devdevcharlie
homepage:
blog:
rss:
tags:
- css
- id: cassidy_williams
name: Cassidy Williams
twitterName: cassidoo
homepage: https://cassidoo.co/
blog:
rss:
patterns:
- cassido
tags:
- css
- id: jake_archibald
name: Jake Archibald
twitterName: jaffathecake
homepage: https://jakearchibald.com/
blog:
rss:
tags:
- css
- id: andy_clarke
name: Andy Clarke
twitterName: malarkey
homepage: https://stuffandnonsense.co.uk/
blog:
rss:
tags:
- css
- id: viljami_salminen
name: Viljami Salminen
twitterName: viljamis
homepage:
blog:
rss:
tags:
- css
- id: manuel_matuzovic
name: Manuel Matuzović
twitterName: mmatuzo
homepage: https://www.matuzo.at/
blog:
rss:
patterns:
- htm_hell
- html hell
- matuzović
tags:
- css
- id: scott_de_jonge
name: Scott De Jonge
twitterName: scottdejonge
homepage:
blog:
rss:
tags:
- css
- id: max_bock
name: Max Böck
twitterName: mxbck
homepage:
blog:
rss:
tags:
- css
- id: sarah_higley
name: Sarah Higley
twitterName: codingchaos
homepage:
blog:
rss:
tags:
- css
- accessibility
- id: zach_leatherman
name: Zach Leatherman
twitterName: zachleat
homepage: https://www.zachleat.com/
blog:
rss:
tags:
- css
- id: mark_dalgleish
name: Mark Dalgleish
twitterName: markdalgleish
homepage:
blog:
rss:
tags:
- css
- js
patterns:
- dalgeish
- dagleish
- id: jeffrey_zeldman
name: Jeffrey Zeldman
twitterName: zeldman
homepage:
blog:
rss:
tags:
- css
- id: diana_smith
name: Diana Smith
twitterName: cyanharlow
homepage:
blog:
rss:
tags:
- css
- id: brad_westfall
name: Brad Westfall
twitterName: bradwestfall
homepage:
blog:
rss:
tags:
- css
- javascript
- id: alex_trost
name: Alex Trost
twitterName: trostcodes
homepage:
blog:
rss:
tags:
- css
- id: anthony_fu
name: Anthony Fu
twitterName: antfu7
homepage: https://antfu.me/
blog:
rss:
patterns:
- antfu
tags:
- css
- id: george_francis
name: George Francis
twitterName: georgedoescode
homepage:
blog:
rss:
tags:
- css
- id: rich_harris
name: Rich Harris
twitterName: Rich_Harris
homepage: https://twitter.com/Rich_Harris
blog:
rss:
tags:
- css
- id: addy_osmani
name: Addy Osmani
twitterName: addyosmani
homepage: https://addyosmani.com/
blog:
rss:
tags:
- css
- id: adam_kuhn
name: Adam Kuhn
twitterName: cobra_winfrey
homepage:
blog:
rss:
tags:
- css
- id: jeremy_wagner
name: Jeremy Wagner
twitterName: malchata
homepage:
blog:
rss:
tags:
- css
- id: zell_liew
name: Zell Liew
twitterName: zellwk
homepage:
blog:
rss:
tags:
- css
- id: sia_karamalegos
name: Sia Karamalegos
twitterName: TheGreenGreek
homepage:
blog:
rss:
tags:
- css
- id: sarah_dayan
name: Sarah Dayan
twitterName: frontstuff_io
homepage:
blog:
rss:
tags:
- css
- id: evan_you
name: Evan You
twitterName: youyuxi
homepage: https://evanyou.me/
blog:
rss:
tags:
- javascript
- vue
- id: paul_irish
name: Paul Irish
twitterName: paul_irish
homepage: https://www.paulirish.com/
blog:
rss:
tags:
- css
- id: surma
name: Surma
twitterName: dassurma
homepage: https://surma.dev/
blog:
rss:
tags:
- css
- id: lee_robinson
name: Lee Robinson
twitterName: leeerob
homepage: https://leerob.io/
blog:
rss:
tags:
- css
- javascript
- id: paul_boag
name: Paul Boag
twitterName: boagworld
homepage:
blog:
rss:
tags:
- css
- id: anna_debenham
name: Anna Debenham
twitterName: anna_debenham
homepage:
blog:
rss:
tags:
- css
- id: robin_rendle
name: Robin Rendle
twitterName: robinrendle
homepage:
blog:
rss:
tags:
- css
- id: douglas_bowman
name: Douglas Bowman
twitterName: stop
homepage:
blog:
rss:
tags:
- css
- id: dave_shea
name: Dave Shea
twitterName: mezzoblue
homepage:
blog:
rss:
tags:
- css
- id: khoi_vinh
name: Khoi Vinh
twitterName: khoi
homepage:
blog:
rss:
tags:
- css
- id: scott_jehl
name: Scott Jehl
twitterName: scottjehl
homepage:
blog:
rss:
tags:
- css
- id: pedro_duarte
name: Pedro Duarte
twitterName: peduarte
homepage:
blog:
rss:
tags:
- css
- id: miguel_angel_duran
name: Miguel Ángel Durán (midu.dev)
twitterName: midudev
homepage: https://midu.dev/
blog:
rss:
youtube: https://www.youtube.com/c/midudev
tags:
- css
patterns:
- midudev
- midu
- Miguel Ángel Durán
- id: jason_lengstorf
name: Jason Lengstorf
twitterName: jlengstorf
homepage: https://www.lengstorf.com/
blog:
rss:
tags:
- css
- id: matt_perry
name: Matt Perry
twitterName: mattgperry
homepage:
blog:
rss:
tags:
- css
- id: dan_abramov
name: Dan Abramov
twitterName: dan_abramov
homepage:
blog:
rss:
tags:
- js
- react
- id: tim_neutkens
name: Tim Neutkens
twitterName: timneutkens
homepage:
blog:
rss:
tags:
- javascript
- nextjs
- id: ryan_dahl
name: Ryan Dahl
twitterName:
homepage:
blog:
rss:
tags:
- js
- node
- id: mattias_petter_johansson
name: Mattias Petter Johansson
twitterName: mpjme
homepage:
blog:
rss:
patterns:
- mpg
tags:
- css
- id: kyle_simpson
name: Kyle Simpson
twitterName: getify
homepage: https://me.getify.com/
blog:
rss:
tags:
- javascript
- id: ben_awad
name: Ben Awad
twitterName: benawad
homepage: https://voidpet.com/benawad
blog:
rss:
tags:
- css
- id: vadim_makeev
name: Vadim Makeev
twitterName: pepelsbey_
homepage: https://pepelsbey.net/
blog:
rss:
tags:
- css
patterns:
- Вадим Макеев
- makeev
- pepelsbey
- id: julia_evans
name: Julia Evans
twitterName: b0rk
homepage:
blog:
rss:
tags:
- css
- id: jonathan_mircha
name: Jonathan MirCha
twitterName: jonmircha
homepage: https://jonmircha.com/
blog:
rss:
tags:
- css
patterns:
- jonmircha
- JhonMircha
- jon mircha
- id: brad_traversy
name: Brad Traversy
twitterName: traversymedia
homepage: https://www.traversymedia.com/
blog:
rss:
patterns:
- Traversy
tags:
- css
- id: tab_atkins
name: Tab Atkins
twitterName: tabatkins