forked from ViorelMocanu/digital-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_old_db.json
6650 lines (6650 loc) · 183 KB
/
_old_db.json
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
[
{
"url": "https://www.youtube.com/@ViorelMocanu",
"title": "V"
},
{
"url": "https://resilientwebdesign.com/chapter1/",
"title": "Resilient web design book"
},
{
"url": "https://www.theodinproject.com/paths/foundations/courses/foundations/lessons/how-does-the-web-work",
"title": "How does the Web work"
},
{
"url": "https://www.youtube.com/watch?v=oj7A2YDgIWE",
"title": "How does the Internet work? - Naked Science Scrapbook"
},
{
"url": "https://www.theodinproject.com/courses/web-development-101",
"title": "The Odin Project - Web Development 101"
},
{
"url": "https://tutorialehtml.com/ro/introducere-in-html/",
"title": "HTML Tutorial"
},
{
"url": "https://www.youtube.com/watch?v=ewrBalT_eBM",
"title": "A Packet's Tale. How Does the Internet Work?"
},
{
"url": "https://howdns.works/",
"title": "How DNS Works"
},
{
"url": "https://www.youtube.com/watch?v=3eqEl6scOvw",
"title": "How DNS Works"
},
{
"url": "https://www.youtube.com/watch?v=PUPDGbnpSjw",
"title": "CS50 2017 - Lecture 6 - HTTP"
},
{
"url": "https://www.edx.org/cs50",
"title": "https://www.edx.org/cs50"
},
{
"url": "https://howhttps.works/why-do-we-need-https/",
"title": "How HTTPS works"
},
{
"url": "https://www.youtube.com/watch?v=e4S8zfLdLgQ",
"title": "How the Internet Works for Developers - Pt 1 - Overview & Frontend"
},
{
"url": "https://www.youtube.com/watch?v=FTAPjr7vgxE",
"title": "How the Internet Works for Developers - Pt 2 - Servers & Scaling"
},
{
"url": "https://prezi.com/aafmvya6bk7t/understanding-information-architecture/",
"title": "Understanding Information Architecture"
},
{
"url": "https://www.uxbooth.com/articles/complete-beginners-guide-to-information-architecture/",
"title": "this article"
},
{
"url": "https://www.usability.gov/what-and-why/information-architecture.html",
"title": "this primer"
},
{
"url": "https://alistapart.com/article/a-brief-history-of-markup",
"title": "A brief history of markup on A List Apart"
},
{
"url": "https://diveinto.html5doctor.com/",
"title": "Dive into HTML5"
},
{
"url": "https://developer.mozilla.org/en-US/docs/Learn/Front-end_web_developer",
"title": "Mozilla Front End tutorial"
},
{
"url": "https://learn.shayhowe.com/html-css/",
"title": "Learn HTML/CSS: Shay Howe"
},
{
"url": "https://www.codeschool.com/paths/html-css",
"title": "CodeSchool Web Path"
},
{
"url": "https://www.linkedin.com/learning/html-essential-training-4/what-is-html",
"title": "Jen Simmons teaching HTML"
},
{
"url": "https://webdesign.tutsplus.com/articles/html-css-for-beginners-mega-free-course--cms-93199",
"title": "Adi Purdilă"
},
{
"url": "https://www.washington.edu/accesscomputing/webd2/student/unit2/index.html",
"title": "Washington.edu course on HTML"
},
{
"url": "https://www.khanacademy.org/computing/computer-programming/html-css",
"title": "Khan Academy Web Programming"
},
{
"url": "https://htmldog.com/",
"title": "HTMLDog"
},
{
"url": "https://marksheet.io/",
"title": "MarkSheet"
},
{
"url": "https://developer.mozilla.org/en/docs/Web/HTML/Element",
"title": "Mozilla Developer Network: HTML reference"
},
{
"url": "https://web.dev/learn/css/",
"title": "Learn CSS from Web.DEV"
},
{
"url": "https://www.theodinproject.com/lessons/foundations-introduction-to-html-and-css",
"title": "The Odin Project: HTML and CSS"
},
{
"url": "https://almanac.httparchive.org/en/2020/css",
"title": "Web Almanac on CSS"
},
{
"url": "https://web.dev/learn/design/",
"title": "Learn Responsive Design"
},
{
"url": "https://scrimba.com/learn/introhtmlcss",
"title": "Kevin Powell’s tutorial on Scrimba"
},
{
"url": "https://scrimba.com/learn/htmlandcss",
"title": "Per Harald Borgen’s"
},
{
"url": "https://www.freecodecamp.org/learn/2022/responsive-web-design/",
"title": "FreeCodeCamp Responsive Web Design"
},
{
"url": "https://www.youtube.com/playlist?list=PLgGbWId6zgaWZkPFI4Sc9QXDmmOWa1v5F",
"title": "30 days to HTML/CSS"
},
{
"url": "https://github.com/AllThingsSmitty/css-protips",
"title": "CSS Protips"
},
{
"url": "https://www.washington.edu/accesscomputing/webd2/student/unit3/index.html",
"title": "Washington.edu course on CSS"
},
{
"url": "https://css-tricks.com/snippets/css/a-guide-to-flexbox/",
"title": "Flexbox tutorial"
},
{
"url": "https://www.joshwcomeau.com/css/interactive-guide-to-flexbox/",
"title": "An interactive guide to Flexbox"
},
{
"url": "https://learnlayout.com/",
"title": "Learn Layout"
},
{
"url": "https://www.joshwcomeau.com/css/understanding-layout-algorithms/",
"title": "Understand CSS Layout algorithms"
},
{
"url": "https://ishadeed.com/article/grid-layout-flexbox-components/",
"title": "Grid for layout, Flexbox for components"
},
{
"url": "https://css-tricks.com/snippets/css/complete-guide-grid/",
"title": "Guide to Grid"
},
{
"url": "https://every-layout.dev/",
"title": "Relearn CSS layout"
},
{
"url": "https://smolcss.dev/",
"title": "Smol CSS layouts"
},
{
"url": "https://cssgrid.io/",
"title": "CSS Grids by Wes Bos"
},
{
"url": "https://flexboxzombies.com/p/flexbox-zombies",
"title": "FlexboxZombie"
},
{
"url": "https://www.htmldog.com/guides/css/beginner/",
"title": "Beginner CSS tutorial"
},
{
"url": "https://www.htmldog.com/guides/css/intermediate/",
"title": "Intermediate CSS tutorial"
},
{
"url": "https://www.htmldog.com/guides/css/advanced/",
"title": "Advanced CSS tutorial"
},
{
"url": "https://cssgridgarden.com/",
"title": "Grid Garden"
},
{
"url": "https://labs.jensimmons.com/",
"title": "Jen Simmons Labs"
},
{
"url": "https://gridbyexample.com/",
"title": "Grid by Example"
},
{
"url": "https://defensivecss.dev/",
"title": "Defensive CSS"
},
{
"url": "https://defensivecss.dev/articles/intro-defensive-css/",
"title": "intro"
},
{
"url": "https://css-tricks.com/specifics-on-css-specificity/",
"title": "Calculating CSS Specificity"
},
{
"url": "https://specificity.keegan.st/",
"title": "Specificity calculator"
},
{
"url": "https://www.w3.org/Style/CSS/",
"title": "The CSS “homepage”"
},
{
"url": "https://www.w3.org/Style/LieBos2e/enter/",
"title": "CSS: Designing for the Web"
},
{
"url": "https://github.com/KittyGiraudel/selectors-explained",
"title": "Explain CSS selectors in plain English"
},
{
"url": "https://www.csszengarden.com/",
"title": "CSS Zen Garden"
},
{
"url": "https://css-tricks.com/almanac/",
"title": "CSSTricks Almanac"
},
{
"url": "https://apps.workflower.fi/vocabs/css/en",
"title": "CSS Vocabulary"
},
{
"url": "https://developer.mozilla.org/en-US/docs/Web/CSS",
"title": "Mozilla Developer Network CSS Info"
},
{
"url": "https://code.tutsplus.com/tutorials/9-most-common-ie-bugs-and-how-to-fix-them--net-7764",
"title": "Solve most of IE’s bugs"
},
{
"url": "https://www.youtube.com/watch?v=n1cKlKM3jYI",
"title": "An Introduction to Browser Rendering"
},
{
"url": "https://www.google.com/chrome/browser/canary.html",
"title": "Chrome Canary"
},
{
"url": "https://developer.mozilla.org/en-US/docs/Web/CSS/Reference",
"title": "Mozilla Developer Network: CSS reference"
},
{
"url": "https://css-tricks.com/complete-guide-to-css-functions/",
"title": "A complete guide to CSS functions"
},
{
"url": "https://moderncss.dev/",
"title": "Modern CSS solutions for old CSS problems"
},
{
"url": "https://css-tricks.com/guides/",
"title": "CSS Tricks Guides"
},
{
"url": "https://www.ibm.com/design/practices/design-for-sustainability/",
"title": "Design for Sustainability"
},
{
"url": "https://sustainablewebdesign.org/",
"title": "Sustainable Web"
},
{
"url": "https://tympanus.net/codrops/",
"title": "Codrops"
},
{
"url": "https://css-tricks.com/snippets/css/",
"title": "CSS-Tricks CSS Snippets"
},
{
"url": "https://www.joshwcomeau.com/animation/css-transitions/",
"title": "A complete guide to CSS transitions"
},
{
"url": "https://www.minimamente.com/example/magic_animations/",
"title": "Magic animations"
},
{
"url": "https://codepen.io/honglio/pen/FKyxG",
"title": "Hover effects"
},
{
"url": "https://ianlunn.github.io/Hover/",
"title": "Hovers"
},
{
"url": "https://h5bp.github.io/Effeckt.css/",
"title": "Effekts"
},
{
"url": "https://desandro.github.io/3dtransforms/examples/box-02-show-sides.html",
"title": "Box"
},
{
"url": "https://codersblock.com/blog/the-surprising-things-that-css-can-animate/",
"title": "Advanced animations"
},
{
"url": "https://caniuse.com/",
"title": "CanIUse"
},
{
"url": "https://caniuse.com/%23feat=css-grid",
"title": "CSS Grid"
},
{
"url": "https://www.caniemail.com/",
"title": "CanIEmail"
},
{
"url": "https://designmodo.com/html-css-emails/",
"title": "HTML + CSS in Emails: What Works in 2022?"
},
{
"url": "https://www.smashingmagazine.com/2021/10/guide-debugging-css/",
"title": "Debugging CSS"
},
{
"url": "https://www.colorzilla.com/gradient-editor/",
"title": "CSS3 gradient generator"
},
{
"url": "https://simpleicons.org/",
"title": "SimpleIcons"
},
{
"url": "https://heroicons.com/",
"title": "HeroIcons"
},
{
"url": "https://icones.js.org/",
"title": "Icones"
},
{
"url": "https://react-icons.github.io/react-icons/",
"title": "ReactIcons"
},
{
"url": "https://devicon.dev/",
"title": "DevIcon"
},
{
"url": "https://www.untitledui.com/blog/free-icon-sets",
"title": "others"
},
{
"url": "https://css-tricks.com/examples/IconFont/",
"title": "Why IconFonts are great"
},
{
"url": "https://icomoon.io/",
"title": "IcoMoon"
},
{
"url": "https://fontawesome.com/",
"title": "FontAwesome"
},
{
"url": "https://www.svgator.com/",
"title": "How to animate SVGs, the simple way"
},
{
"url": "https://css-tricks.com/guide-svg-animations-smil/",
"title": "SVG Animations"
},
{
"url": "https://www.youtube.com/watch?v=Zys7mWgz85k",
"title": "GIT tutorial Română"
},
{
"url": "",
"title": ""
},
{
"url": "https://github.com/",
"title": "GitHub"
},
{
"url": "https://www.sourcetreeapp.com/",
"title": "SourceTree"
},
{
"url": "https://tortoisesvn.net/downloads.html",
"title": "Tortoise SVN"
},
{
"url": "https://lab.github.com/githubtraining/introduction-to-github",
"title": "GIT"
},
{
"url": "https://www.youtube.com/watch?v=1lBdlh3AGSc%26safe=active",
"title": "GIT 101"
},
{
"url": "https://github.com/zero-to-mastery/start-here-guidelines/blob/855a00243db60c71905f6e3afd95ebf2cf7459a0/gitstartedguideoptimized.pdf",
"title": "PDF guide"
},
{
"url": "https://makeapullrequest.com/",
"title": "PR guide"
},
{
"url": "https://opensource.com/article/20/4/git-merge-conflict",
"title": "Conflicts"
},
{
"url": "https://github.com/GSoft-SharePoint/Dynamite/wiki/Getting-started-with-SourceTree,-Git-and-git-flow",
"title": "GitHub + SourceTree tutorial"
},
{
"url": "https://cbea.ms/git-commit/",
"title": "Commits"
},
{
"url": "https://www.jetbrains.com/webstorm/help/using-git-integration.html",
"title": "GIT with WebStorm"
},
{
"url": "https://github.com/elsewhencode/project-guidelines",
"title": "Project rules"
},
{
"url": "https://gitimmersion.com/",
"title": "Immersion"
},
{
"url": "https://www.linode.com/docs/guides/using-the-terminal/",
"title": "Using the terminal"
},
{
"url": "https://www.atlassian.com/git/tutorials/comparing-workflows",
"title": "Workflows"
},
{
"url": "https://docs.github.com/en/get-started/using-git/about-git",
"title": "101"
},
{
"url": "https://docs.github.com/en/get-started/quickstart/set-up-git",
"title": "Setup"
},
{
"url": "https://ohshitgit.com/",
"title": "Oh shit, GIT?"
},
{
"url": "https://code.visualstudio.com/",
"title": "Visual Studio Code"
},
{
"url": "https://www.jetbrains.com/webstorm/download/",
"title": "WebStorm"
},
{
"url": "https://www.sublimetext.com/3",
"title": "Sublime"
},
{
"url": "https://brackets.io/",
"title": "Brackets"
},
{
"url": "https://www.awwwards.com/10-html-css-online-code-editors-for-web-developers.html",
"title": "Online editors (for testing only)"
},
{
"url": "https://filezilla-project.org/download.php?type=client",
"title": "FileZilla"
},
{
"url": "https://www.ghisler.com/download.htm",
"title": "Total Commander"
},
{
"url": "https://www.coreftp.com/download.html",
"title": "CoreFTP"
},
{
"url": "https://www.washington.edu/accesscomputing/webd2/student/unit1/module3/lesson1.html",
"title": "Washington Edu lesson in Standards"
},
{
"url": "https://www.webstandards.org/learn/faq/",
"title": "What are web standards and why should I use them?"
},
{
"url": "https://validator.w3.org/",
"title": "W3C HTML Validator"
},
{
"url": "https://jigsaw.w3.org/css-validator/",
"title": "W3C CSS Validator"
},
{
"url": "https://www.washington.edu/accesscomputing/webd2/student/unit1/module3/index.html",
"title": "Web Standards and Accessible Design"
},
{
"url": "https://www.washington.edu/accesscomputing/webd2/student/unit6/index.html",
"title": "Quality Control"
},
{
"url": "https://html5doctor.com/lets-talk-about-semantics/",
"title": "Let’s talk about semantics"
},
{
"url": "https://adactio.com/journal/4999/",
"title": "Pursuing semantic value"
},
{
"url": "https://www.cambridgesemantics.com/blog/semantic-university/intro-semantic-web/",
"title": "Introduction to the semantic web"
},
{
"url": "https://boagworld.com/dev/semantic-code-what-why-how/",
"title": "Semantic code: What? Why? How?"
},
{
"url": "https://www.smashingmagazine.com/2011/11/18/html5-semantics/",
"title": "HTML5 semantics from Smashing Magazine"
},
{
"url": "https://diveintohtml5.info/table-of-contents.html",
"title": "Diving into HTML5"
},
{
"url": "https://www.sitepoint.com/microformats-meaning-markup/",
"title": "Microformats primer - Sitepoint"
},
{
"url": "https://developers.google.com/search/docs/guides/intro-structured-data",
"title": "Google Structured Data Intro"
},
{
"url": "https://developers.google.com/search/reference/overview",
"title": "Google Structured Data Examples"
},
{
"url": "https://microformats.org/wiki/get-started",
"title": "Get started with Microformats"
},
{
"url": "https://microformats.org/2014/03/05/getting-started-with-microformats2",
"title": "Microformats v2"
},
{
"url": "https://ahrefs.com/blog/semantic-search/",
"title": "Why Semantic Search is important"
},
{
"url": "https://alistapart.com/author/emarcotte",
"title": "Ethan Marcotte’s articles on A List Apart"
},
{
"url": "https://alistapart.com/article/responsive-web-design",
"title": "this one"
},
{
"url": "https://www.lukew.com/presos/",
"title": "Luke Wroblewski’s interesting presentations"
},
{
"url": "https://www.nngroup.com/articles/scaling-user-interfaces/",
"title": "Scaling User Interfaces"
},
{
"url": "https://www.html5rocks.com/en/mobile/responsivedesign/",
"title": "Creating a mobile-first responsive web design"
},
{
"url": "https://responsivedesign.is/",
"title": "Responsive Design"
},
{
"url": "https://www.creativebloq.com/rwd/responsive-web-design-tutorials-71410085",
"title": "RWD Tutorials"
},
{
"url": "https://www.smashingmagazine.com/2013/03/05/building-a-better-responsive-website/",
"title": "Building a better responsive website"
},
{
"url": "https://thegymnasium.com/courses/course-v1:GYM%2B109%2B0/about",
"title": "RWD fundamentals"
},
{
"url": "https://screensiz.es/about",
"title": "full list of devices and their resolutions"
},
{
"url": "https://www.smashingmagazine.com/2012/03/22/device-agnostic-approach-to-responsive-web-design/",
"title": "Device agnostic breakpoints"
},
{
"url": "https://www.zeldman.com/2011/12/29/state-of-the-web-of-apps-devices-and-breakpoints/",
"title": "State of the Web"
},
{
"url": "https://marcdrummond.com/responsive-web-design/2011/12/29/default-breakpoints-are-dead",
"title": "Natural responsive web design breakpoints"
},
{
"url": "https://www.palantir.net/blog/re-thinking-breakpoints-responsive-design",
"title": "Re-thinking breakpoints in responsive design"
},
{
"url": "https://bradfrost.com/blog/post/i-have-no-idea-what-the-hell-i-am-doing/",
"title": "I have no idea what the hell I am doing"
},
{
"url": "https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images",
"title": "Responsive Images tutorial on MDN"
},
{
"url": "https://flexboxfroggy.com/",
"title": "FlexboxFroggy"
},
{
"url": "https://polypane.app/blog/the-complete-guide-to-css-media-queries/",
"title": "Complete guide to Media Queries"
},
{
"url": "https://web.dev/learn/images/",
"title": "https://web.dev/learn/images/"
},
{
"url": "https://viewports.fyi/",
"title": "https://viewports.fyi/"
},
{
"url": "https://www.dropbox.com/s/1oawqmhjf1ohrdf/acadEMy%2520front%2520end%2520Midterm%2520exam.pdf?dl=0",
"title": "midterm exam"
},
{
"url": "https://www.a11yproject.com/",
"title": "https://www.a11yproject.com/"
},
{
"url": "https://www.webstandards.org/learn/external/wai/",
"title": "Accessibility link list from WASP"
},
{
"url": "https://www.w3.org/standards/webdesign/accessibility",
"title": "W3C Accessibility Standards"
},
{
"url": "https://www.webstandards.org/learn/tutorials/accessible-forms/",
"title": "Accessible forms"
},
{
"url": "https://web.dev/sign-in-form-best-practices/",
"title": "Sign-in form best practices"
},
{
"url": "https://www.w3.org/WAI/eval/preliminary.html",
"title": "Easy checks: a fast review of web accessibility"
},
{
"url": "https://webaim.org/techniques/aria/",
"title": "Introduction to ARIA"
},
{
"url": "https://ixdchecklist.com/",
"title": "https://ixdchecklist.com/"
},
{
"url": "https://not-checklist.intopia.digital/",
"title": "https://not-checklist.intopia.digital/"
},
{
"url": "https://www.a11yproject.com/checklist/",
"title": "https://www.a11yproject.com/checklist/"
},
{
"url": "https://www.w3.org/WAI/eval/report-tool/%23/",
"title": "Website accessibility report generator"
},
{
"url": "https://uxrecipe.github.io/",
"title": "UX Recipe"
},
{
"url": "https://uiaccess.com/JustAsk/index.html",
"title": "Just Ask: Integrating Accessibility Throughout Design"
},
{
"url": "https://www.w3.org/WAI/ER/tools/index.html",
"title": "Other accessibility tools"
},
{
"url": "https://www.smashingmagazine.com/2021/03/complete-guide-accessible-front-end-components/",
"title": "Complete guide to accessible web components"
},
{
"url": "https://www.ebaytechblog.com/2015/11/04/how-our-css-framework-helps-enforce-accessibility/",
"title": "How a CSS framework can enforce accessibility"
},
{
"url": "https://www.linkedin.com/learning/accessibility-for-web-design/welcome?autoplay=true",
"title": "Derek Featherstone Web Accessibility primer"
},
{
"url": "https://web.dev/learn/accessibility/",
"title": "https://web.dev/learn/accessibility/"
},
{
"url": "https://seesparkbox.com/foundry/13_wcag_2.1_web_accessibility_guidelines",
"title": "13 days of Accessibility by Sparkbox"
},
{
"url": "https://blog.pope.tech/2023/03/01/a-beginners-guide-to-manual-accessibility-testing/",
"title": "A beginner's guide to manual accessibility testing - Pope Tech Blog"
},
{
"url": "https://adrianroselli.com/2023/02/aria-vs-html.html",
"title": "ARIA vs HTML — Adrian Roselli"
},
{
"url": "https://www.w3.org/TR/WCAG21/",
"title": "Official Web Content Accessibility Guidelines documentation"
},
{
"url": "https://designsystem.digital.gov/design-principles/",
"title": "US Government Digital Design System"
},
{
"url": "https://www.sarasoueidan.com/blog/keyboard-friendlier-article-listings/",
"title": "A very nifty tabindex enhancing primer for navigation"
},
{
"url": "https://www.nngroup.com/articles/usability-101-introduction-to-usability/",
"title": "Jacob Nielsen’s Usability 101"
},
{
"url": "https://www.nngroup.com/articles/ten-usability-heuristics/",
"title": "Jacob Nielsen’s 10 Rules of Thumb for Usability"
},
{
"url": "https://www.nngroup.com/topic/web-usability/",
"title": "NNGroup’s excellent articles"
},
{
"url": "https://www.usability.gov/what-and-why/index.html?view=list",
"title": "Usability basics from Usability.org"
},
{
"url": "https://maze.co/guides/ux-research/",
"title": "The Ultimate Guide to UX Research"
},
{
"url": "https://www.uxpin.com/studio/ebooks/",
"title": "Free UX books"
},
{
"url": "https://usability.com.au/",
"title": "Making the web more inclusive and usable from Usability.com.ua"
},
{
"url": "https://careerfoundry.com/en/short-courses/become-a-ux-designer/",
"title": "UX Course"
},
{
"url": "https://www.interaction-design.org/literature/book/the-encyclopedia-of-human-computer-interaction-2nd-ed",
"title": "HCI"
},
{
"url": "https://www.uxbeginner.com/",
"title": "UXBeginner"
},
{
"url": "https://uxtools.co/challenges/",
"title": "UX Challenges"
},
{
"url": "https://pencilandpaper.io/articles/microinteractions-ux-interaction-patterns/",
"title": "High Quality Microinteractions"
},
{
"url": "https://www.nngroup.com/articles/guide-ux-research-methods/",
"title": "UX research methods"
},
{
"url": "https://miro.com/app/board/o9J_ktZHnRA=/",
"title": "UX methodology"
},
{
"url": "https://99designs.com/blog/web-digital/website-usability-principles/",
"title": "Principles of website usability"
},
{
"url": "https://drpete.co/blog/25-point-website-usability-checklist",
"title": "25 point usability checklist"
},
{
"url": "https://uxchecklist.github.io/",
"title": "Yet another checklist"
},
{
"url": "https://stephaniewalter.design/blog/a-cheatsheet-for-user-interview-and-follow-ups-questions/",
"title": "Interview sheet"
},
{
"url": "https://www.coursera.org/professional-certificates/google-ux-design",
"title": "UX Design course at Google"
},
{
"url": "https://thegymnasium.com/courses/GYM/103/0/about",
"title": "UX Fundamentals"
},
{
"url": "https://whydoweinterface.com/",
"title": "Why Do We Interface?"
},
{
"url": "https://lawsofux.com/",
"title": "Laws of UX"
},
{
"url": "https://uxknowledgebase.com/table-of-contents-4d24ed5114ac",
"title": "UX Knowledge Base"
},
{
"url": "https://www.howtomakesenseofanymess.com/",
"title": "How to make sense of any mess"
},
{
"url": "https://blog.prototypr.io/my-collection-of-best-resources-for-junior-designers-c3b755c2b9c4",
"title": "List"
},
{
"url": "https://www.gov.uk/service-manual/user-centred-design",
"title": "gov.co.uk"
},
{
"url": "https://www.gov.uk/design-principles",
"title": "Design Principles"
},
{
"url": "https://principles.adactio.com/",
"title": "collects principles"
},
{
"url": "https://1stwebdesigner.com/psd-to-html/",
"title": "PSD to HTML tutorial"
},
{
"url": "https://github.com/WorthyD/WorthyD-Cutout-Demo",
"title": "HTML"
},
{
"url": "https://www.youtube.com/watch?v=TJg1qrkR5mI",
"title": "part 0"
},
{
"url": "https://www.youtube.com/watch?v=x9xnwEOYHS0",
"title": "part 1"
},
{
"url": "https://www.youtube.com/watch?v=YCJdESNKHl8",
"title": "part 2"
},
{
"url": "https://www.youtube.com/watch?v=yjkrdYddT0s",
"title": "part 3"
},
{
"url": "https://www.youtube.com/watch?v=j1VchPUv-54",
"title": "part 4"
},
{
"url": "https://www.youtube.com/watch?v=pt8H4GHMY6w",
"title": "part 5"
},
{
"url": "https://www.youtube.com/watch?v=aYzUOzaDjQE",
"title": "part 6"
},
{
"url": "https://www.youtube.com/watch?v=_b0hYKuZ88A",
"title": "part 7"
},
{
"url": "https://www.youtube.com/watch?v=OQGbOI0DZLg",
"title": "PSD to HTML"
},
{
"url": "https://code.tutsplus.com/tutorials/from-psd-to-html-building-a-set-of-website-designs-step-by-step--net-37",
"title": "PSD to HTML"
},
{
"url": "https://sixrevisions.com/tutorials/web-development-tutorials/psdhtml-conversion-code-a-clean-business-website-design/",
"title": "Code a clean business website design"
},
{
"url": "https://code.tutsplus.com/tutorials/build-a-sleek-portfolio-site-from-scratch--net-16",
"title": "Build a sleek portfolio site from scratch"
},
{
"url": "https://www.dropbox.com/s/r7xbtr2v2ychcpp/acadEMy%2520Photoshop%2520Cheat%2520Sheet%2520v0.1.pdf?dl=0",
"title": "Photoshop Shortcuts Cheat sheet"
},
{
"url": "https://www.figma.com/resources/learn-design/",
"title": "Figma, which you can learn right here"
},
{
"url": "https://www.figma.com/community/file/769694576496801916",
"title": "here"
},
{
"url": "https://www.dropbox.com/s/vpd4jsq3bhuplgv/acadEMy%2520front%2520end%2520Final%2520Exam.pdf?dl=0",
"title": "final exam"
},
{
"url": "https://sass-lang.com/guide",
"title": "Official SASS guide"
},
{
"url": "https://torquemag.io/developers-guide-learning-sass-twenty-minutes-less/",
"title": "Learn SASS in 20 min"
},
{
"url": "https://scotch.io/tutorials/getting-started-with-sass",
"title": "Getting started with SASS"
},
{
"url": "https://alistapart.com/article/getting-started-with-sass",
"title": "A List Apart: Getting started with SASS"
},
{
"url": "https://www.webdesignerdepot.com/2013/11/the-beginners-guide-to-sass/",
"title": "The beginner’s guide to SASS"
},
{
"url": "https://www.codeschool.com/courses/assembling-sass",
"title": "SASS CodeSchool tutorial"
},
{
"url": "https://www.viorelmocanu.ro/everymatrix-sass-standards.pdf",
"title": "SASS Standards"
},
{
"url": "https://handlebarsjs.com/",
"title": "Handlebars"
},
{
"url": "https://github.com/janl/mustache.js/",
"title": "Mustache"
},
{
"url": "https://docs.angularjs.org/guide/templates",
"title": "Angular Templating"
},
{
"url": "https://docs.angularjs.org/tutorial/step_02",
"title": "Tutorial"
},
{
"url": "https://www.digitalocean.com/community/tutorials/single-page-apps-with-angularjs-routing-and-templating",
"title": "Another tutorial"