I think I'm pretty near a beta release for Gitte (a GNOME Git GUI). While I have plans for the future, I think the basics are covered (besides pull - I want to have that for the first release). What do you people think?
RT @Teknium: So viel in diesem Release, aber das eine, auf das viele am meisten gewartet haben, ist das GUI-Dashboard! Verwalten und überwachen Sie Ihren Hermes Agent mit einem lokalen Web-Dashboard mit GUI; starten Sie es mit dem Befehl hermes dashboard! Nous Research (@NousResearch) Hermes Agent v0.9.0 - „The Everywhere Release“ Vollständiges Changelog unten ↓ Video — https://nitter.net/NousResearch/status/2043770365369876979#m
#AI #GUI #HermesAgent #NousResearch #SoftwareUpdate #arint_info
which button type do you like better? words or pictures? or both? currently it's both... forgot to capture the cursor, but you can imagine it...
#SoloDev #IndieDev #GUI #GameDesign #IndieGame #VisualNovel #VN #RenPy #DungeonOfDeparture #PixelArt
In 2026 is there a linux equivalent to the GUI renaming programs in Windows - BRU (Bulk Rename Utility) and Advanced Renamer? #softwarerecommendation #files #gui #batchrename

I'm using Mint Cinnamon. This is my last roadblock to using Linux and not Windows. Over the last few weeks I've managed to find ways to configure linux versions of programs to work closely to the w...
So. If I add a Fetch button in the tool bar of Gitte, should it fetch all remotes (git fetch --all) or should it open a dialog box, asking for a remote & branch?
You would always be able to trigger a fetch for a specific branch & remote from the context menu of a (remote) branch
EGUI's rendering has very nifty trick with the scheduled frames. Your widget can request render for example 500ms from now. Like the text cursor in a text field.
It doesn't make a queue of requests, but keep only the next time it needs to render in memory. Suppose I render something 2ms from now, then the text widget will request render in 498ms from now. On every tick each widget schedules the next one, but latest only counts.
#ImGui doesn't have this, and I wish it did!