promises_list.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. This file tracks any mention of "we'll cover this later" that I make, so I don't forget to actually do so.
  2. ============================================================================================
  3. Promise Made in... Will cover when we...
  4. ============================================================================================
  5. Languages: C++ Chapter 2 (not specified)
  6. Git: branches Chapter 3 (not specified)
  7. Git: hashes Chapter 3 (not specified)
  8. Git: merge conflicts Chapter 3 (not specified) (but after branches)
  9. Git: ssh remotes Chapter 4 (not specified)
  10. Lua: function return behavior Chapter 5 (not specified)
  11. C: data type modifiers Chapter 6 (not specifified)
  12. Review: scope in C Chapter 7 When we start using conditional blocks and
  13. loops.
  14. C: randomness Chapter 8 (not specified)
  15. C: loops Chapter 8 (not specified)
  16. C: loops with arrays Chapter 8 (not specified)
  17. C: arrays are pointers Chapter 8 (not specified)
  18. Review: arrays in C Chapter 9 (not specified)
  19. C: preprocessor macros Chapter 10 (not specified)
  20. C: include guards Chapter 11 When we have a large enough program.
  21. C: building libraries Chapter 11 When we have a large enough program.
  22. C: benefit of 'if' equating all Chapter 12 When we get to using pointers together
  23. non-zero numbers to true with if statements.
  24. C: user input Chapter 12 (not specified)
  25. C: time.h Chapter 12 When building logger
  26. C: srand, rand Chapter 12 When building RNG
  27. C: NULL Chapter 12 When covering pointers.
  28. C: pointer to pointer (context: Chapter 13 When covering pointes.
  29. Makefiles Chapter 13 (not specified)
  30. C: handling dynamic amount of cli Chapter 13 When we cover loops.
  31. arguments
  32. C: structs Chapter 14 Soon.
  33. C: enums Chapter 14 Soon.
  34. C: switch statement Chapter 14 Soon.
  35. Git: pull Chapter 14 When working with a team.
  36. C: custom types Chapter 15 (not specified)
  37. C: multi-dimensional arrays Chaptar 16 After pointers
  38. C: const modifier Chapter 17 (not specified)
  39. C: const modifier on pointer Chapter 17 (not specified)
  40. C: const modifiefier on char* Chapter 17 (not specified)
  41. Cuterald: configurable window Chapter 17 (not specified)
  42. size
  43. C: unary operators Chapter 18 When we handle for loop
  44. Unit testing Chapter 19 (not specified)
  45. Unit testing with Valgrind Chapter 19 (not specified)
  46. C: comments Chapter 19 When doing documentation
  47. C: pointers continued (arrow Chapter 19 (not specified)
  48. syntax, usage of & symbol,
  49. pointer arithmethic, malloc
  50. and free, etc)