If you automate this with Linear and Slack. You can shorten time to PR dramatically. Most importantly you don’t commit into any additional AI subscriptions while keeping control of the whole execution env, what MCPs can be used, what agent can and can’t do.
November 14, 2025 at 12:51 PM
If you automate this with Linear and Slack. You can shorten time to PR dramatically. Most importantly you don’t commit into any additional AI subscriptions while keeping control of the whole execution env, what MCPs can be used, what agent can and can’t do.
3️⃣ Rust async gotchas? As Rust newcomers (more async Rust newcomers), we underestimated how much time we'd spend debugging errors like "cannot move XYZ because Foo doesn't implement Send", where Foo was some deeply nested type. On top of that, most of LLMs didn't know how to fix these issues too.
March 3, 2025 at 1:14 PM
3️⃣ Rust async gotchas? As Rust newcomers (more async Rust newcomers), we underestimated how much time we'd spend debugging errors like "cannot move XYZ because Foo doesn't implement Send", where Foo was some deeply nested type. On top of that, most of LLMs didn't know how to fix these issues too.
2️⃣ Nvim API quirks? Turns out, there's no way to track byte-level changes—only full-line diffs on remote API. Not ideal for real-time collaboration. We had to create a custom event type and send it via a socket from Lua to Rust.
March 3, 2025 at 1:14 PM
2️⃣ Nvim API quirks? Turns out, there's no way to track byte-level changes—only full-line diffs on remote API. Not ideal for real-time collaboration. We had to create a custom event type and send it via a socket from Lua to Rust.
1️⃣ Lua ↔ Rust communication? After some trial and error, we ended up spawning a separate process and using NeoVim’s remote API for better isolation. We thought about using nvim-oxi or mlua, but after a few tries to set up it correctly, we backtracked to bulletproof rmp.
March 3, 2025 at 1:14 PM
1️⃣ Lua ↔ Rust communication? After some trial and error, we ended up spawning a separate process and using NeoVim’s remote API for better isolation. We thought about using nvim-oxi or mlua, but after a few tries to set up it correctly, we backtracked to bulletproof rmp.