home.social
  1. Threads has just publicly announced interoperability in the fedverse with the other networks it supports, such as mastodon and bluesky.

  2. Few people know, but the Archbang linux installation script was the script that inspired archinstall, the current archlinux installation script. Archbang for those who are curious provides an experience practically equal to the use of Archlinux. Archbang is literally an Arch Linux with:

    - More intuitive installation script

    - An Arch Linux that comes by default FluxBox as the desktop.

    itsfoss.com/super-lightweight-

  3. Ok Microsoft, edge browser is very fast with low memory ... congratulations on your work. But, the browser have telemetry too 😬

  4. I put vertical tabs for navigation in my firefox developer edition..

    followed the steps of ranmru22 - link below. But there is a problem that does not hide the native tabs.

    For this just add in the userChrome.css the code of the second image.

    link: github.com/ranmaru22/firefox-v

  5. // playing with at dawn 😆

    fn main () {

    let caractere_1: char = 'S';
    let caractere_2: char = 'f';

    let smiley_face = '😃';

    let string_1 = "miley ";

    let string_2: &str = "ace";

    println!("{} is a {}{}{}{}", smiley_face, caractere_1, string_1, caractere_2, string_2);

    }