HackerTrans
TopNewTrendsCommentsPastAskShowJobs

joachimma

no profile record

comments

joachimma
·há 4 meses·discuss
I assume you're joking, Either way. One morning when I took the bus to work the bus driver had repeated problems getting the bus to start due to the breathalyser. I heard him complain to the passenger behind him, about it malfunctioning. The passenger volunteered to test this theory, by also blowing into the device. The driver handed him the hose, the passenger gave it a go, the bus started, and the driver shrugged his shoulders, and off we went, only slightly delayed.

I'm not sure if this is preventable.
joachimma
·há 4 meses·discuss
Eye of the Beholder is about 1MB, for comparison Terminator 2 on cartridge from back in the day was 512kB.

But the cartridges themselves contains gigabytes as you say.
joachimma
·há 8 meses·discuss
It seems perfectly plausible to me that the economic incentives are such that there is no need to "design" any of this, no smoke-filled back room needed.
joachimma
·há 9 meses·discuss
I wonder why round-trip is such a small concern for people implementing serializers/deserializers of various kinds. I usually throw in an "Unknown" node type, which stores things unaltered until I can understand things again. The parsers I usually write are very small, so I haven't seen what issues comes up at scale, maybe there are dragons lurking .
joachimma
·há 11 meses·discuss
Terrence Tao is apparently in the process of converting the exercises from his "Analysis I" book into Lean.

https://terrytao.wordpress.com/2025/05/31/a-lean-companion-t...
joachimma
·ano passado·discuss
For a while I thought you meant Hermes the luxury brand tossed your stuff in the bushes. Apparently there is a delivery company under the same name.
joachimma
·ano passado·discuss
For me the issue to be solved is how to easily get the team to run the tool. Some focus should be on integrating build tools.

When I or a team member do gradle build, npm build or cargo build or similar on a fresh checkout the tool should ask to be installed.
joachimma
·há 2 anos·discuss
No, in logic that is a vacuous truth. All my hats is true for zero hats. But that would not be a lie. And since the liar always lies, that can not be case.
joachimma
·há 2 anos·discuss
Does anyone know why gitea is developed on GitHub?
joachimma
·há 2 anos·discuss
I used to have lucid dreams regularly until I was 17, until I told a friend and never had a "real" one since. I am not sure if it is connected. I mostly used it to avoid nightmares as a child, unfortunately after a while, I got psychological nightmares instead. Waking up multiple times within a dream (There is no Limbo from Inception for me) with something really stressful having happened (dead body under the bed and police knocking on the door, it's just a dream there are no police, but the body is there, type stuff). I still have partially aware lucid-dreams occationally.
joachimma
·há 2 anos·discuss
> These include statements before super(…), which would give developers greater freedom in expressing constructor behavior – meaning string templates. This would make it easy to express strings that include values computed at run time – meaning scoped values. This would enable sharing of immutable data within and across threads; and implicitly declared classes and instance main methods.

I don't like the restriction on code before super. But I don't have a clue what they are referring to here. The code example doesn't use a template either.

  PositiveBigInteger(long value) {
    if (value <= 0)
      new IllegalArgumentException("non-positive value");
    super(value);
  }