Skip to content

Created a de-cluttered repository to track my 100 days of code progress.

Notifications You must be signed in to change notification settings

sean-owen/100-days-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 

Repository files navigation

100 Days Of Code - Log

Handy Links

Day 1: October 25, 2020

Today's Progress:

  • Worked on Tournament tracker application.

Thoughts:

  • Backfilled log for this day as I had not decided to do the 100DaysOfCode challenge.

Link(s) to work:

Day 2: October 26, 2020

Today's Progress:

  • Worked on Tournament tracker application.

Thoughts:

  • Backfilled log for this day as I had not decided to do the 100DaysOfCode challenge.

Link(s) to work:

Day 3: October 27, 2020

Today's Progress:

  • Followed the first 4 MSDN quick starter guides to getting starting with Xamarin.Forms for mobile app development.
  • Made a little update on Tournament tracker application.

Thoughts:

  • Backfilled log for this day as I had not decided to do the 100DaysOfCode challenge.

Link(s) to work:

Day 4: October 28, 2020

Today's Progress:

  • Decided to do 100 days of code challenge.
  • Worked on some CodeWars Katas.

Thoughts:

  • Should re-organize CodeWars project so that all tests are in the unit test project and all solutions are in a solution project.
  • Should write down rules I can distill from spec given in code wars questions. May help to identify edge cases.

Link(s) to work:

Day 5: October 29, 2020

Today's Progress:

  • Worked on tournament tracker project.

Thoughts:

  • Make a big effort to start working ASAP after sitting down. Once started, motivation to continue working comes easily.
  • Try and remember to commit small & often (after a contained unit of work is complete may work well).
  • Consider checking previous days' thoughts in this log each day before starting coding.

Link(s) to work:

Day 6: October 30, 2020

Today's Progress:

  • Worked on tournament tracker project.

Thoughts:

  • Nothing to report.

Link(s) to work:

Day 7: October 31, 2020

Today's Progress:

  • Worked on some CodeWars Katas (didnt push changes till gone midnight so commits show up on 1 Nov).

Thoughts:

  • Had a total nightmare with google domains!

Link(s) to work:

Day 8: November 1, 2020

Today's Progress:

  • Worked on tournament tracker project.

Thoughts:

  • Nothing to report.

Link(s) to work:

Day 9: November 2, 2020

Today's Progress:

  • Worked on some CodeWars Katas (didnt push changes till gone midnight so commits show up on 3 Nov).

Thoughts:

  • Nothing to report.

Link(s) to work:

Day 10: November 3, 2020

Today's Progress:

  • Worked on tournament tracker project.

Thoughts:

  • Need to pick up the pace on tournament tracker project to get to start looking into web dev stuff for the new front end!

Link(s) to work:

Day 11: November 4, 2020

Today's Progress:

  • Worked on tournament tracker project.

Thoughts:

  • Nothing to report.

Link(s) to work:

Day 12: November 5, 2020

Today's Progress:

  • Worked on tournament tracker project.

Thoughts:

  • Investigate setting up workflow on github properly to decouple it from specific projects in the solution. High probability windows forms will be used for prototyping / temporary front UI in the future so should get a workflow yml that will work with win forms customized to for requirements.

Link(s) to work:

Day 13: November 6, 2020

Today's Progress:

  • Worked on tournament tracker project.
  • Completed a CodeWars Kata.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 14: November 7, 2020

Today's Progress:

  • Worked on tournament tracker project.
  • Tried and failed at completing a couple of CodeWars Katas.

Thoughts:

  • Day 12 thought / action to be carried forward.
  • Not everyday is a successful as the previous but some progress is better than none.

Link(s) to work:

Day 15: November 8, 2020

Today's Progress:

  • Worked on tournament tracker project.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 16: November 9, 2020

Today's Progress:

  • Worked on tournament tracker project.
  • Completed code wars kata.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 17: November 12, 2020

Today's Progress:

  • Completed code wars kata.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 18: November 13, 2020

Today's Progress:

  • Completed code wars kata.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 19: November 14, 2020

Today's Progress:

  • Completed code wars kata.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 20: November 15, 2020

Today's Progress:

  • Worked on a code wars kata. Implemented a naive solution. Still need to figure out a much more optimized solution.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 21: November 17, 2020

Today's Progress:

  • Worked on a code wars kata - Become Immortal. Attempted to optimize kata further to meeting requirement of running v.large numbers.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 22: November 19, 2020

Today's Progress:

  • Worked on a code wars kata - Become Immortal. Attempted to optimize kata further to meeting requirement of running v.large numbers.
  • Achieved solution for even rectangle dimensions and 1 even, 1 odd rectangle dimension.
  • Further work required for two odd inputs.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 23: November 20, 2020

Today's Progress:

  • Continued work on Become Immortal kata.
  • Achieved solution for x is a multiple of 2^n and x is alrger than y.
  • Further work required for x varying from multiples of 2^n. Once this is resolved, can always move largest input to x position.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 24: November 21, 2020

Today's Progress:

  • Continued work on Become Immortal kata.
  • Achieved solution for x is a multiple of 2^n.
  • Implemented solution for x varying from multiple of 2^n however it gives answer 'near' to correct answer, not the actual correct answer.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 25: November 22, 2020

Today's Progress:

  • Continued to struggle on with Become Immortal kata.
  • May have found an approach to work forward with.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 26: November 23, 2020

Today's Progress:

  • Continued to struggle on with Become Immortal kata.
  • Implemented approach which works for most values of x and y. Need to debug edge cases.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 27: November 24, 2020

Today's Progress:

  • Continued to struggle on with Become Immortal kata.
  • Implemented solution that works for 0 loss.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 28: November 27, 2020

Today's Progress:

  • Refactor Become Immortal kata to make code manageable.
  • Write pseudo code for solution to 16th row increment issue.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

Day 29: December 01 2020

Today's Progress:

  • Solved a code wars kata.

Thoughts:

  • Day 12 thought / action to be carried forward.

Link(s) to work:

About

Created a de-cluttered repository to track my 100 days of code progress.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published