Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror

Comment Re:Suspicious (Score 2) 76

They wear out and need to be replaced. Demand was low, AI increased demand, but the manufacturers see it as a bubble and aren't going to massively ramp out output to meet it.

This reminds me of when Germany built new coal plants and there was much hand wringing. In fact they closed more than they opened, and the new ones were designed to fit better into a heavily renewable grid.

Comment Re:Chinese Manned Space Agency (Score 1) 15

It's just how they organize it. You wouldn't say NASA is a military organization because its funding is authorized by congress that also authorizes military spending, or because the president is also the Commander in Chief.

Some countries maintain the fig leaf of separate military and civilian space programmes, but that's all it is. For example the Space Shuttle was designed around military payload needs, and regularly used to deploy military satellites.

Comment Re:Async bloat (Score 1) 78

I guess I'm not working on "typical CRUD apps" then?

Based on your description, no, you are not, other than maybe "data stores". Sounds like systems programming. And it's rare to need such for app-level database access (unless you did something wrong or bad).

other than async and await keywords here and there.

It tends to force the need to parts that have nothing to do with asynchronous programming other than being referenced by parts that do. It pollutes and spreads like prions in a brain.

Comment Re:C/C++ code covers more complex legacy code (Score 1) 24

Rust [...] makes it harder for you to work around the compiler when it comes to memory.

... which, to be clear, is a good thing. Working around the compiler is dangerous and a code smell, so it shouldn't be something that is easy to do. It usually indicates that either the compiler's capabilities aren't sufficient to meet your needs (in which case, a better solution would be either a better compiler, or to re-evaluate the wisdom of your approach), or that you are doing something the wrong way and should find a way to do it that works with the compiler, rather than around it, so that you get the benefits of the compiler's co-operation.

Slashdot Top Deals

"Go to Heaven for the climate, Hell for the company." -- Mark Twain

Working...