𝕨𝕒𝕤𝕒𝕓𝕚
- 18 Posts
- 91 Comments
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto Linux@lemmy.ml•backdoor in upstream xz/liblzma leading to ssh server compromise1·1 year agodeleted by creator
The real story sounds even weirder. They took his work permit for the sole purpose of stopping any integration that could hinder a later deportation. Wtf. Fachkräftemangel my ass.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deOPto Selfhosted@lemmy.world•What's the real world connection speed from your residential IP to your Server?English1·1 year agoWhat’s your hoster?
These pizza burgers are absolute dogshit. The bun is incredibly dry, crunchy and stale. But at least you are rewarded with some tasty third degree burns in your mouth. “Easy to eat” my ass lmao.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto Fediverse@lemmy.ml•Announcing Ibis, the federated Wikipedia Alternative7·1 year agoLooks very broken on mobile.
I have found it: fka boursin - coma (original mix)
Finally my mind can rest
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto Asklemmy@lemmy.ml•Audiophiles of Fedi, how do you like to listen to your music?4·1 year agoAt Home:
- FLACs via mpd with a topping headphone amp and Audeze LCD2C headphones
- Vinyl using an Audio Technica LP120, a Denon AV receiver and cheap wharfedale bookshelf speakers and a Klipsch subwoofer. That Setup isn’t really audiophile tbh, especially because the room sounds terrible.
- Streaming via Qobuz on both systems
On the go:
- Everything encoded as Opus 128 kbit/s to fit on my phone. Played over Lypertek Tevy true wireless IEMs. Not really audiophile but tbh when I’m not at home I care much more about convenience as long as the audio quality is good enough.
- also Qobuz, but at MP3 320 quality to save bandwidth
I wrote my own scripts to tag the music and encode it to FLAC and Opus and use syncthing to copy the files to my phone. So whenever I add an album to the library it will be available every where I want in the specified format without any manual copying involved. It’s a little janky but has worked surprisingly well for years.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto Linux@lemmy.ml•OpenMediaVault 7.0 Released For Debian 12 Powered NAS Platform1·1 year agoCheck out Wolfgang’s Channel on YouTube. He goes very in depth on low power consumption home servers.
That’s the biggest issue of smartwatches IMO. They will all end up in a landfill after approximately 5 years while you’ll be able to give that Timex (or your F91W that costs less than a pizza) to your grandkids.
Exact Audio Copy and Qobuz.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto Gaming@lemmy.zip•World of Goo 2 launches in May on the Epic Store - but Linux support from their websiteEnglish21·1 year agoSteam integrates with your package manager?
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto Python@programming.dev•CLI tools hidden in the Python standard library19·1 year agopython -m http.server
came in handy so many times!
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto World News@lemmy.ml•Hungarian president resigns over sex abuse case pardon1·1 year agoDamn I hoped it was this clown orban
Lmao, chinese tea ceremony includes like 500 steps.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Music Piracy Is Back in a Big WayEnglish1·1 year agoHonestly the most complete source of high res music is private trackers like redacted. You can download all the stuff from qobuz and bandcamp, every CD rip you can think of in bit perfect quality of and even very good vinyl rips. You basically can download any version ever released from any album.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deOPto Python@programming.dev•Generic Typing with `Iterable[str]` or `Collection[str]`: Should you use it?1·1 year agoYes, that’s a good alternative for
Collection[str]
but not so much forIterable[str]
as you lose the lazyness of Generators.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deOPto Python@programming.dev•Generic Typing with `Iterable[str]` or `Collection[str]`: Should you use it?3·1 year agoMaybe something like passing in a list of patterns which should match some data, or a list of files/urls to download would be examples of where I would like to be generic, but taking in a string would be bad.
But the real solution be to convert it to
foo(*args: str)
. But maybe if you take 2Container[str]
as input so you can’t use. But no real world example comes to mind.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deOPto Python@programming.dev•Generic Typing with `Iterable[str]` or `Collection[str]`: Should you use it?1·1 year agoYes, you’re right. It also a lot of benefits.
Two of them