Daily Shaarli

All links of one day in a single page.

November 8, 2025

La guerre que mènent les robots ascientifiques contre la solitude intellectuelle

L'IA a des résultats relatifs ou décevant et elle fait disparaître la solitude, pourtant nécessaire au développement intellectuel.

Local First HTMX | Technical and Personal Blog

this is the key idea of Local First HTMX - you don’t have to render the HTML on the backend. You can build a “server” and compile it to WASM and run it in the browser. This would give you all the snappiness of a first class Javascript Local First SPA with none of the JS — well less of the JS.

10 Smart Performance Hacks For Faster Python Code | The PyCharm Blog

There are obvious for me, but they are good.

I see some are totally useless for Rust in comparison. Both have different targets though. It is moreover awesome to see 100x improvements.

Adactio: Journal—Simplify

How CSS simplify scrollable images with

display: flex;
overflow-x: auto;
overscroll-behavior-inline: contain;
scroll-snap-type: inline mandatory;
scroll-behavior: smooth;

// On the images
scroll-snap-align: center;
 contain: size;
  place-self: stretch;
  object-fit: cover;
Adactio: Journal—Providers

For the sanity of using web standards

Deutsche Telekom va construire un cloud IA industriel à 1 milliard d’euros à Munich - Next

Soit augmenter de 50% la puissance de calcul en Allemagne. Elle devra avoir 0,5 exaflops et 20 Po de stockage avec plus d'un millier de systèmes Nvidia DGX B200 et de serveurs Nvidia RTX PRO équipés d'environ 10 000 GPU Blackwell.
Elle devrait fonctionner au premier puisqu'ils réutilisent un datacenter existant et sera équipé en logiciel par SAP.

public.monster

Similar to neocities <3

Play | The Scope Creep
Six Key Components of UX Strategy — Smashing Magazine
How to optimize SVG files: A complete guide for beginners

But again there is tool online for it:

GitHub - Snapchat/Valdi: Valdi is a cross-platform UI framework that delivers native performance without sacrificing developer velocity.
Microsoft's lack of quality control is out of control • The Register

A critic against Microsoft. The Outages become frequent.

Elle est diplômée d’un Master en finance et mesure 1,60 m, France Travail lui suggère un boulot de Père Noël - ladepeche.fr

Il faut donc des diplômes avec des débouchés.

Autant aller directement parler aux entreprises, je rejoins totalement le commentaire du HollandaisVolant: https://lehollandaisvolant.net/?id=20251108113935

Peut-on apprendre à aimer la nature via les écrans ?
GitHub - twonlyapp/twonly-app: twonly, a privacy-friendly way to connect with friends through secure, spontaneous image sharing.
Glitchy GSAP animated checkboxes

Waayyy tooo coool checkboxes as switch

Ce que les couleurs de vos ports USB vous indiquent (et pourquoi ...

Pour les ports USB A:

  • Blanc = USB 1.0 / 12Mbps
  • Noir = USB 2.0 / 480Mbps
  • Jaune = USB 2.0/3.0 + toujours alimentés même sur une machine éteinte
  • Orange = USB 3.0 + toujours alimentés même sur une machine éteinte
  • Bleu = USB 3.0 Superspeed / 5Gbps
  • Turquoise = USB 3.1 / 10 Gbps
  • Rouge = USB 3.1 Gen 2 / 10-20 Gbps + toujours alimentés même sur une machine éteinte

Un récapitulatif de https://www.corsair.com/fr/fr/explorer/diy-builder/storage/usb-port-colors-explained/

(via https://warriordudimanche.net/article2158/690a61e2d507b)

@vtbag | @vtbag

Tips and tricks for view transition

Some practical examples of view transitions to elevate your UI - Piccalilli

In my opinion, the best cases for implementing view transitions are as a way to draw attention to an element, convey movement, and help users remain in context.

Add it to all pages to apply a default cross fade transition.

@view-transition {
    navigation: auto;
}

Then mark similar content with the view-transition-name css property.

Custom view transitions can be made with ::view-transition-old, ::view-transition-new, ::view-transition-image-pair.
Full page transition can be done by marking :root.
These transitions should be set only when the media query prefers-reduced-motion is set to no-preference.