I can't count the number of times I've seen this: "Now that I've disabled the server from starting, the app runs without issue. It is now complete and production-ready!"
24.10.2025 13:37 β π 5 π 1 π¬ 1 π 0@dr-emann.bsky.social
I can't count the number of times I've seen this: "Now that I've disabled the server from starting, the app runs without issue. It is now complete and production-ready!"
24.10.2025 13:37 β π 5 π 1 π¬ 1 π 0it can be really difficult to work with people who think theyre always the smartest guy in the room, especially for me, the actual smartest guy in the room
18.10.2025 11:12 β π 47 π 3 π¬ 1 π 0how to deactivate torment nexus
torment nexus deactivation tutorial
torment nexus deactivation tutorial working 2025
deactivate torment nexus no survey
Strictly speaking, you _can_ add new implementations in a non-breaking change, but they would have to be subtypes of an existing subtype of the sealed interface.
19.09.2025 02:51 β π 1 π 0 π¬ 1 π 0Yes, it is. So in Kotlin, "*non-exhaustive enums* are equivalent to *sealed interfaces*" isn't true, Kotlin sealed interfaces are equivalent to a normal, exhaustive enum in Rust.
19.09.2025 02:51 β π 2 π 0 π¬ 1 π 1Maybe what kotlin calls sealed interfaces are actually something else from a type-theoretic world, but kotlin's sealed interfaces _can_ promise that you won't add a new implementation, which does allow compiler checked exhaustive pattern matching: pl.kotl.in/iOXs1juXW
19.09.2025 02:18 β π 0 π 0 π¬ 1 π 0Today, weβre announcing the preview release of ty, an extremely fast type checker and language server for Python, written in Rust.
In early testing, it's 10x, 50x, even 100x faster than existing type checkers. (We've seen >600x speed-ups over Mypy in some real-world projects.)
Thanks for your thoughtful handling of the situation, Dirkjan and the rest of the rustup team.
05.03.2025 22:56 β π 19 π 2 π¬ 0 π 0FWIW we Rust folks should be a little more forthcoming in saying that the load is not zeroβbut also that that's fine, the benefits are worth it. I'm worried saying zero load burns credibility
03.02.2025 20:43 β π 14 π 2 π¬ 2 π 1Effectively, because of this, yes, unwrap can be a footgun. But 90+% of your functions don't need to handle options, unlike go, where every pointer is implicitly an option.
30.01.2025 01:33 β π 0 π 0 π¬ 0 π 0Because I can take Option<&T> in one function, and handle the None case, and all the functions it calls can take &T, and statically know they don't need to check for null, even 10 layers away in a helper. If I take a pointer in go for my helper, I either check for null, or doc it expects non null
30.01.2025 01:31 β π 2 π 0 π¬ 1 π 0You probably want to enable optimization, by passing `-C opt-level=3` when comparing assembly, even more things will end up optimized away. godbolt.org/z/Gh3jnMEdY
30.01.2025 01:27 β π 1 π 0 π¬ 0 π 0Alright, everyone who uses YouTube and complains about the algorithm not showing you what you're subscribed to -
I present this magic link. This will take you to the subscriptions feed which is only things you are subscribed to.
www.youtube.com/feed/subscri...
I'm super excited to see byte string types coming soon to a Rust standard library near you!
github.com/rust-lang/ru...