HackerTrans
TopNewTrendsCommentsPastAskShowJobs

akx

no profile record

comments

akx
·قبل شهرين·discuss
To be fair, gnu tar 1.31, 2019-01-02, added `--zstd` (and other automatic .zst support). So that support has been there for a good 7 years and 4 months at the time of writing.
akx
·قبل شهرين·discuss
> Typically, other archives like .tar.bz2 can be smaller. But those aren’t backwards-compatible!

Is there any point for (new) .bz2 archives in the era of Zstd?
akx
·قبل 3 أشهر·discuss
What do you mean with "basically ensures that dependencies won't become managed properly"?
akx
·قبل 4 أشهر·discuss
Sounds like you're not familiar with https://docs.astral.sh/uv/ ...
akx
·قبل 4 أشهر·discuss
This doesn't do the same thing though, since it's not Unicode aware.

    >>> 'x\u2009   a'.split()
    ['x', 'a']
    # incorrect; in bytes mode, `\S` doesn't know about unicode whitespace
    >>> list(re.finditer(br'\S+', 'x\u2009   a'.encode()))
    [<re.Match object; span=(0, 4), match=b'x\xe2\x80\x89'>, <re.Match object; span=(7, 8), match=b'a'>]
    # correct, in unicode mode
    >>> list(re.finditer(r'\S+', 'x\u2009   a'))
    [<re.Match object; span=(0, 1), match='x'>, <re.Match object; span=(5, 6), match='a'>]
akx
·قبل 5 أشهر·discuss
This inspired me to update my over-a-decade-old glitch generator https://akx.github.io/glitch2/ with camera input and a handful of new modules.
akx
·قبل 6 أشهر·discuss
It's pretty good. And for once, a software-engineering-ly high-quality codebase, too!

All too often, new models' codebases are just a dump of code that installs half the universe in dependencies for no reason, etc.
akx
·قبل 6 أشهر·discuss
If someone's curious about those particular constants, they're the PAL Y' matrix coefficients: https://en.wikipedia.org/wiki/Y%E2%80%B2UV#SDTV_with_BT.470
akx
·قبل 8 أشهر·discuss
You'd think there was a LUT you could apply to the digital copies during playback to make it look (more) like the original...
akx
·قبل سنتين·discuss
No filesystem is great in the lots-of-small-files case, partly simply due to syscall overhead.

There's a reason https://www.sqlite.org/fasterthanfs.html , SquashFS, etc. are a thing, or why even Europe's fastestest supercomputer's admins admonish against lots of small files. https://docs.lumi-supercomputer.eu/storage/#about-the-number...
akx
·قبل 8 سنوات·discuss
And the Clojure cookie (de)serializer doesn't even deal with all the fields the original does?