spoiler

made you look

  • 0 Posts
  • 48 Comments
Joined 2 years ago
cake
Cake day: July 27th, 2024

help-circle




  • The_Decryptor@aussie.zonetomemes@lemmy.worldI did not consent to this
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    3 months ago

    In 145.

    Funny thing is, the WebM format is actually a constrained profile of MKV, and Firefox strictly enforced those compatibility checks. Chrome never did though, so it could always support MKV files but only if you lied and claimed they were WebM.

    Edit: Lemmy eats the highlight in the link, look for “Matroska” under “Web Platform”




  • I’ve never used 6rd, but I did use 6to4 for a while (A long time ago) and I got a GUA from that. 6rd closely related to 6to4 so I naïvely expect them to work similarly?

    Now I did it all with OpenWRT, but the gist was you set the tunnel information on the WAN side in the webui, and it produced the configuration for the LAN side. Since it’s a tunnel you never actually set any of the v6 details on the actual WAN adapter, outside of routing (i.e. what v4 endpoint do you send stuff to).





  • It’s been a few years since I used a Mac, but even then resource forks weren’t something you’d see outside of really old apps or some strange legacy use case, everything just used extended attributes or “sidecar” files (e.g. .DS_Store files in the case of Finder)

    Unlike Windows or Linux, macOS takes care to preserve xattrs when transferring the files, e.g. their archiver tool automatically converts them to sidecar AppleDouble files and stores them in a __MACOS folder alongside the base file in the archive, and reapplies them on extraction.

    If course nothing else does that, so if you’ve extracted a zip file or whatever and found that folder afterwards, that’s what you’re looking at.



  • No, MS has been “shipping” curl with Windows for ages, it’s just that legacy powershell has an alias for curl to their internal download module that predates the bundling. And they won’t change that because it has backwards compatibility risks.

    Upside is, it’s a literal alias. “curl” uses the internal module while “curl.exe” uses the normal app.

    Further upside, if you use the up to date version of powershell, that alias is gone as they removed it during the transition.




  • A lot of this is also a post-hoc justification, UNIX didn’t get shared libraries until some point in the 80s (Can’t find an exact year), so before that your options were to either statically compile the needed functionality into your program or keep it as an entirely separate program and call out to that.

    It’s a perfect mix, in a time where enterprise storage was measured in single digit megabytes, and the only efficient way to created shared functionality was via separate programs, and you’ve got an OS that happens to have “easily pass data between programs” as a core paradigm.

    And now people invoke it to attack an init program for also monitoring the programs it starts and not just spawning them.