Getting rid of the "install pending software upgrades" dialog I usually upgrade my software with sudo dnf upgrade . I am tired of the "install pending software upgrades" checkbox when I want to shut my laptop off. To shut it up: sudo dnf5 offline clean .
Taming AI Code Bloat: Adding Line Counts to Nvim-Tree Tools like GitHub Copilot and modern LLMs have dramatically accelerated development velocity. With tab completions, automated boilerplate generation, and rapid prototyping, writing code has never been faster. However, this velocity introduces a subtle software architecture anti-pattern: silent file bloat. Before AI assistance, writing 2,000 lines of code in a single file took deliberate effort and plenty of typing fatigue, giving developers time to pause and say, "This file is getting out of hand; I need to split this into smaller modules." Today, an AI can generate hundreds of lines in seconds. Without visual feedback in our project navigation, a once-compact module can swell to 1,500 or 2,000 lines before anyone notices during a pull request review. To tackle this architectural drift directly at the source, I added a custom decorator to nvim-tree.lua that displays the line count directl...