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/)IP
Posts
0
Comments
106
Joined
2 yr. ago

  • You're not wrong. I usually ate mine at home and watched TV, it was pretty awesome lol

    Though when I was older I started just having lunch in the classroom and then in high school I'd eat lunch at school with a couple friends.

  • Actually, to be fair, they're being paid salaries to work on Lemmy lol

    Though the 0.18.0 update was quite nice and solved a lot of issues I had, so it's definitely cool to see how well it's progressing.

  • Yeah. I was born too late to explore earth, born too early to explore space, but born just in time for dank memes. I'm honestly very grateful for that. We live in a pretty exciting time, as sad as it is that we'll eventually all go extinct.

  • Depends on the programming language. In JavaScript, it literally means that like the key or variable does not actually exist. Whereas like in C/C++, writing random bytes to random memory addresses would result in "undefined behaviour" which means basically anything could happen.

  • Actually, exception rethrowing is a real thing - at least in Java. You may not always want to handle the exception at the absolute lowest level, so sometimes you will instead "bubble" the exception up the callstack. This in turn can help with centralizing exception handling, separation of concerns, and making your application more modular.

    It seems counter-intuitive but it's actually legit, again at least in Java. lol