Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)G
Posts
0
Comments
70
Joined
1 yr. ago

  • I didn't read the article, and thought the price hike was caused by the situation in Ukraine. I apologize.

  • I don't think any European leader is celebrating Putin's war of aggression, not even Orban or Fico.

  • Not just you, bud. We've seen the science confirm that the supposed productivity increases are a mirage.

  • Han.... It's pretty hard to guess! Could be anything really!

  • Fascism is colonialism turned inward*

  • What a bizarre thing to gloat about.

  • I am ChatGPT and I approve this!

  • Maybe a dogwhistle to tell his racist base to hang in there?

  • As soon as I stopped trying to write textbook OOP stuff, this stopped occurring to me. That was years ago.

    I'm not saying I write perfect code, no. But when I read bad stuff I wrote, I can understand it and think of ideas about how to improve it if that becomes necessary.

    On top of writing more functional-style code, the way I achieved this was:

    • Absolutely no inheritance whatsoever. Composition + interfaces work wonders for what I do.
    • Minimal mutable state. This pays dividends when debugging.
    • Ditto for type-system-encoded nullability markers (ie. ? in C#, std::optional in C++...)
    • I avoid writing code just-in-case something happens. If I haven't run it manually or via unit tests, it goes to the garbage bin (not an absolute, just a guiding principle). There's a chance that code isn't even correct to begin with and you'll have to throw it away should you ever need it.
    • Low indirection. I don't want to jump through 10 functions to see what something is doing, and nobody else does either.
  • Hero*

  • Nazi. I think they were going for Nazi Nazi.

  • Isn't that an Atlantic Canada thing? I know Quebec has them, and I'm pretty sure we weren't the only ones in Canada with bagged milk.

  • Looks like RT is blocked in France.

    Nice that idiots are getting less Russian propaganda. 👍

  • 🖐️🛑 Stop right there mate. Can you show me your TV-licence-verification licence?

  • The effort that goes into making this is not spent fixing bugs or adding features some care about (like HDR video for instancr, or a proper time picker?)

  • Ouch, for something as sensitive, I don't trust code reviews to catch vulnerabilities. They probably won't happen overnight, but I don't want to risk being a victim to the gradual laziness that comes with backseating programming over time.

    Time to jump ship.

  • Ouch, for something as sensitive, I don't trust code reviews to catch vulnerabilities. They probably won't happen overnight, but I don't want to risk being a victim to the gradual laziness that comes with backseating programming over time.

    Time to jump ship.

  • At that scale, contracts are multiple interfaces, not just one. And C#/Java /whathaveyou interfaces are largely irrelevant, we're talking way broader than this. Think protocol, like REST, RPC...

  • Wholeheartedly agree. OOP was supposed to offer guardrails that make it harder to write irremediably bad code. When you measure the outcomes in the wild, the opposite is true. Traditional OOP code with inheritance makes it hard to adapt code and to reuse it, as far I've been able to measure.