• 0 Posts
  • 30 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle
  • Security is there to make sure you’re not carrying illegal stuff, as long as that’s fine, the only time they maybe check the id is before giving you the boarding pass.

    Looks like the guy didn’t have a boarding pass altogether, so not sure how he got into the plane.

    There is usually a person or an automatic gate that checks your pass before allowing you through the plane. However that’s more like a ticket check and to make sure people don’t get on the wrong planes, it’s probably not super hard to get around.








  • morhp@lemmy.wtftocats@lemmy.worldSo this is how I die
    link
    fedilink
    arrow-up
    1
    arrow-down
    7
    ·
    8 months ago

    Still sounds implausible and far fetched. Why would you be outside without adequate clothing? (Also below zero can be fine in jeans and sweatshirt if the sun is shining and there isn’t much wind). And in that case it would be more a heat issue and less like a shelter issue.

    The other case also sounds more like a heat/water issue and less like a shelter issue.







  • morhp@lemmy.wtftoMemes@sopuli.xyz🐬🐬🐬
    link
    fedilink
    arrow-up
    6
    ·
    10 months ago

    “most” would be an exaggeration, but many are. Other animals commonly used in placeholder names are also horse, chicken and lion.

    Pig was just the most common meat animal, so any unknown animal that you’d eat would he called an xyz pig. Apple was also used like this for all kinds of fruits and vegetables:

    orange = Chinese apple

    tomato = golden apple (?)

    pomegranate = granate apple

    potato = earth apple

    jimsonweed = thorn apple

    And so on






  • For modeling I like Freecad and Blender. Blender is more for general modelling and sculpting, Freecad is more for cad/constraint based creation of precise 3d models. So use blender if you want to create little soldiers or elephants or other more organic stuff, and use Freecad if you want to print a replica of a plastic part or an enclosure or something like that.

    There should be tons of slicers available on Linux.


  • Yes, it’s very efficient and the core of what complession formats like .zip do.

    The main difference to your idea is that computers count in binary like 0, 1, 10, 11, 100, 101 and so on and that you don’t want to assign these very low codes words directly. Say you’d have assigned 1 the most common word, then that will would be encoded very short, but you’d sort of take the one away from all the other codes, as you don’t know if 11 is twice the most common word or once the 11th (3rd in decimal) common word.

    Huffman essentially computes the most optimal word assignments mathematically.

    The main other difference between your suggestion and most compression algorithms is that you wouldn’t use a huge dictionary in real time and loading it and looking into it would be very slow. Most compression algorithms have a rather small dictionary buildin and/or they build one on the fly looking at the data that they want to compress.