Yes, bonds, sometimes corporate debts, often money market participation.
So you add threads to allow a shared objects graph with a side effect of more frequent stop the world. Then you fight stop the world by resorting to low level memory management. But if you go level why not allocate a…
This is from PR: v1 collects synchronous and stop-the-world Go build performant web app that has stop-the-world all the time.
Except there is often no background thread but async IO.
I don’t think it is extreme. Imagine this is added to WebKit. Now I have a new question to answer - can I use library X across multiple threads? How do I know it does not have a little cache inside which breaks if I…
If the goal of this change is to: >mostly share read-heavy graphs and coordinate through a few hot objects, which is what Lock/Atomics are for. Then it is a clear overkill to me. I’d rather built an in-memory DB on top…
To me being able to query over psql is secondary. I’m fine with any SQL. What is very important is being able to transform the data to better suite analytical queries. That is, define custom transformations, define how…
I don’t disagree, just placing emphasis on a different aspect. In an ideal world there is a tool that moves your schema into an analytical store “as is” with a single click. Then the same tool lets you add arbitrary…
IDK, AWS Zero ETL from Autora into Redshift really helped us at some point. You right that data transformation is very limited if not possible. But having data in an analytical store, being able to experiment with…
Is this a theory or your personal experience? I lived in Russia for most of my life. Had 21 C set in the car even in -20 C. If the coat is too hot then you just put it off. One reason why you want warm air in the car is…
While being widely criticized I don’t get it > Physical controls for temperature and fan speed. I have set temperature to 21 C in Tesla when I bought it and never changed since. Why would anyone frequently change a…
I think this is the glimpse of what to come - https://github.com/oven-sh/bun/issues/31463
In other words you can use time as your TX id, add MVCC and now you can transactionally read data from multiple partitions/shards. In a traditional distributed DBMS it would require a global tx manager creating a…
Why people say they have big test coverage while other say it segfaults a lot? I saw lot of JS test that this is just API surface test. Edge cases happens inside API implementation, things like memory leaks or data…
>The only assumption you need to make is how the process went about, which was described by Jarred This is not how the process went. This is how Jarred thinks it went, a huge difference. >my guess is that the LLM wrote…
You suggest there is only JS tests that do not need a rewrite? This is crazier than I thought… I took tests as an example. There are so many other things that can go wrong. Rust and Zig standard libraries may have…
What is significance of this?
Nobody reviewed resulting code. Maybe all tests are empty and this is why they pass. Maybe tests were modified to pass because this is the only thing LLM could do to make them pass. Maybe it hallucinated something in…
Because of borrow checker you would build data structures differently in Rust compared to Zig. Automated translation simply maps Zig constructs onto unsafe Rust code. I have no idea how feasible it is to go from totally…
Bun never was great in terms of stability. It has been vibe coded for 6 month but code was reviewed by a person. >It already has been proven that LLM's can maintain such codebases. Proven is a strong word. In my…
I don’t think this is anyhow about fp. Constructive logic appears naturally in proofs and type systems where it is very useful. Also it is quite fascinating to me to learn that law of excluded middle can be omitted and…
RSL’s 36k LoC includes tests and should be compared with 130k LoC, not 50. Having 90k LoC of tests for 50k LoC codebase also a problem. At least in my experience LLM generate too many tests. It does not evolve test…
Yes, I would bet it won't go anywhere. The blog post mentioned the project is 130k LoC multiple times. Where 45/50k LoC comes from? >Rust makes no promise of being terser than C++ True, but Rust has no header files,…
Original RSL library is 36k LoC. And this is C++. Rust should be like 50% smaller, that is, 18k LoC. This library is so big that I bet the author has no idea if it works or not. 1300 test generated by AI say nothing…
This is great example of AI slop and a big problem with AI coding. Original RSL library has 36 KLoC across C++ source and headers files. Rust supposed to be more expressive and concise. Yet, AI generated 130k LoCs. I…
Yes, bonds, sometimes corporate debts, often money market participation.
So you add threads to allow a shared objects graph with a side effect of more frequent stop the world. Then you fight stop the world by resorting to low level memory management. But if you go level why not allocate a…
This is from PR: v1 collects synchronous and stop-the-world Go build performant web app that has stop-the-world all the time.
Except there is often no background thread but async IO.
I don’t think it is extreme. Imagine this is added to WebKit. Now I have a new question to answer - can I use library X across multiple threads? How do I know it does not have a little cache inside which breaks if I…
If the goal of this change is to: >mostly share read-heavy graphs and coordinate through a few hot objects, which is what Lock/Atomics are for. Then it is a clear overkill to me. I’d rather built an in-memory DB on top…
To me being able to query over psql is secondary. I’m fine with any SQL. What is very important is being able to transform the data to better suite analytical queries. That is, define custom transformations, define how…
I don’t disagree, just placing emphasis on a different aspect. In an ideal world there is a tool that moves your schema into an analytical store “as is” with a single click. Then the same tool lets you add arbitrary…
IDK, AWS Zero ETL from Autora into Redshift really helped us at some point. You right that data transformation is very limited if not possible. But having data in an analytical store, being able to experiment with…
Is this a theory or your personal experience? I lived in Russia for most of my life. Had 21 C set in the car even in -20 C. If the coat is too hot then you just put it off. One reason why you want warm air in the car is…
While being widely criticized I don’t get it > Physical controls for temperature and fan speed. I have set temperature to 21 C in Tesla when I bought it and never changed since. Why would anyone frequently change a…
I think this is the glimpse of what to come - https://github.com/oven-sh/bun/issues/31463
In other words you can use time as your TX id, add MVCC and now you can transactionally read data from multiple partitions/shards. In a traditional distributed DBMS it would require a global tx manager creating a…
Why people say they have big test coverage while other say it segfaults a lot? I saw lot of JS test that this is just API surface test. Edge cases happens inside API implementation, things like memory leaks or data…
>The only assumption you need to make is how the process went about, which was described by Jarred This is not how the process went. This is how Jarred thinks it went, a huge difference. >my guess is that the LLM wrote…
You suggest there is only JS tests that do not need a rewrite? This is crazier than I thought… I took tests as an example. There are so many other things that can go wrong. Rust and Zig standard libraries may have…
What is significance of this?
Nobody reviewed resulting code. Maybe all tests are empty and this is why they pass. Maybe tests were modified to pass because this is the only thing LLM could do to make them pass. Maybe it hallucinated something in…
Because of borrow checker you would build data structures differently in Rust compared to Zig. Automated translation simply maps Zig constructs onto unsafe Rust code. I have no idea how feasible it is to go from totally…
Bun never was great in terms of stability. It has been vibe coded for 6 month but code was reviewed by a person. >It already has been proven that LLM's can maintain such codebases. Proven is a strong word. In my…
I don’t think this is anyhow about fp. Constructive logic appears naturally in proofs and type systems where it is very useful. Also it is quite fascinating to me to learn that law of excluded middle can be omitted and…
RSL’s 36k LoC includes tests and should be compared with 130k LoC, not 50. Having 90k LoC of tests for 50k LoC codebase also a problem. At least in my experience LLM generate too many tests. It does not evolve test…
Yes, I would bet it won't go anywhere. The blog post mentioned the project is 130k LoC multiple times. Where 45/50k LoC comes from? >Rust makes no promise of being terser than C++ True, but Rust has no header files,…
Original RSL library is 36k LoC. And this is C++. Rust should be like 50% smaller, that is, 18k LoC. This library is so big that I bet the author has no idea if it works or not. 1300 test generated by AI say nothing…
This is great example of AI slop and a big problem with AI coding. Original RSL library has 36 KLoC across C++ source and headers files. Rust supposed to be more expressive and concise. Yet, AI generated 130k LoCs. I…