Comment on
Lights on
Reply in thread
This post was in lemmy.world which is extremely overloaded at the moment
Comment on
Lights on
Reply in thread
This post was in lemmy.world which is extremely overloaded at the moment
Comment on
🥺 rule
Reply in thread
Nope, they have returned. Introducing wojaks
Comment on
Hell freezes over, MS Paint adds support for layers and PNG transparency
Reply in thread
It's not 1 minute, you have to be technically savvy and run scripts from GitHub
Comment on
Are we committed to Lemmy? or would we move if something better comes along?
Reply in thread
Lemmynsfw is blocked on your instance if that's what you were trying to view https://sopuli.xyz/instances
Comment on
Let's talk about something else
Reply in thread
Manjaro likes to break on its own during updates in my experience
Comment on
YSK: You can block communities from appearing on your "All" feed. just go to the website of your instance, pull up the community, and click "block community" (On mobile click "Sidebar" first")
Is there anyway to block instances without defederating? If not I'd like to see that as an option
Comment on
Lemmy Pro-tip for Chrome Users on Android
Reply in thread
Just use F-Droid
Comment on
You Can't Look at Porn on Any Reddit Third-Party App Now
It still works using my own API key
Comment on
I can't upvote posts from Lemmy.ml
I think lemmy.ml has been down often, may be why
Comment on
*Permanently Deleted*
Reply in thread
Personally I'll continue to use reddit after I recompile Infinity for Reddit with my own personal API key. I'm not using the official client. However I'll be more active here
Comment on
Any good retro/rom archive and emulation solution?
It's not organized at all but I just point RetroArch to a network share
Comment on
[C# 10] How to use declaration patterns with a switch statement?
Your code does not follow the pattern matching syntax; I don't see "is" anywhere. That's what is actually doing the casting
Edit: I think I'm completely wrong about "is" being required
Comment on
G!!!!!!!!!!
Awesome fucking blue flaming skull with the "G" key highlighted:
Comment on
Philly Cheesestakes [Homemade]
Now I wanna try
Comment on
Are you tired of explaining over and over again why crypto-ponzi-currency is bad, hypercapitalist ecocidal scam?
You could easily say the same thing about any state backed currency like USD. Yet we're still gonna use it
Comment on
Managing bookmarks across browsers? - OFFLINE
floccus bookmark sync, it's selfhosted
Comment on
Discussion: Trigun Stampede. Anyone watched the Trigun reboot? What did you think about it?
I thought it was great but yeah still definitely prefer the original. I really love how mystical and organic it felt, the new one has a bit less of that feeling
Comment on
The meme that inspired the community
Based and catpilled
Comment on
[C# 10] How to use declaration patterns with a switch statement?
Reply in thread
I see, using "is" could be a downcast from any type. But from object it would always be an upcast so you don't need an explicit casting operator
Comment on
[C# 10] How to use declaration patterns with a switch statement?
The "is" is a part of pattern matching which I don't believe regular switches can do. Only switch expressions. The example in the link you gave is checking the type by casting using "is".