-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoding_stuff_while_travelling.txt
More file actions
6633 lines (5062 loc) · 295 KB
/
coding_stuff_while_travelling.txt
File metadata and controls
6633 lines (5062 loc) · 295 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
coding stuff while travelling
April 26 2018
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/introduction-to-javascript/exercises/math-operators
April 27
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/introduction-to-javascript/exercises/properties
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/introduction-to-javascript/exercises/built-in-methods
April 28th?
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/introduction-to-javascript/exercises/built-in-methods
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/introduction-to-javascript/exercises/libraries
// from: https://www.codecademy.com/learn/learn-java (reset progress)
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/whats-your-name
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/data-types-1
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/introduction-to-javascript/exercises/comments
April 30th
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/data-types-2
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/data-types-3
May 1st
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/variables
May 2nd
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/whitespace
// from: https://www.hackerrank.com/domains/python/py-introduction
https://www.hackerrank.com/challenges/py-if-else/problem
https://www.hackerrank.com/challenges/py-hello-world/problem
https://www.hackerrank.com/challenges/solve-me-first/problem
May 3rd
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/comments
May the 4th be with you
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/math-1
https://www.hackerrank.com/challenges/python-arithmetic-operators/problem
May 5th
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/math-2
May 6th
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/relational-operators
May 7th (Day X)
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/equality-operators
May 8th
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/generalizations
https://www.hackerrank.com/challenges/python-lists/tutorial
May 9th
https://www.codecademy.com/en/courses/learn-java/lessons/conditionals-control-flow/exercises/decisions
May 10th
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/boolean-operators-and
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/boolean-operators-or
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/boolean-operators-not
May 11th
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/boolean-operators-precedence
Back!
May 12th
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/if-statement
May 13th
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/if-else
May 14th
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/if-elseif-else
May 15th
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/ternary-conditional
May 16th
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/switch-statement
// from: https://www.hackerrank.com/domains/cpp/cpp-introduction
https://www.hackerrank.com/challenges/solve-me-first/problem
https://www.hackerrank.com/challenges/cpp-hello-world/problem
May 17th
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/generalizations-conditionals
May 18th
https://www.codecademy.com/en/courses/learn-java/lessons/object-oriented-programming/exercises/object-oriented-overview
May 19th
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/classes-syntax
May20th
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/classes-constructors
May 21st
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/classes-instance-variables
// from: https://www.hackerrank.com/domains/cpp/cpp-introduction
https://www.hackerrank.com/challenges/c-tutorial-conditional-if-else/problem
May 22
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/classes-constructor-parameters
May 23rd
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/main-method
May 24th
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/objects
May 25th
articles on codeing I forgot to save
Katalon - automated testing (play around with it)
May 26th
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/methods-1
May 27th
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/using-methods-1
May 28th
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/methods-2
May 29th
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/using-methods-2
May 30th
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/inheritance
May 31st
https://www.codecademy.com/courses/learn-java/lessons/object-oriented-programming/exercises/generalizations-oop-java
// new beta is live!
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements
June 1st
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/data-structures
// more beta:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/headline-with-the-h2-element
June 2nd
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/for-loop
// more beta:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-element/
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/fill-in-the-blank-with-placeholder-text
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/uncomment-html
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/comment-out-html
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/delete-html-elements
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/add-images-to-your-website
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-external-pages-with-anchor-elements
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements
June 3rd
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/arraylist
// beta
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph/
June 4th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/arraylist-manipulation
// beta
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/make-dead-links-using-the-hash-symbol
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/turn-an-image-into-a-link
// stuff I haven't covered yet
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-visual-balance-using-the-text-align-property
June 5th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/arraylist-access
June 6th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/arraylist-insertion
// stuff I haven't covered yet
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-width-of-an-element-using-the-width-property/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-em-tag-to-italicize-text
// beta review for content changes
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-bulleted-unordered-list
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-an-ordered-list
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-text-field
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/add-placeholder-text-to-a-text-field
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-form-element
June 7th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/arraylist-iterating
June 8th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/for-each-loop
// beta
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/make-an-image-responsive/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-del-tag-to-strikethrough-text/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-horizontal-line-using-the-hr-element
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-background-color-property-of-text
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-size-of-a-header-versus-a-paragraph-tag
// redoing stuff
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/use-html5-to-require-a-field
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-radio-buttons
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-checkboxes
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/check-radio-buttons-and-checkboxes-by-default
June 9th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/hashmap
June 10th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/hashmap-manipulation
June 11th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/hashmap-access
June 12th
https://www.codecademy.com/courses/learn-java/lessons/data-structures/exercises/hashmap-iterating
June 13th
// from: https://www.codecademy.com/learn/learn-express
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/introduction
// from fCC new stuff (beta)
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/add-a-box-shadow-to-a-card-like-element/
June 14th
// from the express stuff
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/starting-a-server
// fCC beta new stuff
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/decrease-the-opacity-of-an-element
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-text-transform-property-to-make-text-uppercase
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/set-the-font-size-for-multiple-heading-elements
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/set-the-font-weight-for-multiple-heading-elements
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/set-the-font-size-of-paragraph-text
// other beta I already did (html)
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/nest-many-elements-within-a-single-div-element/
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document
June 15th
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/writing-your-first-route
June 16th
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/sending-a-response
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/matching-route-paths
June 17th
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/getting-a-single-expression
June 18th
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/setting-status-codes
June 19th
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/matching-longer-paths
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/other-http-methods
// from fCC new stuff (beta)
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/set-the-line-height-of-paragraphs/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-hover-state-of-an-anchor-tag
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/change-an-elements-relative-position
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/move-a-relatively-positioned-element-with-css-offsets
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/lock-an-element-to-its-parent-with-absolute-positioning
// other beta I already did (CSS)
// https://learn.freecodecamp.org/responsive-web-design/basic-css
https://learn.freecodecamp.org/responsive-web-design/basic-css/change-the-color-of-text
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-css-selectors-to-style-elements
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-a-css-class-to-style-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/style-multiple-elements-with-a-css-class
June 20th
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/using-queries
June 21st
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/matching-by-http-verb
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/creating-an-expression
June 22nd
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/deleting-old-expressions
// redo JIRA lynda.com course
// from: https://www.lynda.com/course-tutorials/Learning-JIRA-Software/545920-2.html
Welcome - From: Learning JIRA Software (2017)
https://www.lynda.com/course-tutorials/Welcome/545920/579559-4.html
What you should know - From: Learning JIRA Software (2017)
https://www.lynda.com/course-tutorials/What-you-should-know/545920/579560-4.html
Setup (Optional) - From: Learning JIRA Software (2017)
https://www.lynda.com/course-tutorials/Setup-optional/545920/579561-4.html
What is JIRA - From: Learning JIRA Software (2017)
https://www.lynda.com/course-tutorials/What-JIRA/545920/579563-4.html
Project Management with JIRA - From: Learning JIRA Software (2017)
https://www.lynda.com/course-tutorials/Project-management-JIRA/545920/579564-4.html
// fCC beta new stuff
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/lock-an-element-to-the-browser-window-with-fixed-positioning/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/push-elements-left-or-right-with-the-float-property
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/change-the-position-of-overlapping-elements-with-the-z-index-property
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/center-an-element-horizontally-using-the-margin-property
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/learn-about-complementary-colors
// other beta I already did (CSS)
https://learn.freecodecamp.org/responsive-web-design/basic-css/change-the-font-size-of-an-element/
https://learn.freecodecamp.org/responsive-web-design/basic-css/set-the-font-family-of-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/import-a-google-font
https://learn.freecodecamp.org/responsive-web-design/basic-css/specify-how-fonts-should-degrade
https://learn.freecodecamp.org/responsive-web-design/basic-css/size-your-images
June 23rd
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/adding-animals-routes
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routes/exercises/wrap-up
// other beta I already did (for review)
https://learn.freecodecamp.org/responsive-web-design/basic-css/add-borders-around-your-elements
https://learn.freecodecamp.org/responsive-web-design/basic-css/add-rounded-corners-with-border-radius
https://learn.freecodecamp.org/responsive-web-design/basic-css/make-circular-images-with-a-border-radius
https://learn.freecodecamp.org/responsive-web-design/basic-css/give-a-background-color-to-a-div-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/set-the-id-of-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-an-id-attribute-to-style-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/adjust-the-padding-of-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/adjust-the-margin-of-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/add-a-negative-margin-to-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/add-different-padding-to-each-side-of-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/add-different-margins-to-each-side-of-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-clockwise-notation-to-specify-the-padding-of-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-clockwise-notation-to-specify-the-margin-of-an-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-attribute-selectors-to-style-elements
https://learn.freecodecamp.org/responsive-web-design/basic-css/understand-absolute-versus-relative-units
// fCC beta 'new stuff'
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/learn-about-tertiary-colors/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-color-of-various-elements-to-complementary-colors
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-hue-of-a-color
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-gradual-css-linear-gradient
June 24th
https://www.codecademy.com/courses/learn-express-routes/lessons/learn-express-routers/exercises/this-file-is-too-big
June 25th
// review CSS grids
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/introduction-css-grid-ii
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/grid-template-areas
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/overlapping-elements
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/justify-items
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/justify-content
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/align-items
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/align-content
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/justify-align-self
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/implicit-explicit-grid
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/grid-auto
// new stuff - finish CSS grid
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/grid-auto-flow
https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-ii/exercises/review-ii
// other beta I already did (for review)
https://learn.freecodecamp.org/responsive-web-design/basic-css/style-the-html-body-element/
https://learn.freecodecamp.org/responsive-web-design/basic-css/inherit-styles-from-the-body-element
https://learn.freecodecamp.org/responsive-web-design/basic-css/prioritize-one-style-over-another
https://learn.freecodecamp.org/responsive-web-design/basic-css/override-styles-in-subsequent-css
https://learn.freecodecamp.org/responsive-web-design/basic-css/override-class-declarations-by-styling-id-attributes
// fCC beta new stuff
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-a-css-linear-gradient-to-create-a-striped-element/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-texture-by-adding-a-subtle-pattern-as-a-background-image
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-css-transform-scale-property-to-change-the-size-of-an-element
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-css-transform-scale-property-to-scale-an-element-on-hover
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-css-transform-property-skewx-to-skew-an-element-along-the-x-axis
June 26th
// to do: JQuery - redo
https://www.codecademy.com/courses/learn-jquery-traversing-the-dom/lessons/traversing-the-dom/exercises/the-dom-tree
https://www.codecademy.com/courses/learn-jquery-traversing-the-dom/lessons/traversing-the-dom/exercises/children
https://www.codecademy.com/courses/learn-jquery-traversing-the-dom/lessons/traversing-the-dom/exercises/siblings-parent
https://www.codecademy.com/courses/learn-jquery-traversing-the-dom/lessons/traversing-the-dom/exercises/closest
// fCC beta new stuff
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-the-css-transform-property-skewy-to-skew-an-element-along-the-y-axis/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-graphic-using-css/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-more-complex-shape-using-css-and-html
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/learn-how-the-css-keyframes-and-animation-properties-work
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-css-animation-to-change-the-hover-state-of-a-button
June 27th
https://www.codecademy.com/courses/learn-jquery-traversing-the-dom/lessons/traversing-the-dom/exercises/next
https://www.codecademy.com/courses/learn-jquery-traversing-the-dom/lessons/traversing-the-dom/exercises/find
June 28th
https://www.codecademy.com/courses/learn-jquery-traversing-the-dom/lessons/traversing-the-dom/exercises/review
// other beta I already did (for review)
https://learn.freecodecamp.org/responsive-web-design/basic-css/override-class-declarations-with-inline-styles/
https://learn.freecodecamp.org/responsive-web-design/basic-css/override-all-other-styles-by-using-important
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-hex-code-for-specific-colors
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-hex-code-to-mix-colors
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-abbreviated-hex-code
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-rgb-values-to-color-elements
// fCC beta new stuff
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/modify-fill-mode-of-an-animation/
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-movement-using-css-animation
// new course on SASS (redoing it)
// https://www.codecademy.com/learn/learn-sass
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/types
June 29th
// Sass redo
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/hello-sass
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/compile-sass
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/sass-features
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/nesting-sass
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/nesting-properties
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/variables
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/types
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/maps-and-lists
// other beta I already did (for review) - the variable stuff is new
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-rgb-to-mix-colors/
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-css-variables-to-change-several-elements-at-once
https://learn.freecodecamp.org/responsive-web-design/basic-css/create-a-custom-css-variable
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-a-custom-css-variable
https://learn.freecodecamp.org/responsive-web-design/basic-css/attach-a-fallback-value-to-a-css-variable
// fCC beta new stuff
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-visual-direction-by-fading-an-element-from-left-to-right
// reading related to the internet and coding
https://medium.com/@thebeginner/the-beginners-guide-to-understanding-your-internet-speed-dfce26bc88b2
June 30th
https://www.codecademy.com/courses/learn-sass/lessons/hello-sass/exercises/sass-generalizations
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/parent-selector
// fCC beta new stuff
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/animate-elements-continually-using-an-infinite-animation-count
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/make-a-css-heartbeat-using-an-infinite-animation-count
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/animate-elements-at-variable-rates
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/animate-multiple-elements-at-variable-rates
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/change-animation-timing-with-keywords
// new CSS
https://learn.freecodecamp.org/responsive-web-design/basic-css/cascading-css-variables/
https://learn.freecodecamp.org/responsive-web-design/basic-css/change-a-variable-for-a-specific-area
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-a-media-query-to-change-a-variable
// new applied accessibility
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/add-a-text-alternative-to-images-for-visually-impaired-accessibility
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/know-when-alt-text-should-be-left-blank
July 1st
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/mixins
// new applied accessibility
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/use-headings-to-show-hierarchical-relationships-of-content
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/jump-straight-to-the-content-using-the-main-element
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/wrap-content-in-the-article-element
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/make-screen-reader-navigation-easier-with-the-header-landmark
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/make-screen-reader-navigation-easier-with-the-nav-landmark
// applied visual design
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/learn-how-bezier-curves-work
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/use-a-bezier-curve-to-move-a-graphic
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/make-motion-more-natural-using-a-bezier-curve
June 2nd
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/mixin-arguments
// applied accessibility
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/make-screen-reader-navigation-easier-with-the-footer-landmark/
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/improve-accessibility-of-audio-content-with-the-audio-element
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/improve-chart-accessibility-with-the-figure-element
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/improve-form-field-accessibility-with-the-label-element
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/wrap-radio-buttons-in-a-fieldset-element-for-better-accessibility
// Responsiove design
// form: https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/create-a-media-query
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/make-an-image-responsive
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/use-a-retina-image-for-higher-resolution-displays
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/make-typography-responsive
June 3rd
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/default-and-multiple-arguments
// applied accessibility
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/add-an-accessible-date-picker
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/make-elements-only-visible-to-a-screen-reader-by-using-custom-css
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/improve-readability-with-high-contrast-text
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-using-sufficient-contrast
// flexbox
// from: https://learn.freecodecamp.org/responsive-web-design/css-flexbox
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-display-flex-to-position-two-boxes
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/add-flex-superpowers-to-the-tweet-embed
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-row
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column
July 4th
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/multiple-arguments
// applied accessibility
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/avoid-colorblindness-issues-by-carefully-choosing-colors-that-convey-information/
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/make-links-navigatable-with-html-access-keys
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/use-tabindex-to-add-keyboard-focus-to-an-element
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/use-tabindex-to-specify-the-order-of-keyboard-focus-for-several-elements
// npm
// https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/
July 5th
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/mixins-ii
// flexbox
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-a-column-in-the-tweet-embed
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-justify-content-property-in-the-tweet-embed
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/align-elements-using-the-align-items-property
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-align-items-property-in-the-tweet-embed
// training vids for work - Microsoft Virtual Academy
// Beginner | Published: 20 March 2014 Software Testing Fundamentals
https://mva.microsoft.com/en-us/training-courses/software-testing-fundamentals-8305?l=mjfPZiYy_8604984382
July 6th
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/string-interpolation
// flexbox
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column/
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-flex-shrink-property-to-shrink-items
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-flex-grow-property-to-expand-items
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-flex-basis-property-to-set-the-initial-size-of-an-item
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-flex-shorthand-property
// con't
https://mva.microsoft.com/en-us/training-courses/software-testing-fundamentals-8305?l=mjfPZiYy_8604984382
July 7th
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/mixin-parent-selector
// flexbox
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-order-property-to-rearrange-items
https://learn.freecodecamp.org/responsive-web-design/css-flexbox/use-the-align-self-property
// grid
https://learn.freecodecamp.org/responsive-web-design/css-grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/create-your-first-css-grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/add-columns-with-grid-template-columns
https://learn.freecodecamp.org/responsive-web-design/css-grid/add-rows-with-grid-template-rows
July 8th
https://www.codecademy.com/courses/learn-sass/lessons/mixins-and-parent-selector/exercises/mixins-and-parent-generalizations
// CSS grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/use-css-grid-units-to-change-the-size-of-columns-and-rows/
July 9th
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/ops-functions
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/arithmetic-and-color
// CSS Grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/create-a-column-gap-using-grid-column-gap
https://learn.freecodecamp.org/responsive-web-design/css-grid/create-a-row-gap-using-grid-row-gap
https://learn.freecodecamp.org/responsive-web-design/css-grid/add-gaps-faster-with-grid-gap
https://learn.freecodecamp.org/responsive-web-design/css-grid/use-grid-column-to-control-spacing
https://learn.freecodecamp.org/responsive-web-design/css-grid/use-grid-row-to-control-spacing
July 10th
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/math-color
// CSS grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/align-an-item-horizontally-using-justify-self
July 11th
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/arithmetic
// CSS grid (fCC)
https://learn.freecodecamp.org/responsive-web-design/css-grid/align-an-item-horizontally-using-justify-self/
July 12th
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/division
// CSS Grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/align-an-item-vertically-using-align-self
https://learn.freecodecamp.org/responsive-web-design/css-grid/align-all-items-horizontally-using-justify-items
https://learn.freecodecamp.org/responsive-web-design/css-grid/align-all-items-vertically-using-align-items
https://learn.freecodecamp.org/responsive-web-design/css-grid/divide-the-grid-into-an-area-template
https://learn.freecodecamp.org/responsive-web-design/css-grid/place-items-in-grid-areas-using-the-grid-area-property
// npm
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/add-a-description-to-your-package-json
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package-json
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/add-a-license-to-your-package-json
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package-json
July 13th
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/each-loops
// CSS Grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template
// npm
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm/
July 14th
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/for-loops
// CSS grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/reduce-repetition-using-the-repeat-function/
// npm
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/manage-npm-dependencies-by-understanding-semantic-versioning
July 15th
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/if-vs-if
// CSS grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/limit-item-size-using-the-minmax-function
// work on survey
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-projects/build-a-survey-form/
https://codepen.io/DarrenfJ/pen/dvXVWQ
July 16th
https://www.codecademy.com/courses/learn-sass/lessons/functions-and-operations/exercises/functions-and-operations-generalizations
// CSS Grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/create-flexible-layouts-using-auto-fill
// npm
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency
July 17th
https://www.codecademy.com/courses/learn-sass/lessons/sustainable-scss/exercises/sasstainability
// CSS grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/create-flexible-layouts-using-auto-fit/
https://learn.freecodecamp.org/responsive-web-design/css-grid/use-media-queries-to-create-responsive-layouts/
// npm
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/
https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/remove-a-package-from-your-dependencies
// clean up survey more
https://codepen.io/DarrenfJ/pen/dvXVWQ
July 18
https://www.codecademy.com/courses/learn-sass/lessons/sustainable-scss/exercises/sass-structure
// CSS Grid
https://learn.freecodecamp.org/responsive-web-design/css-grid/create-grids-within-grids
// basic node and express
https://learn.freecodecamp.org/apis-and-microservices/basic-node-and-express/
https://learn.freecodecamp.org/apis-and-microservices/basic-node-and-express/meet-the-node-console/
July 19th
https://www.codecademy.com/courses/learn-sass/lessons/sustainable-scss/exercises/import-in-scss
https://www.codecademy.com/courses/learn-sass/lessons/sustainable-scss/exercises/partials
// fCC next module (Javascript) - note: nost of this i have completed already, so duplication here
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comment-your-javascript-code
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/declare-javascript-variables/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/storing-values-with-the-assignment-operator
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/initializing-variables-with-the-assignment-operator
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-uninitialized-variables
// react
https://learn.freecodecamp.org/front-end-libraries/react
https://learn.freecodecamp.org/front-end-libraries/react/create-a-simple-jsx-element
https://learn.freecodecamp.org/front-end-libraries/react/create-a-complex-jsx-element/
July 20th
https://www.codecademy.com/courses/learn-sass/lessons/sustainable-scss/exercises/extend
// fCC Javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-case-sensitivity-in-variables/
// react
https://learn.freecodecamp.org/front-end-libraries/react/add-comments-in-jsx/
https://learn.freecodecamp.org/front-end-libraries/react/render-html-elements-to-the-dom/
July 21st
https://www.codecademy.com/courses/learn-sass/lessons/sustainable-scss/exercises/placeholders
// fCC Javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/add-two-numbers-with-javascript/
// react
https://learn.freecodecamp.org/front-end-libraries/react/define-an-html-class-in-jsx
// treehouse to prep for fCC node/express - treehouse node basics
// https://teamtreehouse.com/library/nodejs-basics-2
https://teamtreehouse.com/library/overview-6
https://teamtreehouse.com/library/hello-world
https://teamtreehouse.com/library/nodejs-basics-2/introduction-to-nodejs/the-console
https://teamtreehouse.com/library/javascript-without-the-browser
https://teamtreehouse.com/library/why-use-nodejs
July 22nd
https://www.codecademy.com/courses/learn-sass/lessons/sustainable-scss/exercises/extend-vs-mixin
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/multiply-two-numbers-with-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/divide-one-number-by-another-with-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/increment-a-number-with-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/decrement-a-number-with-javascript
// fCC react
https://learn.freecodecamp.org/front-end-libraries/react/learn-about-self-closing-jsx-tags
https://learn.freecodecamp.org/front-end-libraries/react/create-a-stateless-functional-component
// treehouse to prep for fCC - treehouse node basics
https://teamtreehouse.com/library/finding-help-as-a-nodejs-developer
https://teamtreehouse.com/library/nodejs-basics-2/introduction-to-nodejs/review-introduction-to-nodejs
// in support of above:
https://nodejs.org/api/https.html#https_https_get_options_callback
http://blog.teamtreehouse.com/7-awesome-things-can-build-node-js
http://blog.teamtreehouse.com/learn-javascript
// rewatch in support of the node course: https://teamtreehouse.com/library/http-basics
https://teamtreehouse.com/library/http-basics/introduction-to-http/introduction-to-http
https://teamtreehouse.com/library/http-basics/introduction-to-http/building-a-case-for-http
https://teamtreehouse.com/library/http-basics/introduction-to-http/intro-to-http
https://teamtreehouse.com/library/http-basics/introduction-to-http/http-requests-using-telnet
https://teamtreehouse.com/library/http-basics/introduction-to-http/http-request-format
https://teamtreehouse.com/library/http-basics/introduction-to-http/http-headers
https://teamtreehouse.com/library/http-basics/introduction-to-http/http-response-format
https://teamtreehouse.com/library/http-basics/introduction-to-http/http-response-format-2
July 23rd
https://www.codecademy.com/courses/learn-sass/lessons/sustainable-scss/exercises/sustainable-scss-generalizations
// back to js
// https://www.codecademy.com/learn/introduction-to-javascript
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/variables/exercises/intro-variables
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/multiply-two-decimals-with-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/divide-one-decimal-by-another-with-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/finding-a-remainder-in-javascript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-addition
// fCC react
https://learn.freecodecamp.org/front-end-libraries/react/create-a-react-component
// rewatch in support of the node course: https://teamtreehouse.com/library/http-basics
https://teamtreehouse.com/library/http-basics/introduction-to-http/sending-data-with-a-get-request
https://teamtreehouse.com/library/http-basics/introduction-to-http/sending-data-with-a-get-request-2
https://teamtreehouse.com/library/http-basics/introduction-to-http/sending-data-with-a-post-request
https://teamtreehouse.com/library/http-basics/introduction-to-http/sending-data-with-a-post-request-2
https://teamtreehouse.com/library/http-basics/get-and-post-requests-in-a-browser/the-browser-as-a-gui-for-http
July 24th
// JS
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/variables/exercises/const
// fCC the js (it's a redo for most of it)
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-subtraction/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-multiplication/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-division
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/declare-string-variables
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/escaping-literal-quotes-in-strings
// fCC React
https://learn.freecodecamp.org/front-end-libraries/react/create-a-component-with-composition/
July 25th
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/variables/exercises/let
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/quoting-strings-with-single-quotes/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/concatenating-strings-with-plus-operator
// fCC react
https://learn.freecodecamp.org/front-end-libraries/react/use-react-to-render-nested-components/
July 26th
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/variables/exercises/unset-variable
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/concatenating-strings-with-the-plus-equals-operator
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/constructing-strings-with-variables
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/appending-variables-to-strings
// fCC react
https://learn.freecodecamp.org/front-end-libraries/react/compose-react-components/
July 27th
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/variables/exercises/mathematical-shortcuts
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/use-bracket-notation-to-find-the-first-character-in-a-string
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understand-string-immutability
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/use-bracket-notation-to-find-the-nth-character-in-a-string
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/use-bracket-notation-to-find-the-last-character-in-a-string
// fcc es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/explore-differences-between-the-var-and-let-keywords
July 28th
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/variables/exercises/string-interpolation
// fCC es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/compare-scopes-of-the-var-and-let-keywords
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/use-bracket-notation-to-find-the-nth-to-last-character-in-a-string
July 29th
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/variables/exercises/string-interpolation-ii
// fCC es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/declare-a-read-only-variable-with-the-const-keyword
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/word-blanks
July 30th
https://www.codecademy.com/courses/learn-javascript-introduction/lessons/variables/exercises/review-variables
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/control-flow-intro
// fCC es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/mutate-an-array-declared-with-const/
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/nest-one-array-within-another-array
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/modify-array-data-with-indexes
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes
July 31st
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/if-else-statements
// fCC es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/prevent-object-mutation/
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-push/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-pop
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-shift
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-unshift
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/shopping-list
Aug 1st
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/true-false-values
// fCC es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions/
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/write-reusable-javascript-with-functions/
Aug 2nd
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/true-false-values-ii
// fCC es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/write-arrow-functions-with-parameters/
Aug 3rd
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/comparison-operators
// fCC es6
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/set-default-parameters-for-your-functions/
Aug 4th
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/comparison-operators-ii
// fCC sass
https://learn.freecodecamp.org/front-end-libraries/sass
https://learn.freecodecamp.org/front-end-libraries/sass/store-data-with-sass-variables
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/passing-values-to-functions-with-arguments
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/global-scope-and-functions
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/local-scope-and-functions
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/global-vs--local-scope-in-functions
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/return-a-value-from-a-function-with-return
// work on fCC responsive design challenges
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-projects/build-a-product-landing-page
// similar to this: https://codepen.io/freeCodeCamp/full/RKRbwL
https://codepen.io/DarrenfJ/pen/EppPYQ
Aug 5th
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/else-if
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-undefined-value-returned-from-a-function
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/assignment-with-a-returned-value
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/stand-in-line
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/use-conditional-logic-with-if-statements
// more on the build a product landing page
https://codepen.io/DarrenfJ/pen/EppPYQ
// related re-reads and articles:
https://css-tricks.com/snippets/jquery/smooth-scrolling/
https://css-tricks.com/smooth-scrolling-accessibility/
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
Aug 6th
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/logical-operators
// fCC Sass
https://learn.freecodecamp.org/front-end-libraries/sass/nest-css-with-sass
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-strict-equality-operator
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/practice-comparing-different-values
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-inequality-operator
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-strict-inequality-operator
Aug 7th
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/switch
// fCC Sass
https://learn.freecodecamp.org/front-end-libraries/sass/create-reusable-css-with-mixins/
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-greater-than-operator/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-greater-than-or-equal-to-operator
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-less-than-operator
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-less-than-or-equal-to-operator
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-and-operator
Aug 8th
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/ternary-operator
// fCC Sass
https://learn.freecodecamp.org/front-end-libraries/sass/use-if-and-else-to-add-logic-to-your-styles
Aug 9th
https://www.codecademy.com/courses/learn-javascript-control-flow/lessons/control-flow/exercises/review-control-flow
https://www.codecademy.com/courses/learn-javascript-functions/lessons/functions/exercises/intro-to-functions
// fCC Sass
https://learn.freecodecamp.org/front-end-libraries/sass/use-for-to-create-a-sass-loop/
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparisons-with-the-logical-or-operator
// more on the Product Landing Page
https://codepen.io/DarrenfJ/pen/EppPYQ
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
embedding youtube vides: https://support.google.com/youtube/answer/171780?hl=en
Aug 10th
https://www.codecademy.com/courses/learn-javascript-functions/lessons/functions/exercises/functions
// fCC Sass
https://learn.freecodecamp.org/front-end-libraries/sass/use-each-to-map-over-items-in-a-list/
Aug 11th
https://www.codecademy.com/courses/learn-javascript-functions/lessons/functions/exercises/parameters
// fCC Sass
https://learn.freecodecamp.org/front-end-libraries/sass/apply-a-style-until-a-condition-is-met-with-while/
This one above wasn't working ^^^^
https://learn.freecodecamp.org/front-end-libraries/sass/split-your-styles-into-smaller-chunks-with-partials
Aug 12th
https://www.codecademy.com/courses/learn-javascript-functions/lessons/functions/exercises/parameters-ii
// fCC Sass
https://learn.freecodecamp.org/front-end-libraries/sass/extend-one-set-of-css-styles-to-another-element
// fCC js
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/introducing-else-statements/
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/introducing-else-if-statements
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/logical-order-in-if-else-statements
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/chaining-if-else-statements