forked from markodenic/awesome-tech-blogs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
2510 lines (2507 loc) · 59.6 KB
/
data.js
File metadata and controls
2510 lines (2507 loc) · 59.6 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
module.exports = [
{
name: "Manish Prasad",
description: "Founding Team Member | 👨🏻💻 Developer | ✍️ Blogger",
url: "https://techinsights.manisuec.com",
twitter: "@_manish25",
tags: [
"React",
"Nodejs",
"Node.js",
"Clean Code",
"JavaScript",
"TypeScript",
"Mongodb",
"Reactjs",
],
},
{
name: "Ashish Yadav",
description:
"Software engineer writing TypeScript at scale. Talks about #react, #nodejs, #javascript, #typescript, and #softwareengineering",
url: "https://ashiish.me/blog",
twitter: "@ashiishme",
tags: [
"Ashish",
"React",
"Security",
"Node.js",
"GraphQL",
"Clean Code",
"JavaScript",
"TypeScript",
"Software Engineer",
"Gatsby",
],
},
{
name: "UnEncrypted",
description:
"Hey There, I'm Reda BELHAJ a fourth year Computer Science Student at the International University of Rabat. Welcome to my corner of the internet. I'm glad you're here!",
url: "https://unencrypted.vercel.app/",
twitter: "@RedatoB",
tags: ["Computer Science", "Networking", "Tailwind", "Next.js"],
},
{
name: "Solidity Tips",
description:
"The go-to place to learn Solidity and web 3. Articles, step-by-step guides, and quick tips.",
url: "https://soliditytips.com",
twitter: "@uf4no",
tags: ["Solidity", "Web3", "Smart Contracts", "Blockchain", "Ethereum"],
},
{
name: "Unclebigbay",
description: "Ayodele Samuel Adebayo | Software Engineer",
url: "https://unclebigbay.com",
twitter: "@unclebigbay143",
tags: [
"JavaScript",
"Project Based",
"React",
"NodeJS",
"Content Creation",
"Backend",
"Frontend",
"Programming",
"Web Development",
],
},
{
name: "Yannick Mougin",
description:
"Just a dev enthusiast who enjoys building user-engaging apps and sharing them through step-by-step tutorials.",
url: "https://code-with-yannick.com",
twitter: "@dpnick_",
tags: [
"HTML",
"CSS",
"JavaScript",
"React",
"React Native",
"Expo",
"GraphQL",
"Node.js",
"Clean Code",
],
},
{
name: "Michael Hoffmann (Mokkapps)",
description: "🌴 Freelancer | 👨🏻💻 Developer | ✍️ Blogger",
url: "https://mokkapps.de/blog/",
tags: [
"JavaScript",
"TypeScript",
"Node.js",
"Express.js",
"Git",
"Tech",
"Frontend",
"Fullstack",
"HTML",
"CSS",
"Gatsby",
"Spring Boot",
"Backend",
"Freelancing",
"Career",
"Software Development",
],
},
{
name: "Sagar Paul",
description: "Fullstack developer. Self-taught.",
url: "https://sagarpaul.netlify.app/blogs",
twitter: "@iamSagarPaul",
tags: [
"Web Development",
"React",
"Node.js",
"HTML",
"CSS",
"JavaScript",
"Algorithms",
"Git",
],
},
{
name: "Bob Fornal",
description:
"Senior Frontend Developer, focused on writing about anything that takes me more than a few minutes to accomplish,",
url: "https://dev.to/rfornal",
twitter: "@rfornal",
tags: [
"Frontend",
"Front End",
"Web Development",
"HTML",
"CSS",
"JavaScript",
"TypeScript",
"Angular",
"React",
"React Native",
],
},
{
name: "Muthu Annamalai",
description:
"Articles on Web Development, Programming, Open-Source, Technology, Tips and Tricks to make your life easier, and more.",
url: "https://muthuannamalai.tech/",
twitter: "@muthuannamalai_",
tags: [
"HTML",
"CSS",
"JavaScript",
"Content Creation",
"Computer Science",
"Tech",
"Web Development",
"Front End",
"Programming",
"Web Development",
"DevTools",
"Beginner",
"Blogging",
"Git",
],
},
{
name: "Alula Kibrom",
description: "Fullstack Developer | Entrepreneur | Blogger",
url: "https://businesstyc.com/blog/",
twitter: "@altsyset",
tags: [
"JavaScript",
"HTML",
"CSS",
"PHP",
"Laravel",
"Vue",
"Angular",
"Git",
],
},
{
name: "Shravan Kumar",
description:
"Software Engineer | Bibliophilic | Generalizing Specialist | Curious Creature | I, sometimes write blog",
url: "https://ohmyscript.com/",
tags: [
"JavaScript",
"Python",
"TypeScript",
"Node.js",
"Express.js",
"Git",
"Tech",
"Backend",
"Software Development",
"Computer Science",
],
},
{
name: "LambdaTest Blogs",
description:
"Learn all you want to around software testing, mobile app testing, website testing and more",
url: "https://www.lambdatest.com/blog/",
tags: [
"JavaScript",
"Python",
"TypeScript",
"Node.js",
"Express.js",
"Git",
"Tech",
"Backend",
"Software Development",
],
},
{
name: "Shyam Manohar",
description:
"I'm a CS Under Grad who is passionate about sharing my ideas and experiences through blogs!",
url: "https://xshyam.hashnode.dev",
tags: ["Computer Science", "Tech", "Cybersecurity"],
},
{
name: "Johnson-Awah Alfred",
description:
"Software engineer,Blockchain engineer, student, staff software engineer",
url: "https://blog.codemon.me",
tags: [
"JavaScript",
"Node.js",
"React",
"Computer Science",
"PHP",
"TypeScript",
],
},
{
name: "James Turner",
description:
"A programmer and entrepreneur with a love of cars, music and technology.",
url: "https://turnerj.com/blog",
twitter: "@MrTurnerj",
tags: ["C#", ".NET", "Tech", "Programming"],
},
{
name: "William Chin",
description:
"Product Manager, Digital Marketer, Agile Consultant, Web Developer - Looking to make the world more digitally friendly one post at a time.",
url: "https://yourdigitalaid.com/category/blog/",
tags: [
"HTML",
"CSS",
"JavaScript",
"WordPress",
"PHP",
"SEO",
"Digital Marketing",
"Agile",
"Scrum",
"XP",
],
},
{
name: "Kuldip Mochi",
description: "Software engineer, full stack enthusiastic, student",
url: "https://kuldipmochi.hashnode.dev/",
tags: ["JavaScript", "Node.js", "React", "Computer Science"],
},
{
name: "Peter Smith",
description:
"Networking, antique electrical bits, and more. Developer of multiple apps in the Window, including apps to control reverse-engineered Bluetooth devices. Wrote my first network program in 1989, slightly before the WWW.",
url: "https://sunriseprogrammer.blogspot.com/",
tags: ["Networking", "Bluetooth", "Programming Languages"],
},
{
name: "Marko ⚡ Denic",
description: "Web developer. IT consultant and trainer.",
url: "https://markodenic.com/blog/",
twitter: "@denicmarko",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"Vue",
"Nuxt",
"Front End",
"Laravel",
"TailwindCSS",
"SEO",
],
},
{
name: "Suhail Kakar",
description:
"Full Stack Software Developer | Tech Blogger | Writes about JavaScript, Python, Open Source, and Software Development",
url: "http://blog.suhailkakar.com/",
twitter: "@SuhailKakar",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"Software Development",
"Open Source",
"Front End",
"Next",
"Python",
"SEO",
],
},
{
name: "The Trojan",
description:
"I write about algorithmic solutions for Software Engineering problems, interesting programming tips & tricks. May also include Machine Learning and Blockchain",
url: "https://apoorvtyagi.tech/",
twitter: "@apoorv__tyagi",
tags: [
"Python",
"Javascript",
"Node.js",
"Clean Code",
"Backend",
"Web Development",
"Git",
"Programming",
"Computer Science",
],
},
{
name: "Shaurya Pratap Singh",
description: "A middle schooler who loves writing about programming.",
url: "https://sblip.medium.com/",
twitter: "@Shaurya79145816",
tags: [
"Python",
"HTML",
"CSS",
"JavaScript",
"Web Development",
"Backend Development",
"PostgreSQL",
"Django",
"Vue",
],
},
{
name: "Karl Koch",
description: "Product Designer and UI Developer.",
url: "https://www.kejk.tech/thoughts",
twitter: "@_kejk",
tags: [
"HTML",
"CSS",
"JavaScript",
"Vue",
"Nuxt",
"Swift",
"SwiftUI",
"Figma API",
"Figma plugins",
"Product design",
],
},
{
name: "Shane Lee",
description:
"Staff engineer - write about tech and sometimes sustainability 🌎",
url: "https://blog.shanelee.name/",
twitter: "@shavo27",
tags: [
"TypeScript",
"Spring Boot",
"Kubernetes",
"React",
"Docker",
"Cloud native",
"API first",
"Tech",
"AWS",
"Cloud infra",
],
},
{
name: "Mick Patterson",
description:
"Fullstack developer | Web and Mobile App Development Tips and Tricks",
url: "https://www.mickpatterson.com.au",
twitter: "@Mick_Patterson_",
tags: [
"HTML",
"JavaScript",
"TypeScript",
"Angular",
"React",
"Ionic",
"Node.js",
"API",
"SQL",
"Fullstack",
],
},
{
name: "Ivan Kahl",
description:
"Write about all things .NET, AWS, Web and any other new tech that might interest me.",
url: "https://blog.ivankahl.com/",
twitter: "@ivankahl",
tags: [
"Sage",
"Software Developer",
"C#",
".NET",
"Csharp",
"Web Development",
"Windows",
"AWS",
"Amazon Web Services",
],
},
{
name: "Akanksha Raghav",
description:
"A tech enthusiast who enjoy exploring new technologies and leverage them to solve real-life problem",
url: "https://akanksharaghav.medium.com/",
twitter: "@akanksharaghav9",
tags: ["Voice user Interface", "Javascript", "Hosting", "Github", "MERN"],
},
{
name: "Peter Witham",
description: "Swift and Apple development articles",
url: "https://compileswift.com/journal/",
twitter: "@compileswift",
tags: ["Swift", "Objective-C", "SwiftUI"],
},
{
name: "Tosin Fashanu",
description: "Portfolio | Tutorial | Agency for web development.",
url: "https://apluswebmaker.com",
twitter: "@iamJohnFashanu",
tags: [
"JavaScript",
"PHP",
"React",
"laravel",
"Web Development",
"HTML",
"CSS",
],
},
{
name: "Olena Drugalya",
description:
"Olena is self-taught web developer and she writes her beginner-friendly and simply explained tech blogs along the way.",
url: "https://olena.hashnode.dev/",
twitter: "@OlenaDrugalya",
tags: ["HTML", "CSS", "JavaScript", "Web Development", "React"],
},
{
name: "Create React App Blog",
description:
"Stories About My Journey to Become a Developer. Overview of Best Web Dev Tools & Resources.",
url: "https://create-react-app.com/",
twitter: "@crapp_blog",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"Front End",
"React",
"Productivity",
],
},
{
name: "Abia Tech Hub",
description: "Innovation | Technology | Entrepreneurship",
url: "https://blog.abiatechhub.com",
twitter: "@abiatechhub",
tags: [
"JavaScript",
"Web Development",
"React",
"Web Components",
"Chrome Extension",
"Freelancing",
"Mentorship",
"WordPress",
"Software Development",
"Software Architecture",
],
},
{
name: "Davide Mandelli | Th3Wall",
description:
"I'm a passionate Front-End Web Developer, and I'm interested in building side projects and Saas apps. I've recently launched Fakeflix (https://fakeflix-clone.vercel.app) 🎥🍿",
url: "https://th3wall.hashnode.dev/",
twitter: "@th3wall25",
tags: [
"Web Development",
"Productivity",
"Front End",
"HTML",
"SCSS",
"CSS",
"JavaScript",
"React",
"Git",
"Pug",
],
},
{
name: "Alberto Bonacina",
description:
"Proud Software Engineer, Flutter enthusiast and Free Software activist",
url: "https://blog.albertobonacina.com/",
twitter: "polilluminato",
tags: [
"Flutter",
"Dart",
"Android",
"Linux",
"Node.js",
"APIs",
"JavaScript",
"Backend Development",
"PostgreSQL",
],
},
{
name: "hacking C++",
description:
"Learn Contemporary C++ // code examples, concise explanations and infographics",
url: "https://hackingcpp.com",
twitter: "@hackingcpp",
tags: [
"C++",
"Software Development",
"Software Engineering",
"Algorithms",
"Beginner",
],
},
{
name: "Abdulmalik Adekunle",
description: "Front End Web developer, Graphics Designer, IT consultant.",
url: "https://abdulmalik.hashnode.dev",
twitter: "@Emeritus_Ade",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"React",
"Next.js",
"Front End",
"Node.js",
"Bootstrap",
"General Tech",
],
},
{
name: "impure.fun",
description: "Functional code for humans",
url: "https://impure.fun",
twitter: "@luwvis",
tags: ["DDD", "F#", "Functional", ".NET"],
},
{
name: "dubesar",
description: "Python/JS Developer",
url: "https://dubesar.hashnode.dev",
twitter: "@Sarvesh12601156",
tags: [
"JavaScript",
"Python",
"C++",
"Node.js",
"Deep Learning",
"Flask",
"API",
"UI Developer",
"HTML",
"CSS",
"TailwindCSS",
],
},
{
name: "C. Augusto Proiete",
description:
"Open-source maintainer: #cakebuild #serilog #exceldna #xlstack",
url: "https://augustoproiete.net",
twitter: "@augustoproiete",
tags: [
"Microsoft",
".NET",
"C#",
"Software Development",
"Software Architecture",
"Software Engineering",
"Software Engineer",
"CakeBuild",
"Serilog",
"XLStack",
],
},
{
name: "Rahul",
description: "Front-end Developer. Helping beginners in coding.",
url: "https://rahulism.hashnode.dev",
twitter: "@rahxul",
tags: [
"HTML",
"CSS",
"React",
"Beginners",
"Web Development",
"JavaScript",
"Front End",
"Productivity",
],
},
{
name: "Kévin Dunglas",
description:
"Kévin writes about the free software he uses and maintains. Most of the posts are about web APIs, Go, PHP and JavaScript.",
url: "https://dunglas.fr",
twitter: "@dunglas",
tags: [
"APIs",
"Go",
"PHP",
"JavaScript",
"TypeScript",
"React",
"Next.js",
"Symfony",
"API Platform",
"Web Development",
],
},
{
name: "Rahul Banerjee",
description:
"An average Computer Engineering Student who writes How-to tutorials on different technologies",
url: "https://www.realpythonproject.com/",
twitter: "@rahulbanerjee99",
tags: [
"Software Developer",
"Python",
"APIs",
"Machine Learning",
"Data Science",
"C++",
"SQL",
"Data Base",
"Data Engineering",
],
},
{
name: "Sunil Sandhu",
description: "Software Developer, Founder of In Plain English",
url: "https://sunilsandhu.com/",
twitter: "@sunilsandhu",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"Vue",
"React",
"Front End",
"Computer Science",
"Algorithms",
"Python",
],
},
{
name: "Danny Steenman",
description:
"I’m an AWS Cloud Consultant who likes to build things in the Cloud. I write about my learnings on this Blog and on Twitter.",
url: "https://towardsthecloud.com/",
twitter: "@dannysteenman",
tags: ["AWS", "Certification", "Cloud", "Infrastructure", "Python"],
},
{
name: "Jiri Tichy",
description:
"I’m helping companies fight technical debt and deliver better software faster. Our automated tool Codeac.io covers our back as well.",
url: "https://www.codeac.io/blog/",
twitter: "@tichy_jiri",
tags: [
"Clean Code",
"Technical Debt",
"Code Quality",
"Infrastructure as Code",
"Infrastructure",
"Cloud Infrastructure",
"Productivity",
"Faster Development",
],
},
{
name: "Phil McParlane",
description:
"Helping Software Developers get a job with a 4 day working week",
url: "https://4dayweek.io/blog",
twitter: "@philostar",
tags: ["Career", "Self-Development", "Tech", "Jobs"],
},
{
name: "Sam Larsen-Disney",
description:
"Sam currently works as a UX Engineer at American Express. He has built new ways to refer friends, onboarding experiences and rapid response systems.",
url: "https://sld.codes/articles",
twitter: "@SamLarsenDisney",
tags: [
"JavaScript",
"Gatsby",
"SCSS",
"Front End",
"Web Development",
"React",
"TailwindCSS",
"UX Design",
],
},
{
name: "Bhanu Teja Pachipulusu",
description:
"Full-Stack Developer, Entrepreneur and Co-Founder of Coderplex. Building https://coderplex.in. Checkout my portfolio at https://bhanuteja.dev",
url: "https://blog.bhanuteja.dev",
twitter: "@pbteja1998",
tags: [
"Web Development",
"JavaScript",
"TypeScript",
"React",
"Next.js",
"GraphQL",
"TailwindCSS",
"Front End",
"HTML",
"CSS",
],
},
{
name: "Savio Martin",
description:
"A 13-year-old boy on an intention to enhance as a successful full-stack web developer. I love building full-stack web applications and mobile apps.",
url: "https://savio.xyz/",
twitter: "@saviomartin7",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"Front End",
"Node.js",
"App Development",
"React",
"React Native",
"UI/UX",
],
},
{
name: "Sunil Kumar",
description:
"I write about how to become a better developer, AWS, freelancing & building SaaS products.",
url: "https://sunilkumarc.in",
twitter: "@sunilc_",
tags: [
"Web Development",
"Freelancing",
"Python",
"Software Design",
"Software Architecture",
"AWS",
"Infrastructure",
],
},
{
name: "Alexander Rowsell",
description: "Hardware hacker/embedded dev",
url: "https://frozenelectronics.ca/",
twitter: "@FrozenElecBlog",
tags: [
"Embedded",
"Hardware hacker",
"Canadian hacker",
"C",
"Assembly language",
],
},
{
name: "Nat Miletic",
description:
"This blog covers a range of topics related to responsive web design, web development, and WordPress how-to guides.",
url: "https://cliowebsites.com/blog/",
twitter: "@natmiletic",
tags: ["Web Design", "WordPress", "SEO"],
},
{
name: "Alexander Lichter",
description:
"Nuxt.js maintainer and Web Development Consultant. I love to blog about various technical topics with a focus on web development, especially with Vue and Nuxt.",
url: "https://blog.lichter.io/?ref=tech-blogs.dev",
twitter: "@TheAlexLichter",
tags: [
"Nuxt",
"Vue",
"TailwindCSS",
"JavaScript",
"Web Development",
"SEO",
"Clean Code",
"SSR",
"Jamstack",
"Refactoring",
],
},
{
name: "Nacho Iacovino",
description:
"I'm a Frontend developer and Developer Relations. I share resources, tips and guides on web development. I like talking about best practices and new technologies. My favorite stack is Next.js and Tailwind CSS.",
url: "https://nachoiacovino.com/blog",
twitter: "@nachoiacovino",
tags: [
"TailwindCSS",
"React",
"Next.js",
"Resources",
"Front End",
"JavaScript",
"Web Development",
"CSS",
"HTML",
],
},
{
name: "Ozer Tayiz",
description:
"A cryptocurrency enthusiast who is learning to code to get a web3 blockchain developer job",
url: "https://ozercodesblockchain.hashnode.dev/",
twitter: "@OzerCodesCrypto",
tags: [
"HTML",
"CSS",
"JavaScript",
"React",
"web3.js",
"ethers.js",
"GraphQL",
"Solidity",
"NFTs",
],
},
{
name: "Ramya Chinnadurai (Rams)",
description:
"Full stack web developer. Passionate programmer and curious learner. Building http://100daysof.codes ",
url: "http://ramyachinnadurai.in/",
twitter: "@code_rams",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"React",
"Node.js",
"Chrome extensions",
"Next.js",
],
},
{
name: "Puru Vijay",
description:
"Fullstack Developer 6+ years, maker of fast sites. I am interested in Web dev, but also giving time to other techs like Python, C, Rust, etc. I am currently 1st year student in IIITDM Kancheepuram, India. I love Cycling around for hours",
url: "https://puruvj.dev/blog",
twitter: "@puruvjdev",
tags: [
"HTML",
"CSS",
"JavaScript",
"TypeScript",
"Node.js",
"SCSS",
"React",
"StencilJS",
"Svelte",
"Angular",
],
},
{
name: "Nikita Grechino",
description: "A business oriented frontend developer. | I do boxing, play badminton, blog about tech, read books and comics.",
url: "https://blog.fromaline.com/",
twitter: "@fromaline",
tags: [
"JavaScript",
"Web Development",
"React",
"Front End",
"Frontend",
"Javascript",
],
},
{
name: "Leon AI",
description:
"I'm building Leon, your open-source personal assistant. I share my tips and creativity along the way.",
url: "https://blog.getleon.ai",
twitter: "@louistiti_fr",
tags: [
"Tech",
"Web Development",
"JavaScript",
"Node.js",
"Python",
"Tech",
"Software Development",
"Productivity",
"AI",
],
},
{
name: "Michael Asiedu",
description:
"A blog suited to make you better and grow as software developer. Also, market and leverage your coding skills ",
url: "https://blog.michaelasiedu.com",
twitter: "@asiedu_dev",
tags: [
"HTML",
"CSS",
"JavaScript",
"Tailwind",
"UI/UX Design",
"Node.js",
"Web3.0",
"React",
"Digital Marketing",
"Personal Branding for developers",
"APIs",
],
},
{
name: "Devin Ford",
description:
"A blog for beginners, with tips and tricks I used while learning to code.",
url: "https://blog.devinford.dev/",
twitter: "@devinDford",
tags: ["CSS", "Beginner", "Front End", "JavaScript"],
},
{
name: "Oliver Jumpertz",
description:
"DeepDive covers cloud and web development overall. It tries to take a deeper look into how things work and explain them as simple as possible.",
url: "https://deepdive.hashnode.dev/",
twitter: "@oliverjumpertz",
tags: [
"JavaScript",
"TypeScript",
"AWS",
"Rust",
"Containers",
"Kubernetes",
],
},
{
name: "Daily Dev Tips",
description:
"Chris writes every single day about web development snippets that will help you become a better developer. He focuses on frontend development, JavaScript, popular frameworks, and HTML and CSS.",
url: "https://daily-dev-tips.com/",
twitter: "@DailyDevTips1",
tags: ["HTML", "JavaScript", "CSS", "Beginner", "Web Development"],
},
{
name: "Tshiteej Bhardwaj",
description:
"I love to write around Web Development, and related technologies.",
url: "https://www.tshiteej.com/blog",
twitter: "tshiteej",
tags: ["JavaScript", "Python", "Web Development", "Automation"],
},
{
name: "Victoria Lo",
description:
"Victoria is a very curious developer. Her articles on blogging combine great programming skills with enjoyable and insightful technical articles.",
url: "https://lo-victoria.com",
twitter: "@lo_victoria2666",
tags: ["HTML", "CSS", "JavaScript", "Web Development", "React"],
},
{
name: "Abiola Farounbi",