Earlier quoted context omitted.
There is additional subtlety here. For example, sometimes projects that have a 0.y version get depended on a lot, and so moving to 1.0.0 can be super painful. This is the case with the libc crate in Rust, which the 0.1.0 -> 0.2.0 transition was super painful for the ecosystem. Even though it should be a 1.0.0 crate, it is not, because the pain of causing an ecosystem split isn't considered to be worth the version num…
Oh hey I recently saw a comment which discussed this exact issue: https://news.ycombinator.com/item?id=47752915
Servo is now available on crates.io
131–140 of 155 posts
Re: Servo is now available on crates.io
#132Earlier quoted context omitted.
We do not need vibe-coded critical infrastructure.
>> ...give him unlimited model access > We do not need vibe-coded critical infrastructure. I think when you have virtually unlimited compute, it affords the ability to really lock down test writing and code review to a degree that isn't possible with normal vibe code setups and budgets. That said for truly critical things, I could see a final human review step for a given piece of generated code, followed by a hard l…
Re: Servo is now available on crates.io
#133Earlier quoted context omitted.
>> ...give him unlimited model access > We do not need vibe-coded critical infrastructure. I think when you have virtually unlimited compute, it affords the ability to really lock down test writing and code review to a degree that isn't possible with normal vibe code setups and budgets. That said for truly critical things, I could see a final human review step for a given piece of generated code, followed by a hard l…
The availability or lack thereof of compute has absolutely nothing to do with my opinion. More vibe coded tests doesn't fix the problem.
Perhaps part of a complex review chain for said function that's a few hundred LLM invocations total.
So long as there's a human reviewing it at the end and it gets locked, I'd argue it ultimately doesn't matter how the code was initially created.
There's a lot of reasons it would matter before it gets to that point, just more to do with system design concerns. Of course, you could also argue safety is an ongoing process that partially derives from system design and you wouldn't be wrong.
It occurred to me there's some recent prior art here:
https://news.ycombinator.com/item?id=47721953
It's probably fair to say the Linux kernel is critical infra, or at least a component piece in a lot of it.
Re: Servo is now available on crates.io
#134Earlier quoted context omitted.
The availability or lack thereof of compute has absolutely nothing to do with my opinion. More vibe coded tests doesn't fix the problem.
It might when an individual function has 50 different models reviewing it, potentially multiple times each. Perhaps part of a complex review chain for said function that's a few hundred LLM invocations total. So long as there's a human reviewing it at the end and it gets locked, I'd argue it ultimately doesn't matter how the code was initially created. There's a lot of reasons it would matter before it gets to that p…
Re: Servo is now available on crates.io
#135Earlier quoted context omitted.
Oh hey I recently saw a comment which discussed this exact issue: https://news.ycombinator.com/item?id=47752915
99% of the time this situation is okay, because Cargo allows you to have both 0.1 and 0.2 in the same project as dependencies. It's just packages that call out to external dependencies, like libc, where it enforces the single version rule.
Re: Servo is now available on crates.io
#136Earlier quoted context omitted.
It might when an individual function has 50 different models reviewing it, potentially multiple times each. Perhaps part of a complex review chain for said function that's a few hundred LLM invocations total. So long as there's a human reviewing it at the end and it gets locked, I'd argue it ultimately doesn't matter how the code was initially created. There's a lot of reasons it would matter before it gets to that p…
I do not care how strong your vibes are and how many claudes you have producing slop and reviewing each others' slop. I do not think vibe coding is appropriate for critical infrastructure. I don't understand why you think telling me you'd have more slop would make me appreciate it more.
In the not so distant future you'll probably be one of the few who haven't had their actual coding skills atrophy, and that's a good thing.
Re: Servo is now available on crates.io
#137Earlier quoted context omitted.
I do not care how strong your vibes are and how many claudes you have producing slop and reviewing each others' slop. I do not think vibe coding is appropriate for critical infrastructure. I don't understand why you think telling me you'd have more slop would make me appreciate it more.
Fair enough. I respect the commitment to purity. In the not so distant future you'll probably be one of the few who haven't had their actual coding skills atrophy, and that's a good thing.
Re: Servo is now available on crates.io
#138Earlier quoted context omitted.
99% of the time this situation is okay, because Cargo allows you to have both 0.1 and 0.2 in the same project as dependencies. It's just packages that call out to external dependencies, like libc, where it enforces the single version rule.
You can have both 0.1 and 0.2 in the same project, but you really don't want to.
The only time you run into a problem is if you try and use values with a type from 0.1 with a function that takes a 0.2 as an argument, or whatever. Then you get a type error.
Re: Servo is now available on crates.io
#139Earlier quoted context omitted.
It doesn't crash as often as it used to few years ago. JS heavy sites might not work, and layout issues too. And internet gatekeepers cloudflare turnstile doesn't work.
why did it crash? Rust is supposed to be memory safe?..
Re: Servo is now available on crates.io
#140Is there a table of implemented RFCs? Something similar to http://caniuse.com where we can see what HTML/JS/CSS standards and features are implemented? If it exists, I can't seem to find it. Closest thing seems to be "experimental features" page but its not quite detailed enough.