How does in-browser chat work?

There are some push technologies, such as Comet, but they’re not widely implemented. Most of the time this is accomplished via polling at some small interval with AJAX and downloading any new messages that are available since the last downloaded message.

How do I change the `prefers-reduced-motion` setting in browsers?

Oh, I didn’t see the “User Preferences” section in the mdn documentation. 🤦🏻‍♂️ For Firefox, the reduce request is honoured if: In GTK/Gnome, if gtk-enable-animations is set to false. This is configurable via GNOME Tweaks (Appearance tab or General tab, depending on version). Alternately, add gtk-enable-animations = false to the [Settings] block of the GTK … Read more

tech