Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
i2talics
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
15 ms
·
1.
▲
OSRS Wiki and RuneLite are under strain from low-effort AI development
(oldschool.runescape.wiki)
3 points
by
i2talics
3h ago
|
1 comments
2.
▲
I Found Evidence of My House Spinning
(suricrasia.online)
5 points
by
i2talics
3d ago
|
0 comments
3.
▲
by
i2talics
4d ago
You are misled for two reasons. First of all, Rust isn't subject to the same soundness issue as Java precisely because of the Rust's ownership semantics. You can't produce the ArrayStoreException issue because you can'
4.
▲
by
i2talics
6d ago
Meh, I don't really trust TIOBE. It's at best a very noisy signal. And languages can end up on there for unusual reasons.
5.
▲
by
i2talics
6d ago
Hah, I remember error_chain. One of my projects during an internship was upgrading a bunch of the old error handling libraries to the new things. I'm glad that corner of the ecosystem has stabilized now. At that same job we hit a prett
6.
▲
by
i2talics
6d ago
I hope announcements like this show that Rust is not a fledgling little language that moves fast and breaks things anymore. It's a mature, serious competitor to well established languages like C++ and C#. This is particularly important
7.
▲
by
i2talics
6d ago
It sounds like you are not running into breaking changes, you are just running into projects that like to use new features that are not available in your older compiler.
8.
▲
by
i2talics
2mo ago
Why does the original C verifier have bugs if its supposedly so easy to implement a verifier?
9.
▲
by
i2talics
2mo ago
"Dear HN, I pointed Claude at another existing codebase and told it to port it to Rust. I don't have anything new to add myself. Please lap this up."
10.
▲
by
i2talics
4mo ago
It's useful whenever you don't know the value of an integer but would like to allocate space for it now, and then fill in the value later. Many have mentioned length-prefixed data, which is a good example. Another use case is stat
11.
▲
by
i2talics
4mo ago
Neat! It's a useful technique whenever you don't know or want to defer knowing the size of an integer until a later time, but need to allocate space for it up front. I'm wary of introducing these forced-canonical encodings by
12.
▲
by
i2talics
4mo ago
Non-canonical encodings are actually quite useful for some applications that need variable length integers. DWARF and WASM both use LEB128. The problem is linking: a compiler needs to emit code into independent translation units, which cont
13.
▲
by
i2talics
9mo ago
What good does it really do me if they "stand behind their work"? Does that save me any time drudging through the code? No, it just gives me a script for reprimanding. I don't want to reprimand. I want to review code that was
14.
▲
by
i2talics
1y ago
Nope. I was thinking about implementing call/cc; there is a neat trick involving first doing a CPS transformation to the source, then providing call/cc as a builtin function that more-or-less just grabs the continuation argument a