↩ Accueil

Vue lecture

Shanios 2026.03.10

Shanios is an immutable desktop Linux distribution based on Arch Linux. It provides optimised builds of the GNOME and KDE Plasma desktop environments. Like most immutable Linux systems, Shanios features rollbacks for instant system recovery, atomic updates through a custom deployment tool called shani-deploy, and Flatpak integration. The distribution's other main features include a blue-green deployment strategy using Btrfs subvolumes, preservation of system integrity with a read-only root partition, and enhanced security through AppArmor profiles, firewalld configurations, and full-disk encryption.
  •  

Ghostty 1.3 terminal released with search, scrollbars and more

A big update to Ghostty terminal emulator has dropped, delivering a raft of new features like scrollback search, native scrollbars and and process completion notifications. Ghostty 1.3.0 packs in 6 months of development effort: 2,800+ commits from 180 contributors. That means hundreds of performance tweaks, bug fixes and platform optimisations for those using it on macOS, Linux and FreeBSD (Ghostty isn’t available on Windows). But since it’s the new features that most of you care about, and this update to the Zig-based open-source terminal adds a couple of long-requested ones. Ghostty 1.3.0: Highlights Text search/match You can now search your […]

You're reading Ghostty 1.3 terminal released with search, scrollbars and more, a blog post from OMG! Ubuntu. Do not reproduce elsewhere without permission.

  •  

Current RISC-V CPUs Being Too Slow Causes Headaches For Fedora: ~5x Slower Builds

The current crop of RISC-V SoCs are still much slower than alternative CPU architectures and lead to much longer build times for Fedora packages as a result. There's hope with next-gen RISC-V processors being faster but for now even compiling Binutils as an example is around five times slower than x86_64 -- and that's with disabling compiler link-time optimizations (LTO) for RISC-V to avoid an even longer build process...
  •  

MSI PRO B850-P WiFi: A Special AMD Ryzen AM5 Motherboard For Linux / Open-Source Enthusiasts

The MSI PRO B850-P WIFI motherboard is a unique AMD Ryzen AM5 motherboard for Linux/open-source enthusiasts that is competitively priced at just $179 USD. It's interesting not because of the doings of MSI but rather 3mdeb with this being the desktop motherboard they are working on porting AMD openSIL and Coreboot to for allowing an open-source firmware stack.
  •  

Sortie de µJS, une bibliothèque JavaScript légère pour dynamiser un site sans framework

µJS est une bibliothèque JavaScript open source (licence MIT) qui permet de rendre un site web dynamique sans recourir à un framework frontend lourd. Elle s’inspire de pjax, Turbo et HTMX, avec pour objectif d’être plus simple et plus légère.

Principe de fonctionnement

µJS intercepte les clics sur les liens et les soumissions de formulaires pour charger les pages via AJAX, au lieu de déclencher un rechargement complet du navigateur. Le contenu récupéré remplace tout ou partie de la page courante. Le résultat : une navigation fluide, sans rechargement visible, sans écrire une seule ligne de JavaScript.

Aucune étape de build, aucune dépendance, compatible avec n’importe quel backend (PHP, Python, Go, Ruby…).

Fonctionnalités principales

  • Mode patch : mettre à jour plusieurs fragments du DOM en une seule requête, via des attributs mu-patch-target dans la réponse HTML du serveur
  • SSE : mises à jour en temps réel via Server-Sent Events
  • DOM morphing : préservation de l’état du DOM (focus, scroll, transitions CSS) via idiomorph
  • View Transitions : animations fluides entre les états de page, via l’API native du navigateur
  • Prefetch : préchargement de la page cible au survol d’un lien
  • Polling : rafraîchissement automatique d’un fragment à intervalle régulier
  • Verbes HTTP complets : GET, POST, PUT, PATCH, DELETE sur n’importe quel élément
  • Barre de progression : intégrée, sans dépendance externe

Installation

Via CDN :

<script src="https://cdn.jsdelivr.net/npm/@digicreon/mujs/dist/mu.min.js"></script>
<script>mu.init();</script>

Via npm :

npm install @digicreon/mujs

Exemple 1 : navigation AJAX sans configuration

Par défaut, tous les liens internes sont interceptés automatiquement. Le <body> de la page cible remplace le <body> courant.

<!DOCTYPE html>
<html>
<head>
    <title>Mon site</title>
</head>
<body>
    <nav>
        <a href="/">Accueil</a>
        <a href="/articles">Articles</a>
        <a href="/contact">Contact</a>
    </nav>

    <main id="contenu">
        <p>Contenu de la page.</p>
    </main>

    <script src="https://cdn.jsdelivr.net/npm/@digicreon/mujs/dist/mu.min.js"></script>
    <script>mu.init();</script>
</body>
</html>

Aucun attribut supplémentaire. Les boutons retour/avant du navigateur fonctionnent, l’URL est mise à jour, le titre de la page aussi.

Pour ne remplacer qu’un fragment de la page plutôt que le <body> entier :

<a href="/articles" mu-target="#contenu" mu-source="#contenu">Articles</a>

Dans ce cas, µJS va récupérer la page /articles, va extraire l’élément #contenu de la réponse, et remplace l’élément #contenu courant avec.

Si tous les changements de pages se font dans l’élément #contenu, on peut généraliser dans la configuration (pour éviter d’avoir à mettre des attributs mu-target et mu-source sur tous les liens) :

<script>
mu.init({
    target: "#contenu",
    source: "#contenu"
});
</script>

Exemple 2 : recherche en direct avec debounce

<input type="text" name="q"
       mu-trigger="change"
       mu-debounce="300"
       mu-url="/recherche"
       mu-target="#resultats"
       mu-source="#resultats"
       mu-mode="update">

<div id="resultats"></div>

Le serveur reçoit une requête GET vers /recherche?q=... et retourne un fragment HTML. µJS l'injecte dans #resultats. Aucun JavaScript à écrire côté client.

Exemple 3 : mise à jour de plusieurs fragments en une seule requête (patch mode)

Côté HTML :

<form action="/commentaire/ajouter" method="post" mu-mode="patch">
    <textarea name="contenu"></textarea>
    <button type="submit">Envoyer</button>
</form>

<ul id="commentaires">
    <!-- liste des commentaires -->
</ul>

<span id="compteur">3 commentaires</span>

Le serveur retourne plusieurs fragments HTML dans une seule réponse. Chaque fragment indique sa cible via mu-patch-target :

<!-- Ajoute le nouveau commentaire à la liste -->
<li class="commentaire" mu-patch-target="#commentaires" mu-patch-mode="append">
    <p>Le nouveau commentaire</p>
</li>

<!-- Met à jour le compteur -->
<span mu-patch-target="#compteur">4 commentaires</span>

<!-- Réinitialise le formulaire -->
<form action="/commentaire/ajouter" method="post" mu-patch-target="form">
    <textarea name="contenu"></textarea>
    <button type="submit">Envoyer</button>
</form>

Une seule requête HTTP, trois fragments mis à jour simultanément. Le serveur garde le contrôle total sur ce qui est mis à jour et comment.

Commentaires : voir le flux Atom ouvrir dans le navigateur

  •  

Plop 26.1-test1

Plop Linux is a small distribution that can boot from CD, DVD, USB flash drive (UFD), USB hard disk or from network with PXE. It is designed to rescue data from a damaged system, backup and restore operating systems, automate tasks and more.
  •  

SUSE Reportedly May Be For Sale Yet Again

Over the past two decades SUSE Linux has been passed around several times. From Novell's acquisition of SUSE back in 2003 to then being acquired by The Attachmate Group to then merging with Micro Focus and then the SUSE business being acquired by private equity firm EQT back in 2018. A report out today indicates that EQT may now be looking to sell off SUSE...
  •  

FSF Hiring New Manager For Leading Their Hardware Certification Program

The Free Software Foundation is hiring a new engineering and certification manager for leading the Respect Your Freedom "RYF" hardware certification program. The FSF RYF program is about certifying hardware that respects the user's freedom and privacy for control over the device, such as no proprietary firmware blobs needed to be loaded at run-time, no digital rights management / digital restrictions, and complies with their other free software ideals...
  •  

Univention 5.2-5

Univention Corporate Server is an enterprise-class distribution based on Debian. It features an integrated management system for central administration of servers, Microsoft Active Directory-compatible domain services, and functions for parallel operation of virtualised server and desktop operating systems. UCS offers such features as a single sign-on portal and an app centre. One key component of UCS is the Identity and Access Management (IAM) utility which acts as a central solution for managing identities, roles, and groups. The integrated portal with Single Sign-On and self-service functions provides access to all IT services and applications and can work across blended Linux, Windows, and macOS networks.
  •  

Valve/RADV Developers Look At More Per-Game Tuning/Optimizations For Mesa Drivers

RADV Radeon Vulkan driver developers on Valve's Linux graphics team are evaluating the idea of greater use of per-game/app profiles within this open-source driver and for Mesa drivers at large. Currently for Mesa drivers with DriConf there is the ability to provide per-game/app workarounds while the consideration now is extending that to allow for more per-game optimizations...
  •  
❌