Live data from Hacker News

Viewing profile — Laiho

Laiho

HN member
Joined
Fri, Nov 11, 2022, 2:46 PM UTC
HN karma
20
Public activity
13 items

About Laiho

No profile information was provided.

Recent public activity

  1. comment
    Comment #42915884

    Is it a coincidence that all these quality life things start to pop up after C++ is facing real competition for the first time? Seems a bit odd to add print after using std::out fo…

  2. comment
    Comment #42850178

    I've had great success with autovectorization in Rust. Majority of non-branching loops seem to consistently generate great assembly.

  3. comment
    Comment #42747758

    fn validate_ascii(bytes: &[u8]) -> bool{ bytes.iter().fold(true, |acc, b| acc & (\*b This check will likely be the best for english text/code. You can check in varying size chunks …

  4. comment
    Comment #41567127

    If you prefer reading Python, I implemented the decompressor not too long ago: https://github.com/LaihoE/tiralabra

  5. story
  6. story
  7. comment
    Comment #38871719

    I've been wondering what is the "new" innovation about concurrency is in Go? Since most languages provide some type of channel/lightweight thread, what is the hype all about? I don…

  8. story
  9. story
  10. story
  11. comment
    Comment #35428081

    Couldn't agree more about the rust API. Python API seems OK. Found it very complicated to use and just clunky in general.

  12. comment
    Comment #33563456

    I find it inconstant to be so pedantic about unused vars/imports to avoid bugs, but then leave error handling to what it is.

  13. comment
    Comment #33561599

    I really want to love this language, a fast and simple garbage collected lang, but feel like they missed the spot a little. I just wish they did something different with error hand…