Skip Navigation
Jump
Totality w/ CME
  • Western Ohio near St.Mary's. I didn't get Mars nor Venus even though they were nearby. I tunnel visioned on the eclipse itself.

    3
  • Jump
    Fossil is quitting smartwatches
  • My Hybrid's screen died under 9 months of use. The e-ink screen started to fade. Not sure if it was from sun light or maybe knocked around.

    I haven't had the Garmin for as long yet but it's nice enough to use outdoors.

    1
  • Jump
    Fossil is quitting smartwatches
  • I don't know of any e-ink displays outside of Fossil but give Garmin a try. I use the Vivoactive 4 and get a week+ of battery.

    I went from Pebble > Fossil > Garmin.

    15
  • Jump
    Can I install Ubuntu 18 software on Ubuntu 22.04? (Technically Linux Mint 21.3)
  • May not qualify as "simple" versus a VM, but you can try using chroot environment. You essentially run minimal Ubuntu environment from a folder that can be a newer or old version of the host OS.

    Here is one guide to get up and running.

    This guide is easier to follow IMO.

    3
  • Jump
    What is the most destroying command you can type in the Linux terminal?
  • If you allow root privileges, there is:

    sudo rm -rf --no-preserve-root /

    If you want to be malicious:

    sudo dd if=/dev/urandom of=/dev/sdX

    or

    sudo find / -exec shred -u {} \;

    73