• 0 Posts
  • 170 Comments
Joined 4 months ago
cake
Cake day: April 13th, 2026

help-circle






  • I actually like to drink but especially beer can give me really bad stomach cramps. Not always, but often enough that I rarely risk it. Also my sleep quality is suffering after drinking and with age I no longer can afford bad sleep. Honestly I’m not sure how people after 30 manage to drink regularly. Even though I’m a fit and healthy person, alcohol just affects me too much to be a regular and enjoyable part of my life.

    I get it can be “relaxing” in some ways, but having to recover from alcohol the day(s) after makes it a very inefficient way of relaxation.


  • Here in Europe wine and beer producers are starting to panic. Representatives are seriously arguing against WHO recommendations (some of them have been doing this since COVID) and the lobbies are very aggressively trying to go against any health promoting legislation that could go against them.

    The bigger producers also start to release light or non alcoholic versions of their drinks to capture the growing non-alcoholic market segment.

    Yes, it’s good, and we see the industry adapting and fighting for profits.











  • You see it with code too. Constant refactoring, adding states to enums when they aren’t necessary, “beautifying” the code by adding useless checks, tests etc. The worst is when you got concurrency: focusing extremely on keeping protected sections small it keeps unnecessarily adding temporary variables, shared pointers etc. It’s so afraid of locks and data races the boilerplate for concurrency grows and grows.

    Reviewing such code is a pain. I feel like just adding comments like “why are you doing this” “justify this” “what does this have to do with your objective” and let my coworkers figure it out.