• 0 Posts
  • 51 Comments
Joined 2 years ago
cake
Cake day: June 18th, 2023

help-circle




  • NaibofTabr@infosec.pubtomemes@lemmy.worldGIRL. NOT LIKE THAT.
    link
    fedilink
    English
    arrow-up
    30
    arrow-down
    1
    ·
    edit-2
    1 month ago

    Oh no, it’s worse than that… we use the metric system to measure the customary system…

    The Mendenhall Order marked a decision to change the fundamental standards of length and mass of the United States from the customary standards based on those of England to metric standards. It was issued on April 5, 1893, by Thomas Corwin Mendenhall.
    […]
    Mendenhall ordered that the standards used for the most accurate length and mass comparison change from certain yard and pound objects to certain meter and kilogram objects, but did not require anyone outside of the Office of Weights and Measures to change from the customary units to the metric system.

    https://en.wikipedia.org/wiki/Mendenhall_Order

    Technically every unit in the US customary measurement system is just a weird conversion factor of an equivalent metric unit. At this point 1 yard was defined as 3600/3937 meter, which means 1 inch = 2.54000508 cm. By 1959 everyone finally agreed that this was stupid and redefined it as 1 yard = 0.9144 m (1 inch = 2.54 cm).

    All measurements in the US are based on standard reference objects provided by BIPM.















  • NaibofTabr@infosec.pubtomemes@lemmy.worldFreedom software
    link
    fedilink
    English
    arrow-up
    5
    ·
    4 months ago

    As others have pointed out you can do this, but there are at least two major advantages to the way Linux distributions use package managers:

    1. Shared libraries - on Windows most binaries will have their own code libraries rolled into them, which means that every program which uses that library has installed a copy of it on your hard drive, which is highly inefficient and wastes a lot of hard drive space, and means that when a new version of the library is released you still have to wait for each program developer to implement it in a new version of their binary. On Linux, applications installed via the package manager can share a single copy of common dependencies like code libraries, and that library can be updated separately from the applications that use it.

    2. Easy updating - on Windows you would have to download new versions of each program individually and install them when a new version is released. If you don’t do this regularly in today’s internet-dependent world, you expose your system to a lot of vulnerabilities. With a Linux package manager you can simply issue the update command (e.g. sudo apt upgrade) and the package manager will download all the new versions of the applications and install them for you.