Viewing profile — anarki8
anarki8
HN member- Joined
- Sat, Feb 22, 2025, 1:38 PM UTC
- HN karma
- 61
- Public activity
- 20 items
- HN profile
- View on Hacker News ↗
About anarki8
No profile information was provided.
Recent public activity
-
comment
Comment #49033641
Not sure how Anubis plays with SourceHut trying to be js-free, but otherwise it's awesome. SourceHut prohibits anything cryptocurrency- or blockchain-related, so it's less restrict…
-
comment
Comment #49032460
Migrated to it around 3 years ago. All I needed was a dependable and simpler (preferably EU-based) GitHub alternative for my FOSS code. Now I am migrating away and stopped my donat…
-
comment
Comment #48278412
Seems previously one of the goals for the Flatpak project was to develop a universal app packaging format for Linux OS family that suits even exotic ones like Alpine and Void (and …
-
comment
Comment #46262087
Probably because: - better data race handling; - no garbage collection, more predictable performance; - stricter type system that can enforce constraints better; - closer to metal …
-
comment
Comment #46262029
https://killedbygoogle.com/
-
comment
Comment #46051911
> My point is against rewrites of critical software for the point of rewriting it insert my favorite language . In this specific case we are talking about the maintainer adding a n…
-
comment
Comment #46047023
> The problem is that rust is being shoved in pointless places with a rewrite-everything-in-rust mentality. > There's lunatics ... I think the problem is people calling developers …
-
comment
Comment #46046684
> You can't go around screaming "your code SUCKS and you need to rewrite it my way NOW" It seems you are imagining things and hate people for the things you imagined. In reality th…
-
comment
Comment #46033197
> Its compilation is slow. I mean SLOW. Slower than C++. I know over years Rust became several times faster, but objectively we need it to be two orders of magnitude faster, not ju…
-
comment
Comment #46031597
> Rust cannot recover Recoverable error mechanism in Rust: https://doc.rust-lang.org/std/result/enum.Result.html
-
comment
Comment #46031488
> We actually had a recent Cloudflare outage caused by a crash on unwrap() function > Memory safety is not that sacred. In fact, for many applications malfunctioning is better than…
-
comment
Comment #45606633
I wouldn't say it's bad at GUIs either. There are some nice libraries like Iced and Slint. Some even have good accessibility support like egui. There is a full-fledged DE written i…
-
comment
Comment #44994281
There might be potential improvements, like using OsString by default for `env::args()` but I would pick Rust's string handling over Go’s or C's any day.
-
comment
Comment #44971563
This sounds a bit overdramatic for a less than a second waiting time per week for each device. Unless you employ an army of crawlers of course.
-
comment
Comment #44970629
Article might be a bit shallow, or maybe my understanding of how Anubis works is incorrect? 1. Anubis makes you calculate a challenge. 2. You get a "token" that you can use for a w…
-
comment
Comment #44080892
You don't really need any exotic OO GCed language to enjoy concurrency safety without deadlocks.
-
comment
Comment #43672225
I find myself using channels in async Rust more than any other sync primitives. No more deadlock headaches. Easy to combine multiple channels in one state-keeping loop using combin…
-
comment
Comment #43579303
I have been annoyed by this before, but now it's mostly obvious troll or sarcastic posts. Rust haters' cult on the other hand...
-
comment
Comment #43206376
I am not sure what are you trying to represent with this example, but here is the exact same thing without any unsafe: use rayon::prelude::*; use std::time::{Instant, Duration}; us…
-
comment
Comment #43138877
redb is what are you looking for https://github.com/cberner/redb