HackerTrans
TopNewTrendsCommentsPastAskShowJobs

discardable_dan

873 karmajoined قبل 10 سنوات

comments

discardable_dan
·قبل 5 أيام·discuss
Why.... ?
discardable_dan
·قبل 5 أيام·discuss
I think you are taking the wrong lesson. The lesson is not "things make break." Many languages break things. Haskell has made it a feature, not a bug.

But this change did more than break things. It meant people using Elm in production had to abandon it, nearly immediately, as all future work would first require them to port the whole stack, in one fell swoop, to Elm (and this was before tail recursion modulo cons was implemented, but recursion was forced).

Imagine if, in Rust's infancy, it decided to remove the C FFI with the argument that people should instead, naturally, rewrite that code in Rust. What would have happened? People would have abandoned it in droves, and it would have been essentially relegated to a research language, never again suited for prime time.

And -- oh, look what happened to Elm!
discardable_dan
·قبل 29 يومًا·discuss
You should consider doing the hard work yourself here. I sat down and reasoned through a Perceus-style RC mechanism a few years ago, made difficult by the presence of one-shot delimited continuations, and actually sorting it all out was not hard. Handing the correct semantics to Claude will produce the correct results if you take the time to understand the actual work you are attempting.
discardable_dan
·قبل شهرين·discuss
Tonka seems better equipped and free…
discardable_dan
·قبل شهرين·discuss
You should link to your resume
discardable_dan
·قبل 3 أشهر·discuss
I've had it write Scheme with little issue -- it even completely the latter half of a small toy compiler. I think the REPL is the issue, not the coding; forcing it to treat the REPL like another conversation participant is likely the only way for that to work, and this article does not handle it that way. Instead, hand it a compiler and let it use the workflow it is optimized for.
discardable_dan
·قبل 3 أشهر·discuss
Bro, of all the stupid shit we spend taxes on ($50 billion on corn subsidies), you're mad about space exploration?
discardable_dan
·قبل 4 أشهر·discuss
Coining this phrase now: "It's the tokens stupid"

Hooking up to and generating calls across filesystem APIs cost multiple orders of magnitude more than calling `ls`. These tooling ideas are interesting, though. Maybe Kenneth_E._Iverson was right all along?

Talking to another senior dev over drinks tonight, we both worried not about our work but about who might come up never having written a single line of code. Never even opened a terminal. Is looking at the code something you learn in semester 5?

I think computer science education is going to stomp onward, poorly. And we will get that generation. And things like "terminal tooling is going out of style" won't even be said any more. Hacker groups will turn from discussions about new ideas to talking about doing leetcode without AI.

Our art died because we used our art to kill it. We are the last human masters.

That's a funny thing to think about.
discardable_dan
·قبل 4 أشهر·discuss
When they are the people in charge of the nuclear arsenal, the silliness stops.
discardable_dan
·قبل 4 أشهر·discuss
I do not want to read a bunch of gross torture porn, though.

Greg Egan is far more interesting and spares you that.
discardable_dan
·قبل 4 أشهر·discuss
As someone who has implemented full match in several industrial languages: this isn’t really match; it doesn’t not handle unpacking. And that is by far the only interesting bit. This feature is more accurately called `cond` à la Scheme, and you can fully expand it away ahead of type checking. Looking at unpacking in the arms, even with Scheme’s truth-y values and `=>`, could be neat.

Optimizing well-known jumps is useful, as is branch reordering, but the tombstone flag is unnecessary; you can simply write down a list of all targeted / called blocks and perform dead block elimination more generally that way.
discardable_dan
·قبل 4 أشهر·discuss
I watched an older sibling go off the rails. That is what kept me from doing it.
discardable_dan
·قبل 4 أشهر·discuss
Shouldn't compaction be exactly that letter to its future self?
discardable_dan
·قبل 4 أشهر·discuss
How's the war effort?
discardable_dan
·قبل 4 أشهر·discuss
It is referred to as "simple sabotage": https://www.cia.gov/stories/story/the-art-of-simple-sabotage...
discardable_dan
·قبل 4 أشهر·discuss
It also doesn't matter because Claude 4.6 is so much better at writing code that nobody cares what OpenAI is doing.
discardable_dan
·قبل 8 أشهر·discuss
So, to be clear, you pulled your children out of public school because students were being educated to accept other people who do not adhere to their own set of religious and cultural beliefs, in a country founded on freedom of religion?

And now instead of learning science in a lab and socializing, they are forced to maintain your farm?

What an good job you are doing!
discardable_dan
·قبل 9 أشهر·discuss
It's pretty easy to do at runtime without weak pointers, people who write rust are just allergic to reference counting. Which is absurd, because most programmer use RC values thousands of times every day without even thinking about it. It's really this easy: https://pastebin.com/SAeKG7Sw
discardable_dan
·قبل 10 أشهر·discuss
Rust will when when I can finally match through boxes.
discardable_dan
·قبل 10 أشهر·discuss
My thoughts exactly: he figured out in 2025 what the rest of us knew in 2022.