- 90 Posts
- 1.59K Comments
SorteKanin@feddit.dkto
Fediverse@lemmy.world•[AI] vutuv - a Fediverse alternative to LinkedInEnglish
21·10 days agoI feel like that’s an unnecessarily narrow view of what the fediverse can be. The fediverse is not only for any single particular social networking use case, like micro-blogging (Mastodon) or forums (Lemmy, Pyfed etc). It can be much more than that, and all of it at the same time. There’s no reason why the fediverse should restrict itself to only certain social media use cases.
SorteKanin@feddit.dkto
Fediverse@lemmy.world•[AI] vutuv - a Fediverse alternative to LinkedInEnglish
1·10 days agoNot sure I understand - you think some of those things don’t belong on the fediverse? What do you mean “one or the other”?
SorteKanin@feddit.dkto
Fediverse@lemmy.world•[AI] vutuv - a Fediverse alternative to LinkedInEnglish
173·10 days agoI know we love to hate on LinkedIn, but honestly there are plenty of reasons to want social features about employers and jobs. Reviews, salary discussions, union organization and all such stuff that employees could leverage against employers, for instance.
Of course that’s not what LinkedIn is largely used for because it’s full of employers trying to brand themselves or influencers trying to make an image for themselves. But it could be different, I think.
SorteKanin@feddit.dkto
Fediverse@lemmy.world•Maybe a better Threadiverse Major Defederations Graph?English
2·10 days agobut i assume the sheer amount of images/video takes up a lot of space
You can adjust settings in Lemmy to not store other instances media like this, so this shouldn’t be a big problem with the right config.
SorteKanin@feddit.dkto
Rust@programming.dev•Enabling the next iteration of the borrow checker on nightly
2·11 days agoAlready posted, duplicate post
SorteKanin@feddit.dkto
Rust@programming.dev•Enabling the next iteration of the borrow checker on nightly
4·11 days agoSuper cool! Hopefully that can resolve some of the long standing issues with the borrow checker.
SorteKanin@feddit.dkto
Rust@programming.dev•New to Dioxus and Rust. Any tips about getting started?
2·14 days agoI’m not really sure what you’re asking. Or I guess I mean, it’s a very broad question. Just start a project and get learning.
If you have any more specific questions, feel free to ask!
Isn’t it pretty obvious? Fastrand is not cryptographically secure, urandom provides that option.
SorteKanin@feddit.dkto
Work Reform@lemmy.world•Please critique this in terms of its raising awareness of the less aware. It's old news to us, but will it help people wake up a little?
7·15 days agoThis is like 1 poster that should be 7 different posters.
SorteKanin@feddit.dkto
Technology@lemmy.world•France orders internet providers to block access to Polymarket prediction siteEnglish
31·26 days agoScenarios in gambling are rarely “purely random”. I.e. the likelyhood of winning in poker depends on what you already got dealt and what other cards got dealt and so on. What does “purely random” even mean? Like a lottery with equal chance of winning for all participants? Yea that’s gambling but just one kind of gambling.
SorteKanin@feddit.dkto
No Stupid Questions@lemmy.world•Why are so many new programming languages being developed?
7·29 days agoKeep in mind that software engineering as a field is like, incredibly new, compared to a lot of other fields. Computers have not been around for that long, historically speaking.
It’s honestly to be expected that some of the first established languages did not turn out to be the best language that could be. We’re still figuring out how programming languages should be.
In 50 years, there will probably be another series of programming languages. They might even be optimised for LLM usage rather than for human directly, who knows. This stuff is all so new.
SorteKanin@feddit.dkOPto
Rust@programming.dev•'Rust makes coding fun again': Why Linux is moving away from C, according to Greg Kroah-Hartman
2·29 days agoworking on a project where memory safety isn’t that important
I can’t really imagine anything where this is not the case, unless you’re doing like… I dunno, small scripts for personal use or something? But why would you use Zig or C or even Rust for that, just do Python or even bash at that point? Python is memory safe and perfectly suitable for very small programs where static analysis gives little benefit.
SorteKanin@feddit.dkOPto
Rust@programming.dev•'Rust makes coding fun again': Why Linux is moving away from C, according to Greg Kroah-Hartman
1·29 days agoReleaseSafe which have runtime checks to prevent illegal behavior
To prevent some illegal behaviour. Again, I’m not an expert on Zig, but as far as I understand, even Release"Safe" is not actually memory safe.
SorteKanin@feddit.dkOPto
Rust@programming.dev•'Rust makes coding fun again': Why Linux is moving away from C, according to Greg Kroah-Hartman
1·29 days agoSaying that “memory safety is checked by tests” is basically saying “memory safety is not checked”. Yes, you can write tests. How do you know the tests cover all cases? How do you know the tests aren’t buggy?
Also, what about memory safety across threads? Are you testing multi-threaded scenarios? Are you ensuring you have no data races?
I also don’t understand how this is an argument for Zig over C. You can also test memory safety of your C code via various means, but it’s never a guarantee. Zig is the same. So again, it seems a bit more pointless to go from C to Zig. Going from C to Rust brings actual tangible guarantees of memory safety (outside of any
unsafeusage, obviously).
SorteKanin@feddit.dkOPto
Rust@programming.dev•'Rust makes coding fun again': Why Linux is moving away from C, according to Greg Kroah-Hartman
2·29 days agorust does a great job, however there are some inconsistentcies where a lot of memory allocations can throw out of memory errors that will crash the app
That is not an “inconsistency”. Crashing the application when you run out of memory is honestly in almost all cases the correct call and crashing is memory safe. Most applications can do absolutely nothing when running out of memory. “Handling” OOM is extremely complicated and most applications simply cannot handle it in any way.
Of course low level stuff needs to sometimes actually handle this, but it’s mostly an operating system thing. And Rust still allows you that control, it’s just not the default behavior of the collections and such in the standard library, because again, it almost never makes sense to try to handle OOM. But if you really need that behavior, you can have it.
SorteKanin@feddit.dkOPto
Rust@programming.dev•'Rust makes coding fun again': Why Linux is moving away from C, according to Greg Kroah-Hartman
5·30 days agoAgreed that it makes the transition from C easier, but I’d also say it makes the transition from C more pointless. I don’t really know that much about Zig but from what I’ve heard, I don’t really get the benefits - if you want a fast systems-level language without guard rails, why aren’t you just writing C (or C++, if that’s your thing)?
SorteKanin@feddit.dkOPto
Rust@programming.dev•'Rust makes coding fun again': Why Linux is moving away from C, according to Greg Kroah-Hartman
16·1 month agoCan’t argue with that
SorteKanin@feddit.dkOPto
Rust@programming.dev•'Rust makes coding fun again': Why Linux is moving away from C, according to Greg Kroah-Hartman
7·1 month agoWhy are you considering Zig instead of Rust? Or is it in addition?
SorteKanin@feddit.dkto
Rust@programming.dev•crates.io front-end and its accessiblity issue(s)
5·1 month agoGenerally agree with the takes here and similarly befuddled that an unofficial site like lib.rs seems to be entirely better in almost every way than the official site. It’s a bit disappointing.
I’ve unfortunately seen first hand the stubbornness of some developers on the Rust project when I tried to contribute a minor thing myself. I perhaps just had a bad unlucky experience, but it turned me off from ever contributing again.













On that I agree. It’d be nice with a more universal platform.