• 1 Post
  • 399 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle
  • It’s not about elitism. It’s because most developers don’t want to spend that time on the extra maintenance and QA to ensure it’s working flawlessly for the end user.

    Most FOSS are just things people initially wanted for themselves, so they developed it in their spare time. Then they thought it might be neat to share the code in case someone else might find use in it, so they uploaded their work to GitHub.

    If you want an exe you can always contribute to the project, or at least make a fork.











  • Not too bad, but could be better.

    A funny story about my not so great love life: just matched with a girl on Tinder which I managed to have engaging text discussions with and it felt quite genuine. This is rare for me, so I was happy about it.

    Well, in the end it became obvious to me it was just a pig butchering romance scam when she started to talk about how she can help me invest in cryptocurrency.

    I guess I’m going to be a failure in love life for a bit longer lol.










  • Often I use Python for exploratory purposes. Like, I got a bunch of data, and I want to know if a particular algorithm might work or not. I implement the algorithm, but realize the results don’t look good enough. So I tweak the algorithm, maybe even do major refactoring. Or maybe I realize my visualizations or metrics don’t capture what I need to see. Or maybe I must settle for some compromise?

    I iterate on this repeatedly until I find something I’m happy about (or until I give up). Sometimes I end up with something completely different from my initial idea.

    TDD won’t help me much here because the end result is unknown. For each iteration of this idea process I might even need to rewrite all the tests because none of them are valid anymore.