by excsn on 3/20/24, 4:14 AM with 107 comments
by dan_can_code on 3/20/24, 6:30 AM
Yes, hot module reloading is nice and quick. But it reloads with errors included.
The primary benefit of the rust compiler, at least from my point of view, is telling me what's wrong, where. It's a worthwhile sacrifice for a few seconds of my time, when at the end of addressing all of the obvious errors, I have something that works. I find this miles better than HMR.
by nextaccountic on 3/20/24, 5:21 AM
> [package.metadata.leptos]
> separate-front-target-dir = true
This option is deprecated since cargo-leptos 0.2.3 (now it's enabled unconditionally), it's going to be removed in 0.3
https://github.com/leptos-rs/cargo-leptos/pull/216
https://github.com/leptos-rs/cargo-leptos/issues/217
https://github.com/leptos-rs/cargo-leptos/commit/b0c19a87cff...
by klabb3 on 3/20/24, 9:05 AM
I’ve found in 10+ years of software development that speed of iteration cycle is highly correlated with productivity. Compile times is not the only input into this cycle time, but it’s a big one, and importantly, it’s within the control of the language tooling itself to solve. The human idle attention time of 1-2 seconds should be the gold standard to strive for, even if not always achievable.
There seems to be quite a bit of cope around Rust build times in the community, which was natural a few years ago (a lot of people used to “blame” llvm, but it doesn’t seem to be as big of a culprit) but things are different now, no? Given the maturity, growing ecosystem and corporate investment, I would expect incremental build speedup to be prioritized, and steadily improving. But clearly it isn’t moving very fast in that direction. So why not?
by rui314 on 3/20/24, 6:15 AM
by denysvitali on 3/20/24, 5:14 AM
by KingOfCoders on 3/20/24, 8:16 AM
by dgellow on 3/20/24, 9:40 AM
by rbalint on 3/20/24, 2:11 PM
by SushiHippie on 3/20/24, 7:01 AM
But in this article the 7900x performed worse than the 5950x, is it because of the core count, or are there some other factors?
by eikenberry on 3/20/24, 4:59 AM
by daghamm on 3/20/24, 7:05 AM
The performance looks good, but are there any plans for any other improvements such as LTO?
by winrid on 3/20/24, 6:47 AM
Is there a project that publishes benchmarks compiling projects across different CPUs? I know passmark is kinda the go-to but this would be cool.
Someday I'll feel the need to upgrade from a 2700x...
by richrichie on 3/20/24, 9:49 AM
Software development: the art of redistributing aggregate lifecycle pain; who bears what, when and how much.
by tempaccount420 on 3/20/24, 5:12 AM
by beeb on 3/20/24, 6:56 AM
by rob74 on 3/20/24, 7:53 AM