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 :)

  • 54 Posts
  • 82 Comments
Joined 3 years ago
cake
Cake day: June 5th, 2023

help-circle












  • 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).












  • Otter@lemmy.catoSelfhosted@lemmy.worldSelf Hosting Guide
    link
    fedilink
    English
    arrow-up
    7
    ·
    3 months ago

    I’m not sure which guides to recommend, but in case it helps narrow down your search, you could share more about your situation:

    • Do you have any existing hardware or are you planning to buy? If so, what is the budget for the equipment and where in the world are you approximately?

    • What did you want to self host? Some services would benefit from a certain type of setup. For example, if you’re serving lots of media, if you need redundancy and uptime, if you’re running AI models or something that needs a GPU

    General tips:

    • take lots of notes on your process. This will help you iteratively improve your setup. If it all falls apart, it will be easier to quickly get going again since you know what options you picked at each step.
    • Make more posts here when you get stuck on something :)

    For Linux, a lot of people go with Ubuntu server because there are a lot of existing guides for it. You don’t need much Linux knowledge to start self hosting since you can learn by doing over time. Some concepts to explore before getting started might be cron, the Linux file system, and user permissions.

    For Docker, you should be fine if you know the basics. I’d recommend using Docker Compose since it’s easier to understand what’s happening when its written out in a nice yaml file. Install Docker and Docker Compose on the server, and then install something like DockGE to manage the compose files. When you want to run a service, copy the Docker compose file and then swap the port to what port you want to use, and the volume to the location you tend to use.

    For a very basic setup, I’d find a video guide for

    • installing Ubuntu server on the machine
    • basic setup of the Ubuntu server (file permissions, docker, docker compose)