

Lustre only changes the part of the DOM that you assign it. Using FFI we can change the title of the page.
A look at the Gleam programming language, through the lens of a Rust developer | Code to the Moon | Video 10m32s | Jun 27, 2024
Click to view this content.
First impressions of Gleam: lots of joys and some rough edges
The blog post is the author's impressions of Gleam after it released version 1.4.0. Gleam is an upcoming language that is getting a lot of highly-ranked articles.
It runs on the Erlang virtual machine (BEAM), making it great for distributed programs and a competitor to Elixir and Erlang (the language). It also compiles to JavaScript, making it a competitor to TypeScript.
But unlike Elixir, Erlang, and TypeScript, it's strongly typed (not just gradually typed). It has "functional" concepts like algebraic data types, immutable values, and first-class functions. The syntax is modeled after Rust and its tutorial is modeled after Go's. Lastly, it
A new Gleam feature I love -
A new Gleam release is right around the corner and it will come with a new feature I absolutely love: _label shorthands._ It might not be as flashy as other features but I wanted to implement it for the longest time and think it will really help me write better code. Here's what it's all about.
From Erlang, to Elixir and now, GLEAM!?
Your backend is too complicated | Using Gleam to Simplify Your Backend
Click to view this content.
Isaac Harris-Holt writes:
Modern software engineering can be a bit of a nightmare. You've got all these different third-party services to keep track of, and often many first-party microservices too! As it turns out, things can be made more simple using Gleam. Let me show you how.
Louis Pilfold"s Gleam Programming YouTube Playlist
Louis Pilfold, the creator of the Gleam Programming Language, has been maintaining a Youtube Playlist of Gleam videos.
A Gleam library for interacting with the Discord API - HarryET/shimmer