-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1740 lines (1603 loc) · 113 KB
/
index.html
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
<!doctype html>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ index.html of cellardoor ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~ https://github.com/bbauska/cellardoor/blob/main/index.html ~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<html lang="en" dir="ltr">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Cellardoor</title>
<link rel="canonical" href="https://cellardoor.bauska.org">
<!-- shortcut icon -->
<link rel="shortcut icon" type="image/jpg" href="./images/bauska.ico"/>
<!-- styles -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css"> <!-- added 2/20/2024 5:10pm -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- viewport and seo -->
<meta name="title" content="bbauska's CellarDoor"/>
<meta name="description" content="HTML, CSS, Javascript & React - There
are over 500 websites in the 20+ detail/summary menus + 2 dozen more in the
drop-down menu.">
<meta name="robots" content="index, follow">
<meta name="author" content="Brian Bauska (bbauska)"/>
<script defer src="https://code.jquery.com/jquery-3.7.1.js"></script>
<link rel="stylesheet" href="./css/just-styles.css">
<script defer src="js/cellardoor.js"></script>
<link rel="apple-touch-icon" sizes="57x57" href="/images/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/images/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/images/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/images/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/images/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/images/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/images/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ body ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<body>
<script async src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script async src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script async src ="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.js"></script>
<h1 style="text-align:left;color:darkgreen">Cellardoor</h1>
<!--~~~~~~~~~~~~~~~~~~~~~~~~ shingles menu for cellardoor.bauska.org ~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<div class="sticky">
<div id="container" style="text-align:left">
<ul id="menu" style="text-align:left">
<li><a href="#" id="UofMUCDavis">U of Mich/UC Davis</a>
<ul style="text-align:left">
<li><a id="IntroToHTML" href="https://intro-html.bauska.org" target="_blank" rel="noopener noreferrer">
a. UofM's Introduction to HTML5</a></li>
<li><a id="IntroToCSS" href="https://intro-css.bauska.org" target="_blank" rel="noopener noreferrer">
b. UofM's Introduction to CSS3</a></li>
<li><a id="InterWithJS" href="https://inter-with-js.bauska.org" target="_blank" rel="noopener noreferrer">
c. UofM's Interactivity with JavaScript</a></li>
<li><a id="AdvStyling" href="https://adv-styling.bauska.org" target="_blank" rel="noopener noreferrer">
d. UofM's Advanced Styling with Responsive Design</a></li>
<li><a id="JSjQueryJSON" href="https://github.com/bbauska/UofM-JS-jQuery-JSON" target="_blank" rel="noopener noreferrer">
e. wip - UofM's JavaScript, jQuery & JSON</a></li>
<li><a id="PHP" href="https://www.coursera.org/learn/web-applications-php/home/week/1" target="_blank" rel="noopener noreferrer">
z. wip - UofM's Building Web Apps in PHP</a></li>
<li><a id="JSBasics" href="https://js-basics.bauska.org" target="_blank" rel="noopener noreferrer">
1. UC-Davis' JavaScript Basics</a></li>
<li><a id="Animation" href="https://animate-js.bauska.org" target="_blank" rel="noopener noreferrer">
2. UC Davis' Animation with JavaScript & jQuery</a></li>
<li><a id="InterWithjQuery" href="https://inter-with-js.bauska.org" target="_blank" rel="noopener noreferrer">
3. UC-Davis' Interactivity with jQuery</a></li>
<li><a id="DataManipulationInJS" href="https://github.com/bbauska/UC-Davis-Data-Manipulation-in-JS" target="_blank" rel="noopener noreferrer">
4. wip - UC-Davis' Data Manipulation in JS</a></li>
<li><a id="CSS Notes" href="https://css-notes4-pros.bauska.org" target="_blank" rel="noopener noreferrer">
CSS Notes 4 Professionals</a></li>
<li><a id="JS Notes" href="https://github.com/bbauska/JS-Notes4-Pros/blob/main/README.md" target="_blank" rel="noopener noreferrer">
wip - JS Notes 4 Professionals</a></li>
</ul> <!-- style="text-align:left" -->
</li> <!-- a href="#" -->
<li><a href="#" id="metaCoursera">meta & Coursera</a>
<ul style="text-align:left">
<li><a id="Bootstrap4" href="https://github.com/bbauska/Coursera-Bootstrap" target="_blank" rel="noopener noreferrer">
Coursera - Bootstrap 4 (Hong Kong)</a></li>
<li><a id="InDepth" href="https://github.com/bbauska/meta-html-css-in-depth/edit/main/index.html/" target="_blank" rel="noopener noreferrer">
Meta/Coursera - HTML & CSS in Depth</a></li>
<li><a id="ReactBasics" href="https://github.com/bbauska/meta-react-basics" target="_blank" rel="noopener noreferrer">
Meta/Coursera React Basics</a></li>
<li><a id="ProgramWithJS" href="https://github.com/bbauska/meta-javascript" target="_blank" rel="noopener noreferrer">
Meta/Coursera Programming with JavaScript</a></li>
<li><a id="WebAppWithNodeJS" href="https://github.com/bbauska/TUMx-DWAPNx/" target="_blank" rel="noopener noreferrer">
TUM - Tech Un of Munich - Web Appl'n Development with Node.js</a></li>
<li><a id="1stbook" href="https://github.com/bbauska/1stbook" target="_blank" rel="noopener noreferrer">
1stbook - Eistein & UFO's/Crop Circles</a></li>
<li><a id="JS-Learn-JS" href="https://github.com/bbauska/JS-Learn-JSk" target="_blank" rel="noopener noreferrer">
JS - Learn - JS</a></li>
</ul> <!-- style="text-align:left" -->
</li> <!-- a href="#" -->
<li><a href="#" id="Tuts">Tut's</a>
<ul>
<li><a id="WebDev" href="https://web.dev/learn" target="_blank" rel="noopener noreferrer">
Web.dev for HTML, CSS, JS, Responsive, PWA, Images, Performance & Testing</a></li>
<li><a id="2024WebDev" href="https://www.youtube.com/watch?v=8sXRyHI3bLw" target="_blank" rel="noopener noreferrer">
2024 Web Development - Practical Guide (2:43:31)</a></li>
<li><a id="Intershship" href="https://github.com/bbauska/internship/tree/main" target="_blank" rel="noopener noreferrer">
Internship (What to Know)</a></li>
<li><a id="React" href="https://www.youtube.com/watch?v=bMknfKXIFA8" target="_blank" rel="noopener noreferrer">
React Course - Beginner's Tutorial for React JavaScript Library (11:55:27)</a></li>
<li><a id="ReactJS" href="https://legacy.reactjs.org/community/courses.html" target="_blank" rel="noopener noreferrer">
ReactJS Free Courses</a></li>
<li><a id="RespBoot" href="https://freefrontend.com/bootstrap-dropdowns/" target="_blank" rel="noopener noreferrer">
Responsive Bootstrap Dropdown Templates</a></li>
<li><a id="OnlineTut" href="#tutorials">Online Tutorials</a></li>
<li><a id="CodeAcademy" href="https://www.codeacademy.com/learn" target="_blank" rel="noopener noreferrer">
Code Academy - Intermediate CSS & MORE...</a></li>
<li><a id="VideoTut" href="#video-tutorials">Video Tutorials</a></li>
<li><a id="CompBooks" href="#computer-books">Computer Books</a></li>
<li><a id="MOOC" href="#moocs">MOOCs for Learning Something New</a></li>
</ul>
</li> <!-- a href="" -->
<li><a href="#" id="JSFrames">JS, JS Frame's & Lib's</a>
<ul>
<li><a href="https://speckyboy.com/top-50-javascript/" target="_blank" rel="noopener noreferrer">
Top 50 JS Plugins & Libraries (2016-2024) - Specky Boy</a></li>
<li><a href="https://www.freecodecamp.org/news/10-javascript-libraries-you-should-try/"
target="_blank" rel="noopener noreferrer">
10 Awesome JS Libraries to Try in 2021 - freeCodeCamp</a></li>
<li><a href="https://javascript.plainenglish.io/10-javascript-plugins-that-every-web-developer-should-know-a1cd6449a661"
target="_blank" rel="noopener noreferrer">
10 JS Plugins Every Web Developer Should Know (2021)</a></li>
<li><a href="https://technostacks.com/blog/best-frontend-frameworks/"
target="_blank" rel="noopener noreferrer">Best Front-end Frameworks</a></li>
<li><a href="https://www.creativebloq.com/design-tools/data-visualization-712402" target="_blank" rel="noopener noreferrer">
Data Viz Design Tools</a></li>
<li><a href="https://github.com/bbauska/zoom-image"
target="_blank" rel="noopener noreferrer">Zoom Image in JavaScript</a></li>
<li><a href="https://nanogallery2.nanostudio.org/" target="_blank" rel="noopener noreferrer">
nanoGallery2 for images and videos (2021)</a></li>
<li><a href="https://www.ecosia.org/videos?q=html%2Fcss%2Fjavascript%20carousel%20unlimited%20images"
target="_blank" rel="noopener noreferrer">
Infinite Image Carousel</a></li>
<li><a href="https://en.bloggif.com/cube-3d" target="_blank" rel="noopener noreferrer">
3d Cube Maker</a></li>
<li><a href="https://github.com/bbauska/JS-Notes4-Pros" target="_blank" rel="noopener noreferrer">
JS Notes 4 Pros JavaScript</a></li>
<li><a href="https://github.com/bbauska/UofM-JS-jQuery-JSON" target="_blank" rel="noopener noreferrer">
JS, jQuery & JSON (Univ of Michigan)</a></li>
<li><a href="https://github.com/bbauska/JS-Learn-JS" target="_blank" rel="noopener noreferrer">
JS Learn JS (my personal JS manual)</a></li>
</ul>
</li> <!-- a href="" -->
<li><a href="#" id="W3CxIBM">W3Cx & IBM</a>
<ul>
<li><a href="https://github.com/bbauska/ibm-intermediate-web-dev/blob/main/index.html" target="_blank"
rel="noopener noreferrer">Github IBM Intermediate Web & Front-end Development</a></li>
<li><a href="https://ibm-web-dev.bauska.org/" target="_blank"
rel="noopener noreferrer">IBM/GitHub Intermediate Web & Front-end Development</a></li>
<li><a href="https://github.com/bbauska/W3Cx-1of5" target="_blank" rel="noopener noreferrer">Github - W3Cx-1of5-CSS.0x</a></li>
<li><a href="https://w3cx-1of5.bauska.org/" target="_blank" rel="noopener noreferrer">W3Cx-1of5-CSS.0x (css basics)</a></li>
<li><a href="https://github.com/bbauska/W3Cx-2of5" target="_blank" rel="noopener noreferrer">Github - W3Cx-2of5-HTML5.0x</a></li>
<li><a href="https://w3cx-2of5.bauska.org/" target="_blank" rel="noopener noreferrer">W3Cx-2of5-HTML5.0x (html/css basics)</a></li>
<li><a href="https://github.com/bbauska/W3Cx-3of5" target="_blank" rel="noopener noreferrer">Github - W3Cx-3of5-HTML5.1x</a></li>
<li><a href="https://w3cx-3of5.bauska.org/" target="_blank" rel="noopener noreferrer">W3Cx-3of5-HTML5.1x (intermediate)</a></li>
<li><a href="https://github.com/bbauska/W3Cx-4of5" target="_blank" rel="noopener noreferrer">Github - W3Cx-4of5-HTML5.1x</a></li>
<li><a href="https://w3cx-4of5.bauska.org/" target="_blank" rel="noopener noreferrer">W3Cx-4of5-HTML5.2x (advanced)</a></li>
<li><a href="https://github.com/bbauska/W3Cx-5of5" target="_blank" rel="noopener noreferrer">Github - W3Cx-5of5-JS.0x</a></li>
<li><a href="https://w3cx-5of5.bauska.org/" target="_blank" rel="noopener noreferrer">W3Cx-5of5-JS.0x (javascript)</a></li>
<li><a href="https://github.com/bbauska/w3.CSS-Succinctly" target="_blank" rel="noopener noreferrer">Github - W3.CSS Succinctly</a></li>
</ul>
</li> <!-- a href="" -->
<li><a href="#" id="Support">Support</a>
<ul>
<li><a href="https://dequeuniversity.com/rules/axe/4.9/link-name"
target="_blank" rel="noopenner noreferrer">Link with Discernible Text</a></li>
<li><a href="https://dequeuniversity.com/rules/axe/4.9/color-contrast"
target="_blank" rel="noopenner noreferrer">Color Contrast</a></li>
<li><a href="https://codesandbox.io/p/sandbox/html-data-attribute-llxlkn?file=%2Fscript.js"
target="_blank" rel="noopenner noreferrer">Code Sandbox</a></li>
<li><a href="https://jsbin.com/jixolu/edit?js,console,output"
target="_blank" rel="noopener noreferrer">JS Bin</a></li>
<li><a href="https://www.w3schools.com/tryit/tryit.asp?filename=tryhtml_hello"
target="_blank" rel="noopener noreferrer">Try It! (just html)</a></li>
<li><a href="https://pagespeed.web.dev/analysis/https-cellardoor-bauska-org/je5p0c4qz2?form_factor=desktop"
target="_blank" rel="noopener noreferrer">Pagespeed Insights (Pretty Good)</a></li>
<li><a href="https://bfotool.com/website-download-online"
target="_blank" rel="noopener noreferrer">BF Tools - Download website - testing tools</a></li>
<li><a href="https://validator.w3.org/nu/" target="_blank" rel="noopener noreferrer">
Nu HTML Checker (Awesome Test)</a></li>
<li><a href="https://ui.dev/amiresponsive?url=https://w3cx-1of5.bauska.org/"
target="_blank" rel="noopener noreferrer">Is it Responsive for Phone, Table, Desktop?</a></li>
<li><a href="https://jsfiddle.net/brianbauska/5juwcvza/8/" target="_blank"
rel="noopener noreferrer">JS Fiddle Test HTML & CSS</a></li>
<li><a href="https://codepen.io/alas/pen/mwaddv" target="_blank"
rel="noopener noreferrer">CodePen</a></li>
<li><a href="https://www.w3docs.com/tools/code-editor/10181" target="_blank"
rel="noopener noreferrer">W3Docs: Test HTML (just html)</a></li>
<li><a href="https://www.unminify.com" target="_blank" rel="noopener noreferrer">Unminify CSS or JS</a></li>
</ul>
</li> <!-- a href="#" -->
</ul>
</div>
</div>
<pre>
</pre>
<br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ documentaries websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="documentaries">
<summary>Documentaries</summary>
<br>
<ul class="list-styles">
<li><a href="https://www.youtube.com/watch?v=udW0j96vAOk" target="_blank" rel="noopener noreferrer">
Breaking the Code : Biography of Alan Turing.</a></li>
<li><a href="https://www.youtube.com/watch?v=4NIb9l3imAo" target="_blank" rel="noopener noreferrer">
Cracking The Code Interview : Cracking the Code Interview.</a></li>
<li><a href="https://www.youtube.com/watch?v=Eg5-tdAwclo" target="_blank" rel="noopener noreferrer">
Cracking the Coding Interview : Cracking the Coding Interview, Fullstack Speaker Series.</a></li>
<li><a href="https://www.youtube.com/watch?v=iOq5kSKqeR4" target="_blank" rel="noopener noreferrer">
Harvard CS50 - Asymptotic Notation (video) : Asymptotic Notation explained by Harvard.</a></li>
<li><a href="https://www.youtube.com/watch?v=Mv2XQgpbTNE" target="_blank" rel="noopener noreferrer">
Machine Code Instructions (video) : Code instructions.</a></li>
<li><a href="https://www.youtube.com/watch?v=0iPiYxjsYKk" target="_blank" rel="noopener noreferrer">
Machine that Changed the World - a very good documentary about the history of computers
Part 1 is unavailable for free streaming due to widespread copyright claims. Part 2: Inventing the Future.</a></li>
<li><a href="https://www.youtube.com/watch?v=d7DKVfOXr54" target="_blank" rel="noopener noreferrer">
Part 3: The Paperback Computer.</a></li>
<li><a href="https://www.youtube.com/watch?v=enWWlx7-t0k" target="_blank" rel="noopener noreferrer">
Part 4: The Thinking Machine.</a></li>
<li><a href="https://www.youtube.com/watch?v=fLLXiP7diEo" target="_blank" rel="noopener noreferrer">
Part 5: The World at Your Fingertips.</a></li>
<li><a href="https://www.youtube.com/watch?v=s1i-dnAH9Y4" target="_blank" rel="noopener noreferrer">
Mechanical Computer (All Parts) : a very good video from the 1950s explaining how mechanical
computers used to work without all the modern-day electronics.</a></li>
<li><a href="https://teachyourselfcs.com" target="_blank" rel="noopener noreferrer">
Teach Yourself Computer Science : Teach Yourself Computer Science.</a></li>
<li><a href="https://www.youtube.com/watch?v=XMm0HsmOTFI" target="_blank" rel="noopener noreferrer">
The Code : Story of Linux documentary.</a></li>
<li><a href="https://www.youtube.com/watch?v=9vz06QO3UkQ" target="_blank" rel="noopener noreferrer">
The Internet's Own Boy : The Story of Aaron Swartz.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end documentaries websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ good articles websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="good-articles">
<summary>Good Articles</summary>
<br>
<ul class="list-styles2">
<li><a href="https://www.infoq.com/articles/Starting-With-MongoDB/" target="_blank" rel="noopener noreferrer">
14 Things I Wish I’d Known When Starting with MongoDB.</a></li>
<li><a href="http://carlcheo.com/compsci" target="_blank" rel="noopener noreferrer">
++40 Keys Computer Science Concepts Explained In Layman’s Terms.</a></li>
<li><a href="https://dev.to/vaidehijoshi/a-gentle-introduction-to-graph-theory" target="_blank" rel="noopener noreferrer">
A Gentle Introduction To Graph Theory.</a></li>
<li><a href="http://moonscript.org" target="_blank" rel="noopener noreferrer">
A programmer-friendly language that compiles to Lua.</a></li>
<li><a href="https://stevewedig.com/2014/02/03/software-developers-reading-list/" target="_blank" rel="noopener noreferrer">
A Software Developer’s Reading List : Some good books and links in there.</a></li>
<li><a href="http://www.saminiir.com/lets-code-tcp-ip-stack-5-tcp-retransmission/" target="_blank" rel="noopener noreferrer">
++Code a TCP/IP stack : Let's code a TCP/IP stack, 5 : TCP Retransmission.</a></li>
<li><a href="https://codewords.recurse.com/issues/four/the-language-of-choice" target="_blank" rel="noopener noreferrer">
Codewords.recurse : The language of choice.</a></li>
<li><a href="https://www.wikiwand.com/en/Java_bytecode" target="_blank" rel="noopener noreferrer">
Dive into the byte code.</a></li>
<li><a href="http://blog.thefirehoseproject.com/posts/expectations-of-a-junior-developer/" target="_blank" rel="noopener noreferrer">
Expectations of a Junior Developer.</a></li>
<li><a href="https://studio3t.com/knowledge-base/articles/mongodb-getting-started/" target="_blank" rel="noopener noreferrer">
Getting Started with MongoDB – An Introduction.</a></li>
<li><a href="https://0xax.gitbooks.io/linux-insides/content/Booting/linux-bootstrap-1.html" target="_blank" rel="noopener noreferrer">
Linux Insides.</a></li>
<li><a href="https://www.wikiwand.com/en/List_of_algorithms" target="_blank" rel="noopener noreferrer">
List of algorithms.</a></li>
<li><a href="https://www.databasestar.com/normalization-in-dbms/" target="_blank" rel="noopener noreferrer">
++Step by Step Guide to Database Normalization : A guide to database normalization.</a></li>
<li><a href="http://blog.thefirehoseproject.com/posts/learn-to-code-and-be-self-reliant/" target="_blank" rel="noopener noreferrer">
++The Key To Accelerating Your Coding Skills.</a></li>
<li><a href="https://www.joelonsoftware.com/2003/10/08/the-absolute-minimum-every-software-developer-absolutely-positively-must-know-about-unicode-and-character-sets-no-excuses/"
target="_blank" rel="noopener noreferrer">Unicode.</a></li>
<li><a href="http://multithreaded.stitchfix.com" target="_blank" rel="noopener noreferrer">
We are reinventing the retail industry through innovative technology.</a></li>
<li><a href="http://kunststube.net/encoding/" target="_blank" rel="noopener noreferrer">
++What every programmer absolutely, positively needs to know about encodings and character sets to work with text.</a></li>
<li><a href="https://qotoqot.com/blog/improving-focus/" target="_blank" rel="noopener noreferrer">
++qotoqot - improving-focus : How I got to 200 productive hours a month.</a></li>
<li><a href="http://www.pixelbeat.org/docs/unix-parallel-tools.html" target="_blank" rel="noopener noreferrer">
Pixel Beat - Unix : Parallel processing with Unix tools.</a></li>
<li><a href="https://hackernoon.com/learning-vim-what-i-wish-i-knew-b5dca186bef7" target="_blank" rel="noopener noreferrer">
++Learning Vim : What I Wish I Knew.</a></li>
<li><a href="http://arjunsreedharan.org/post/82710718100/kernel-101-lets-write-a-kernel" target="_blank" rel="noopener noreferrer">
++Write a Kernel : Kernel 101 – Let’s write a Kernel.</a></li>
<li><a href="https://addyosmani.com/resources/essentialjsdesignpatterns/book/" target="_blank" rel="noopener noreferrer">
++Learning JavaScript Design Patterns : the online version of the Learning. JavaScript Design
Patterns published by O'Reilly, released by the author Addy Osmani under CC BY-NC-ND 3.0.</a></li>
<li><a href="https://requestbin.com/blog/working-with-webhooks/" target="_blank" rel="noopener noreferrer">
Working with Webhooks : a comprehensive guide on webhooks.</a></li>
<li><a href="https://www.mrdbourke.com/how-i-got-tensorflow-developer-certified/" target="_blank" rel="noopener noreferrer">
How I got TensorFlow Developer Certified : Step By Step guide to pass Tensorflow Developer Certification.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end good articles websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bored websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="bored">
<summary>When Bored</summary>
<!-- <h3 id="bored">When you get bored from CS related shit</h3> -->
<br>
<ul class="list-styles3">
<li><a href="https://www.youtube.com/user/barcroftmedia/featured" target="_blank"
rel="noopener noreferrer">Barcroft TV : Daily short documentaries about the
incredible variety of people that make up the world.</a></li>
<li><a href="https://www.youtube.com/user/bigthink/videos" target="_blank"
rel="noopener noreferrer">Big Think : Expert driven, actionable, educational
content, featuring experts ranging from Bill Clinton to Bill Nye (deutsch-bag).</a></li>
<li><a href="https://www.youtube.com/user/coldfustion/videos" target="_blank"
rel="noopener noreferrer">ColdFusion : Past, present, and future of technology.</a></li>
<li><a href="https://www.youtube.com/user/crashcourse/videos" target="_blank"
rel="noopener noreferrer">CrashCourse : small courses on various subjects.</a></li>
<li><a href="https://www.youtube.com/user/everyframeapainting/videos"
target="_blank" rel="noopener noreferrer">Every Frame a Painting :
High-quality analysis of films and filmmaking.</a></li>
<li><a href="https://www.youtube.com/user/NationalGeographic/videos"
target="_blank" rel="noopener noreferrer">National Geographic : High
volume of high-quality content from all over the world.</a></li>
<li><a href="https://www.reddit.com" target="_blank" rel="noopener noreferrer">
Reddit the front page of the internet : Where free time goes to die.</a></li>
<li><a href="https://www.youtube.com/user/VineMontanaTV/videos"
target="_blank" rel="noopener noreferrer">
Ridddle : A youtube channel about science, mainly, but not only,
the universe and space.</a></li>
<li><a href="https://regexcrossword.com" target="_blank"
rel="noopener noreferrer">
Regex Crossword : A simple crossword game where clues are regex that must be matched.</a></li>
<li><a href="https://www.youtube.com/user/scishow/videos" target="_blank" rel="noopener noreferrer">
SciShow : Answers to interesting questions that you've always wondered about.</a></li>
<li><a href="https://www.youtube.com/user/destinws2/videos" target="_blank" rel="noopener noreferrer">
SmarterEveryDay : Lots of amazing scientific information about the world around us, usually
captured with a high-speed camera.</a></li>
<li><a href="https://www.youtube.com/user/TEDtalksDirector/videos" target="_blank"
rel="noopener noreferrer">TED : Great talks about technology, entertainment, and
design.</a></li>
<li><a href="https://www.youtube.com/user/TestTubeNetwork/videos" target="_blank"
rel="noopener noreferrer">TestTube News : Interesting information about news from around the world.</a></li>
<li><a href="http://www.bbc.com/future/story/20170601-the-secret-to-a-long-and-healthy-life-eat-less"
target="_blank" rel="noopener noreferrer">How to live for a long time ? : The secret of longevity.</a></li>
<li><a href="https://www.youtube.com/user/Vsauce/videos" target="_blank"
rel="noopener noreferrer">Vsauce : The best youtube channel.</a></li>
<li><a href="http://www.ox.ac.uk/research/research-in-conversation/how-live-happy-life/dr-bronwyn-tarr#"
target="_blank" rel="noopener noreferrer">Ox A cuk : How to live a happy life.</a></li>
<li><a href="https://www.lonelyspeck.com/the-milky-way-in-los-angeles-light-pollution/"
target="_blank" rel="noopener noreferrer">lonelyspeck : Expose to the Right for
Astrophotography in Light Pollution – Palos Verdes, Los Angeles, California.</a></li>
<li><a href="https://www.education-ecosystem.com" target="_blank" rel="noopener noreferrer">
Education Ecosystem : screencast of people building applications, websites, games, etc.</a></li>
<li><a href="https://www.twitch.tv/directory/game/Science%20%26%20Technology"
target="_blank" rel="noopener noreferrer">Twitch.tv : The programming community of twitch.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end bored websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ podcasts ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="podcasts">
<summary>Podcasts on Coding</summary>
<br>
<ul class="list-styles">
<li><a href="https://syntax.fm" target="_blank" rel="noopener noreferrer">
Syntax : A Tasty Treats Podcast for Web Developers by Wes Bos & Scott Tolinski.</a></li>
<li><a href="http://www.codingblocks.net" target="_blank" rel="noopener noreferrer">
++Coding Blocks : A podcast covering topics such as best programming practices,
design patterns, coding for performance, object-oriented coding, database design
and implementation, tips, tricks and a whole lot of other things.</a></li>
<li><a href="http://developeronfire.com/episodes" target="_blank" rel="noopener noreferrer">
Developer On Fire : A podcast that shares the humanity of developers and tells
stories of some of the amazing people in software, hosted by Dave Rael.</a></li>
<li><a href="https://spec.fm/podcasts/developer-tea" target="_blank" rel="noopener noreferrer">
Developer Tea : A podcast for developers designed to fit inside your tea break.</a></li>
<li><a href="http://frontendhappyhour.com" target="_blank" rel="noopener noreferrer">
Front End Happy Hour : A podcast featuring a panel of Software Engineers from
Netflix, Evernote, Atlassian & LinkedIn talking over drinks about all
things Front End development.</a></li>
<li><a href="https://devchat.tv/js-jabber" target="_blank" rel="noopener noreferrer">
++JavaScript Jabber : A weekly discussion about JavaScript, front-end
development, community, careers, and frameworks.</a></li>
<li><a href="https://lispcast.com/category/podcast/" target="_blank" rel="noopener noreferrer">
LispCast : A podcast by Eric Normand, a functinal programming expert
talking about FP concepts.</a></li>
<li><a href="https://hackernoon.com/tagged/react-top-story" target="_blank"
rel="noopener noreferrer">React Top Story</a></li>
<li><a href="https://gokhale.me/10-beginner-mistakes-react-developers-do"
target="_blank" rel="noopener noreferrer">10 Beginner's Mistakes JS React</a></li>
<li><a href="https://devchat.tv/react-native-radio" target="_blank" rel="noopener noreferrer">
React Native Radio : A weekly discussion of the tools, techniques, and
technologies used to build mobile applications with JavaScript and React.</a></li>
<li><a href="http://www.fullstackradio.com" target="_blank" rel="noopener noreferrer">
Full Stack Radio : Everything from product design and user experience to
unit testing and system administration.</a></li>
<li><a href="http://groovypodcast.podbean.com" target="_blank" rel="noopener noreferrer">
Groovy Podcast : A podcast dedicated to the Groovy programming language and its ecosystem.</a></li>
<li><a href="https://devchat.tv/iphreaks" target="_blank" rel="noopener noreferrer">
IPhreaks : A weekly group discussion about iOS development and related
technology by development veterans. We discuss Apple, tools, practices, and code.</a></li>
<li><a href="https://learntocodewith.me/podcast/" target="_blank" rel="noopener noreferrer">
Learn To Code With Me Podcast : A Season by season of tech podcast episodes
by Laurence Bradford with topics ranging from Career in Tech to lessons in
doing tech business.</a></li>
<li><a href="http://msdevshow.com" target="_blank" rel="noopener noreferrer">
MS Dev Show : Jason Young and Carl Schweitzer talk about the latest in
developer news covering topics such as the Azure cloud, Windows, Windows
Phone, Visual Studio, and cross-platform development using the Microsoft platform.</a></li>
<li><a href="https://softskills.audio/" target="_blank" rel="noopener noreferrer">
Soft Skills Engineering : A weekly advice podcast for software developers
about non-technical topics.</a></li>
<li><a href="https://softwareengineeringdaily.com" target="_blank" rel="noopener noreferrer">
Software Engineering Daily : A daily technical interview about software topics.</a></li>
<li><a href="http://www.se-radio.net" target="_blank" rel="noopener noreferrer">
Software Engineering Radio : A podcast targeted at the professional software
developer. The goal is to be a lasting educational resource, not a newscast.</a></li>
<li><a href="http://bikeshed.fm" target="_blank" rel="noopener noreferrer">
The Bike Shed : Guests discuss their development experience and challenges
with Ruby, Rails, JavaScript, and others.</a></li>
<li><a href="https://changelog.com/podcast" target="_blank" rel="noopener noreferrer">
The Changelog : A weekly conversation that gets to the heart of open source
technologies and the people who create them.</a></li>
<li><a href="https://cynicaldeveloper.com" target="_blank" rel="noopener noreferrer">
The Cynical Developer : A podcast that aims to help you to improve your development
knowledge and career, through explaining the latest and greatest in development
technology and providing you with what you need to succeed as a developer. Covering
Desktop, web, and mobile development, mainly around the .Net Stack but often
looking into other software and frameworks.</a></li>
<li><a href="blockchain.global/blockchain-innovation" target="_blank" rel="noopener noreferrer">
Blockchain Insider by 11:FS : Podcast to learn about the Blockchain Technology.</a></li>
<li><a target="_blank" rel="noopener noreferrer" href="unchainedpodcast.co">
Unchained Podcast to learn about the Blockchain Technology.</a></li>
<li><a href="https://talkpython.fm/" target="_blank" rel="noopener noreferrer">
Talk python to me Podcast to learn about Python through interviews and discussions.</a></li>
<li><a href="https://pythonbytes.fm" target="_blank" rel="noopener noreferrer">
Python bytes Podcast to learn about the latest happenings and trends in Python.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end podcasts ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ tutorials ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="tutorials">
<summary>Tutorials Online</summary>
<br>
<ul class="list-styles2">
<li><a href="https://web.dev/learn/html/" target="_blank" rel="noopener noreferrer">
Web Dev Tutorial on HTML.</a></li>
<li><a href="https://web.dev/learn/css/" target="_blank" rel="noopener noreferrer">
Web Dev Tutorial on CSS.</a></li>
<li><a href="https://wildlyinaccurate.com/a-hackers-guide-to-git/" target="_blank" rel="noopener noreferrer">
++A Hacker's Guide to Git : for those wanting to learn git with a solid foundation.</a></li>
<li><a href="http://duartes.org/gustavo/blog/best-of/" target="_blank" rel="noopener noreferrer">
Best of - Gustavo Duarte : contains articles on various topics</a></li>
<li><a href="https://indradhanush.github.io/blog/writing-a-unix-shell-part-3/" target="_blank" rel="noopener noreferrer">
Writing a Unix Shell.</a></li>
<li><a href="http://www.le.ac.uk/users/rjm1/cotter/index.htm" target="_blank" rel="noopener noreferrer">
Introduction to C Programming.</a></li>
<li><a href="https://www.viva64.com/en/b/0533/" target="_blank" rel="noopener noreferrer">
C++17 : A guide of C++17.</a></li>
<li><a href="http://users.cs.cf.ac.uk/Dave.Marshall/C/CE.html" target="_blank" rel="noopener noreferrer">
C Programming.</a></li>
<li><a href="https://www.chiark.greenend.org.uk/~sgtatham/cdescent/" target="_blank" rel="noopener noreferrer">
The Descent to C : for those moving to C from some higher programming language like java or python.</a></li>
<li><a href="http://cs.fit.edu/~mmahoney/cse2050/how2cpp.html" target="_blank" rel="noopener noreferrer">
How to Program in C++ : Good resource for revising C++ topics and STL.</a></li>
<li><a href="https://hackr.io/tutorials/learn-c-plus-plus" target="_blank" rel="noopener noreferrer">
Programming Community Curated C++ Resources : resources recommended by developers.</a></li>
<li><a href="https://www.slideshare.net/olvemaudal/deep-c" target="_blank" rel="noopener noreferrer">
Deep C : very good presentation on C language.</a></li>
<li><a href="https://cryptohack.org/" target="_blank" rel="noopener noreferrer">
CryptoHack : Learn cryptography through challenges and tutorials. Has a
leaderboard and new challenges are added every few months.</a></li>
<li><a href="http://prismoskills.appspot.com/lessons/Dynamic_Programming/Chapter_01_-_Introduction.jsp"
target="_blank" rel="noopener noreferrer">
Dynamic programming - PrismoSkills : very good resource if want to learn how to solve DP problems.</a></li>
<li><a href="http://cs.lmu.edu/~ray/classes/dsa/" target="_blank" rel="noopener noreferrer">
CMSI 281: Data Structures : lightweight introduction to DS</a></li>
<li><a href="http://thume.ca/2017/06/17/tree-diffing/" target="_blank" rel="noopener noreferrer">
Algorithm Using Dynamic Programming and A* : Designing a Tree Diff Algorithm
Using Dynamic Programming and A*.</a></li>
<li><a href="http://opendatastructures.org" target="_blank" rel="noopener noreferrer">
Open Data Structures : Excellent resource for learning about DS and algos, provides
code in various languages C++, Java, and pseudocode.</a></li>
<li><a href="http://www.cheat-sheets.org/sites/sql.su/" target="_blank" rel="noopener noreferrer">
SQL (Structured Query Language) in one page : SQL.SU : a very good SQL cheat sheet.</a></li>
<li><a href="https://www.youtube.com/user/mycodeschool/videos" target="_blank" rel="noopener noreferrer">
Mycodeschool : Data structures and algorithms tutorials.</a></li>
<li><a href="http://www.mysqltutorial.org/" target="_blank" rel="noopener noreferrer">
MySQL Tutorial.</a></li>
<li><a href="https://vim.rtorr.com" target="_blank" rel="noopener noreferrer">
vim.rtorr : Vim Cheat Sheet.</a></li>
<li><a href="http://www.openvim.com/tutorial.html" target="_blank" rel="noopener noreferrer">
Open Vim : Interactive Vim tutorials.</a></li>
<li><a href="http://www.bash.academy" target="_blank" rel="noopener noreferrer">
The Bash Academy : The Bash Academy is an initiative to promote the bash shell
language and educate people on its use.</a></li>
<li><a href="http://learnshell.org" target="_blank" rel="noopener noreferrer">
Learn Shell Programming : This website is intended for everyone who wishes
to learn programming with Unix/Linux shell interpreters.</a></li>
<li><a href="http://linuxcommand.org" target="_blank" rel="noopener noreferrer">
Learning the shell.</a></li>
<li><a href="https://vimtutorplus.herokuapp.com/exercise/1" target="_blank"
rel="noopener noreferrer">VimTutor+ : Learn VIM from the browser.</a></li>
<li><a href="https://www.dartmouth.edu/~rc/classes/ksh/print_pages.shtml"
target="_blank" rel="noopener noreferrer">Unix Shell : Unix shell scripting
with ksh/bash.</a></li>
<li><a href="https://linuxjourney.com" target="_blank" rel="noopener noreferrer">
Linux Journey : good site for learning Linux.</a></li>
<li><a href="https://ryanstutorials.net/linuxtutorial/" target="_blank"
rel="noopener noreferrer">Linux Tutorial : good resource for learning Linux.</a></li>
<li><a href="http://freeengineer.org/learnUNIXin10minutes.html"
target="_blank" rel="noopener noreferrer">Learn UNIX in 10 minutes.</a></li>
<li><a href="https://missing.csail.mit.edu/" target="_blank" rel="noopener noreferrer">
++Missing Semester : The missing semester of your computer science education.</a></li>
<li><a href="https://guides.github.com/features/mastering-markdown/" target="_blank"
rel="noopener noreferrer">More about Github-flavored markdown.</a></li>
<li><a href="http://www.techotopia.com/index.php/MySQL_Essentials" target="_blank"
rel="noopener noreferrer">MySQL Essentials.</a></li>
<li><a href="https://www2.cs.uic.edu/~jbell/CourseNotes/OperatingSystems/"
target="_blank" rel="noopener noreferrer">
OS Course Notes : Chapter-wise course notes according to Galvin's book.</a></li>
<li><a href="https://en.wikipedia.org/wiki/TCP/IP_Illustrated" target="_blank"
rel="noopener noreferrer">TCP/IP Illustrated Series.</a></li>
<li><a href="http://guide.bash.academy" target="_blank" rel="noopener noreferrer">
The Bash Guide : a very good guide for learning the Bash Shell.</a></li>
<li><a
href="http://product.half.ebay.com/The-UNIX-Programming-Environment-by-Brian-W-Kernighan-and-Rob-Pike-1983-Other/54385&tg=info"
target="_blank" rel="noopener noreferrer">The Unix Programming Environment.</a></li>
<li><a href="https://www.topcoder.com/community/data-science/data-science-tutorials/"
target="_blank" rel="noopener noreferrer">
TopCoder Tutorials.</a></li>
<li><a href="https://www.tutorialspoint.com" target="_blank" rel="noopener noreferrer">
Tutorialspoint : Text and Video Tutorials for UPSC, IAS, PCS, Civil Services,
Banking, Aptitude, Questions, Answers, Explanation, Interview, Entrance, Exams,
Solutions.</a></li>
<li><a href="http://snapsvg.io" target="_blank" rel="noopener noreferrer">
++Snap SVG : The JavaScript SVG library for the modern web.</a></li>
<li><a href="https://www.learnpython.org" target="_blank" rel="noopener noreferrer">
Learn Python : Free Interactive Python Tutorial.</a></li>
<li><a href="https://hackr.io/tutorials/learn-java" target="_blank" rel="noopener noreferrer">
Java tutorial : A programming community & a great place to find the best online
programming courses and tutorials.</a></li>
<li><a href="https://explainshell.com/" target="_blank" rel="noopener noreferrer">
Explain Shell: Match command-line arguments to their help text.</a></li>
<li><a href="https://speaking.io/" target="_blank" rel="noopener noreferrer">
Speaking io : Tips for public speaking.</a></li>
<li><a href="https://javascript.info/" target="_blank" rel="noopener noreferrer">
++Javascript.info : The Modern JavaScript Tutorial.</a></li>
<li><a href="https://flexboxfroggy.com" target="_blank" rel="noopener noreferrer">
++Flexbox Froggy : a game that teaches you how to use CSS flexbox properties.</a></li>
<li><a href="http://overapi.com" target="_blank" rel="noopener noreferrer">
++Collecting all the cheat sheets : cheat sheets for lots of programming languages.</a></li>
<li><a href="https://dzone.com" target="_blank" rel="noopener noreferrer">
++Programming, Web Development, and DevOps news, tutorials, and tools for
beginners to experts.</a></li>
<li><a href="https://www.subtle.press/course/poor-mans-ci" target="_blank"
rel="noopener noreferrer">Subtle | Poor Man's CI : Learn how continuous
integration platforms work under the hood, by building one of your own
on top of git with Node.js.</a></li>
<li><a href="https://www.w3schools.com" target="_blank" rel="noopener noreferrer">
++W3Schools Online Web Tutorials.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end tutorials ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ video-tutorials ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="video-tutorials">
<summary>Video Tutorials</summary>
<br>
<ul class="list-styles3">
<li><a href="https://www.youtube.com/channel/UCJUmE61LxhbhudzUugHL2wQ/videos"
target="_blank" rel="noopener noreferrer">
<em>++ codedamn : Front-End Web Dev Tutorials.</em></a></li>
<li><a href="https://www.codeschool.com" target="_blank" rel="noopener noreferrer">
Code School : A PluralSight Company and an Interactive learning destination for
aspiring and experienced Developers.</a></li>
<li><a href="https://www.youtube.com/user/CodingMadeEasy/videos" target="_blank"
rel="noopener noreferrer">CodingMadeEasy : C++ tutorials.</a></li>
<li><a href="https://www.youtube.com/playlist?list=PL6B940F08B9773B9F" target="_blank"
rel="noopener noreferrer">CS1: Higher Computing - Richard Buckland UNSW : a very
good introductory CS course.</a></li>
<li><a href="https://www.youtube.com/user/derekbanas/videos" target="_blank"
rel="noopener noreferrer"><em>Derek Banas : Good Quality Tutorials.</em></a></li>
<li><a href="http://openclassroom.stanford.edu/MainFolder/CoursePage.php?course=IntroToAlgorithms"
target="_blank" rel="noopener noreferrer">Design and Analysis of Algorithms.</a></li>
<li><a href="https://www.youtube.com/user/DevTipsForDesigners/videos" target="_blank"
rel="noopener noreferrer"><em>DevTips : Web Dev Tutorials.</em></a></li>
<li><a href="https://freecourses.github.io" target="_blank" rel="noopener noreferrer">
FreeCourses : Free courses about programming.</a></li>
<li><a href="https://www.youtube.com/channel/UC4DwZ2VXM2KWtzHjVk9M_xg/videos"
target="_blank" rel="noopener noreferrer">Kathryn Hodge: Has good videos for
beginners.</a></li>
<li><a href="https://www.youtube.com/user/mycodeschool/videos" target="_blank" rel="noopener noreferrer">
Mycodeschool : Data structures and algorithms tutorials.</a></li>
<li><a href="https://www.pluralsight.com" target="_blank" rel="noopener noreferrer">
Pluralsight : Learn Software Development, DevOps and Data Science through multiple short courses.</a></li>
<li><a href="https://www.youtube.com/user/thenewboston/videos" target="_blank" rel="noopener noreferrer">
thenewboston : good but with too much talk as compared to actual content.</a></li>
<li><a href="https://www.youtube.com/user/tusharroy2525/videos" target="_blank" rel="noopener noreferrer">
Tushar Roy : Algorithm and Data structure tutorial by an Indian Youtuber.</a></li>
<li><a href="http://derekwyatt.org/vim/tutorials/index.html" target="_blank" rel="noopener noreferrer">
Vim Tutorial Videos - Flarfnoogins : good video tutorial for learning vim.</a></li>
<li><a href="https://forum.xda-developers.com/general/xda-university" target="_blank" rel="noopener noreferrer">
XDA-University - Helping You Learn Android Development.</a></li>
<li><a href="https://www.khanacademy.org/computing/computer-science" target="_blank" rel="noopener noreferrer">
Khan Academy : learn about computer science for free.</a></li>
<li><a href="https://www.youtube.com/watch?v=1PhArSujR_A" target="_blank" rel="noopener noreferrer">
Functional programming : John Carmack on Functional Programming (2013).</a></li>
<li><a href="https://vimeo.com/album/2838732" target="_blank" rel="noopener noreferrer">
Video about vims] : A serie of tutorials about Vim.</a></li>
<li><a href="https://masteringnextjs.com/" target="_blank" rel="noopener noreferrer">
Mastering Next.js : A free serie of videos to learn Next.js.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end video-tutorials ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~ bash and shell scripting websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="bash-and-shell-scripting">
<summary>Bash and Shell Scripting</summary>
<br>
<ul class="list-styles">
<li><a href="http://tldp.org/LDP/abs/html/" target="_blank" rel="noopener noreferrer">
Advanced Bash-Scripting Guide : An in-depth exploration of the art of shell scripting.</a></li>
<li><a href="http://www.tldp.org/LDP/Bash-Beginners-Guide/html/" target="_blank" rel="noopener noreferrer">
Bash Guide for Beginners : Bash Guide for Beginners Machtelt Garrels.</a></li>
<li><a href="http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html" target="_blank" rel="noopener noreferrer">
Bash Programming : by Mike G mikkey at dynamo.com.ar.</a></li>
<li><a href="https://www.gnu.org/software/bash/manual/bashref.html" target="_blank" rel="noopener noreferrer">
Bash Reference Manual : Bash Reference Manual.</a></li>
<li><a href="http://mywiki.wooledge.org/BashGuide" target="_blank" rel="noopener noreferrer">
BashGuide : BashGuide - Greg's Wiki.</a></li>
<li><a href="http://conqueringthecommandline.com/book/frontmatter" target="_blank" rel="noopener noreferrer">
Conquering the Command Line : Unix and Linux Commands for Developers.</a></li>
<li><a href="https://www.airbornos.com" target="_blank" rel="noopener noreferrer">
Airbon OS : Private Google Docs Alternative.</a></li>
<li><a href="https://www.commandlinefu.com/commands/browse" target="_blank" rel="noopener noreferrer">
Commandlinefu : An extensive collection of Shell oneliners that can save your day on many occasions.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~ end bash and shell scripting websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ open source websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="open-source">
<summary>Open Source Websites</summary>
<br>
<!-- <div class="w3-container w3-left"> -->
<ul class="list-styles2">
<li><a href="https://opensource.com/article/20/5/open-source-javascript-frameworks">
9 open source JavaScript frameworks for front-end web development</a></li>
<li><a href="https://openhatch.org" target="_blank" rel="noopener noreferrer">
Open Hatch : OpenHatch is a non-profit dedicated to matching prospective free software
contributors with communities, tools, and education.</a></li>
<li><a href="https://sourceforge.net" target="_blank" rel="noopener noreferrer">
Source Forge : SourceForge hosts nearly 280,000 projects (at last count). It serves more
than 2 million downloads a day and includes apps and tools in a wide variety of categories.</a></li>
<li><a href="https://code.google.com/projecthosting" target="_blank" rel="noopener noreferrer">
Google Code : Google offers free hosting for open source projects using the Subversion or
Mercurial version control systems. It offers 2 GB of storage, integrated code review tools,
a wiki, and an issue tracker. The Google Code site also provides links to Google's many
publicly available APIs and other developer tools.</a></li>
<li><a href="https://launchpad.net" target="_blank" rel="noopener noreferrer">
Launch Pad : Maintained by Canonical, LaunchPad is particularly targeted at
projects that run on Ubuntu. It provides hosting for more than 21,000 projects
that use the Bazaar version control system.</a></li>
<li><a href="https://opensource.google.com" target="_blank" rel="noopener noreferrer">
Google Open Source : Google Open Source</a></li>
<li><a href="https://developers.redhat.com" target="_blank" rel="noopener noreferrer">
Red Hat Developer : The world's leading provider of open source solutions</a></li>
<li><a href="https://opensource.com" target="_blank" rel="noopener noreferrer">
Open Source : Open Source</a></li>
<li><a href="https://summerofcode.withgoogle.com" target="_blank" rel="noopener noreferrer">
Google Summer of Code : Google Summer of Code is a global program focused on bringing
more student developers into open source software development. Students work with an
open-source organization on a 3-month programming project during their break from
school.</a></li>
<li><a href="http://www.oswd.org" target="_blank" rel="noopener noreferrer">
Open Source Web Design : Open Source Web Design is a platform for sharing
standards-compliant free web design templates. We give web publishers a
voice through good design.</a></li>
<li><a href="https://wiki.mozilla.org/Security/Automation/Winter_Of_Security_2016"
target="_blank" rel="noopener noreferrer">Mozilla Winter of Security : The Winter
of Security (MWOS) is a program organized by Mozilla's Security teams to involve
students with Security projects. Students who have to perform a semester project
as part of their university curriculum can apply to one of the MWOS projects.</a></li>
<li><a href="https://bitbucket.org" target="_blank" rel="noopener noreferrer">
Bit Bucket : Like GitHub, BitBucket hosts both public and private projects.
On this site, open-source projects and private projects with fewer than five
users are free. It hosts more than 48,000 repositories, many of which are
searchable on the site.</a></li>
<li><a href="https://www.mediawiki.org/wiki/MediaWiki" target="_blank"
rel="noopener noreferrer">Media Wiki : MediaWiki is a free software
open source wiki package written in PHP, originally for use on Wikipedia.
It is now also used by several other projects of the non-profit Wikimedia
Foundation and by many other wikis, including this website, the home of
MediaWiki.</a></li>
<li><a href="https://codecuriosity.org" target="_blank" rel="noopener noreferrer">
Code Curiosity : CodeCuriosity is a platform that encourages contributions to
open source. Everyone is rewarded for their efforts, no matter how big or
small they are.</a></li>
<li><a href="https://www.codetriage.com" target="_blank" rel="noopener noreferrer">
Code Triage : Help out your favorite open-source projects and become a better
developer while doing it.</a></li>
<li><a href="http://issuehub.io" target="_blank" rel="noopener noreferrer">
Issue Hub : Contribute to Open Source. Search issue labels to find the
right project for you</a></li>
<li><a href="http://up-for-grabs.net" target="_blank" rel="noopener noreferrer">
Up for Grabs : This is a list of projects which have curated tasks specifically
for new contributors. These are a great way to get started with a project or to
help share the load of working on open source projects.</a></li>
<li><a href="http://www.firsttimersonly.com" target="_blank" rel="noopener noreferrer">
First Timers Only : Contributing to open source for the first time can be scary and
a little overwhelming. Perhaps you’re a Code Newbie or maybe you’ve been coding for
a while but haven’t found a project you felt comfortable contributing to.</a></li>
<li><a href="http://yourfirstpr.github.io" target="_blank" rel="noopener noreferrer">
Your First PR : Your First PR helps you get started contributing to Open Source by
showcasing great starter issues on GitHub and elsewhere.</a></li>
</ul>
<!-- </div> -->
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end open source websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ computer books websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="computer-books">
<summary>Computer Books</summary>
<br>
<ul class="list-styles3">
<li><a href="http://programming-motherfucker.com/become.html" target="_blank" rel="noopener noreferrer">
Become a Programmer, Mother!!! (list of books) : Exhaustive list of books from Zed A. Shaw.</a></li>
<li><a href="http://gatecse.in/best-books-for-gatecse/" target="_blank" rel="noopener noreferrer">
Best books for GATE CSE.</a></li>
<li><a href="https://cses.fi/book.html" target="_blank" rel="noopener noreferrer">
cses.fi/book.html.</a></li>
<li><a href="https://github.com/EbookFoundation/free-programming-books/blob/master/free-programming-books.md"
target="_blank" rel="noopener noreferrer">
github.com/vhf/free-programming-books : More than 500 free ebooks on almost any language you can think of.</a></li>
<li><a href="https://www.gitbook.com" target="_blank" rel="noopener noreferrer">
GitBook : GitBook helps your team write, collaborate, and publish content online.</a></li>
<li><a href="https://jakevdp.github.io/PythonDataScienceHandbook/" target="_blank" rel="noopener noreferrer">
Data Science course : Python Data Science Handbook.</a></li>
<li><a href="https://goalkicker.com" target="_blank" rel="noopener noreferrer">
Goal Kicker : Programming Notes for Professionals books.</a></li>
<li><a href="https://graphql.guide" target="_blank" rel="noopener noreferrer">
The GraphQL Guide : The complete guide to GraphQL, the new REST ✨.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end computer books websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~ moocs for learning something new websites ~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="moocs">
<summary>MOOCs for Learning</summary>
<br>
<ul class="list-styles">
<li><a href="https://www.class-central.com" target="_blank" rel="noopener noreferrer">
Class Central : a directory of 100,000+ student reviews of thousands of MOOCs.</a></li>
<li><a href="https://classpert.com" target="_blank" rel="noopener noreferrer">
Classpert : a website that gathers MOOCs and online courses from several providers, focusing on computer science and data science courses.</a></li>
<li><a href="https://docs.google.com/spreadsheets/d/1BD8BJJUNaX63m2QmySWMGDp71nx4W4MyyiIBlfMoN3Q/htmlview?sle=true#" target="_blank" rel="noopener noreferrer">
Computer Science Resources : list of MOOCs for autodidacts.</a></li>
<li><a href="https://www.coursera.org" target="_blank" rel="noopener noreferrer">
Coursera.org : Take the world's best courses, online.</a></li>
<li><a href="https://www.youtube.com/user/cs50tv/videos" target="_blank" rel="noopener noreferrer">
CS50 : A set of goods tutorials from cs50.</a></li>
<li><a href="https://www.edx.org" target="_blank" rel="noopener noreferrer">
edX : Free Online Courses, Advance Your Career, Improve Your Life.</a></li>
<li><a href="https://www.kadenze.com/courses?subjects%5B%5D=7" target="_blank" rel="noopener noreferrer">
Kadenze | Creative Programming : Programming courses focused on art and creativity.</a></li>
<li><a href="https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/" target="_blank" rel="noopener noreferrer">
MIT OCW Electrical Engineering and Computer Science.</a></li>
<li><a href="http://mooc.fi/english.html" target="_blank" rel="noopener noreferrer">
MOOC.fi : Free online courses from the University of Helsinki.</a></li>
<li><a href="http://nptel.ac.in" target="_blank" rel="noopener noreferrer">
NPTEL : Free online courses by IIT with certificates.</a></li>
<li><a href="https://github.com/prakhar1989/awesome-courses/blob/master/README.md" target="_blank" rel="noopener noreferrer">
prakhar1989/awesome-CS-courses : List containing large amount of CS courses.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~ end moocs for learning something new websites ~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ interview prep websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="interview-prep">
<summary>Interview Preparation</summary>
<br>
<ul class="list-styles2">
<li><a href="http://www.java67.com/2013/04/10-frequently-asked-sql-query-interview-questions-answers-database.html"
target="_blank" rel="noopener noreferrer">
10 Frequently asked SQL Query Interview Questions.</a></li>
<li><a href="http://puzzles.nigelcoldwell.co.uk" target="_blank" rel="noopener noreferrer">
A Collection of Quant Riddles With Answers.</a></li>
<li><a href="https://www.hiredintech.com/algorithm-design" target="_blank" rel="noopener noreferrer">
Algorithm design canvas.</a></li>
<li><a href="http://www.indiabix.com" target="_blank" rel="noopener noreferrer">
Aptitude Questions and Answers : Quant and aptitude preparation.</a></li>
<li><a href="https://www.techinterview.org" target="_blank" rel="noopener noreferrer">
A site for technical interview questions, brain teasers, puzzles, quizzles : whatever the heck those are)
and other things that make you think!</a></li>
<li><a href="https://www.reddit.com/r/cscareerquestions/comments/2lzc4h/big_collection_of_interview_preparation_links/"
target="_blank" rel="noopener noreferrer">
Big collection of interview preparation links • /r/cscareerquestions.</a></li>
<li><a href="http://bigocheatsheet.com/#" target="_blank" rel="noopener noreferrer">
Big-O Algorithm Complexity Cheat Sheet.</a></li>
<li><a href="http://ssp.impulsetrain.com/big-o.html" target="_blank" rel="noopener noreferrer">
BIG O Misconceptions.</a></li>
<li><a href="https://gist.github.com/dideler/2365607" target="_blank" rel="noopener noreferrer">
Bitwise tricks.</a></li>
<li><a href="https://github.com/Twipped/InterviewThis" target="_blank" rel="noopener noreferrer">
ChiperSoft/InterviewThis : questions to ask during on a interview to know more about the company.</a></li>
<li><a href="https://www.codeproject.com" target="_blank" rel="noopener noreferrer">
Code Project : For those who code!</a></li>
<li><a href="http://javahonk.com/core-java-interview-questions/"
target="_blank" rel="noopener noreferrer">
Core Java Interview questions - Interview question on each topic.</a></li>
<li><a href="http://www.gowrikumar.com/c/index.php" target="_blank" rel="noopener noreferrer">
C PUZZLES, Some interesting C problems.</a></li>
<li><a href="http://web.stanford.edu/class/cs9/" target="_blank" rel="noopener noreferrer">
CS9: Problem-Solving for the CS Technical Interview.</a></li>
<li><a href="http://gurmeet.net/puzzles/" target="_blank" rel="noopener noreferrer">Delightful Puzzles.</a></li>
<li><a href="https://stackoverflow.com/questions/11094330/determining-the-big-o-runtimes-of-these-different-loops"
target="_blank" rel="noopener noreferrer">Determining the big-O runtimes of these different loops?
: really good stackoverflow question that covers basics of calculating runtime complexity.</a></li>
<li><a href="https://sites.google.com/site/steveyegge2/five-essential-phone-screen-questions"
target="_blank" rel="noopener noreferrer">five-essential-phone-screen-questions - steveyegge2.</a></li>
<li><a href="http://placementsindia.blogspot.com" target="_blank" rel="noopener noreferrer">
Freshers Interviews.</a></li>
<li><a href="http://www.gainlo.co/#!/" target="_blank" rel="noopener noreferrer">
Gainlo : Mock interview from professionals </a></li>
<li><a href="http://www.geeksforgeeks.org" target="_blank" rel="noopener noreferrer">
GeeksforGeeks - A computer science portal for geeks : also subscribe to their feeds to get links to their new articles.</a></li>
<li><a href="https://github.com/odino/interviews" target="_blank" rel="noopener noreferrer">
github.com/odino/interviews : list of important questions for interviews.</a></li>
<li><a href="http://www.lifeclever.com/give-your-resume-a-face-lift/" target="_blank"
rel="noopener noreferrer">Give your résumé a face lift.</a></li>
<li><a href="https://www.reddit.com/r/cscareerquestions/comments/1jov24/heres_how_to_prepare_for_tech_interviews/"
target="_blank" rel="noopener noreferrer">Here's How to Prepare for Tech Interviews • /r/cscareerquestions.</a></li>
<li><a href="http://www.artofmanliness.com/2016/01/05/tell-me-a-little-about-yourself/"
target="_blank" rel="noopener noreferrer">How to Answer "Tell Me a Little About Yourself"
- The Art of Manliness.</a></li>
<li><a href="http://www.icsjobportal.com/blog/job-interview-questions"
target="_blank" rel="noopener noreferrer">How to Answer the Toughest
40 Job Interview Questions - ICS Job Portal.</a></li>
<li><a href="http://haseebq.com/how-to-break-into-tech-job-hunting-and-interviews"
target="_blank" rel="noopener noreferrer">How to Break Into the Tech Industry :
a Guide to Job Hunting and Tech Interviews.</a></li>
<li><a href="http://kelukelu.me/interview/index.html" target="_blank" rel="noopener noreferrer">
How to interview.</a></li>
<li><a href="http://se7so.blogspot.com/2014/01/how-to-prepare-for-interview-1.html"
target="_blank" rel="noopener noreferrer">How to prepare for an interview - 1.</a></li>
<li><a href="http://placement-iit2013.blogspot.com">IIT Delhi Placement Experience.</a></li>
<li><a href="https://github.com/samwincott/Internship-Guide"
target="_blank" rel="noopener noreferrer">
samwincott/Internship-Guide : An aggregrate of links related to internships.</a></li>
<li><a href="https://blog.janestreet.com/interviewing-at-jane-street/"
target="_blank" rel="noopener noreferrer">
Interviewing At Jane Street : Interviewing At Jane Street.</a></li>
<li><a href="http://javahonk.com/category/interview/" target="_blank" rel="noopener noreferrer">
Interview Archives - Java Honk.</a></li>
<li><a href="https://www.interviewcake.com/" target="_blank" rel="noopener noreferrer">
Interview Cake : Free and Paid course options offering high quality technical interview practice.</a></li>
<li><a href="http://www.artofmanliness.com/2012/08/06/how-to-ace-a-job-interview/"
target="_blank" rel="noopener noreferrer">Job Interview: How to Ace a Job Interview - The Art of Manliness.</a></li>
<li><a href="https://lifehacker.com/tag/job-interviews" target="_blank" rel="noopener noreferrer">
Job interviews News, Videos, Reviews and Gossip - Lifehacker.</a></li>
<li><a href="https://www.thebalance.com/job-interview-questions-and-answers-2061204" target="_blank" rel="noopener noreferrer">
Job Interview Questions and Best Answers.</a></li>
<li><a href="https://github.com/kimberli/interviews" target="_blank" rel="noopener noreferrer">
kimberli/interviews : study sheet for Interview.</a></li>
<li><a href="https://leetcode.com/" target="_blank" rel="noopener noreferrer">
LeetCode : A new way to learn.here you can prepare for your interview.</a></li>
<li><a href="https://learnersbucket.com" target="_blank" rel="noopener noreferrer">
Learnersbucket : Data Structures and Algorithms in Javascript.</a></li>
<li><a href="https://github.com/mission-peace/interview/wiki" target="_blank" rel="noopener noreferrer">
Mission-peace/interview problems : A large collection of coding interview problems.</a></li>
<li><a href="https://www.pramp.com/ref/gt1" target="_blank" rel="noopener noreferrer">
Pramp - A free on demand interview practice platform for Software Engineers : Practice coding interviews with real peers.</a></li>
<li><a href="https://leetcode.com/problemset/algorithms/" target="_blank" rel="noopener noreferrer">
Problems - LeetCode OJ : Coding practice for interviews.</a></li>
<li><a href="http://www.programmerinterview.com" target="_blank" rel="noopener noreferrer">
Programmer And Software Interview Questions Answers.</a></li>
<li><a href="https://www.reddit.com/user/ashish2199/m/puzzles/" target="_blank" rel="noopener noreferrer">
Reddit.com/user/ashish2199/m/puzzles : Logic Puzzles.</a></li>
<li><a href="https://www.jitbit.com/news/181-jitbits-sql-interview-questions/" target="_blank" rel="noopener noreferrer">
SQL interview questions : great SQL test.</a></li>
<li><a href="http://stevestedman.com/wp-content/uploads/VennDiagram1.pdf" target="_blank" rel="noopener noreferrer">
SQL Joins explained using venn diagram.</a></li>
<li><a href="https://github.com/svozniuk/java-interviews" target="_blank" rel="noopener noreferrer">
svozniuk/java-interviews : Java interview questions.</a></li>
<li><a href="https://www.techiedelight.com" target="_blank" rel="noopener noreferrer">
Techie Delight : Leading platform for technical interview preparation.</a></li>
<li><a href="http://www.datsi.fi.upm.es/~frosal/docs/25mdq.html" target="_blank" rel="noopener noreferrer">
The 25 most difficult HR questions.</a></li>
<li><a href="https://www.programcreek.com/2012/11/top-10-algorithms-for-coding-interview/" target="_blank" rel="noopener noreferrer">
Top 10 Algorithms for Coding Interview : Algorithms for Coding Interview.</a></li>
<li><a href="http://cheatsheetworld.com/programming/unix-linux-cheat-sheet/" target="_blank" rel="noopener noreferrer">
Unix / Linux Cheat Sheet.</a></li>
<li><a href="https://www.reddit.com/r/india/comments/1clgdj/unsolicited_advice_for_job_seekers_and_employers/"
target="_blank" rel="noopener noreferrer">Unsolicited_advice_for_job_seekers_and_employers.</a></li>
<li><a href="https://visualgo.net/en" target="_blank" rel="noopener noreferrer">Visualising Data
Structures and Algorithms through Animation.</a></li>
<li><a href="https://www.hiredintech.com/app" target="_blank" rel="noopener noreferrer">We Help
Coders Get Hired : website offering courses on system design, interview strategies, soft skills etc.</a></li>
<li><a href="https://www.reddit.com/r/cscareerquestions/comments/209rkq/what_are_your_goto_questions_for_the_do_you_have/"
target="_blank" rel="noopener noreferrer">what_are_your_goto_questions_for_the_do_you_have?</a></li>
<li><a href="https://www.reddit.com/r/cscareerquestions/comments/1b8wa3/why_you_make_less_money/" target="_blank"
rel="noopener noreferrer">Why You Make Less Money.</a></li>
<li><a href="https://www.ocf.berkeley.edu/~wwu/riddles/hard.shtml" target="_blank" rel="noopener noreferrer">
wu :: riddles(hard) : logic puzzles and riddles.</a></li>
<li><a href="https://blog.usejournal.com/what-i-learned-from-interviewing-at-multiple-ai-companies-and-start-ups-a9620415e4cc#fa32"
target="_blank" rel="noopener noreferrer">What I Learned from Interviewing at multiple AI Companies and Start-Ups.</a></li>
<li><a href="https://techinterviewhandbook.org/introduction/" target="_blank" rel="noopener noreferrer">
Tech Interview Handbook : Guide on cracking tech interviews.</a></li>
</ul>
</details>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ end interview prep websites ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<hr style="width:100%;height:2px;color:black;background-color:black">
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ jobs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<details id="jobs">
<summary>IT Job Search</summary>
<br>
<ul class="list-styles3">
<li><a href="https://angel.co/" target="_blank" rel="noopener noreferrer">
AngelList: Website for startups, angel investors, and jobs-seekers looking
to work at startup.</a></li>
<li><a href="https://hiring.careerbuilder.com" target="_blank"
rel="noopener noreferrer">CareerBuilder: One of the largest
job boards, providing job listings, resume posting, and career
advice and resources to job seekers.</a></li>
<li><a href="https://www.dice.com" target="_blank"
rel="noopener noreferrer">Dice : Dice is the leading
site for tech job seekers. You can search by company,
job title, keyword, employment type, and location.</a></li>
<li><a href="https://devsnap.io" target="_blank"
rel="noopener noreferrer">Devsnap : Devsnap is a job aggregator for developer jobs.</a></li>