forked from markodenic/awesome-tech-blogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
4607 lines (4605 loc) · 114 KB
/
data.js
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: 'Abhijit Sarode',
description: 'At the intersection of Fullstack, Competitive Programming & Mathematics',
url: 'https://abhijitsarode.hashnode.dev',
twitter: '@abhijit_ras',
tags: ['Web Development', 'Fullstack', 'MERN Stack', 'React', 'Competitive Programming', 'Algorithms', 'Mathematics']
},
{
name: 'Nishant Kumar',
description: 'Blogging for practical goals, offering diverse reads. No niche, just a fresh perspective..',
url: 'https://blog.nishant.lol',
twitter: '@nisnym',
tags: ['tech', 'react.js', 'js'],
},
{
name: 'Harsh Shah',
description: 'I write tutorials related to React Js and Next Js.',
url: 'https://harshshah.codes',
twitter: '@harsh_shah2102',
tags: ['HTML', 'CSS', 'JavaScript', 'Web Developement', 'React JS', 'Next JS', 'Java', 'Python', 'React'],
},
{
name: 'Sravan Kumar Gorati',
description: 'Mastering C++ Templates: A Guide to Creating Your Own Custom Template Library Similar to STL',
url: 'https://sravangorati2001.hashnode.dev/mastering-c-templates-a-guide-to-creating-your-own-custom-template-library-similar-to-stl',
twitter: '@Sravanthrony',
tags: ['C++', 'STL', 'Competitive Programming'],
},
{
name: 'Mayank Vikash',
description: 'I write tutorials related to Web Development and Programming.',
url: 'https://mayankvikash.in/posts',
twitter: '@MayankVikash1',
tags: ['HTML', 'CSS', 'JavaScript', 'Web Development', 'Java'],
},
{
name: 'Argonaut.dev',
description: 'Blog about Kubernetes, AWS, Cloud costs, and more!',
url: 'https://www.argonaut.dev/blog',
twitter: '@Argonaut_Dev',
tags: ['AWS', 'DevOps', 'Cloud', 'Productivity', 'Kubernetes','Automation'],
},
{
name: 'Rahul',
description: '18-year-old hustler who loves reading, coding and building stuffs. Mostly writing on JavaScript. ',
url: 'https://rahul.biz',
twitter: '@rahuldotbiz',
tags: ['HTML', 'CSS', 'JavaScript', 'Web Development', "Freelancing", "Learn Programming"],
},
{
name: "Live Code Stream",
description: "We produce FREE tutorials and resources for self-taught developers and data scientists.",
url: "https://livecodestream.dev/post/",
twitter: "@livecodestream",
tags: [
"Javascript",
"Web Development",
"Web3",
"HTML",
"CSS",
"Freelancing",
"Career",
"Software Development",
"Learn Programming"
]
},
{
name: "Richard Callaby",
description: "The Educational Blog of Richard Callaby",
url: "http://www.richardcallaby.com/",
twitter: "@richardcallaby",
tags: [
"CyberSecurity",
"Bug Bounty",
"Certifications",
"Career",
"Cloud Computing",
"Software Development",
"Freelancing",
"Learn Programming"
]
},
{
name: 'Jina AI',
description: 'The most advanced MLOps platform for Multimodal AI',
url: 'https://jina.ai/news',
twitter: '@JinaAI_',
tags: [
'Multimodal',
'Neural Search',
'Generative AI',
'Creative AI',
'Cloud Native',
'Deep Learning'
]
},
{
name: 'Kenta Takeuchi',
description: 'Blog about daily technical topics',
url: 'https://bmf-tech.com/',
twitter: '@bmf_san',
tags: ['PHP', 'Go', 'Software Engineering', 'Algorithms', 'Computer Science', 'Web Development'],
},
{
name: "Devify",
description: "From programming languages to web development, Devify cover it all to keep you ahead in the tech game",
url: "https://www.devify.tech/",
twitter: "@iamsatyanchal",
tags: [
"Javascript",
"Web Development",
"Web3",
"HTML",
"CSS",
"Software Development",
"Learn Programming",
"Technology updates",
"Artificial Intelligence"
]
},
{
name: "Devremote",
description: "Helping developers find remote jobs",
url: "https://devremote.io/blog/",
twitter: "@devremotehq",
tags: [
"Javascript",
"Web Development",
"Web3",
"HTML",
"CSS",
"Freelancing",
"Career",
"Software Development",
"Learn Programming"
]
},
{
name: "2minsDevsNotes",
description: "Github-based fast-to-read blog about dev's daily routine challenges",
url: "https://github.com/vtcaregorodtcev/2minsDevsNotes",
twitter: "@v_hadoocken",
tags: [
"HTML",
"CSS",
"JavaScript",
"TypeScript",
"Frameworks",
"Web Development",
"Management",
"Front End",
"Back End",
"Clouds",
],
},
{
name: "Afobaje",
description: "front end reactjs developer and technical writer",
url: "https://afobaje.hashnode.dev",
twitter: "@davidblaqq",
tags: [
"HTML",
"CSS",
"JavaScript",
"web development",
"reactjs",
"nodejs",
"mongodb",
"webgl",
"threejs",
],
},
{
name: "EGrasps",
description:
"Blogs about Technology, Programming, Software Development, Finance, Life and Much More.",
url: "https://egrasps.in",
twitter: "@EGrasps",
tags: [
"Web Development",
"Java",
"Full Stack Web Development",
"Python",
"Flask",
"Django",
"Git",
"GitHub",
"Learn Git and GitHub",
"Learn Programming",
],
},
{
name: "Dev jain",
description:
"blogs about fullstack ui/ux opensoucrce personal-branding DSA technical writing community programming tips",
url: "https://dj688.hashnode.dev/",
twitter: "@Devjtwt786",
tags: [
"HTML",
"CSS",
"JavaScript",
"web development",
"reactjs",
"nodejs",
"fullStack",
"UI/UX",
"opensource",
"community",
"frontend",
"backend",
],
},
{
name: 'Robiul H.',
description: 'RoBlog, your go-to destination for all things related to technology, JavaScript, Node.js, and web development.',
url: 'https://robiul.dev/',
twitter: '@robiulhr01',
tags: [
'HTML',
'CSS',
'JavaScript',
'Web Developement',
'React JS',
'Node js',
"Git",
"fullStack",
"opensource",
"community",
"frontend",
"backend"
],
}
,
{
name: "Programming School",
description: "Awesome Programming Posts for Beginners by Experts.",
url: "https://programming-school.hashnode.dev/",
twitter: "@Programing_Pro",
tags: [
"Web Development",
"JavaScript",
"HTML",
"CSS",
"React",
"Front End",
"TypeScript",
"Gatsby",
"Backend",
"Nodejs",
],
},
{
name: "Tim Mouskhelichvili",
description:
"Hello 👋! I am Tim Mouskhelichvili, a Freelance Developer & Consultant from Montreal 🇨🇦. I write about Front-End Development.",
url: "https://timmousk.com/blog/",
twitter: "@tim_mousk",
tags: ["TypeScript", "JavaScript", "Git", "Web Development", "React"],
},
{
name: 'wweb.dev',
description: 'A blog with weekly updates, resources, articles and useful code generators.',
url: 'https://wweb.dev/blog/',
twitter: '@wweb_dev',
tags: ['HTML', 'CSS', 'JavaScript', 'Web Development', 'React', 'Front End', 'Fullstack', 'Next.js', 'Node.js'],
},
{
name: "Sundeep Agarwal",
description:
"I write about Regular Expressions, CLI one-liners, Scripting Languages, Vim and Self-Publishing.",
url: "https://learnbyexample.github.io/",
twitter: "@learn_byexample",
tags: ["Python", "Regular Expressions", "JavaScript", "Linux", "Vim"],
},
{
name: "TestGrid",
description:
"Keep yourself update with the latest trends around web & mobile automation.",
url: "https://www.testgrid.io/blog/",
twitter: "@testgridio",
tags: ["HTML", "CSS", "JavaScript"],
},
{
name: "Suprabha",
description:
"Hi, I'm Frontend Engineer, Content creator, Mentor, Public Speaker, Checkout my website for more details at http://suprabha.me",
url: "https://blog.suprabha.me/",
twitter: "@suprabhasupi",
tags: [
"Web Development",
"JavaScript",
"HTML",
"CSS",
"React",
"Vue",
"Front End",
"TypeScript",
"Gatsby",
"Web3",
"Webpack",
],
},
{
name: "Kundan Mishra",
description:
"A web developer, blockchain enthusiast and computer science undergrad. Building on ethereum.",
url: "https://mishra811.hashnode.dev/",
twitter: "@0xmishra",
tags: [
"HTML",
"CSS",
"JavaScript",
"solidity",
"react.js",
"hardhat",
"python",
"tailwind",
"git",
"ethers.js",
],
},
{
name: "Snehasish Chakraborty",
description:
"Full stack developer having experience in Spring, AWS, React, Angular",
url: "https://blogs.snehasish-chakraborty.com/",
twitter: "@thisissnehasish",
tags: [
"WEB",
"Security",
"JavaScript",
"Java",
"Spring",
"React",
"Angular",
],
},
{
name: "Rene Rehme",
description:
"Web Developer from Stuttgart. Blog about tutorials, development, web, infoSec and life.",
url: "https://renerehme.dev",
twitter: "@ReneReh1",
tags: [
"PHP",
"HTML",
"CSS",
"JavaScript",
"Backend",
"Front End",
"Programming",
],
},
{
name: "Ash Allen 🚀",
description:
"A blog with articles, guides, and tutorials about Laravel and PHP!",
url: "https://ashallendesign.co.uk/blog",
twitter: "@AshAllenDesign",
tags: [
"Laravel",
"PHP",
"HTML",
"CSS",
"JavaScript",
"Backend",
"Front End",
"Web Development",
"Open Source",
"Clean Code",
],
},
{
name: "Parth Desai",
description:
"I am a Data Engineer who is passionate about Data Science and Automation. In my free time, I like developing side projects and blogging about them.",
url: "https://musing.vercel.app/blog",
twitter: "@lone_Musk",
tags: ["NextJS", "ReactJS", "NodeJS", "TypeScript", "Prisma"],
},
{
name: "golang.ch",
description: "Golang News, Tutorials, Apps and Golang Jobs.",
url: "https://golang.ch",
twitter: "@golangch",
tags: ["Golang", "Backend", "DevOps"],
},
{
name: "Roopesh Sn's Blog",
description:
"Whatever difficulty I faces in my routine work, I'll summarize that in a blog post",
url: "https://roopesh.hashnode.dev",
twitter: "@roopeshsn",
tags: ["CS", "OSS", "Web Development", "JavaScript", "Linux", "Devops"],
},
{
name: "Hristo Iliev",
description: "I am a game programmer and I write a lot about low level programming in C and C++ and tools programming",
url: "https://thatonegamedev.com/posts",
twitter: "@StamenovHristo",
tags: ["C++", "CMake"],
},
{
name: "The Feqy",
description:
"Sharing my own thoughts and expertise about backend/frontend engineering.",
url: "https://feqy.medium.com/",
twitter: "@thefeqy",
tags: [
"JavaScript",
"Laravel",
"PHP",
"Microservices",
"NodeJS",
"Web Development",
],
},
{
name: "Mustafa Albazy Blog",
description:
"I posts on my blog about few different subjects inc. Electrical and Electronics, coding, music tech.",
url: "https://mustafa.page",
twitter: "@mustafaalbazy",
tags: [
"Electrical",
"Electronics",
"Engineering",
"Music Tech",
"coding",
"Web Dev",
"blogging",
],
},
{
name: "Mbaziira Ronald",
description:
"Sharing resources on Web Development ❤️ | JavaScript 💻 | WordPress | Technical writing to ease your Web Development journey",
url: "https://mbaziira.hashnode.dev/",
twitter: "@MbaziiraRonn",
tags: [
"HTML",
"CSS",
"JavaScript",
"WordPress",
"Technical Writing",
"Web Development",
],
},
{
name: "Adarsh Kushwaha",
description: "Inside functionality of how JavaScript Works",
url: "https://medium.com/@heyadarshhere/how-does-javascript-works-everything-about-execution-context-call-stack-501b5450e2c4",
twitter: "@heyadarshhere",
tags: ["JavaScript"],
},
{
name: "Vivek",
description: "Awesome JavaScript Libraries and developer resources",
url: "https://vivekon.hashnode.dev/",
twitter: "@vivekthedev",
tags: ["Resources", "Web Development", "JavaScript"],
},
{
name: "Webdevolution",
description: "Web dev tips, tutorials and solutions for common problems.",
url: "https://www.webdevolution.com",
twitter: "@webdevolution_",
tags: [
"HTML",
"CSS",
"JavaScript",
"React",
"TypeScript",
"APIs",
".NET",
"Web Development",
],
},
{
name: "Vinayak's blog",
description: "A blog about backend technologies",
url: "https://itsvinayak.hashnode.dev/",
twitter: "@itsvinayak_",
tags: [
"JavaScript",
"React",
"Web3",
"payments",
"Backend",
"Computer Science",
"Blockchain",
"Nodejs",
],
},
{
name: "Wampamba David",
description:
"👨🏽💻Web Development, 💻 General Programming, 💰Making Money Online, and 👯♂️ Making Meaningful Connections. Best place to improve your tech skills in Days.",
url: "https://blog.davidofug.com",
twitter: "@davidofug",
tags: [
"HTML",
"CSS",
"JavaScript",
"ReactJS",
"NextJS",
"Web Development",
"General Programming",
"Making Money Online",
"Making Meaningful Connections",
],
},
{
name: "crwlr.software",
description: "Articles about web crawling and scraping in PHP.",
url: "https://www.crwlr.software/blog",
twitter: "@crwlrsoft",
tags: [
"PHP",
"crawling",
"scraping",
"Crawler",
"Scraper",
"HTTP",
"Web Development",
],
},
{
name: "otsch.codes",
description: "I blog about coding and my entrepreneurial journey.",
url: "https://www.otsch.codes/",
twitter: "@chrolear",
tags: [
"PHP",
"Web Development",
"HTTP",
"Business",
"SaaS",
"Entrepreneurial Journey",
"coding",
],
},
{
name: "HeadSpin Blog",
description: "The best place to learn appium, selenium and web automation.",
url: "https://www.headspin.io/blog",
twitter: "@headspin_io",
tags: ["HTML", "CSS", "JavaScript", "Appium", "Selenium"],
},
{
name: "Canopas Software",
description:
"We aim to help you become better software engineer. Sharing tips and tricks on android, iOS, web, and programming",
url: "https://blog.canopas.com/",
twitter: "@canopassoftware",
tags: [
"Vue",
"iOS",
"Android",
"Flutter",
"Jetpack Compose",
"SwiftUI",
"Web Development",
"Kotlin",
"GoLang",
"Swift",
],
},
{
name: "Dan M. Kazimoto",
description:
"UI designer and content creator writing about design and frontend development",
url: "https://khazifire.com/blog",
twitter: "@khazifire",
tags: [
"JavaScript",
"Html",
"Css",
"Next.js",
"TailwindCss",
"Figma",
"web design",
"frontend",
],
},
{
name: "Bleyl Dev",
description: "Flutter & Software Development Technical Articles",
url: "https://medium.com/@bleyldev",
twitter: "@bleyldev",
tags: [
"Flutter",
"Dart",
"JavaScript",
"Programming",
"Front End",
"Software Development",
],
},
{
name: "Lakin Mohapatra",
description:
"Associate team lead (8+ years of development exp.) | Web3 Architect | Blogger | Blockchain Enthusiast | Trader | Cyber Security Researcher | Books",
url: "https://lakin-mohapatra.medium.com",
twitter: "@lakincoder",
tags: [
"JavaScript",
"PHP",
"Golang",
"Rust",
"Web3",
"Blockchain",
"React",
"Angular",
"Cyber Security",
],
},
{
name: "Manu Arora",
description:
"I build products and web apps with an aim of impacting millions of lives.",
url: "https://manuarora.in/blog",
twitter: "@mannupaaji",
tags: [
"React",
"Nextjs",
"HTML",
"CSS",
"TailwindCSS",
"Nodejs",
"JAMStack",
"Next.js",
"React",
"Node.js",
],
},
{
name: "Anil Rao K",
description: "An engineer who loves curating & creating content.",
url: "https://anilraok.com",
twitter: "@Anilraok",
tags: [
"Android",
"iOS",
"Flutter",
"TypeScript",
"Node.js",
"PHP",
"mongodb",
],
},
{
name: "Dev Apt",
description:
"A web magazine demystifying web development, programming and technology with tips, tricks and tweaks.",
url: "https://devapt.com/",
twitter: "@dev_apt",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"Node.js",
"React",
"Tech",
"Git",
"Programming",
"AWS",
],
},
{
name: "Arpan Pandey",
description:
"I am a 15 year old student who likes to code and blog. I'm a cool minded but logical and pragmatic person. I try to be thorough with my work and am a perfectionist at heart.",
url: "https://hackersreboot.tech/",
twitter: "@HackersReboot",
tags: [
"Python",
"Blockchain",
"Web3",
"Computer Science",
"Algorithms",
"Programming",
"Student",
"JavaScript",
"Go",
],
},
{
name: "Tech Sheet",
description:
"Techsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single page.",
url: "https://techsheet.vercel.app/",
twitter: "@iamthangam",
tags: [
"NextJs",
"HTML",
"CSS",
"Vercel",
"React",
"Front End",
"Web Development",
"Computer Science",
"Programming",
"JavaScript",
],
},
{
name: "Elton Minetto",
description: "I’m a software developer, teacher, speaker and writer",
url: "https://eltonminetto.dev/en/",
twitter: "@eminetto",
tags: ["Go", "Golang", "Software Architecture"],
},
{
name: "Ashish Patel",
description:
"A space enthusiast software engineer, building amazing user interfaces, websites, web apps and APIs primarily using react, JamStack and express as key technologies.",
url: "https://worldsofashishpatel.com/blogs",
twitter: "@developer_ash",
tags: [
"Ashish",
"React",
"Jamstack",
"headless Cms",
"GraphQL",
"Gatsby",
"JavaScript",
"TypeScript",
"Software Engineer",
"Contentful",
],
},
{
name: "Mohamad Fadhil",
description: "T-shaped engineer, DevOps enthusiast",
url: "https://fadhil-blog.dev",
twitter: "@sdil",
tags: [
"Django",
"Web Devlopment",
"Python",
"API",
"Backend",
"Programming",
"Cloud Infrastructure",
"Software Engineering",
],
},
{
name: "Estee Tey's Tech Blog",
description:
"Refine your thinking, designing and development processes. Learn about concepts from a value-driven perspective. Focused on app development, developer productivity & open source technologies.",
url: "https://blog.esteetey.dev",
twitter: "@estee_tey",
tags: [
"HTML",
"CSS",
"JavaScript",
"Web Development",
"Front End",
"React",
"React Native",
"Open Source",
"Design",
"Productivity",
],
},
{
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",
"React",
],
},
{
name: "Siddhartha D",
description:
"I write about interesting devops solution for cloud infrastructure. Most of the tutorials will be focused on Python Automation, DevOps and SRE concepts | 👨🏻💻 Developer | ✍️ Blogger",
url: "https://techwithsidz.hashnode.dev/",
twitter: "@Sidz7",
tags: [
"DevOps",
"SRE",
"AWS",
"Kubernetes",
"Docker",
"Security",
"Python",
"Networking",
"Career",
"Tech Videos",
],
},
{
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: "Shivashish Yadav",
description:
"👋 Hello world! My name is Shivashish. I'm a passionate Technical Writer and a Software Engineer. I write beginner-friendly programming tutorials, theory, opinions and publish research articles on Blockchain and Cryptocurrency and various web development and SEO tips to help newbies get started.",
url: "https://shiva.hashnode.dev/",
twitter: "@ShivashishYadav",
tags: [
"Web3",
"Web Development",
"Blockchain",
"Cryptocurrency",
"Bitcoing",
"Smart Contract",
"Ethereum",
"SEO",
],
},
{
name: "Tecroxy",
description:
"Tecroxy is a Technology media company that wants to make people’s lives better through tech education. Since 2020, Tecroxy has been publishing content on its Website to educate readers on how to use their tech product(s) in the most efficient way possible..",
url: "https://tecroxy.com",
twitter: "@tecroxy",
tags: ["Android", "Apple", "Google", "Blockchain", "Website"],
},
{
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: "AlterClass by Greg D'Angelo",
description:
"Learn about the next-generation frameworks, tools, and techniques of modern web development.",
url: "https://alterclass.io/tutorials",
twitter: "@AlterClasssIO",
tags: [
"React",
"Next.js",
"JavaScript",
"TypeScript",
"Fauna",
"Mongodb",
"GraphQL",
"Tailwind CSS",
"Web3",
"Web Development",
],
},
{
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: "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: "Mohammad Humayun Khan",
description:
"I am a Computer Engineering Student from India. I love Software Development, Cybersecurity and Cloud Computing.",
url: "https://damianarado.medium.com/",
twitter: "@damianarado",
tags: [
"Computer Networking",
"Operating Systems",
"TCP/IP",
"Cybersecurity",
"Encryption",
],
},
{
name: "Priyanshu Kumawat",
description:
"A Wev Developer | Content Creator | Tech Blogger. Talks about Web Development, Open Source, JavaScript and Developer Resources.",
url: "https://kumarsonsoff.hashnode.dev",
twitter: "@Kumar_Sons_off",
tags: [
"HTML",
"CSS",
"JavaScript",
"Front End",
"Web Development",
"Git",
"Productivity",
"TailwindCSS",
],
},
{
name: 'Christine Belzie',
description: 'I write about my coding journey and other tech-related stuff.',
url: 'https://chrissycodes.hashnode.dev/',
twitter: "@CodesChrissy",
tags: ['Open Source', 'Beginner', 'Coding Journey'],
},
{
name: "Michael Hoffmann (Mokkapps)",
description: "🌴 Freelancer | 👨🏻💻 Developer | ✍️ Blogger",
url: "https://mokkapps.de/blog/",
tags: [
"JavaScript",
"TypeScript",
"Node.js",
"Express.js",
"Git",
"Tech",
"Front End",
"Fullstack",
"HTML",
"CSS",
"Gatsby",
"Spring Boot",
"Backend",
"Freelancing",
"Career",
"Software Development",
],
},
{
name: "Sagar Paul",
description: "Fullstack developer. Self-taught.",
url: "https://sagarpaul.netlify.app",
twitter: "@iamSagarPaul",
tags: [
"Web Development",
"React",
"Node.js",
"HTML",
"CSS",
"JavaScript",
"Algorithms",
"Git",
],
},
{
name: 'Rocketeers',
description: 'Sharing knowledge about hosting, developing and deploying web apps.',
url: 'https://rocketee.rs/knowledge',
twitter: '@rocketeers_app',
tags: [
'Development',
'Hosting',
'Performance',
'PHP',
'Javascript',
'Laravel',
'Git',
'DevOps',
'MySQL',
'Nginx',
'Security'
],
},
{
name: "Bob Fornal",
description: