• 10 Posts
  • 154 Comments
Joined 1 year ago
cake
Cake day: June 1st, 2023

help-circle







  • Hexorg@beehaw.orgtoMemes@lemmy.ml*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    7
    ·
    9 months ago

    You bring a great point I hadn’t considered before. Only people with passion for something will do it for free while many more people with so that for cash. Though it’s interesting to see that cash doesn’t make passionate people’s content better it just makes more mediocre content.




  • The Test part of TDD isn’t meant to encompass your whole need before developing the application. It’s function-by function based. It also forces you to not have giant functions. Let’s say you’re making a compiler. First you need to parse text. Idk what language structure we are doing yet but first we need to tokenize our steam. You write a test that inputs hello world into your tokenizer then expects two tokens back. You start implementing your tokenizer. Repeat for parser. Then you realize you need to tokenize numbers too. So you go back and make a token test for numbers.

    So you don’t need to make all the tests ahead of time. You just expand at the smallest test possible.