3 comments

  • hyperpape1 hour ago
    I&#x27;m genuinely curious about the effect, but I simply don&#x27;t have patience for the AI writing. Can anyone give an actual non-garbage explanation with some respect for the reader?<p>Slightly less annoying summary from ChatGPT free: <a href="https:&#x2F;&#x2F;chatgpt.com&#x2F;share&#x2F;6a9ac7a3-15a0-83eb-8c2a-6f72cd9bebad" rel="nofollow">https:&#x2F;&#x2F;chatgpt.com&#x2F;share&#x2F;6a9ac7a3-15a0-83eb-8c2a-6f72cd9beb...</a>.<p>Caveat emptor: it makes high level sense, but I haven’t thought about it in detail.
    • marcianx1 hour ago
      I&#x27;m genuinely curious: I read through the article and the narrative felt deliberate and didn&#x27;t trigger my AI-radar. What made you think it was AI written?
      • anon4829351 minutes ago
        It didn’t read AI generated to me. I also love the irony of then using AI to generate a summary
        • hyperpape48 minutes ago
          &gt; This article is the story of chasing that number down to a single machine instruction, and then finding out that the instruction was only half of the answer.<p>&gt; So the difference has to be in what the JIT generated, and the profiler gives us exactly that.<p>&gt; That is the whole vocabulary. Let’s read some code.<p>&gt; Decoding the x86 version instruction by instruction is out of scope here.<p>&gt; What is not architecture specific is the logic.<p>Here’s a segment flagged by Pangram: <a href="https:&#x2F;&#x2F;www.pangram.com&#x2F;history&#x2F;87e25169-30a4-4030-a65a-dba8a19c6769?ucc=z1d80G4Q5BH" rel="nofollow">https:&#x2F;&#x2F;www.pangram.com&#x2F;history&#x2F;87e25169-30a4-4030-a65a-dba8...</a>
          • anamexis25 minutes ago
            I don&#x27;t know if it&#x27;s AI or not, but if it is, it isn&#x27;t egregious, and certainly not &quot;garbage&quot; or disrespectful to the reader.
          • xpct9 minutes ago
            I don&#x27;t think the Pangram result is shareable to others.<p>&quot;If you are sure the link is correct, please make sure you are logged in with the account associated with this result.&quot;
          • Capricorn24813 minutes ago
            Even if that were AI (and I think there are better examples in the article to indicate that it is), why do you care if you just used AI anyway to summarize it anyway?
          • ramchip11 minutes ago
            [dead]
  • pron45 minutes ago
    There are two practical lessons here:<p>1. Upgrade your JDK for the best performance (as the article says, the slowdown is gone in JDK 26).<p>2. Don&#x27;t try to help the GC by pooling objects. Mutating old objects can be expensive, while allocating new ones is cheap (at least for objects that don&#x27;t do some exceptionally expensive initialisation).