-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathdata.js
More file actions
21378 lines (21376 loc) · 445 KB
/
data.js
File metadata and controls
21378 lines (21376 loc) · 445 KB
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
/**
* @typedef Person
* A single contributor with a /uses page.
* Data is validated against the following schema https://github.com/wesbos/awesome-uses/blob/master/scripts/utils.js#L53-L70
* @property {string} name - contributor's name
* @property {string} description - tagline for contributor
* @property {string} url - link to contributor's /uses page
* @property {string} country - flag emoji for contributor's country
* @property {string} [twitter] - optional Twitter username (beginning with `@`)
* @property {string} [mastodon] - optional Mastodon username & server (beginning with `@`, ex: `@hello@mastodon.social`)
* @property {string} [bluesky] - optional Bluesky (bsky.app) handle (do not use `@`)
* @property {string} [emoji] - some emoji corresponding to the contributor
* @property {'apple' | 'windows' | 'linux' | 'bsd'} [computer]
* @property {'iphone' | 'android' | 'windowsphone' | 'flipphone'} [phone]
* @property {string[]} tags - list of tools or other tags the contributor uses
*/
/**
* List of all contributors with /uses pages.
* @type {Person[]}
* Data is validated against the following schema https://github.com/wesbos/awesome-uses/blob/master/scripts/utils.js#L53-L70
*
* Keep this a commonjs export.
*/
module.exports = [
{
name: 'Berat Bozkurt ',
description:
'Frontend developer living in Turkey. Currently building mobile apps, indie hacker',
url: 'https://beratbozkurt.net/en/uses',
emoji: '🔵',
country: '🇹🇷',
computer: 'apple',
phone: 'iphone',
twitter: '@beratbuilds',
tags: [
'JavaScript',
'TypeScript',
'React',
'Next.js',
'TailwindCSS',
'ReactNative',
'IndieHacker',
'SideProjects',
],
},
{
name: 'Vlad Savruk',
description: 'Product and Graphic Designer',
url: 'https://vladsavruk.com/writing/uses',
emoji: '✉️',
country: '🇨🇦',
computer: 'apple',
phone: 'iphone',
twitter: '@vldsvrk',
tags: [
'JavaScript',
'TypeScript',
'React',
'Next.js',
'TailwindCSS',
'Swift',
'SwiftUI',
'Figma',
'Photoshop',
'Illustrator',
'InDesign',
'Raycast',
'Obsidian',
],
},
{
name: 'Phuc Bui',
description:
'Creative Frontend Engineer. I create things for designers and developers, usually open source.',
url: 'https://phucbm.com/uses',
emoji: '👽',
country: '🇻🇳',
computer: 'apple',
phone: 'iphone',
twitter: '@phucbm_',
tags: [
'Fullstack',
'Frontend',
'Web Animation',
'GSAP',
'Typescript',
'React',
'NextJS',
'UI',
'Freelance',
'CSS',
'JavaScript',
],
},
{
name: 'Loic Leray',
description:
'Veterinarian turned CRUD-monkey and tech sales guy. Extreme sports enthusiast.',
url: 'https://www.loicleray.com/uses',
emoji: '🦘',
country: '🇦🇺',
computer: 'apple',
phone: 'iphone',
twitter: '@loicleray',
tags: [
'Remote',
'Developer',
'Sales',
'SEO',
'Programmatic SEO',
'Python',
'Self Taught',
'Typescript',
'React',
'NextJS',
'Drones',
'Agriculture',
'Mining',
'UI',
'Design',
'Photo',
'Video',
'Youtube',
],
},
{
name: 'Hayo Bethlehem',
description: 'Strategic Adviser',
url: 'https://hayobethlehem.nl/about/uses',
country: '🇳🇱',
computer: 'windows',
phone: 'android',
mastodon: '@kineticdiplomacy@infosec.exchange',
tags: [
'CSS',
'HTML',
'PHP',
'Photography',
'Inoreader',
'Sublime',
'Proton',
'indieweb',
'Government Policy',
'LibreOffice',
'Waterfox',
'Gitlab',
'Open Source',
],
},
{
name: 'Guilherme Albert',
description:
'Tech Lead & Full Stack Engineer. Product-minded, hands-on, and entrepreneur.',
url: 'https://guilhermealbert.com/uses',
country: '🇧🇷',
emoji: '🤠',
computer: 'apple',
phone: 'iphone',
tags: [
'Tech Lead',
'Full Stack',
'React',
'Next.js',
'TypeScript',
'Node.js',
'AI Agents',
'Blockchain',
],
},
{
name: 'Sahil Kapoor',
description:
'Founder & product engineer building AI, gaming, sports tech, and consumer products.',
url: 'https://sahilkapoor.com/uses',
twitter: '@isahilkapoor',
emoji: '🚀',
country: '🇮🇳',
computer: 'apple',
phone: 'iphone',
bluesky: 'sahilkapoor.com',
tags: [
'Founder',
'Entrepreneur',
'Developer',
'Engineer',
'Full Stack',
'JavaScript',
'TypeScript',
'Node.js',
'React',
'Next.js',
'AWS',
'Cloudflare',
'Blogger',
'AI',
'GitHub',
],
},
{
name: 'Jared Rigby',
description: 'Creative technologist and indie game developer.',
url: 'https://jaredrigby.co.uk/uses/',
emoji: '🎮',
country: '🇬🇧',
computer: 'windows',
phone: 'android',
bluesky: 'jaredrigby.co.uk',
tags: [
'Hugo',
'PNPM',
'Godot',
'Jekyll',
'GitHub',
'VS Code',
'Netlify',
'Next.js',
'Obsidian',
'WordPress',
'Developer',
'JavaScript',
'Full Stack',
'Tailwind CSS',
],
},
{
name: 'Daniel Marcinkowski',
description: 'A multi-disciplinary tech professional.',
url: 'https://meetdaniel.me/uses/',
emoji: '😅',
country: '🇩🇪',
computer: 'apple',
phone: 'iphone',
mastodon: '@meetdanielme@mastodon.social',
bluesky: 'meetdaniel.me',
tags: [
'Blogger',
'Writer',
'UI',
'UX',
'UI',
'Figma',
'Design Systems',
'UI/UX',
'Markdown',
'Photographer',
'Problem Solver',
'Design',
'Traveler',
'Student',
'Product Manager',
'Minimalist',
'Self taught',
'Marketer',
'Content Creator',
],
},
{
name: 'Piers Olenski',
description:
'Technical Lead, Front-End Developer and Vim Enthusiast from London.',
url: 'https://www.piersolenski.com/uses',
emoji: '😸',
country: '🇬🇧',
computer: 'apple',
phone: 'android',
tags: [
'Remote',
'Developer',
'JavaScript',
'TypeScript',
'UI',
'Next.js',
'Node.js',
'CSS',
'Animation',
'React',
'NextJS',
'GSAP',
'eCommerce',
'PWA',
'i18n',
'Emails',
'Kiosk',
'Lua',
'vim',
'Neovim',
'Mentor',
'Open Source Software',
],
},
{
name: 'Christian Hain',
description:
'Internet power-user and creator specializing in browser-based experiences.',
url: 'https://www.christianhain.com/uses/',
emoji: '♑',
country: '🇺🇸',
computer: 'apple',
phone: 'iphone',
bluesky: 'xianhain.com',
tags: [
'UI',
'CSS',
'ES6',
'Git',
'iOS',
'Web',
'11ty',
'CSS3',
'Deno',
'HTML',
'SCSS',
'HTML5',
'macOS',
'React',
'UI/UX',
'GitHub',
'Mentor',
'Remote',
'Writer',
'Affinity',
'Blogger',
'Next.js',
'Node.js',
'Speaker',
'Teacher',
'Designer',
'Engineer',
'Frontend',
'HTML/CSS',
'Websites',
'Webstorm',
'YouTuber',
'Developer',
'Full Stack',
'JavaScript',
'TypeScript',
'Open Source',
'Self taught',
'Accessibility',
'Web Developer',
'Design Systems',
'Web Development',
'Software Engineer',
'Developer Advocate',
'Open Source Software',
],
},
{
name: 'Jeroen van Meerendonk',
description:
'UX Engineer. Design systems, Ruby on Rails and mechanical keyboards.',
url: 'https://jeroen.wtf/uses',
bluesky: 'jeroen.wtf',
emoji: '🍕',
country: '🇪🇸',
computer: 'linux',
phone: 'ios',
tags: [
'Design Systems',
'Frontend',
'Git',
'HTML/CSS',
'JavaScript',
'Open Source',
'React',
'Remote',
'Ruby on Rails',
'Self taught',
'TailwindCSS',
'UI/UX',
],
},
{
name: 'Ivan',
description: 'Full time mechanical engineer, spare time maker.',
url: 'https://ivndbt.com/uses',
emoji: '🙃',
country: '🇮🇹',
computer: 'linux',
phone: 'android',
tags: [
'Mechanical Engineer',
'Blogger',
'Maker',
'Open Source',
'Homelab',
'Sport',
'Keyboard',
'Videogames',
],
},
{
name: 'Ilya Glebov',
description: 'Software Engineer building backends and infrastructure.',
url: 'https://ilyaglebov.dev/uses',
country: '🇸🇪',
computer: 'apple',
phone: 'android',
twitter: '@glebovdev',
tags: [
'Software Engineer',
'Tech Lead',
'Backend',
'Git',
'GitHub',
'PHP',
'Laravel',
'Go',
'Lua',
'Python',
'Elixir',
'Docker',
'Ansible',
'Traefik',
'MySQL',
'PostgreSQL',
'TailwindCSS',
'Locust',
],
},
{
name: 'Alex Koval',
description: 'Full-Stack Developer, Entrepreneur, Ruby on Rails enthusiast',
url: 'https://k0va1.dev/posts/uses',
emoji: '🚀',
country: '🇺🇦',
computer: 'apple',
phone: 'iphone',
twitter: '@k0va1_',
tags: [
'Ruby',
'Rails',
'JavaScript',
'Open Source',
'Vim',
'Indie Hacker',
'Remote',
'Entrepreneur',
'Full Stack',
'Backend',
'Rust',
'LLM',
'AI',
'Claude Code',
'Linux',
'macOS',
'Docker',
'PostgreSQL',
'MongoDB',
'Hi-Fi audio',
'Sport',
'Music',
'Blogger',
'Design',
'Photo',
'Video',
],
},
{
name: 'Matthew Javelet',
description: 'Full-stack developer and server admin',
url: 'https://javelet.dev/uses',
emoji: '☕️',
country: '🇺🇸',
computer: 'linux',
phone: 'android',
tags: [
'PHP',
'JavaScript',
'TypeScript',
'Node.js',
'Frontend',
'Backend',
'Full Stack',
'SysAdmin',
],
},
{
name: 'Iago Bruno',
description: 'Full-stack developer with ascending in back-end.',
url: 'https://iagobruno.dev/uses',
twitter: '@iagotico',
emoji: '🏳️🌈',
country: '🇧🇷',
computer: 'linux',
phone: 'iphone',
tags: [
'TypeScript',
'JavaScript',
'Node.js',
'React',
'Vue',
'Vue.js',
'Next.js',
'Nuxt',
'Frontend',
'Backend',
'Full Stack',
'PHP',
'Laravel',
'TailwindCSS',
'CSS',
],
},
{
name: 'Railly Hugo',
description: 'AI Software Engineer @ Clerk. Founder of Crafter Station.',
url: 'https://railly.dev/uses',
country: '🇵🇪',
computer: 'apple',
phone: 'iphone',
twitter: '@raillyhugo',
tags: [
'TypeScript',
'JavaScript',
'React',
'Next.js',
'Rust',
'TailwindCSS',
'Bun',
],
},
{
name: 'matizeta',
description: 'Comunicator and Designer',
url: 'https://matizeta.com/uses/',
emoji: '🧉',
country: '🇦🇷',
computer: 'apple',
phone: 'iphone',
tags: [
'CSS',
'Frontend',
'HTML',
'Blogger',
'Designer',
'WordPress',
'UI',
'UX',
'Figma',
'UI/UX',
'Markdown',
'iOS',
'Websites',
'Minimalist',
'Apple',
],
},
{
name: 'Rachel Cantor',
description: 'Hiya! I am a Trusted Tester and Frontend Engineer.',
url: 'https://rachel.fyi/uses',
emoji: '🙌',
country: '🇺🇸',
computer: 'apple',
phone: 'android',
tags: [
'Freelancer',
'Trusted Tester',
'Architect',
'Accessibility',
'JavaScript',
'TypeScript',
'React',
'Redux',
'Design Systems',
'Figma',
'Storybook',
'Frontend',
'Next.js',
'Astro',
'Jest',
'Node.js',
],
},
{
name: 'Sayantan',
description: 'An average TypeScript Engineer.',
url: 'https://www.anaverage.dev/uses',
emoji: '🙃',
country: '🇮🇳',
computer: 'apple',
phone: 'iphone',
tags: [
'Developer',
'Web Development',
'TypeScript',
'JavaScript',
'Angular',
'React',
'Next.js',
'Node.js',
'Full Stack',
'HTML',
'TailwindCSS',
'CSS',
'GitHub',
],
},
{
name: 'Joshua Blais',
description:
'Developer and writer pursuing technological mastery through first principles.',
url: 'https://joshblais.com/uses',
emoji: '✝️',
country: '🇨🇦',
computer: 'linux',
phone: 'android',
twitter: '@realjoshuablais',
tags: [
'Developer',
'Youtuber',
'Writer',
'Emacs',
'Org-mode',
'Linux',
'NixOS',
'Go',
'Datastar',
'Templ',
'Forgejo',
],
},
{
name: 'Reilly Spitzfaden',
description:
'Composer and audio developer who likes noise, obsolete media, electronics, and nostalgia.',
url: 'https://reillyspitzfaden.com/uses',
emoji: '💾',
country: '🇺🇸',
computer: 'apple',
phone: 'grapheneos',
mastodon: '@reillypascal@hachyderm.io',
bluesky: 'reillypascal.bsky.social',
tags: [
'Developer',
'Python',
'JavaScript',
'Web',
'Self taught',
'Rust',
'C++',
'JUCE',
'Pluginval',
'Obsidian',
'Eleventy',
'11ty',
'Markdown',
'IndieWeb',
'Neovim',
'WezTerm',
'Spaceship',
'Apparix',
'Tidal Cycles',
'SuperCollider',
'Composer',
'Music producer',
'Musician',
'MaxMSP',
'Logic Pro',
'REAPER',
'Pure Data',
'VCV Rack',
'Fountain pens',
'Photographer',
],
},
{
name: 'Joseph Horace',
description: 'Speeding through development with precision.',
url: 'https://basicutils.com/uses',
emoji: '👨💻',
country: '🇺🇸',
twitter: '@josephhorace_us',
mastodon: '@josephhorace@mastodon.social',
computer: 'linux',
phone: 'android',
tags: [
'Developer',
'JavaScript',
'TypeScript',
'React',
'Next.js',
'Node.js',
'MongoDB',
'Visual Studio Code',
'Figma',
'GitHub',
'ClickUp',
'Toggl',
'Google Keep',
'Web Development',
'Cloud Computing',
'Open Source',
],
},
{
name: 'John Zanussi',
description:
'Frontend engineer turned engineering manager with 20+ years of experience.',
url: 'https://johnzanussi.com/uses',
emoji: '🙃',
country: '🇺🇸',
computer: 'apple',
phone: 'iphone',
tags: [
'Astro',
'Blogger',
'Bootstrap',
'CSS',
'Developer',
'Engineer',
'Frontend',
'Full Stack',
'HTML',
'Homelab',
'JavaScript',
'macOS',
'MDX',
'Manager',
'Node.js',
'React',
'Sublime Text',
'TailwindCSS',
'TypeScript',
'Web Developer',
],
},
{
name: 'Bhautik Bavadiya AKA yesbhautik',
description: 'Crafting the future, Today.',
url: 'https://yesbhautik.co.in/uses',
emoji: '🍀',
country: '🇮🇳',
twitter: '@yesbhautik',
computer: 'apple',
phone: 'android',
tags: [
'Tech Founder',
'Cloud Engineer',
'Business Development',
'Full Stack developer',
'Technical Advisor',
'Technologist ',
'Founder',
'DevRel',
'Growth Manager',
],
},
{
name: "Peter's Path",
description:
'Software developer, mostly using Swift; Writing a blog; Photography; Hiking',
url: 'https://peterspath.net/uses/',
twitter: '@peterspath_net',
mastodon: '@peterspath@mastodon.social',
bluesky: 'peterspath.net',
emoji: '🥾',
country: '🇳🇱',
computer: 'apple',
phone: 'iphone',
tags: ['Swift'],
},
{
name: 'Mark Schmeiser',
description: 'Software architect, web developer and engineer',
url: 'https://yadl.info/en/uses',
emoji: '🙌',
country: '🇩🇪',
mastodon: '@mark_schmeiser@mastodon.social',
computer: 'apple',
phone: 'iphone',
tags: [
'JavaScript',
'React',
'Full Stack',
'Node.js',
'TypeScript',
'Web Developer',
'GitHub',
'Docker',
'Blogger',
'React Native',
'REST',
'Kubernetes',
'Markdown',
'Architect',
'API',
'Obsidian',
'Tech Lead',
'Architecture',
'CI/CD',
'Webstorm',
'Solutions Architect',
'Terraform',
'DevOps',
],
},
{
name: 'Tural Asgarov',
description: 'Software Engineer/Developer Educator/Content Creator',
url: 'https://tural.pro/uses',
twitter: '@TuralAsgar',
emoji: '⌛',
country: '🇦🇿',
computer: 'apple',
phone: 'iphone',
tags: [
'Software Engineer',
'Developer Educator',
'YouTuber',
'Developer',
'Content creator',
'Web',
'Backend',
'Golang',
'JavaScript',
'TypeScript',
'Node.js',
'PHP',
'Laravel',
'AWS',
'NeoVIM',
'Obsidian',
],
},
{
name: 'Franklin Ohaegbulam',
description:
'Design-driven Software Engineer, Technical Writer, Open Source Contributor',
url: 'https://frankiefab.com/uses',
twitter: '@frankiefab100',
bluesky: 'frankiefab.bsky.social',
mastodon: '@frankiefab@fosstodon.org',
emoji: '🧪',
country: '🇳🇬',
computer: 'apple',
phone: 'iphone',
tags: [
'Full Stack',
'Frontend',
'Developer',
'JavaScript',
'TypeScript',
'React',
'Tailwind CSS',
'Next.js',
'PostgreSQL',
'Node.js',
'Accessibility',
'Designer',
'HTML',
'CSS',
'GraphQL',
'Figma',
'Backend',
'Open Source',
'PWA',
'Writer',
'MongoDB',
'Prisma',
'Python',
'Vercel',
'SCSS/SASS',
'Netlify',
],
},
{
name: 'Predrag Knezevic',
description:
'Web Developer, Plant Lover, Vinyl/Blu-Ray Collector, Traveler',
url: 'https://peraknezevic.com/uses/',
emoji: '🪴',
country: '🇷🇸',
computer: 'apple',
phone: 'iphone',
tags: [
'React',
'Next.js',
'Angular',
'Typescript',
'JavaScript',
'VS Code',
'Webstorm',
'WordPress',
'Tailwind CSS',
'CSS',
'Figma',
],
},
{
name: 'Lubna',
description:
'Front-end Developer, Technical Lead, CSS Connoisseur, Design Systems Advocate',
url: 'https://lubna.dev/uses',
emoji: '✨',
country: '🇬🇧',
computer: 'apple',
phone: 'android',
tags: [
'CSS',
'JavaScript',
'TypeScript',
'React',
'Design Systems',
'Figma',
'Storybook',
'Frontend',
'HTML/CSS',
'Content Creator',
],
},
{
name: 'Toby Nieboer',
description: 'Finding awesome humans for Ferocia. Post-technical.',
url: 'https://tcn33.com/uses',
mastodon: '@tcn33@mastodon.social',
emoji: '🛌',
country: '🇦🇺',
computer: 'apple',
phone: 'iphone',
tags: [
'Developer',
'Astro',
'Ruby',
'Dad',
'Self taught',
'Vercel',
'macOS',
'VS Code',
'Blogger',
'Warp',
'Speaker',
],
},
{
name: 'Marco Goetze',
description:
'IT-Project-Manager, Network Engineer and general Tech-Enthusiast from Germany',
url: 'https://solariz.de/uses',
twitter: '@solariz',
mastodon: '@solariz@chaos.social',
emoji: '🤖',
country: '🇩🇪',
computer: 'linux',
phone: 'android',
tags: [
'Project-Manager',
'Network',
'InfoSec',
'Network Engineer',
'Linux',
'Consulting',
'Bookmarks',
],
},
{
name: 'Thohirah Husaini',
description: 'Software Engineer/Artist',
url: 'https://thohyr.co/uses',
twitter: '@thoritie',
emoji: '⛄️',
country: '🇹🇭',
computer: 'apple',
phone: 'iphone',
tags: [
'Developer',
'JavaScript',
'TypeScript',
'Full Stack',
'React',
'Angular',
'Node.js',
'Tailwind CSS',
'Web',
'Django',
'Testing',
'Photographer',
'AWS',
'Software Engineer',
'Obsidian',
],
},
{
name: 'László Tóth',
description: 'Full-Stack Developer',
url: 'https://tothlp.hu/uses',
bluesky: 'tothlp.hu',
emoji: '😱',
country: '🇭🇺',
computer: 'apple',
phone: 'iphone',
tags: [
'Developer',
'Kotlin',
'Java',
'Angular',