HackerTrans
TopNewTrendsCommentsPastAskShowJobs

the_duke

17,609 karmajoined قبل 10 سنوات

comments

the_duke
·قبل 12 ساعة·discuss
I was investigating the design a little. Two big questions:

A) You notably don't write a recovery log (WAL/journal) for things not yet flushed, so data can be lost. Do you have plans to add this? I think it would be pretty crucial.

B) the system is single writer. Do you have plans for adding horizontal scalability so a writer can be dynamically selected and routed to, transparent to the client? (Or with client cooperation, but without forcing sharding on the user)
the_duke
·قبل 23 يومًا·discuss
Making something 50-2000x faster is pointless?

Besides that, Rust code is actually much easier to maintain , thanks to type system guarantees.
the_duke
·قبل 25 يومًا·discuss
Does this support using S3 as the backing store?

That would be very powerful for various use cases.
the_duke
·قبل شهرين·discuss
In my opinion cursor actually has one of the best harnesses again at the moment.
the_duke
·قبل شهرين·discuss
Of course they will.

Right now they want to prevent the US labs from gaining any sort of self-reinforcing oligopoly on the space, and to let the ecosystem in China flourish.

That will all die sooner or later.
the_duke
·قبل شهرين·discuss
This is often due to (privacy) extensions disabling canvas/webgl.
the_duke
·قبل شهرين·discuss
In codex CLI /status works just fine during a turn.

Other things don't though.
the_duke
·قبل شهرين·discuss
I exclusively use thinking mode, which is slower but much more likely to double-check things with web search etc.
the_duke
·قبل 3 أشهر·discuss
Config based hooks seem to miss the mark though?

The per-repo config is in `.git/config`, so that can still not be checked into the repo itself, unless I'm missing something?

So not very useful at all...

I get the security implications, but there could be a checked in `$REPO/.githooks`, and a prompt asking to allow running those hooks , with an approval marker being stored inside `.git/`.
the_duke
·قبل 3 أشهر·discuss
That's in part because many EU countries would like to ship the Syrian refugees back to Syria.
the_duke
·قبل 4 أشهر·discuss
Any recommendations?
the_duke
·قبل 4 أشهر·discuss
You shouldn't be downvoted - LLMs could in theory be deterministic, but they currently are not, due to how models are implemented.
the_duke
·قبل 4 أشهر·discuss
I think many have adopted "spec driven development" in the way you describe.

I found it works very well in once-off scenarios, but the specs often drift from the implementation. Even if you let the model update the spec at the end, the next few work items will make parts of it obsolete.

Maybe that's exactly the goal that "codespeak" is trying to solve, but I'm skeptical this will work well without more formal specifications in the mix.
the_duke
·قبل 4 أشهر·discuss
This doesn't make too much sense to me.

* This isn't a language, it's some tooling to map specs to code and re-generate

* Models aren't deterministic - every time you would try to re-apply you'd likely get different output (without feeding the current code into the re-apply and let it just recommend changes)

* Models are evolving rapidly, this months flavour of Codex/Sonnet/etc would very likely generate different code from last months

* Text specifications are always under-specified, lossy and tend to gloss over a huge amount of details that the code has to make concrete - this is fine in a small example, but in a larger code base?

* Every non-trivial codebase would be made up of of hundreds of specs that interact and influence each other - very hard (and context - heavy) to read all specs that impact functionality and keep it coherent

I do think there are opportunities in this space, but what I'd like to see is:

* write text specifications

* model transforms text into a *formal* specification

* then the formal spec is translated into code which can be verified against the spec

2 and three could be merged into one if there were practical/popular languages that also support verification, in the vain of ADA/Spark.

But you can also get there by generating tests from the formal specification that validate the implementation.
the_duke
·قبل 4 أشهر·discuss
Rust has managed just fine to remain mostly backwards compatible since 1.0 , while still allowing for evolution of the language through editions.

This puts much more work on the compiler development side, but it's a great boon for the ecosystem.

To be fair, zig is pre 1.0, but Zig is also already 8 years old. Rust turned 1.0 at ~ 5 years, I think.
the_duke
·قبل 4 أشهر·discuss
What context length and related performance are you getting out if this setup?

At least 100k context without huge degradation is important for coding tasks. Most "I'm running this locally" reports only cover testing with very small context.
the_duke
·قبل 4 أشهر·discuss
Musk is actually a brilliant marketer. He built his companies around a "vision", used it to attract high quality talent and push that talent to give their best.

For Tesla it was "electrify transport to end dependence on fossil fuels and save the planet", for SpaceX it was "save humanity by becoming a multi-planetary species".

With how much he talked about it, he did probably actually believe in Mars.

But now both of these ideals have come into conflict with his newfound political affiliations, so they have to be dropped.
the_duke
·قبل 4 أشهر·discuss
Good PR moves.
the_duke
·قبل 5 أشهر·discuss
Rust has an interesting crate for this, arc-swap [1].

It's essentially just an atomic pointer that can be swapped out.

[1] https://docs.rs/arc-swap/latest/arc_swap/
the_duke
·قبل 5 أشهر·discuss
Rust has a very strict type system and an ecosystem that often utilizes the type system well.

Many things that would only be caught at runtime in other languages are caught at compile time in Rust, making coding agents iterate until things compile and work well.

Rust also has great error messages, which help the agents in fixing compilation errors.