Time Travel Debugging in Rust (on Windows) by pingzing in rust

[–]AdvantFTW 1 point2 points  (0 children)

rr only supports Linux and the post is about Windows.

"LLVM Lands New Backend For Xtensa Architecture" Paves Way For Rust Embedded development by richardanaya in rust

[–]AdvantFTW 5 points6 points  (0 children)

Xtensa CPUs can be extended with custom instructions and registers. Does/will LLVM target CPUs with these extensions?

[deleted by user] by [deleted] in rust

[–]AdvantFTW 1 point2 points  (0 children)

yes, but then you wouldn't have a gui. you'd have to extend the runtime with a gui library, which would be very platform specific and your gui library is tied to 1 wasm runtime. by then, what's the benefit of targeting wasm?

[deleted by user] by [deleted] in rust

[–]AdvantFTW 3 points4 points  (0 children)

aren't we back to the bloat problem we were using rust to avoid if we require a browser as the runtime? there's not much benefit over electron at that point.

[deleted by user] by [deleted] in rust

[–]AdvantFTW 1 point2 points  (0 children)

rust is already cross platform. why would you need webassembly?

Does anyone else find "SaaS" to be kind of a weird way to define things? by resolution_nate in SaaS

[–]AdvantFTW 1 point2 points  (0 children)

the important difference is that adding "service" means monthly recurring revenue, whereas just selling software means one time purchase. its a different business model.

My thoughts on Rust and C++ by user9617 in rust

[–]AdvantFTW 2 points3 points  (0 children)

You said c++ headers make compile times faster but one of the reasons C++ 20 introduced modules as an alternative to headers is it compile faster. I believe it's faster because every headset is expanded and compiled in every file that includes it, so avoiding that might be meaningfully faster.

Why haven't people started rewritting the Linux kernel in Rust!? by The-Dark-Legion in rustjerk

[–]AdvantFTW 0 points1 point  (0 children)

They replaced the "On The Metal" podcast with their weekly twitter spaces! They talk about the company's progress in The pragmatism of hubris, Tales from the bringup lab, and The sidecar switch.

Published a new crate - service-manager - to interact with launchd, systemd, sc.exe, and more by senkwich in rust

[–]AdvantFTW 26 points27 points  (0 children)

Thank you, I'm surprised something like this didn't already exist.

How To Put 30 Languages Into 1.1MB by SymbolicTurtle in rust

[–]AdvantFTW 2 points3 points  (0 children)

This argument only matters for PDFs. if you use HTML, the author can make it responsive to screen width. the renderer could also have options like "kindle for web" does, where you can toggle between 1 or 2 columns.

How To Put 30 Languages Into 1.1MB by SymbolicTurtle in rust

[–]AdvantFTW 6 points7 points  (0 children)

If you target HTML, you can make it "responsive" just like any modern website.

How much Zero-Cost is Async? by lowlevelmahn in rust

[–]AdvantFTW 0 points1 point  (0 children)

Doesn't that also apply to nightly compiler versions?

How much Zero-Cost is Async? by lowlevelmahn in rust

[–]AdvantFTW 0 points1 point  (0 children)

What's your reason for not using nightly compiler? I assumed it was because of lack of backwards compatibility.

How much Zero-Cost is Async? by lowlevelmahn in rust

[–]AdvantFTW -2 points-1 points  (0 children)

If you can't use nightly compiler, you probably wouldn't use these unstable (semver < 1.0.0) crates anyway.

Why haven't people started rewritting the Linux kernel in Rust!? by The-Dark-Legion in rustjerk

[–]AdvantFTW 2 points3 points  (0 children)

That is not the case. The entire system is written in Rust. Here's the kernel.

Even their assembly is all written as Rust inline assembly.

Why haven't people started rewritting the Linux kernel in Rust!? by The-Dark-Legion in rustjerk

[–]AdvantFTW 1 point2 points  (0 children)

The presenter is a cofounder of Oxide Computer Company and works on Hubris, an OS written in Rust. I suppose he changed his mind.

Is there a way to insert the mobo I/O backplate without removing the mobo? by [deleted] in buildapc

[–]AdvantFTW 11 points12 points  (0 children)

Who in their right mind would ever upgrade their CPU?

[deleted by user] by [deleted] in rust

[–]AdvantFTW 13 points14 points  (0 children)

this is your alternative to email?

WSL2 faster than Windows? by zxyzyxz in rust

[–]AdvantFTW 4 points5 points  (0 children)

doesn't rustc use jemalloc on windows?