anarcat
anarcat
So an update on this since 2.3 was released: there has been *some* improvements: #3023, #3392 and other changes cleaned up the main page so it shows the title and...
thanks for that extra data! i rewrote my script in python now, which should make it easier to port to a yt-dlp plugin next. here's the current python code: https://gitlab.com/anarcat/scripts/-/blob/67de3abafe8741631a8377c891a42bec5623585f/odieu.py...
awesome work, thanks! i've followed up there.
digging around this, i couldn't find anything about this in chromestatus.com (not sure what that means) and very few instances in mozilla's source (https://searchfox.org/mozilla-central/search?q=happy+eyeballs&path=&case=false®exp=false)... in particular, [their docs](https://searchfox.org/mozilla-central/source/netwerk/docs/necko_lingo.md#114) do mention...
not part of my use case, but sure, that would be nice. how do you tell those apart? how does apt know those shouldn't be updated? in this case, for...
nice! also: > i plan on adding those into apt_info.py through a merge request unless someone objects in a coming weeks. please let me know. i'm rather busy right now,...
i researched bloom filters for this recently and found two main implementations: [pybloom](https://github.com/jaybaird/python-bloomfilter), which seems abandoned but has an [active fork](https://github.com/joseph-fox/python-bloomfilter) (that doesn't seem to have been picked up by...
a bloom filter would look something like this: ```diff diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 57265a46..871c52b3 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -32,6 +32,8 @@ import six from six.moves import urllib...
yep, i definitely got the bloom filter backwards here, sorry. we should remember success and exit if the element is not in the filter. i was wondering if a `set`...
okay let's see here: ``` $ beet -l library.db stats Tracks: 26939 Total time: 10.4 weeks Approximate total size: 1012.3 GiB Artists: 1614 Albums: 2123 Album artists: 793 ``` let's...