𝕨𝕒𝕤𝕒𝕓𝕚
- 11 Posts
- 67 Comments
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto
Fediverse@lemmy.ml•Announcing Ibis, the federated Wikipedia Alternative
7·2 years agoLooks very broken on mobile.

I have found it: fka boursin - coma (original mix)
Finally my mind can rest
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto
DACH - jetzt auf feddit.org@feddit.de•CSU will Cannabiskonsum über Abwasser messenDeutsch
8·2 years agoRastafari gehören aber nicht wirklich zum Christentum, da es beim Fundament des Glaubens signifikante Unterschiede gibt. Rastafari glauben an den äthiopischen Kaiser Haile Selassie I. als Reinkarnation Gottes. In dem Sinne sind Rastafari genauso christlich wie Christen jüdisch sind. Die Wurzeln mögen gleich sein, aber sie unterscheiden sich in den zentralen Aspekten der Religion so stark, dass sie letztenendes nicht miteinander vereinbar sind.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto
Asklemmy@lemmy.ml•Audiophiles of Fedi, how do you like to listen to your music?
4·2 years 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 Platform
1·2 years agoCheck out Wolfgang’s Channel on YouTube. He goes very in depth on low power consumption home servers.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto
DACH - jetzt auf feddit.org@feddit.de•Ich glaube, ich verliere den VerstandDeutsch
7·2 years agoAls einziger Mensch der existiert sollte ich dringend aufhören mir Leute auszudenken, die davon überzeugt sind, dass sie auch die einzigen Menschen sind. Das wird irgendwann sehr verwirrend.
Exact Audio Copy and Qobuz.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto
Python@programming.dev•CLI tools hidden in the Python standard library
19·2 years agopython -m http.servercame in handy so many times!
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto
World News@lemmy.ml•Hungarian president resigns over sex abuse case pardon
1·2 years agoDamn I hoped it was this clown orban
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto
Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Music Piracy Is Back in a Big WayEnglish
1·2 years 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·2 years 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·2 years 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·2 years agoYes, you’re right. It also a lot of benefits.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deOPto
Python@programming.dev•Generic Typing with `Iterable[str]` or `Collection[str]`: Should you use it?
2·2 years agoThis + an assert seems like the way to go. I think that
strshould never have fulfilled these contracts in the first place and should have a.charsproperty that returns a list of one-character-strings. But this change would break existing code, so it is not going to happen.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deOPto
Python@programming.dev•Generic Typing with `Iterable[str]` or `Collection[str]`: Should you use it?
2·2 years agostrmatches most of these contracts, though, requiring additional checks if astrwas passed or one of these collections containing strings.
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deOPto
Python@programming.dev•Generic Typing with `Iterable[str]` or `Collection[str]`: Should you use it?English
3·2 years agoBut what if you actually don’t want
strto be valid?
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deOPto
Python@programming.dev•Generic Typing with `Iterable[str]` or `Collection[str]`: Should you use it?English
3·2 years agoI know that
IterableandCollectionaren’t the same. My point is, that if you useIterable[str]orCollection[str]as a more flexible alternative tolist[str]you no longer have any type-hinting support protecting against passing in a plain string and you could end up with a subtle bug by unexpectedly looping over['f', 'o', 'o']instead of['foo'].
𝕨𝕒𝕤𝕒𝕓𝕚@feddit.deto
Asklemmy@lemmy.ml•What (free and open-source) applications do you use on a daily basis?
1·2 years agoFor now. YouTube constantly changes stuff, requiring changes to newpipe. As no one will merge these into the fork, it will stop working when that happens.





What’s your hoster?