Viewing profile — artikae
artikae
HN member- Joined
- Thu, Aug 01, 2024, 9:53 PM UTC
- HN karma
- 8
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About artikae
No profile information was provided.
Recent public activity
-
comment
Comment #47820535
Goodhart's Law vs the Turing Test! Can our humans accurately evaluate intelligence, or will they be fooled by fakes? Live this Sunday!
-
comment
Comment #45608219
Yea, but, this is Rust. How is a moving GC supposed to handle an untagged union? Or a person who uses the now-stable provenance api to read/write pointer bits to/from disk.
-
comment
Comment #45607907
A Gc that can't give you a pointer inside seems almost unusable in the context of Rust. Pointers are not a narrow use case; references are pointers. Rust APIs are largely built aro…
-
comment
Comment #44620583
> those only apply to arrays of primitives I guess you've not written much python, or just not used any custom types in lists if you have. class Thing: def __init__(self, a, b): se…
-
comment
Comment #43955005
Are you blind or using Orca to interact with your computer? If the answer is no, then your recent experience with Debian is not particularly relevant to what the article is talking…
-
comment
Comment #43798274
What about this: https://godbolt.org/z/xP9xG3Ee3 Here the compiler "register allocates" i for some reads but not for others. i gets stack allocated, but some uses of it act as thou…
-
comment
Comment #43324166
assoc-in reminds me a lot of lenses in Haskell. I figure you could probably implement something like it using them. This is what I came up with: import Control.Lens baseLens --> ne…
- comment
-
comment
Comment #41797396
All it takes for something to be replaced is something that does the job better. You can only really apply your definition in hindsight, after something has stood the test of time.…
-
comment
Comment #41134136
The first line is already UB. `assume_init` requires the contents to be initialized, hence the name.