What does your happiness have to do with anything I said?
- 12 Posts
- 516 Comments
So what you’re saying is that you already disowned your sister for her religious views, but you regret that and want her to come back… by converting her back to Muslim beliefs? You don’t see the hypocrisy in that? You already seem to care about her more than your religion, otherwise you wouldn’t be making this post.
It seems like you’re unwilling to accept a decision she’s already made. If your family cares more about maintaining strict religious beliefs than accepting your own sister, you’ll be causing her more pain by continuously trying to convert her back. If all you’re doing is trying to absolve yourself from any guilt by saying you tried, then you might as well give up now. That’s just your own selfishness and won’t change her beliefs.
It’s not like being an atheist means someone will instantly have no morals. In fact, it’s usually the opposite. If someone needs the threat of eternal damnation to motivate themself to do good things, I’m sorry but they probably aren’t a good person to begin with.
NixOS manages to be all of these at once except the manual dependency management
As someone who has worked with a pretty large C# codebase and several smaller ones, I’ve found it to be one of the least efficient languages to program in. This is maybe not a technical fault of the language, but the way Microsoft encourages developing C# means that once you get past a certain point even simple MRs will have 10-20 files changed. There is sooooooooo much boilerplate caused by .NET that even things like Java Spring Boot just don’t have (and even then I’d consider Java to be a pretty bloated language in terms of boilerplate).
That’s ignoring the fact that the ecosystem surrounding .NET is a lot more enterprise-y, meaning a good portion of libraries require paid licenses to use.
My company uses it for some of our legacy on-prem hosting, but a lot of that is being actively decommissioned.
Zangoose@lemmy.worldto
Android@lemmy.world•Incase you were not aware, there is a new fork of Revanced which is more properly maintained. It's called Morphe.English
3·13 天前Most of the world can’t feasibly install non-Apple-approved apps on iOS without paying $100 a year so something like that would probably never catch on in iOS land
Zangoose@lemmy.worldto
Android@lemmy.world•Incase you were not aware, there is a new fork of Revanced which is more properly maintained. It's called Morphe.English
10·14 天前It’s an Android app patcher that removes ads and adds some other quality of life patches. Primarily for YouTube but it supports several other apps as well.
On YouTube it also adds things like integrated SponsorBlock, extrapolating dislikes, actual resolution buttons, and the option to disable shorts.
Zangoose@lemmy.worldto
Linux Gaming@lemmy.ml•Slay the Spire 2 has massive success using Godot. Devs do not intend to fight de-compiling.
31·15 天前What you’re talking about is “source-available.” I.e. being able to read source code but not having licensing rights to redistribute or make changes.
“Open-source” means that being able to modify and distribute changes is built into the license of the code.
For example, Minecraft Java is source-available in that decompiling Java bytecode is trivial - enough so that tools exist which can easily generate a source code dump. However, actually distributing that source code dump is technically illegal and falls under piracy, so it isn’t open source.
Edit: I didn’t see your edit, this comment is kind of pointless, oh well
Zangoose@lemmy.worldto
Science Memes@mander.xyz•Finally, an optimal monitor configuration!English
1·16 天前I mean I don’t see any reason why a Wayland compositor couldn’t support it, it’s pretty cursed either way though.
There’s a screenshot in one of the other comments in this thread (from owenfromcanda, I think the other screenshots are fake)
Zangoose@lemmy.worldto
Science Memes@mander.xyz•Finally, an optimal monitor configuration!English
2·16 天前X11 already supports this lol
I think they’re talking about the image
Zangoose@lemmy.worldto
Fediverse@lemmy.world•Lead Lemmy developer dessalines@lemmy.ml Appears to Have Had Their Account Compromised After Moderation Actions Raise Serious ConcernsEnglish
1·19 天前The code is open source. Nothing is obscured.
“Security-by-obscurity” is a phrase used for any measure that is useless once you know how it works. In this case it’s hoping that a troll doesn’t know about the specific hardcoded rules. None of the rules in PieFed actually work if you are at all aware of them.
Zangoose@lemmy.worldto
Fediverse@lemmy.world•Lead Lemmy developer dessalines@lemmy.ml Appears to Have Had Their Account Compromised After Moderation Actions Raise Serious ConcernsEnglish
1·19 天前Thanks for clarifying, I guess I misremembered the shadowbanning part. I think I was mixing together the fact that reputation isn’t really transparent (users’ reputation can change by even attempting to upload an image that gets flagged, and the vague error means they’ll probably try multiple times without realizing they’re being moderated) and the fact the communities can autoban any user whose global reputation is low enough.
I still think the security-by-obscurity approach to moderation is inherently flawed though, and I hate to imagine how the dev approaches actual account security if that’s their approach to moderation.
Zangoose@lemmy.worldto
Fediverse@lemmy.world•Lead Lemmy developer dessalines@lemmy.ml Appears to Have Had Their Account Compromised After Moderation Actions Raise Serious ConcernsEnglish
3·19 天前Honestly I would consider [user-obscured] hardcoded
shadowbanning just as bad.Just because I’m closer to agreeing with the PieFed dev’s opinions a little bit more doesn’t mean that I’d support
shadowbanning someone because the trivially-evaded checks caught a false positive in the crossfire. Piefed’s auto moderation/social scoring is pretty much textbook definition security-by-obscurity. The second anyone knows how it works, it’s useless. It will pretty much exclusively catch people who just wanted to post a harmless meme or something.At least (for now) Dessalines isn’t hardcoding his tankie beliefs into Lemmy’s source code.
Edit: Blaze is right, it isn’t shadowbanning, but the rest of my point still stands, added the [] part to clarify
Zangoose@lemmy.worldto
Fediverse@lemmy.world•Lead Lemmy developer dessalines@lemmy.ml Appears to Have Had Their Account Compromised After Moderation Actions Raise Serious ConcernsEnglish
9·19 天前There were a few, not exaustive since it’s been a few months since I looked through the source code, some of this might have changed and there’s also a few other checks that I’m forgetting:
- 4chan screenshots (specifically anything that OCR identified as having “Anonymous #(number)” in it) were banned. Honestly this one is fine as a toggle but I think for a while it was just on by default in the code
- any community that had specific words in it were blocked at instance level. I think “meme” was there, a few swear words, and a few carryover reddit meme community names (196, I think nottheonion was also there, anything with “shitpost” in the name, etc.)
- There’s a hidden karma/social credit score based on a user’s interactions and net total karma hidden from them that gets impacted by any moderation actions, including some of the automated hardcoded ones (e.g. even trying to upload an image that gets flagged by the hardcoded checks). In some cases the user is not informed of any of these changes (the image upload will appear as a generic image upload error)
- users with a low enough net score can be automoderated at both a community and instance level
Edit: the other thing is, a lot of this hardcoded moderation isn’t documented anywhere outside of the code, likely because a lot of the measures would be useless if people knew how they worked
Edit 2: updated based on Blaze’s reply from another comment, I misremembered the shadow banning, I was confusing it with the federation errors that occur when one user blocks another
Zangoose@lemmy.worldto
Fediverse@lemmy.world•Lead Lemmy developer dessalines@lemmy.ml Appears to Have Had Their Account Compromised After Moderation Actions Raise Serious ConcernsEnglish
187·21 天前Tbf Piefed also does have opinionated moderation literally hardcoded into the source code.
It’s pretty easy to modify since it’s python and not rust, but still not great
Gender-wise, women tended to make small interjections, nod their heads, etc, as the conversation went among, to indicate that they were listening
Wait this isn’t something everyone does?
Zangoose@lemmy.worldto
Technology@lemmy.world•Apple introduces Macbook Neo - cheaper Macbooks starting at $599English
82·24 天前I’m comparing hardware to hardware, not artificial Apple software restrictions.
That’s great but hardware doesn’t exist in a vacuum. With an ecosystem as locked-down as an iPad’s you can’t just ignore the software. It’s not like you’ll ever be able to uninstall it because it’s intentionally locked down, unlike a macbook which allows installing apps and even modifying the bootloader to boot into a different OS.
Edit: Forgot to mention the fact even for people that might not care about that, iOS will automatically kill any app that uses more than a certain amount of RAM (I think it was 4GB? I don’t remember the exact number) so in a lot of scenarios you can’t even take advantage of the hardware in an iPad because of the locked down software
Zangoose@lemmy.worldto
Technology@lemmy.world•Apple introduces Macbook Neo - cheaper Macbooks starting at $599English
111·24 天前Ok but if you want to do actual work on it then these things absolutely do not cancel each other out because you have to spend $270 on a keyboard/trackpad regardless, and now have to use a clunky touchscreen on your 13 inch tablet half the time.
Yes, the M4 is much faster and it is probably only stupid product segmentation keeping it on the iPad. But the reality is, iOS/iPadOS puts OS-level limits on how much you can even take advantage of that hardware even if there is an iOS app for the thing you want to do
TLDR: If you really want a MacBook just get a refurbished M1/M2 MacBook and call it a day, bonus points for putting Asahi on it









DNA isn’t perfect either though. It’s possible to be AMAB with XX chromosomes and AFAB with XY chromosomes (both still having the “correct” fully functional organs for their assigned gender). Some intersex people can also have multiple sets of DNA, some being XX and some being XY.
Neatly fitting all cases of biology into 2 categories like that is basically impossible anyway regardless of how you do it. “Biologically male/female” is basically impossible to define without also excluding some people that were born into each category. They’re fundamentally useless terms that don’t actually convey anything meaningful…