• 11 Posts
  • 249 Comments
Joined 2 years ago
cake
Cake day: June 1st, 2023

help-circle


  • It’s an interesting and hard problem. Because most billionaires don’t own billions in cash - they own companies that are worth billions. These companies also don’t have billions of assets - they are valued at billions by investors.

    The problem is that musks and bezoses of the world didn’t start with billions - they started with millions and lucked out. So to prevent this from happening you need some system that can fairly catch a moment where a business becomes too big and do something about it.

    You can’t really cut the majority owner out, because well they own the company - you can’t just take away what they own. But you can’t really pay them some ceiling cost either - you’ll just end up making someone else a billionaire.













  • 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.