ToddG
ToddG
**WHAT** Expose [Erlang Process Labels](https://www.erlang.org/doc/apps/stdlib/proc_lib.html#set_label/1) in Gleam. **WHY** Labeling gleam processes enables displaying processes in the [Erlang Process Observer]() with those labels. This greatly assists in debugging and documentation. **EXAMPLE**...
**WHAT** HEAD requests made with `gleam_httpc` are just timing out for me, whereas the exact same HEAD request is returning in less than 1 second via `hackney` or via `curl`....
**WHAT** * updated stdlib * replaced `result.then` with `result.try` **WHY** Newer stdlib warns about `result.then` ``` It was deprecated with this message: This function is an alias of result.try, use...
@JohnBjrk I'm attempting to update showtime as it's a dependency of glimt. I've gone through and submitted PRs for updating deps in other glimt deps such as json and birl....
**SYSTEM** ``` Linux system76 6.14.0-35-generic #35~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Oct 14 13:55:17 UTC 2 x86_64 x86_64 x86_64 GNU/Linux ``` All the iced and wgpu examples ran on my machine. **REPRO**...
**BRANCH** ``` commit 8c800142d67f816fd46d1242e92cf33371860e1d (HEAD -> update, origin/update, origin/HEAD) Author: electrum Date: Mon Nov 10 15:09:08 2025 -0800 d ``` **REPRO** ```bash 10:40 $ RUST_BACKTRACE=1 cargo run --release ``` **ERROR**...
SETUP 1. install gitlink 2. using vim plugin REPRO1(fails): 1. highlight a couple of lines of code in a file that's in a repo that's in github 2. CTRL-SHIFT-C ERROR...
Provide a callback for running code on a supervisor after it starts, before it starts its children
**WHAT** Expose the `init` callback to Gleam. **WHY** As I understand the conversation, the [Erlang/OTP GenServer Init Callback](https://www.erlang.org/doc/apps/stdlib/gen_server.html#c:init/1) is where one might call [proc_lib::set_label](https://www.erlang.org/doc/apps/stdlib/proc_lib.html#set_label/1). However, the `init` callback is not...