Viewing profile — Laiho
Laiho
HN member- Joined
- Fri, Nov 11, 2022, 2:46 PM UTC
- HN karma
- 20
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About Laiho
No profile information was provided.
Recent public activity
-
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…
-
comment
Comment #42850178
I've had great success with autovectorization in Rust. Majority of non-branching loops seem to consistently generate great assembly.
-
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 …
-
comment
Comment #41567127
If you prefer reading Python, I implemented the decompressor not too long ago: https://github.com/LaihoE/tiralabra
- story
- story
-
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…
- story
- story
- story
-
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.
-
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.
-
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…