I waddled onto the beach and stole found a computer to use.

🍁⚕️ 💽

Note: I’m moderating a handful of communities in more of a caretaker role. If you want to take one on, send me a message and I’ll share more info :)

  • 64 Posts
  • 215 Comments
Joined 2 years ago
cake
Cake day: June 5th, 2023

help-circle
  • You can view the source for my comment and copy paste :)


    Do this in order:

    1. Install with LUKS full-disk encryption and Btrfs subvolumes for @ and @home so snaps are atomic.

    2. Enable automatic snapshots with Timeshift or snapper.

    3. Export your package lists:

      • Debian/Ubuntu: dpkg --get-selections > packages.txt
      • Arch: pacman -Qqe > pkglist.txt
      • also flatpak list --app > flatpaks.txt
    4. Put your dotfiles under version control and manage them with chezmoi or GNU Stow.

    5. Use Flatpak for GUI apps, containerized toolchains (podman) for dev environments, and keep only system-critical packages in the distro manager.

    6. Back up with Borg: borg init --encryption=repokey /path/to/repo ; borg create repo::$(date +%F) /home /etc --stats ; borg prune --keep-daily=7 --keep-weekly=4 --keep-monthly=6

    7. Keep a small, bootable USB with the exact kernel/tools you use so you can unlock LUKS and mount Btrfs snapshots.

    8. Test restores quarterly: restore a snapshot to a spare partition and boot it. Do that for a year and tell me reinstalling is fun again.






  • Linux Foundation

    The slide people are mentioning

    In text:

    This is a brief summary of Servo’s project history. The project was started by Mozilla in 2012, at that time they were developing the Rust language itself (somehow Mozilla used Servo, a web rendering engine, as a testing project to check that Rust language was good enough). In any case we cannot consider it really “new”, but Servo is way younger than other web engines that started decades before.

    In 2020, Mozilla layoff the whole Servo team, and transferred the project to Linux Foundation. That very same year the Servo team had started the work in a new layout engine. The layout engine is an important and complex part of a web engine, it’s the one that calculates the size and position of the different elements of the website. Servo was starting a new layout engine, closer to the specifications language and with similar principles to what other vendors were also doing (Blink with LayoutNG and WebKit with Layout Formatting Context). This was done due to problems in the design of the original layout engine, which prevented to implement properly some CSS features like floats. So, from the layout engine point of view, Servo is quite a “new” engine.

    In 2023, Igalia took over Servo project maintenance, with the main goal to bring the project back to life after a couple of years with minimal activity. That very same year the project joined Linux Foundation Europe in an attempt to regain interest from a broader set of the industry.

    A highlight is that the project community has been totally renewed and Servo’s activity these days is growing and growing.

    The WPT scores should give an idea of how “ready” it is: https://servo.org/wpt/

    It shows that the situation in 2023 was pretty bad, but today Servo is passing more than 1.7 million subtests (a 92.7% of the tests that we run, there are some tests skipped that we don’t count here).















  • I’ve had a smoother time with Bluetooth since switching to Linux than I did on Windows.

    On Windows it would randomly disconnect, or I would need to manually forget and re-pair the device every few months. Now when I turn on the device, it reliably reconnects to either my phone or the Linux device, depending on which one it was connected to last.

    Maybe it’s distro / device dependent