Viewing profile — xerokimo
xerokimo
HN member- Joined
- Sat, Mar 08, 2025, 3:37 AM UTC
- HN karma
- 1
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About xerokimo
No profile information was provided.
Recent public activity
-
comment
Comment #47098371
> Hiding heap allocations seems like it make it harder to avoid resource leaks! Because types come in constructor / destructor pairs. When creating variables, you're forced to invo…
-
comment
Comment #45908790
RAISI is always wrong because the whole advantage of the try block is to write a unit of code as if it can't fail so that what said unit is intended to do if no errors occur is ver…
-
comment
Comment #43340151
An error to me can be as simple as any time I need to write a range check so I don't index out of bounds, that very act of range checking is an error check. In other words, any tim…
-
comment
Comment #43297398
That's being idiomatic to a language, not being semantically correct. Result, Either, Expected, all have different names, but their semantics are all the same. Panic and Recover ma…