DeepTutor: I introduced a new feature named "Doctor". It helps model setup, credentials, storage, and retrieval backends. Simplifies the process, redacts sensitive values! github.com/HKUDS/DeepTu... #OpenSource #Python #Programming
Peder Bergan
@pederbe.dev
Software engineer working with Rust and full-stack development. Contributing to open source and sharing what I build and learn. https://pederbe.dev
Proposed in my zoxide PR: interactive Xonsh completion. This would let users choose a previously visited directory without typing its full path. github.com/ajeetdsouza/... #Rust #OpenSource #Programming
Interactive Xonsh completion in zoxide
Proposed interactive selection of previously visited directories in the Xonsh shell.
github.com
Arguing about arguments > Steve Klabnik, once against fancy Rust argument features from Ruby experience, now cautiously supports named parameters alone due to AI coding agents improving call-site clarity.
@rust-lang.org: Miri could put CI secrets in cached target/ data and expose them to PRs. Fixed in Sept 22 nightly. Check workflows, clear caches, rotate at-risk secrets. blog.rust-lang.org/2026/09/21/g... #Rust #OpenSource #Programming
Unix convention: a process killed by a signal exits as 128 plus the signal number. fnm exec currently reduces that case to 1. My patch preserves the signal status, so scripts can distinguish it from an ordinary failure. github.com/Schniz/fnm/p... #Rust #OpenSource #Programming
One leftover number can turn a short Helix macro into thousands of replays. The fix I proposed resets unfinished counts after each outermost macro iteration, without breaking counts inside nested macros. github.com/helix-editor... #Rust #OpenSource #Programming
pnpm update --global should be boring when nothing changed. Today it can replace the active group anyway. I proposed keeping that group when resolution returns the same lockfile, while still handling pending build approvals. github.com/pnpm/pnpm/pu... #Rust #OpenSource #Programming
One missing newline shouldn't hide the edit. My proposed Delta fix preserves within-line change highlighting across missing-newline markers, making the exact edit easier to review. github.com/dandavison/d... #Rust #OpenSource #Programming
Delta: preserve edit highlighting across missing-newline markers
Proposed fix: preserve within-line highlighting when a file lacks its final newline.
github.com
A jump label should be easy to spot. My proposed Helix fix keeps jump-label colors from being overridden by document-link styling, so the navigation target stays visible. github.com/helix-editor... #Rust #OpenSource #Programming
Helix: jump-label colors over document links
Proposed fix: keep navigation labels visible over document links.
github.com
Which commit does that submodule point to? My merged Jujutsu contribution lets custom templates show full object IDs, including submodule commit IDs. Useful when you need the exact revision. github.com/jj-vcs/jj/pu... #Rust #OpenSource #Programming
Jujutsu: expose resolved tree values
Merged: custom templates can show full object IDs, including Git submodule commit IDs.
github.com
My Atuin PR was merged: command-history searches now support multiple exit-code filters. This makes it easier to find past commands by how they finished, such as finding failures while excluding specific error codes. github.com/atuinsh/atui...