-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoding_Fourth_Run_100_Day_Challenge.txt
1009 lines (765 loc) · 46.7 KB
/
Coding_Fourth_Run_100_Day_Challenge.txt
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 Fourth Run 100 Day Challenge
Nov 30 (Day 1)
Committing Changes in Git and Pushing to a GitHub Repository:
https://youtu.be/ruieT3Nkg2M
Dec 1st (Day 2)
https://www.codecademy.com/courses/learn-html-css/lessons/css-colors/exercises/color-declarations
// from: Version control with Git and GitHub
// https://www.youtube.com/playlist?list=PL5-da3qGB5IBLMp7LtN8Nc3Efd4hJq0kD
What is the difference between Git and GitHub?
https://youtu.be/xKVlZ3wFVKA
https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell
http://stackoverflow.com/questions/1443210/updating-a-local-repository-with-changes-from-a-github-repository
http://stackoverflow.com/questions/14168677/merge-development-branch-with-master
Dec 2nd (Day 3)
https://www.codecademy.com/courses/learn-html-css/lessons/css-colors/exercises/review-colors
https://help.github.com/articles/pushing-to-a-remote/
http://gitready.com/beginner/2009/02/02/push-and-delete-branches.html
https://git-scm.com/book/en/v2/Git-Branching-Branch-Management
Dec 3rd (day 4)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/fonts-matter
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/font-family
Dec 4th (day 5)
//from http://gitimmersion.com/
http://gitimmersion.com/lab_03.html
http://gitimmersion.com/lab_04.html
http://gitimmersion.com/lab_05.html
http://gitimmersion.com/lab_06.html
http://gitimmersion.com/lab_07.html
http://gitimmersion.com/lab_08.html
http://gitimmersion.com/lab_09.html
http://gitimmersion.com/lab_10.html
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/serif-vs-sans
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/fallback-fonts
// from: https://www.youtube.com/user/Computerphile/videos
Welcome to Computerphile!: https://youtu.be/DW4f1x6IQ9o
Follow the Cookie Trail - Computerphile: https://youtu.be/LHSSY8QNvew
// some links I have open to watch:
Web Development Tutorial for Beginners (#1) - How to build webpages with HTML, CSS, Javascript
https://youtu.be/3JluqTojuME
Dec 5 (day 6)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/more-fonts
// from Udemy course Mastering Computers: https://www.udemy.com/computers/learn/v4/content
https://www.udemy.com/computers/learn/v4/t/lecture/446256
Videos: https://www.udemy.com/computers/learn/v4/t/lecture/501294
more intro schtuff: https://www.udemy.com/computers/learn/v4/t/lecture/516716
Dec 6 (day 7)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/font-size-i
// just playing around with C tutorials for fun... have to learn it eventually for CS50x - http://www.learn-c.org/en/Welcome
http://www.learn-c.org/en/Hello,_World!
http://www.learn-c.org/en/Variables_and_Types
http://www.learn-c.org/en/Arrays
// from Udemy course Mastering Computers: https://www.udemy.com/computers/learn/v4/content
https://www.udemy.com/computers/learn/v4/t/lecture/422390
https://www.udemy.com/computers/learn/v4/t/lecture/446192
Dec 7 (day 8)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/font-size-ii
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/line-height
// from Udemy course Mastering Computers: https://www.udemy.com/computers/learn/v4/content
https://www.udemy.com/computers/learn/v4/t/lecture/446194
// from: http://www.learn-c.org/
http://www.learn-c.org/en/Strings
https://www.tutorialspoint.com/c_standard_library/c_function_sprintf.htm
Dec 8 (day 9)
https://www.codecademy.com/en/courses/learn-html-css/lessons/css-fonts/exercises/line-height-anatomy
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/word-spacing
// from: http://www.learn-c.org/
http://www.learn-c.org/en/For_loops
Dec 9 (day 10)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/letter-spacing
// from: http://www.learn-c.org/
http://www.learn-c.org/en/While_loops
// from: https://openhatch.org/missions/ - contributing to open source projects
https://openhatch.org/missions/windows-setup/
https://openhatch.org/missions/windows-setup/install-git-bash
https://openhatch.org/missions/windows-setup/understand-prompt
https://openhatch.org/missions/windows-setup/navigating
https://openhatch.org/missions/shell/about
https://openhatch.org/missions/shell/file-and-directory
https://openhatch.org/missions/shell/ls
Dec 10 (day 11)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/font-weight
Dec 11 (day 12)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/font-style
// work on Portfolio page - make it Boostrap
// set up git repo
https://guides.github.com/introduction/getting-your-project-on-github/
https://help.github.com/articles/creating-a-new-repository/
https://help.github.com/articles/importing-a-git-repository-using-the-command-line/
https://help.github.com/articles/importing-a-repository-with-github-importer/
https://help.github.com/articles/cloning-a-repository/
// Bootstrap etc links
http://fontawesome.io/
http://fontawesome.io/get-started/
https://startbootstrap.com/
https://startbootstrap.com/template-overviews/simple-sidebar/
https://lipis.github.io/bootstrap-social/
https://getbootstrap.com/components/#btn-groups
Dec 12 (day 13)
// more on the Portfolio page:
http://stackoverflow.com/questions/12061139/making-button-go-full-width
https://v4-alpha.getbootstrap.com/layout/grid/
https://github.com/twbs/bootstrap/issues/9249
http://stackoverflow.com/questions/22262311/container-fluid-vs-container
// various other links I glanced at as well (not saved here, but similar to above)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/text-transform
Dec 13 (day 14)
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/text-align
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/review-fonts
Dec 14 (day 15)
https://www.codecademy.com/en/courses/learn-html-css/lessons/ids-classes-divs/exercises/maintainable-code
// lynda.com course
//IT - Network Administration: Understanding ping error messages (from: Building Your Technology Skills)
https://www.lynda.com/PowerShell-tutorials/Understanding-Ping-Error-Messages/432862/499760-4.html
https://blog.devmastery.com/copy-paste-code-6ed9bb841cd4#.r13gq4ihh
https://blog.devmastery.com/i-hate-servers-68334f3de41c#.9sjojvcmw
Dec 15 (day 16)
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/maintainable-code continued
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/html-ids
Dec 16 (day 17)
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/id-selectors
// my first-timer issue!
https://github.com/FreeCodeCamp/FreeCodeCamp/issues/12067
https://help.github.com/articles/fork-a-repo/
https://github.com/blog/1969-create-pull-requests-in-github-for-windows
https://help.github.com/articles/github-flow-in-the-browser/
https://guides.github.com/introduction/flow/
https://help.github.com/articles/creating-a-pull-request/
https://github.com/FreeCodeCamp/FreeCodeCamp/blob/staging/CONTRIBUTING.md#creating-a-pull-request
// plus some more
Dec 17 (day 18)
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/html-classes
Dec 18 (day 19)
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/class-selectors-i
Dec 19 (Day 20)
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/class-selectors-ii
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/multiple-selectors
//from http://gitimmersion.com/
http://gitimmersion.com/lab_10.html
// lots of info on git log in here
http://gitimmersion.com/lab_11.html
https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup
http://gitimmersion.com/lab_12.html
http://gitimmersion.com/lab_13.html
http://gitimmersion.com/lab_14.html
//from IT Network Administration: Using the OSI network model (from: Building Your Technology Skills) lynda.com
https://www.lynda.com/Network-Administration-tutorials/Using-OSI-Network-Model/432862/499761-4.html
https://medium.freecodecamp.com/full-stack-between-reality-and-wishful-thinking-43110005f2a2#.7zondv622
// from: https://www.learn-c.org/
http://www.learn-c.org/en/Functions
Dec 20 (day 21)
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/multiple-classes-html
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/div
Dec 21 (Day 22)
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/divs-classes
// from Lynda.com course on DevOps (IT Cloud Computing: DevOps Fundamentals)
https://www.lynda.com/Operating-Systems-tutorials/DevOps-Fundamentals/508618-2.html
https://www.lynda.com/Operating-Systems-tutorials/What-DevOps/508618/555077-4.html
https://www.lynda.com/Operating-Systems-tutorials/DevOps-core-values-CAMS/508618/555078-4.html
Dec 22 (Day 23)
https://www.codecademy.com/courses/learn-html-css/lessons/ids-classes-divs/exercises/why-divs
//used to redo FCC exercises for helproom but got to Js and stopped.. will restart that:
http://stackoverflow.com/questions/20998159/what-is-the-meaning-of-literal-in-the-phrase-object-literal-notation
https://www.freecodecamp.com/challenges/declare-string-variables
https://www.freecodecamp.com/challenges/escaping-literal-quotes-in-strings
https://www.freecodecamp.com/challenges/quoting-strings-with-single-quotes
https://www.freecodecamp.com/challenges/escape-sequences-in-strings
https://www.freecodecamp.com/challenges/concatenating-strings-with-plus-operator
Dec 23 (day 24)
https://www.codecademy.com/en/courses/learn-html-css/lessons/ids-classes-divs/exercises/review-class-id-divs
Dec 24 (day 25)
https://www.codecademy.com/courses/learn-html-css/lessons/box-model/exercises/what-is-box-model
https://www.codecademy.com/courses/learn-html-css/lessons/box-model/exercises/box-width-height
Dec 25 (day 26)
https://www.codecademy.com/courses/learn-html-css/lessons/box-model/exercises/width-max-min
Dec 26 (day 27)
https://www.codecademy.com/courses/learn-html-css/lessons/box-model/exercises/height-max-min
Dec 27 (day 28)
https://www.codecademy.com/courses/learn-html-css/lessons/box-model/exercises/overflow
Dec 28 (day 29)
https://www.codecademy.com/en/courses/learn-html-css/lessons/box-model/exercises/review-box-model
//from lynda.com IT - Network Administration: Understanding Windows implicit groups (From: Building Your Technology Skills)
https://www.lynda.com/PowerShell-tutorials/Understanding-Windows-Implicit-Groups/432862/506473-4.html
Dec 29 (day 30)
https://www.codecademy.com/en/courses/learn-html-css/lessons/borders/exercises/box-borders
https://www.codecademy.com/courses/learn-html-css/lessons/borders/exercises/border-style
Dec 30 (day 31)
https://www.codecademy.com/courses/learn-html-css/lessons/borders/exercises/border-width-i
// try this out: https://thoughtbot.com/upcase/mastering-git
https://thoughtbot.com/upcase/videos/git-getting-to-confident
http://www.linfo.org/touch.html
Dec 31 (day 32)
https://www.codecademy.com/courses/learn-html-css/lessons/borders/exercises/border-width-ii
// investigating the color scheme of social media buttons for Bootstrap to create FCC button
//from: https://lipis.github.io/bootstrap-social/
//and
//https://github.com/lipis/bootstrap-social
https://github.com/lipis/bootstrap-social/blob/gh-pages/bootstrap-social.css
http://www.rapidtables.com/convert/color/hex-to-rgb.htm
//for FCC helpRoom
https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Forms
https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Forms/My_first_HTML_form
http://stackoverflow.com/questions/22262311/container-fluid-vs-container
Jan 1 (Day 33)
https://www.codecademy.com/courses/learn-html-css/lessons/borders/exercises/border-width-iii
Jan 2 (Day 34)
https://www.codecademy.com/courses/learn-html-css/lessons/borders/exercises/border-color
Jan 3 (Day 35)
https://www.codecademy.com/courses/learn-html-css/lessons/borders/exercises/border-shorthand
// from Lynda.com course on DevOps (IT Cloud Computing: DevOps Fundamentals)
https://www.lynda.com/Operating-Systems-tutorials/DevOps-principles-three-ways/508618/555079-4.html
// from: https://hackernoon.com/five-mostly-stackexchange-links-to-bookmark-right-now-5152cf16bd1#.6rq1zq6uw
http://serverfault.com/questions/293217/our-security-auditor-is-an-idiot-how-do-i-give-him-the-information-he-wants
Jan 4th (day 36)
https://www.codecademy.com/courses/learn-html-css/lessons/borders/exercises/border-radius
// from Lynda.com course on DevOps (IT Cloud Computing: DevOps Fundamentals) - Your DevOps playbook
https://www.lynda.com/Operating-Systems-tutorials/Your-DevOps-playbook/508618/555080-4.html
http://tutorialzine.com/2015/10/learn-the-bootstrap-grid-in-15-minutes/
http://getbootstrap.com/css/#grid-options
//to copy for trying to make a FCC button: https://lipis.github.io/bootstrap-social/
https://github.com/lipis/bootstrap-social
http://fontawesome.io/
http://fontawesome.io/icon/free-code-camp/
http://codepen.io/DarrenfJ/pen/oBgLbx
//evening work on it:
http://www.rapidtables.com/convert/color/hex-to-rgb.htm
http://www.color-hex.com/color/006400
http://www.hexcolortool.com/
http://www.w3schools.com/bootstrap/bootstrap_jumbotron_header.asp
http://codepen.io/DarrenfJ/full/oBgLbx/
Jan 5th (Day 37)
https://www.codecademy.com/courses/learn-html-css/lessons/borders/exercises/review-borders
// from Lynda.com course on DevOps (IT Cloud Computing: DevOps Fundamentals)
//10 practices for DevOps success: 10 through 6
https://www.lynda.com/Operating-Systems-tutorials/10-practices-DevOps-success-10-through-6/508618/555081-4.html
//10 practices for DevOps success: 5 through 1
https://www.lynda.com/Operating-Systems-tutorials/10-practices-DevOps-success-5-through-1/508618/555082-4.html
//working on my Portfolio
http://codepen.io/DarrenfJ/full/WogvGK/
http://stackoverflow.com/questions/7560832/how-to-center-a-button-within-a-div
https://css-tricks.com/snippets/jquery/smooth-scrolling/
http://stackoverflow.com/questions/37851790/make-an-image-in-container-fill-the-half-of-the-page
https://v4-alpha.getbootstrap.com/layout/grid/
http://stackoverflow.com/questions/18153234/center-a-column-using-twitter-bootstrap-3
http://v4-alpha.getbootstrap.com/content/images/
http://stackoverflow.com/questions/17479912/how-to-change-link-color-when-clicked
//Built form maker for project
https://codepen.io/DarrenfJ/full/rjaggQ/
Jan 6th (Day 38)
https://www.codecademy.com/en/courses/learn-html-css/lessons/content/exercises/content-inside
//gonna try to do pull requests to upload status instead of just 'git push'
https://help.github.com/articles/about-pull-requests/
// from Lynda.com course on DevOps (IT Cloud Computing: DevOps Fundamentals)
//DevOps tools: The cart or the horse?
https://www.lynda.com/Operating-Systems-tutorials/DevOps-tools-cart-horse/508618/555083-4.html
//gonna retry this 15 min tutorial.. probably redoign it TBH
https://try.github.io/levels/1/challenges/1
...etc up to...
https://try.github.io/levels/1/challenges/19
//git stuff for changing master to branch for pull requests..
http://stackoverflow.com/questions/1351567/putting-uncommitted-changes-at-master-to-a-new-branch-by-git
http://stackoverflow.com/questions/14168677/merge-development-branch-with-master
http://stackoverflow.com/questions/292357/difference-between-git-pull-and-git-fetch
http://stackoverflow.com/questions/14680711/how-to-do-a-github-pull-request
https://github.com/blog/1943-how-to-write-the-perfect-pull-request
//general git stuff
http://stackoverflow.com/questions/1394797/move-existing-uncommited-work-to-a-new-branch-in-git
http://stackoverflow.com/questions/2569459/git-create-a-branch-from-unstaged-uncommited-changes-on-master
//research exporting CodePen to GitHub
https://blog.codepen.io/2013/09/09/link-unlink-your-github-and-codepen-account-anytime/
https://blog.codepen.io/documentation/faq/how-do-i-log-in-with-twitter-facebook-github/
https://blog.codepen.io/documentation/features/exporting-pens/
http://stackoverflow.com/questions/6767518/what-is-the-difference-between-github-and-gist
Jan 7th (Day 39)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/padding-i
//for FCC forum: https://forum.freecodecamp.com/t/check-for-palindromes-why-is-slice-needed-in-my-code/73819/1
https://davidwalsh.name/javascript-clone-array
http://stackoverflow.com/questions/6612385/why-does-changing-an-array-in-javascript-affect-copies-of-the-array
//for porting your CodePen for FCC social button to GitHub
https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
https://help.github.com/articles/adding-a-remote/
https://help.github.com/articles/which-remote-url-should-i-use/
//and for another Q in th forum
https://www.frontendhandbook.com/
Jan 8th (Day 40)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/padding-ii
// GitHub for wikis
https://guides.github.com/features/wikis/
Jan 9th (Day 41)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/padding-iii
//stack-overflow related:
http://stackoverflow.com/help/privileges/comment
http://stackoverflow.com/help/privileges/docs-commenting
// from lynda.com: IT- Network Administration: Working with Windows Server 2016 management tools (From: Building Your Technology Skills)
https://www.lynda.com/PowerShell-tutorials/Working-Windows-2016-Server-Management-Tools/432862/508950-4.html
// lynda.com: course on DevOps (IT Cloud Computing: DevOps Fundamentals)
// The IT crowd and the coming storm
https://www.lynda.com/Operating-Systems-tutorials/IT-crowd-coming-storm/508618/555085-4.html
//for treehouse forum
http://kirkstrobeck.github.io/whatismarkdown.com/
Jan 10 (day 42)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/padding-iv
Jan 11 (Day 43)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/margin-i
// more git and GitHub Q's through using it regularly
http://stackoverflow.com/questions/38582388/what-does-github-for-windows-mac-publish-do
http://stackoverflow.com/questions/12104513/what-does-github-for-windows-sync-do
https://guides.github.com/introduction/getting-your-project-on-github/
http://haacked.com/archive/2012/05/21/introducing-github-for-windows.aspx/#87318
//other junk I had open from suggested reading in forums and FB groups
http://www.sitepoint.stfi.re/mind-tricks-to-learn-javascript-faster/?sf=ooywyxl
https://medium.freecodecamp.com/can-the-zeigarnik-effect-help-you-learn-to-code-c64282ed0f7b#.w1lsq195c
https://techcrunch.com/2017/01/01/wtf-is-a-vpn/
Jan 12 (Day 44)
https://www.codecademy.com/en/courses/learn-html-css/lessons/content/exercises/margin-ii
//for FCC gitter helpChat - for @diomed
http://stackoverflow.com/questions/39803874/convert-txt-file-to-json
http://www.jsoneditoronline.org/
http://www.objgen.com/json
http://stackoverflow.com/questions/8963693/how-to-create-json-string-in-javascript
//might have to learn Java for testing (work) start back into intro vids from treehouse: https://teamtreehouse.com/library/java-basics
https://teamtreehouse.com/library/introduction-to-your-tools
https://teamtreehouse.com/library/strings-and-variables
Jan 13 (Day 45)
https://www.codecademy.com/en/courses/learn-html-css/lessons/content/exercises/margin-iii
//treehouse java for work:
https://teamtreehouse.com/library/java-basics/getting-started-with-java/strings-variables-and-formatting
https://teamtreehouse.com/library/receiving-input-2
https://teamtreehouse.com/library/java-basics/getting-started-with-java/io
Jan 14 (Day 46)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/margin-iv
Jan 15 (Day 47)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/margin-auto
// more on fCC portfolio
http://stackoverflow.com/questions/7188768/how-to-remove-underline-from-a-name-on-hover
http://stackoverflow.com/questions/27989672/why-is-link-underline-appearing-after-clicking-the-link
http://www.rapidtables.com/web/color/gray-color.htm
http://stackoverflow.com/questions/15685666/changing-image-sizes-proportionally-using-css
Jan 16 (Day 48)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/padding-margin-reset
//in fCC helpRoom
http://stackoverflow.com/questions/30595321/how-to-scale-image-to-fit-the-container
http://stackoverflow.com/questions/25211090/how-to-auto-adjust-the-div-size-for-all-mobile-tablet-display-formats
http://alvarotrigo.com/fullPage/#firstPage
//treehouse java for work:
https://teamtreehouse.com/library/multiple-strings
https://teamtreehouse.com/library/java-basics/using-your-new-tools/multiple-format-strings
https://teamtreehouse.com/library/errors-2
https://teamtreehouse.com/library/java-basics/using-your-new-tools/errors-2
https://teamtreehouse.com/library/coding-the-prototype
https://teamtreehouse.com/library/java-basics/using-your-new-tools/fix-the-errors
//for tribute Page fCC: http://codepen.io/DarrenfJ/full/jAxadd/
http://www.colorcombos.com/gray-color-schemes.html
http://www.colorcombos.com/color-schemes/12/ColorCombo12.html
http://www.colorcombos.com/colors/003366
http://www.colorcombos.com/colors/CCCC99
&&
http://www.colorcombos.com/color-schemes/36/ColorCombo36.html
http://www.colorcombos.com/colors/669999
Jan 17 (day 50)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/display
Jan 18 (Day 51)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/visibility
// lynda.com: IT - Network Administration: Service portfolio, pipeline, and catalog (from - ITIL Foundations)
https://www.lynda.com/Network-Administration-tutorials/Service-portfolio-pipeline-catalog/184459/188291-4.html
Jan 19 (Day 52)
https://www.codecademy.com/courses/learn-html-css/lessons/content/exercises/review-content
https://www.codecademy.com/en/courses/learn-html-css/lessons/new-box-model/exercises/why-change-model
//for fCC helpGitter:
http://stackoverflow.com/questions/5641997/is-it-necessary-to-write-head-body-and-html-tags
//hackerrank challenges
https://www.hackerrank.com/challenges/camelcase
http://stackoverflow.com/questions/8334606/check-if-first-letter-of-word-is-a-capital-letter
https://www.hackerrank.com/challenges/mars-exploration
http://stackoverflow.com/questions/7033639/split-large-string-in-n-size-chunks-in-javascript
https://www.hackerrank.com/challenges/equality-in-a-array <-- need to come back to this one
Jan 20 (Day 53)
https://www.codecademy.com/en/courses/learn-html-css/lessons/new-box-model/exercises/content-box
// working on: https://www.hackerrank.com/challenges/equality-in-a-array <-- need to come back to this one
http://stackoverflow.com/questions/1053843/get-the-element-with-the-highest-occurrence-in-an-array
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split
http://stackoverflow.com/questions/1133770/how-do-i-convert-a-string-into-an-integer-in-javascript
Jan 21 (Day 54)
https://www.codecademy.com/courses/learn-html-css/lessons/new-box-model/exercises/border-box
https://www.codecademy.com/courses/learn-html-css/lessons/new-box-model/exercises/updated-box-model
//test running the beta of the new fCC curriculum
http://beta.freecodecamp.com/en/challenges/basic-css/change-the-color-of-text
http://beta.freecodecamp.com/en/challenges/basic-css/use-css-selectors-to-style-elements
http://beta.freecodecamp.com/en/challenges/basic-css/use-a-css-class-to-style-an-element
http://beta.freecodecamp.com/en/challenges/basic-css/style-multiple-elements-with-a-css-class
http://beta.freecodecamp.com/en/challenges/basic-css/change-the-font-size-of-an-element
Jan 22 (Day 55)
https://www.codecademy.com/en/courses/learn-html-css/lessons/new-box-model/exercises/review-new-box-model
https://www.codecademy.com/en/courses/learn-html-css/lessons/layout/exercises/page-layout
//for fCC gitterHelp
http://stackoverflow.com/questions/5765398/whats-the-best-way-to-convert-a-number-to-a-string-in-javascript
//for fCC beta new curriculum
http://beta.freecodecamp.com/en/challenges/basic-css/set-the-font-family-of-an-element
http://beta.freecodecamp.com/en/challenges/basic-css/import-a-google-font
Jan 23 (Day 56)
https://www.codecademy.com/courses/learn-html-css/lessons/layout/exercises/position
//for fCC beta new curriculum
http://beta.freecodecamp.com/en/challenges/basic-css/specify-how-fonts-should-degrade
http://beta.freecodecamp.com/en/challenges/basic-css/size-your-images
http://beta.freecodecamp.com/en/challenges/basic-css/add-borders-around-your-elements
http://beta.freecodecamp.com/en/challenges/basic-css/add-rounded-corners-with-a-border-radius
http://beta.freecodecamp.com/en/challenges/basic-css/make-circular-images-with-a-border-radius
//treehouse:
https://teamtreehouse.com/community/chchchchanges-changes-to-the-treehouse-navigation
https://teamtreehouse.com/library/reviewing-our-feedback
https://teamtreehouse.com/library/java-basics/perfecting-the-prototype/conditional-ints
https://teamtreehouse.com/library/parsing-integers
https://teamtreehouse.com/library/java-basics/perfecting-the-prototype/parsing-integers-2
Jan 24 (Day 57)
https://www.codecademy.com/courses/learn-html-css/lessons/layout/exercises/position-relative
//fCC beta:
http://beta.freecodecamp.com/en/challenges/basic-css/give-a-background-color-to-a-div-element
http://beta.freecodecamp.com/en/challenges/basic-css/set-the-id-of-an-element
http://beta.freecodecamp.com/en/challenges/basic-css/use-an-id-attribute-to-style-an-element
http://beta.freecodecamp.com/en/challenges/basic-css/adjusting-the-padding-of-an-element
http://beta.freecodecamp.com/en/challenges/applied-visual-design/introduction-to-the-applied-visual-design-challenges
http://beta.freecodecamp.com/en/challenges/applied-visual-design/create-visual-balance-using-the-textalign-property
// from: IT Cloud Computing: Use your words (From: DevOps Fundamentals) lynda.com
https://www.lynda.com/Operating-Systems-tutorials/Use-your-words/508618/555086-4.html
//do unto other
https://www.lynda.com/Operating-Systems-tutorials/Do-unto-others/508618/555087-4.html
Jan 25 (Day 58)
https://www.codecademy.com/courses/learn-html-css/lessons/layout/exercises/position-absolute
//fCC beta
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjust-the-width-of-an-element-using-the-width-property
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjust-the-height-of-an-element-using-the-height-property
http://beta.freecodecamp.com/en/challenges/applied-visual-design/create-visual-balance-with-the-height-of-an-element
http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-the-strong-tag-to-make-text-bold
http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-the-u-tag-to-underline-text
Jan 26 (Day 59)
https://www.codecademy.com/en/courses/learn-html-css/lessons/layout/exercises/position-fixed
//treehouse courses for work.. from: https://teamtreehouse.com/library/unit-testing-in-java
https://teamtreehouse.com/library/unit-testing-in-java/why-test/introduction
https://teamtreehouse.com/library/unit-testing-in-java/why-test/defining-a-unit
https://teamtreehouse.com/library/unit-testing-in-java/why-test/how-we-define-units
//fCC beta:
http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-the-em-tag-to-italicize-text
http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-the-del-tag-to-strikethrough-text
http://beta.freecodecamp.com/en/challenges/applied-visual-design/create-a-horizontal-line-using-the-hr-element
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjust-the-backgroundcolor-property-of-text
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjust-the-size-of-a-header-versus-a-paragraph-tag
Jan 27 (Day 60)
https://www.codecademy.com/courses/learn-html-css/lessons/layout/exercises/z-index
Jan 28 (Day 61)
https://www.codecademy.com/courses/learn-html-css/lessons/layout/exercises/float
Jan 29 (Day 62)
https://www.codecademy.com/courses/learn-html-css/lessons/layout/exercises/clear
Jan 30 (Day 63)
https://www.codecademy.com/courses/learn-html-css/lessons/layout/exercises/review-layout
//fCC beta:
http://beta.freecodecamp.com/en/challenges/applied-visual-design/add-a-boxshadow-to-a-cardlike-element
http://beta.freecodecamp.com/en/challenges/applied-visual-design/decrease-the-opacity-of-an-element
http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-the-texttransform-property-to-make-text-uppercase
http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-a-google-font
http://beta.freecodecamp.com/en/challenges/applied-visual-design/set-the-fontsize-for-multiple-heading-elements
Jan 31 (Day 64)
https://www.codecademy.com/en/courses/learn-html-css/lessons/adding-images/exercises/why-images
//fCC beta:
http://beta.freecodecamp.com/en/challenges/applied-visual-design/set-the-fontweight-for-multiple-heading-elements
http://beta.freecodecamp.com/en/challenges/applied-visual-design/set-the-fontsize-of-paragraph-text
http://beta.freecodecamp.com/en/challenges/applied-visual-design/set-the-lineheight-of-paragraphs
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjust-the-color-of-an-anchor-tag
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjust-the-hover-state-of-an-anchor-tag
Feb 1st (Day 65)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/img-width-height
//played a bit with this: http://flexboxfroggy.com/
Feb 2nd (Day 66)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/img-align
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/background-images
Feb 3rd (Day 67)
https://www.codecademy.com/en/courses/learn-html-css/lessons/adding-images/exercises/background-repeat
// for portfolio page
http://stackoverflow.com/questions/10327231/position-div-entire-width-of-viewport-in-twitter-bootstrap
http://stackoverflow.com/questions/16189917/make-divs-width-and-height-equal-to-viewport-with-javascript
http://stackoverflow.com/questions/6693956/square-div-where-height-is-equal-to-viewport/6694821
https://en.wikipedia.org/wiki/Viewport
http://stackoverflow.com/questions/12829608/bootstrap-text-align-class
http://v4-alpha.getbootstrap.com/components/buttons/#sizes
https://www.w3.org/wiki/CSS_absolute_and_fixed_positioning
http://stackoverflow.com/questions/7421775/css-i-want-a-div-to-be-on-top-of-everything#7421801
http://stackoverflow.com/questions/19469495/css-slow-hover-effect
http://stackoverflow.com/questions/16832334/stick-button-to-right-side-of-div
https://www.sitepoint.com/creating-css-animations-using-move-js/
https://css-tricks.com/almanac/selectors/l/link/
// for work: automated testing
http://www.seleniumhq.org/docs/01_introducing_selenium.jsp
Feb 4th (Day 68)
http://beta.freecodecamp.com/en/challenges/applied-responsive-web-design-projects/build-a-survey-form
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/background-position
//for portfolio page
http://stackoverflow.com/questions/2906582/how-do-i-create-an-html-button-that-acts-like-a-link
http://stackoverflow.com/questions/15821278/how-to-make-a-html-page-to-show-content-from-another-url
//go through this tutorial fro my contacts section:
https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/My_first_HTML_form
Feb 5th (Day 69)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/background-shorthand
Feb 6th (Day 70)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/background-size
// beta fCC:
http://beta.freecodecamp.com/en/challenges/applied-visual-design/change-an-elements-relative-position
http://beta.freecodecamp.com/en/challenges/applied-visual-design/move-a-relatively-positioned-element-with-css-offsets
http://beta.freecodecamp.com/en/challenges/applied-visual-design/lock-an-element-to-its-parent-with-absolute-positioning
http://beta.freecodecamp.com/en/challenges/applied-visual-design/lock-an-element-to-the-browser-window-with-fixed-positioning
http://beta.freecodecamp.com/en/challenges/applied-visual-design/push-elements-left-or-right-with-the-float-property
Feb 7 (Day 71)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/background-attachment
// for gitter and slack rooms, and bots
https://www.wired.com/2015/08/slack-overrun-bots-friendly-wonderful-bots/
https://www.edsurge.com/news/2016-03-04-could-slack-be-the-next-online-learning-platform
http://fortune.com/2015/11/13/slack-media/
https://hubot.github.com/
Feb 8th (day 72)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/background-color
// more on bots:
http://www.theverge.com/2016/1/6/10718282/internet-bots-messaging-slack-facebook-m
https://api.slack.com/bot-users
https://slackhq.com/a-beginner-s-guide-to-your-first-bot-97e5b0b7843d#.7e6kgztsa
https://get.slack.help/hc/en-us/articles/217626558-Keep-up-with-what-s-important
https://slackhq.com/the-inevitable-rise-of-the-bots-36d9993e7bf5#.b093pv4tz
https://slackapi.github.io/hubot-slack/
Getting Started with Hubot: https://youtu.be/A7fh6RIzGrw
// for fCC gitter help
http://stackoverflow.com/questions/16443380/common-css-media-queries-break-points
https://css-tricks.com/css-media-queries/
http://stackoverflow.com/questions/18424798/twitter-bootstrap-3-how-to-use-media-queries
// Slack help for OISE course - online learning
https://get.slack.help/hc/en-us/articles/203950418-Composing-a-Post
https://get.slack.help/hc/en-us/articles/202288908-Formatting-your-messages
https://get.slack.help/hc/en-us/articles/209774578-Formatting-for-Posts
https://oiseteam.slack.com/apps/category/At0EFT6813-brilliant-bots
https://github.com/sillygwailo/Slack-Twitter
// for playing around with a webdesign:
http://semantic-ui.com/introduction/advanced-usage.html
https://css-tricks.com/when-using-important-is-the-right-choice/
http://stackoverflow.com/questions/6637161/how-do-you-specify-alink-style-in-a-div-class-implementation
http://www.lotripsum.com/
https://css-tricks.com/centering-css-complete-guide/
http://www.colorcombos.com/color-schemes/7626/ColorCombo7626.html
http://semantic-ui.com/elements/segment.html
http://semantic-ui.com/elements/image.html
Feb 9th (Day 73)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/img-vs-div-background
// more for the improv website:
http://stackoverflow.com/questions/42074702/semantic-ui-bottom-sidebar-with-always-visible-button
http://stackoverflow.com/questions/21910566/attach-button-to-semantic-ui-sidebar
http://stackoverflow.com/questions/5214893/right-align-an-image-using-css-html
https://developer.mozilla.org/en-US/docs/Web/CSS/background-image
http://stackoverflow.com/questions/10771481/css-background-image-fit-to-div
// for slack:
https://github.com/sillygwailo/Slack-Twitter
https://my.slack.com/services/new
// evening work:
https://css-tricks.com/the-how-and-why-of-clearing-floats/
https://css-tricks.com/all-about-floats/
Feb 10th (Day 74)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/review-images
/// for CompTIA A++ course: https://www.cybrary.it/course/comptia-aplus/
https://www.cybrary.it/video/anthony-harris/
// more for Slack OISE course:
https://medium.com/@julianmartinez/how-to-write-a-slack-bot-end-to-end-d6a8542c854b#.oefozjr5i
http://readwrite.com/2014/09/23/heroku-for-beginners-app-hosting-101/
https://www.wired.com/2012/12/github-bots/
https://medium.com/@julianmartinez/how-to-write-a-slack-bot-with-python-code-examples-4ed354407b98#.rh15oypf1
// for my CodePen:
https://css-tricks.com/almanac/properties/o/opacity/
Feb 11 (Day 75)
https://www.codecademy.com/en/courses/learn-html-css/lessons/tables/exercises/why-tables
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/create-table
Feb 12th (Day 76)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-rows
// for Slack
http://www.birdybot.com/
Feb 13 (Day 77)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/background-attachment
// more slack for work and play
https://slack.com/is
https://api.slack.com/methods/channels.invite
https://get.slack.help/hc/en-us/articles/201980108-Invite-team-members-to-a-channel
// fCC beta:
http://beta.freecodecamp.com/en/challenges/applied-visual-design/change-the-position-of-overlapping-elements-with-the-zindex-property
http://beta.freecodecamp.com/en/challenges/applied-visual-design/center-an-element-horizontally-using-margin
http://beta.freecodecamp.com/en/challenges/applied-visual-design/learn-about-complementary-colors
http://beta.freecodecamp.com/en/challenges/applied-visual-design/learn-about-tertiary-colors
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjusting-the-color-of-various-elements-to-complementary-colors
// from lynda.com IT Cloud Computing: Throwing things over walls (From: DevOps Fundamentals)
https://www.lynda.com/Operating-Systems-tutorials/Throwing-things-over-walls/508618/555088-4.html
Kaizen: Continuous improvement: https://www.lynda.com/Operating-Systems-tutorials/Kaizen-Continuous-improvement/508618/555089-4.html
// from treehouse: Java for work
https://teamtreehouse.com/library/censoring-words-using-string-equality
Feb 14th (Day 78)
https://www.codecademy.com/en/courses/learn-html-css/lessons/adding-images/exercises/background-color
Feb 15th (Day 79)
https://www.codecademy.com/en/courses/learn-html-css/lessons/adding-images/exercises/img-vs-div-background
// for fCC beta:
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjust-the-hue-of-a-color
http://beta.freecodecamp.com/en/challenges/applied-visual-design/adjust-the-tone-of-a-color
http://beta.freecodecamp.com/en/challenges/applied-visual-design/create-a-gradual-css-linear-gradient
http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-a-css-linear-gradient-to-create-a-striped-element
http://beta.freecodecamp.com/en/challenges/applied-visual-design/create-texture-by-adding-a-subtle-pattern-as-a-background-image
// for TreeHouse: Java for work
https://teamtreehouse.com/library/java-basics/perfecting-the-prototype/string-equality
// more ways to use slack:
https://github.com/mccreath/isitup-for-slack/blob/master/docs/TUTORIAL.md
Feb 16th (Day 80)
https://www.codecademy.com/courses/learn-html-css/lessons/adding-images/exercises/review-images
// from DevTip (I like to be reminded of the path forward): https://www.youtube.com/user/DevTipsForDesigners
What Should You Learn Next? The Challenge Graph, a framework for understanding growth
https://youtu.be/mUrrym5VR5g
Feb 17th (Day 81)
https://www.codecademy.com/en/courses/learn-html-css/lessons/tables/exercises/create-table
Feb 18th (Day 82)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-rows
//other junk:
http://stackoverflow.com/questions/31639059/how-to-add-license-to-an-existing-github-project
http://stackoverflow.com/questions/448919/how-can-i-remove-a-commit-on-github
Feb 19th (Day 83)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-data
Feb 20th (Day 84)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-headings
// ruby for selenium add on watir: https://watir.com/
http://tryruby.org/levels/1/challenges/0
to http://tryruby.org/levels/1/challenges/5
http://tryruby.org/levels/2/challenges/1
to http://tryruby.org/levels/2/challenges/7
http://tryruby.org/levels/3/challenges/1
to http://tryruby.org/levels/3/challenges/5
http://tryruby.org/levels/4/challenges/1
to http://tryruby.org/levels/4/challenges/5
http://tryruby.org/levels/5/challenges/1
to http://tryruby.org/levels/5/challenges/7
http://tryruby.org/levels/6/challenges/1
to http://tryruby.org/levels/6/challenges/6
// more Ruby:
https://www.ruby-lang.org/en/documentation/quickstart/
Feb 21 (Day 85)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-borders
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/colspan
// more ruby for Watir testing:
http://ruby-doc.com/docs/ProgrammingRuby/html/preface.html
// from DevTips re: learning
"How Do You Learn Something Totally New?" #AskTravisAnything
https://youtu.be/f5fxAja7aqk
Feb 22 (Day 86)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/rowspan
// more ruby:
https://www.ruby-lang.org/en/documentation/quickstart/2/
https://www.ruby-lang.org/en/documentation/quickstart/3/
https://www.ruby-lang.org/en/documentation/quickstart/4/
// more more ruby: from https://rubymonk.com/
https://rubymonk.com/learning/books/1-ruby-primer/chapters/6-objects/lessons/35-introduction-to-objects
//more more more Ruby: from http://poignant.guide/
http://poignant.guide/book/chapter-1.html
http://poignant.guide/book/chapter-2.html
// more ruby for Watir testing:
http://ruby-doc.com/docs/ProgrammingRuby/html/roadmap.html
// next: http://ruby-doc.com/docs/ProgrammingRuby/html/intro.html
Feb 23 (Day 87)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-body
// finish:
http://poignant.guide/book/chapter-3.html
http://ruby-doc.com/docs/ProgrammingRuby/html/intro.html
// more lynda.com for work - IT Network Administration: Understanding IP Addressing
https://www.lynda.com/iP-tutorials/Understanding-IP-Addressing/184145-2.html
https://www.lynda.com/iP-tutorials/How-configure-verify-IP-address/184145/187973-4.html
http://trendblog.net/ever-wondered-use-192-168-x-x-ip-addresses-home/
Feb 24 (day 88)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-head
// still on
http://poignant.guide/book/chapter-3.html
http://ruby-doc.com/docs/ProgrammingRuby/html/intro.html
//more lynda.com for work - IT: Network Administration - Static vs. dynamic IP addressing (From: Understanding IP Addressing)
https://www.lynda.com/iP-tutorials/Static-vs-dynamic-IP-addressing/184145/187974-4.html
// fCC about changes to the site:
https://github.com/FreeCodeCamp/FreeCodeCamp/issues/9826 (cloud9 hosting replacement)
// other junk:
https://blog.cloudflare.com/incident-report-on-memory-leak-caused-by-cloudflare-parser-bug/
Feb 25 (Day 89)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-footer
// more ruby:
finish: http://poignant.guide/book/chapter-3.html
http://ruby-doc.com/docs/ProgrammingRuby/html/tut_classes.html
// more more Ruby - from: https://teamtreehouse.com/library/ruby-basics
https://teamtreehouse.com/library/ruby-basics/how-ruby-works/the-ruby-programming-language
https://teamtreehouse.com/library/the-ruby-programming-language
https://teamtreehouse.com/library/ruby-basics/how-ruby-works/hello-world
https://teamtreehouse.com/library/ruby-syntax-quiz
https://teamtreehouse.com/library/ruby-basics/how-ruby-works/setting-variables
https://teamtreehouse.com/library/ruby-basics/how-ruby-works/input-and-output
https://teamtreehouse.com/library/ruby-basics/how-ruby-works/input-and-output-2
Feb 26 (Day 90)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/table-css
// and Ruby
https://teamtreehouse.com/library/what-are-strings
Feb 27 (Day 91)
https://www.codecademy.com/courses/learn-html-css/lessons/tables/exercises/review-html-tables
//new course: https://www.codecademy.com/learn/ruby
https://www.codecademy.com/courses/ruby-beginner-en-d1Ylq/0/1?curriculum_id=5059f8619189a5000201fbcb
// treehouse Ruby:
https://teamtreehouse.com/library/ruby-basics/ruby-strings/string-creation
https://teamtreehouse.com/library/ruby-basics/ruby-strings/whitespace
https://teamtreehouse.com/library/whitespace-quiz
Feb 28 (Day 92)
https://www.codecademy.com/courses/ruby-beginner-en-d1Ylq/0/2?curriculum_id=5059f8619189a5000201fbcb
March 1 (Day 93)
https://www.codecademy.com/courses/ruby-beginner-en-d1Ylq/0/3?curriculum_id=5059f8619189a5000201fbcb
// more ruby:
https://teamtreehouse.com/library/ruby-basics/ruby-strings/string-methods
https://teamtreehouse.com/library/ruby-basics/ruby-strings/string-methods-2
https://teamtreehouse.com/library/ruby-basics/ruby-strings/string-documentation
https://teamtreehouse.com/library/review-quiz-9
March 2 (Day 94)
https://www.codecademy.com/courses/ruby-beginner-en-d1Ylq/0/4?curriculum_id=5059f8619189a5000201fbcb
// for slack integration and bots.. and project scryNet
Heroku Hitchhiker's Guide webinar
March 3 (Day 95)
https://www.codecademy.com/courses/ruby-beginner-en-d1Ylq/0/5?curriculum_id=5059f8619189a5000201fbcb
some stuff on github setting up orgs and permissions
work on some buttons in codepen
March 4 (Day 96)
https://www.codecademy.com/en/courses/ruby-beginner-en-d1Ylq/1/1?curriculum_id=5059f8619189a5000201fbcb
// for scrynet
http://stackoverflow.com/questions/8015579/add-another-user-to-project-owners-in-github
March 5 (Day 97)
https://www.codecademy.com/en/courses/ruby-beginner-en-d1Ylq/1/2?curriculum_id=5059f8619189a5000201fbcb
// rewatch for CSS projects coming
https://teamtreehouse.com/community/workspaces-github-integration
https://teamtreehouse.com/library/github-in-workspaces
// CSS for work: https://teamtreehouse.com/library/topic:css
https://teamtreehouse.com/library/practice-media-queries
https://teamtreehouse.com/library/lets-practice-media-queries
https://teamtreehouse.com/library/the-media-queries-solution
March 6th (Day 98)
https://www.codecademy.com/en/courses/ruby-beginner-en-d1Ylq/1/3?curriculum_id=5059f8619189a5000201fbcb
// more Ruby:
https://teamtreehouse.com/library/ruby-basics/ruby-numbers/ruby-numbers
https://teamtreehouse.com/library/ruby-basics/ruby-numbers/create-a-number
https://teamtreehouse.com/library/ruby-basics/ruby-numbers/different-kinds-of-numbers
https://teamtreehouse.com/library/ruby-basics/ruby-numbers/creating-different-kinds-of-numbers
https://teamtreehouse.com/library/ruby-basics/ruby-numbers/multiplication-and-division
https://teamtreehouse.com/library/multiplication-and-division
https://teamtreehouse.com/library/ruby-basics/ruby-numbers/practicing-with-numbers
https://teamtreehouse.com/library/number-review
March 7th (Day 99)
https://www.codecademy.com/en/courses/ruby-beginner-en-d1Ylq/1/4?curriculum_id=5059f8619189a5000201fbcb
// other study:
http://stackoverflow.com/questions/42034/what-is-a-tuple-useful-for
http://jtauber.com/blog/2006/04/15/python_tuples_are_not_just_constant_lists/
March 8 (Day 100!)
https://www.codecademy.com/courses/ruby-beginner-en-d1Ylq/2/1?curriculum_id=5059f8619189a5000201fbcb
// for slack:
http://daringfireball.net/linked/2015/11/05/markdown-strikethrough-slack
To Do:
// Ruby to do: https://www.ruby-lang.org/en/documentation/
// and: https://rubymonk.com/ and http://rubykoans.com/
// next beta:
http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-the-css-transform-scale-property-to-change-the-size-of-an-element