wasabi
What's your hoster?
Looks very broken on mobile.
Check out Wolfgang's Channel on YouTube. He goes very in depth on low power consumption home servers.
Exact Audio Copy and Qobuz.
python -m http.server
came in handy so many times!
Honestly 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.
Yes, that's a good alternative for Collection[str]
but not so much for Iterable[str]
as you lose the lazyness of Generators.
Maybe 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 2 Container[str]
as input so you can't use *args
. But no real world example comes to mind.
Yes, you're right. It also a lot of benefits.
This + an assert seems like the way to go. I think that str
should never have fulfilled these contracts in the first place and should have a .chars
property that returns a list of one-character-strings.
But this change would break existing code, so it is not going to happen.