Forgot your password?
typodupeerror

Comment Re:.com era all over again (Score 1) 10

Many of us have been trying to make things better, and end up feeling squeezed by the economy, or AI job losses, or whatever. With that said, I wouldn't mind trying to be a rich asshole as a change of pace, because I'd probably do more positive things with the money than the rich assholes you hear about in the news all the time.

Comment Re: AI (Score 1) 127

The biggest problem I have with rust is that it doesn't work if you aren't on a platform with a C compiler.

There's a platform without a C compiler? What?

Even in Python I can't use some modules on AIX (like cryptography) because that depends on rust which you cannot compile unless you have a commercial C compiler.

Rust does not depend on a commercial C compiler, and couldn't use one for anything even if it was persent. The only rust toolchain uses LLVM, the open source toolchain for Clang. There is no Rust-to-C compiler; the only Rust compiler is native, and works on any platform that LLVM works on (which is all of them).

(The fact that only one Rust compiler exists is a common criticism of the language, though I've yet to understand why it's a bad thing. The compiler is open source, uses the LLVM backend which makes it possible to easily target any ISA / environment, and is very high quality. The error messages are incredibly good, I've never seen anything like it. There is an effort under way to make a GCC front end for Rust, so eventually we'll have two.)

Even that had a bunch of comments from people that were trying to compile it and couldn't

Can you tell me what exactly you're talking about? You mentioned AIX... IBM has a fully-supported Rust toolchain (which is just the open source toolchain, packaged and distributed by IBM), available free of charge (I only know that because I googled it; I haven't touched AIX since I left IBM in 2011). Well, they only provide support if you pay.

It would be interesting to see if I could even port my application to rust. I bet it would be riddled with unsafe blocks anyway.

Why, are you doing lots of hardware interaction, writing to device registers and whatnot, or calling C APIs, or exposing C APIs to callers? Outside of those cases, I think I've only needed unsafe once or twice in the ~100 kloc I've written in Rust.

Comment Re: As a GM EV owner (Score 1) 156

The way Google selects routes is always at odds with my preferred route - it sends me across railroads tracks which it does not monitor for trains crossing, or stopping within the crossing, a frequent occurrence here. Or it will send me on a route with 30% more miles and a toll because it's 2 minutes faster (which it isn't even). Selecting the "avoid tolls" option only partially alleviates this problem, and it excludes other tolled routes I am fine with using.

I check the traffic manually before leaving and don't rely on Google navigation in the car. If it had a mode that was "Follow this specific route, unless there are major traffic issues, then re-route within these parameters" - that would be useful for my daily drive.

I can see, if you are not a regular driver and knowledgeable about traffic pain points at different times of day and week, how you might feel the need to check every time. I guess I'm more of a power user, but the software kinda sucks.

Slashdot Top Deals

Just about every computer on the market today runs Unix, except the Mac (and nobody cares about it). -- Bill Joy 6/21/85

Working...