56 comments

  • sjbzbeiks59 minutes ago
    Tabs vs spaces.<p>I’ve always appreciated the positive side of TUIs and appreciated less the positive side of GUIs. I didn’t grow up with a computer at all and in one of my first adult jobs I had to use a TUI at Papa John’s for punching in orders, it was 20x faster than anything I used after it at other restaurants that were GUI driven (keyboard speed wins for me, fit my brain perfectly). I think I learned it in 5 minutes. I was just a normy trying to pay bills.<p>I dunno why we gotta be insulting to people’s preferences, the article is genuinely bad about this.
  • joshka13 hours ago
    As a ratatui library maintainer, NO - please don&#x27;t stop making TUIs ;)<p>As a developer outside of that, I love the scratch the itch apps stuff mentioned in here. I have a vibe coded SwiftUI chess repertoire builder app that fits in that same sort of space that I&#x27;m currently working on, where I&#x27;d probably not have chosen to explore the idea if not for coding agents.<p>I agree with the article that the terminal is an odd shape which you&#x27;re fighting against historical specs, etc. The key observation I have though is that the mismatch of terminal apps and libraries to deal with this are all fundamentally built around character cells and cursor movement plus various CSI&#x2F;OSC&#x2F;ASC&#x2F;DEC&#x2F;xterm&#x2F;... protocols which are complex and have varying support and interact in weird ways.<p>To get a good terminal UX, I think the answer to this is probably to throw all that compatibility mess away and redesign a modern terminal protocol that bakes in accessibility, regions, scrolling, selection, proper keyboard, etc.<p>I know Mitchell Hashimoto has a bit of a different perspective on this, which seems like it&#x27;s to define some more protocol stuff and continue to build up on things. I think that probably gets to 95% pretty well. But a 100% good is a full replacement.
    • anon700018 minutes ago
      &gt; To get a good terminal UX, I think the answer to this is probably to throw all that compatibility mess away and redesign a modern terminal protocol that bakes in accessibility, regions, scrolling, selection, proper keyboard, etc.<p>Why not just… a GUI framework or layout that’s meant to be keyboard driven and information dense?
  • raincole0 minutes ago
    Or, perhaps, stop making pomodoro apps, todo list apps with budgeting as their &#x27;unique&#x27; killer feature, and damned Markdown viewers. Seriously.
  • hombre_fatal23 hours ago
    One of the biggest upsides of TUIs over GUIs is that I can run any number of TUI instances.<p>Meanwhile a GUI&#x27;s developer has to decide to grace me with the ability to even open more than one window. &quot;A tabbed interface will be sufficient!&quot; -- yay, I&#x27;ll never be able to view two screens of info at the same time.
    • mike_hearn21 hours ago
      Only if the program is designed to be safe to run in parallel. Which can be done with desktop apps too - and they&#x27;ll run more efficiently as well, as the windows share memory.
      • hombre_fatal14 hours ago
        GUIs have their benefits. You can make much richer UIs with much nicer UX when you&#x27;re not limited to a grid and whatever paradigm you can hack into the ancient tty stuff, and when you have access to raw keyboard scans.<p>But I don&#x27;t think I&#x27;ve run into a TUI that I couldn&#x27;t have multiple instances of.
    • MintPaw13 hours ago
      Why would this be true? The way &quot;single instance mode&quot; usually works is by taking a global mutex or making a lock file. What makes this not possible for TUI apps? Isn&#x27;t it just culture?
    • brainwad23 hours ago
      Opening more than one instance is the default, developers have to actively work to block it. At least on desktop.
      • hombre_fatal23 hours ago
        Which desktop?<p>It&#x27;s not true for AppKit, SwiftUI, GTK, Qt, WinUI, or Electron, and I&#x27;m not sure what&#x27;s left.
        • annapanna22 hours ago
          What? 99% of my programs I can open more than one window by just executing the program as normal multiple times, the only ones that enforce a kind of singleton execution are things that also acts as a kind of server, one example is Everything search, but it has a &quot;Open new Search window&quot; for multiple windows. And that is the default, you have to explicit code in a lock&#x2F;global mutex thing to block multiple instances.<p>vscode, electron app, no problem opening multiple windows. Geany, gtk app, no problem opening multiple windows.<p>Can you give an example where this doesn&#x27;t work?
          • hombre_fatal14 hours ago
            Anything from WhatsApp to the Settings app on macOS where I might want to, say, compare the wifi network settings for two access points.<p>But the point is that the developer has to build the app in a way that lets you do this.<p>Once again, there is no default with the tools I listed. You decide on how you want windowing to work and then build it.<p>At this point, show me examples of needing a mutex to &quot;block&quot; a multi-window default.
        • orbital-decay15 hours ago
          Huh? None of these force single-instance by default
          • hombre_fatal14 hours ago
            They don&#x27;t do anything by default. The developer makes it do what the developer wants (not the user). You claimed the developer has to &quot;actively block it&quot; which isn&#x27;t the case.<p>Even in SwiftUI which has the simplest way to support multiple windows with zero work, the developer has to use WindowGroup, and if they didn&#x27;t then you don&#x27;t get to open more than one window.
            • orbital-decay14 hours ago
              I did not claim it (another user did), but I think your reaction captures the overall sentiment ITT, which is taking perceived status quo as some fundamental thing and defending the worse solution instead of changing the status quo. If all that energy went into perfecting GUI apps the way you want them to work, the ecosystem would have been much healthier. I&#x27;ve seen it in Electron already, and TUI apps are headed the same way, it&#x27;s simply inevitable. The JS and Python bloat and fragmentation of conventions are already there, reinventing things that used to be simple in a complex way is next (in a way it already happened, e.g. a ton of basic things like hotkey schemes have to be reinvented from scratch each time in TUIs).
              • hombre_fatal14 hours ago
                I don&#x27;t understand what you&#x27;re responding to.<p>TUI apps are multi-instance by default since the user can invoke the program in different pty sessions. The developer would have to actively fight that.<p>GUI SDKs generally require the developer to pick a solution. And it&#x27;s easier to default to the simpler solution where you have one instance, one data model, one window.<p>Whether things might change in the future isn&#x27;t relevant because we&#x27;re talking about how things are today, not speculating about the future. And the time to change one&#x27;s opinion is when reality changes, not ahead of time based on how you think things hopefully will be.
            • brainwad11 hours ago
              The developer (of the app or the app framework) does have to deliberately implement &quot;merging&quot; of a second launched process. The default would be for the two processes to run side by side in both Windows and Linux. It has been that way forever.<p>The merging behaviour is also in principle possible for TUIs, btw, it&#x27;s just that nobody does it. But with something like tmux is would be easy to set up that all subsequent calls to your binary actually connect to the already open session launched by the first instance.
    • porridgeraisin17 minutes ago
      The other thing is, I&#x27;ve had &quot;computer use&quot; on my LLMs since way before they had vision and macos integration. Since in TUIs both control and data is text, they can simply send text to a pty.<p>There is an opencode plugin for this opencode-pty.<p>Terminals + browsers is all I want for most apps.<p>Native GTK&#x2F;QT is really good, but I only want it for &quot;system&quot; things like a clipboard manager or file manager settings app and things like that.
    • globular-toast23 minutes ago
      On the contrary, multiple windows is normal and the default but tabbed interfaces became popular due to bloated GUI design. This is all down to design and not due to it being a GUI, though.
    • fmorel16 hours ago
      I hate that you can only have one window of the Windows Settings app now.
    • underdeserver22 hours ago
      But in the article all these GUIs are vibe coded. Tell your AI to allow more than one window. What&#x27;s the problem?
      • hombre_fatal14 hours ago
        Then you&#x27;d have to contend with the rest of the list of TUI advantages over GUIs, like trivially operating them as they run on remote machines.
        • underdeserver13 hours ago
          That is, as TFA mentions, the one good argument.
          • hombre_fatal12 hours ago
            Well, it depends on what you want. I&#x27;m glad the Claude Code TUI runs in my terminal, for example, because that&#x27;s where I do software development and interact with the file system and run other lightweight keyboard-driven TUIs that I want to use moment to moment.<p>Imagine if there were no terminal&#x2F;pty system. Then what, I&#x27;d have to use Claude Desktop (doesn&#x27;t support multiple windows) and Finder?<p>So no, it&#x27;s not the only argument for TUIs.
  • gr_norm1 hour ago
    Agree with the rest of the comments here: keep making TUIs. Fully keyboard-driven, compact interfaces that live in my terminal with the rest of my CLI devtools are the best!
  • inatreecrown250 minutes ago
    The nice thing about TUIs is: they are platform independent. Whereas with SwiftUI apps you are bound to macOS.
  • rixrax31 minutes ago
    &quot;Q: Son, what is window manager needed for? A: Running multiple terminals on one display.&quot;
  • FabCH23 hours ago
    Counterpoint: Build more TUIs in Rust using Ratatui: <a href="https:&#x2F;&#x2F;ratatui.rs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ratatui.rs&#x2F;</a><p>Why? Because just look at the examples on that page.
    • blooalien17 hours ago
      Or for those coding in Python there&#x27;s Textual: <a href="https:&#x2F;&#x2F;textual.textualize.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;textual.textualize.io&#x2F;</a><p>Or for Go coders there&#x27;s BubbleTea: <a href="https:&#x2F;&#x2F;github.com&#x2F;charmbracelet&#x2F;bubbletea" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;charmbracelet&#x2F;bubbletea</a><p>Why? Because TUI!
  • JoshTriplett23 hours ago
    You know what&#x27;s awesome about TUIs? They live in a tab in my terminal. 95% of the time, my system has three windows open: terminal, browser, Signal.<p>Please, make more TUIs and web apps, so they can live in my terminal or my browser.
    • walrus0123 hours ago
      Additionally, I can with very high confidence run TUI software inside an ssh session to one of my headless machines, and then further within gnu screen or tmux detach and later resume a session with everything I was doing. Even if I switch from my laptop to my desktop, or want to leave a bunch of stuff waiting for a week and come back to it later.<p>Once you get the key bindings for screen or tmux thoroughly memorized it&#x27;s very easy.
      • altmanaltman1 hour ago
        Okay but TUIs don&#x27;t matter here though right? You can easily run GUIs over the web with any box anyway if you wanted to. So how is your headless sever running 24x7 (which is what allows feature you talk about, not tmux or tuis) not the reason you can do that but TUIs are?<p>I have a windows box that never shuts down and i remote into it and use it GUI mode to do everything you said but with a proper GUI interface. I also use the terminal but your feature (constantly up + resume + multi device) does not need TUIs to even work.
    • 8cvor6j844qw_d623 hours ago
      Bubble Tea [1] is my favorite for one-off throwaway stuff in terminal. Wish [2] to make it available over SSH.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;charmbracelet&#x2F;bubbletea" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;charmbracelet&#x2F;bubbletea</a><p>[2] <a href="https:&#x2F;&#x2F;github.com&#x2F;charmbracelet&#x2F;wish" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;charmbracelet&#x2F;wish</a>
    • octocop23 hours ago
      I was going to post this but you beat me to it. I think we need the folks whom do not enter the terminal to start using it instead of the other way around.
      • Gud22 hours ago
        Don’t be so sure about that..
    • ludwik22 hours ago
      Why this is preferable? I would rather have the apps I use represented as a list of apps in my system (drawing on a couple of decades of established UX conventions for how they are displayed and how I can interact with them), the web content I&#x27;m reading represented as tabs in my browser, and my terminal sessions represented in my terminal. You present the destruction of this simple separation of concerns as a benefit, but don&#x27;t explain why it is one.
      • croon21 hours ago
        If age of conventions is a valuable metric, TUIs have more. The keyboard hasn&#x27;t change noticeably, and I can work way faster between separate windows&#x2F;panes in a terminal and tmux, than in various GUI windows, where mouse focus dictates when I can start inputting.<p>While a mouse can theoretically use all pixels of a screen, in practical terms a keyboard has a much larger input space than a mouse, and if I can keep both my hands on the keyboard, I can work a lot faster.<p>At least that&#x27;s my experience as a (starting) greybeard.
      • jauntywundrkind13 hours ago
        &gt; <i>You present the destruction of this simple separation of concerns as a benefit, but don&#x27;t explain why it is one.</i><p>And you present the division of this simple unification of modalities as a benefit, but don&#x27;t explain why it ought be many.<p>So far it&#x27;s all just preference.<p>I&#x27;m not going to deny that the terminal has a ramp, is a lifelong learning curve. But I personally find it much more earnest, much closer to what is really happening, with less intermediation, and the way that terminal conposes with other things is usually unbeatable. TUI for humans, jsonl event sourcing for machine-to-machine.<p>&gt; <i>drawing on a couple of decades of established UX conventions for how they are displayed</i><p>I tend to not just click random apps open. I tend to have done some research and found what options there are on my own. I tend to know what I&#x27;m looking for, by the time I&#x27;m going to run something. In terms of getting there, finding stuff: the best convention I know of is aptitude, and dselect before it. Both very fine very old tui systems, and clear cuts above any app or web store, imo, for its power, directness, clarity, intent, and script ability.
    • rpdillon18 hours ago
      Indeed, I&#x27;ve been on vacation this week, but wanted to continue working on some of my hobby projects while I&#x27;m in the mountains a bit. Being able to use tailscale to SSH into my home workstation and attach to Tmux with my full session of agentic development, server, notes, design, and everything else has been an incredibly fun experience.<p>Native UIs simply don&#x27;t have the same flexibility.<p>Edit to add: I didn&#x27;t bring my laptop; I&#x27;m working from Termux. Surprisingly effective! The code is all in a folder syncing with my phone via SyncThing, so I can try out the sites I&#x27;m working on directly on the phone.
    • orbital-decay16 hours ago
      If that&#x27;s the only justification, a good window manager might turn out to be a lot more convenient.<p>Terminals are great for CLI. CLI integrated into GUI&#x2F;TUI is <i>absolutely amazing</i>, but 99% TUI apps do not work like that, they&#x27;re just awkward crutches foreign to the terminal, so you get no upsides and all downsides. Examples of good CLI integration I regularly use: Kate, Zed, Dolphin, Total Commander, pi. Only one of them is TUI, and honestly it&#x27;s much worse off with it, since it has to display a ton of formatted text and sometimes pictures. It&#x27;s really inconvenient and just looks like cargo cult rather than a necessity.
    • underdeserver22 hours ago
      So you have a cluttered list of terminal tabs instead of a cluttered list of windows.<p>But with a worse UX?
      • lelanthran21 hours ago
        This is the thing - my window manager can manage windows just fine. I suppose you can make the argument that managing multiple terminals in a tab is a better experience than managing multiple windows in my window manager, but that depends heavily on the terminal being used and the window manager being used.<p>As a devils advocate in response to all the comments claiming TUIs are fine, maybe consider TUIs mostly do not come with many of the advantages of using a terminal CLI app - you can&#x27;t pipe data into them, out of them, spawn them and collect the output, etc like you can with the usual stuff you run in a terminal.<p>IOW, they are a reduced functionality of a GUI - resizing works poorly, scrolling works poorly, UI affordances are poor (sure, you can grey out a button, but drag-n-drop hardly ever works between your various terminal tabs, and the smallest UI element is a full character block, unlike a GUI where you can have indicators that are smaller than a character, mini-windows, etc), lack of widgets, etc.<p>The lightweight argument is not so good either - look at Claude Code, after all. If you want lightweight GUIs, you can do that too.<p>The only argument that stands is the ssh one, but if working via a remote connection, I&#x27;m not going to want a full functionality application anyway - why would I prefer a wordstar&#x2F;wordperfect interface to a complex document over a GUI interface? For simple documents, sure, TUI all the way, but when I have multiple panes (outline, minimap, status bars, toolbars, etc), it performs poorly in a TUI.<p>TUIs are making a resurgence, sure, but <i>only</i> in the context of developers and development.
        • rpdillon17 hours ago
          Whether or not you can pipe information into a TUI is a function of the implementation of it. I&#x27;ve written command line apps that are dual function. When you invoke them with no arguments, they launch the TUI, but when you pass an argument, you can get them to behave like a normal CLI. I don&#x27;t think this is the norm, but there&#x27;s no reason it couldn&#x27;t be more widespread, I don&#x27;t think.
          • ghostpepper12 hours ago
            Your argument in favour of TUIs is that they can be, in fact, not TUIs and actually CLIs
    • thomasfromcdnjs23 hours ago
      I built &quot;ssh sshfighter.com&quot; recently, enjoy!
    • hollerith10 hours ago
      I used to work like that (minus the Signal window) and have no desire to go back.
    • benj11122 hours ago
      &gt;or my browser<p>But then a load of others will complain about electron apps.<p>Further you then have an os within an os. You need to remember to look in your bookmarks, not your start menu. And you&#x27;re basically throwing away the window manager too.
      • JoshTriplett8 hours ago
        &gt; But then a load of others will complain about electron apps.<p>I want to run web apps <i>in my browser</i>. I understand why Signal isn&#x27;t a web app, and I&#x27;m willing to put up with that for security, but nobody else gets that excuse. Web apps belong in a browser tab.
    • boxed23 hours ago
      Couldn&#x27;t you then just vibe code some window manager app that throws a bunch of your stuff into a tabbed window? Seems like the same thing.
      • walrus0122 hours ago
        &gt; Couldn&#x27;t you then just vibe code some window manager app<p>My reaction to this is basically about the same as the fictional Ivan Chesnokov<p>(beware, crude language, profanity, etc)<p><a href="https:&#x2F;&#x2F;m1-garand-rifle.com&#x2F;ivan-chesnokov.html" rel="nofollow">https:&#x2F;&#x2F;m1-garand-rifle.com&#x2F;ivan-chesnokov.html</a>
      • duskdozer23 hours ago
        How would that be any better though?
        • boxed22 hours ago
          If the point is only that &quot;terminal good because tabs&quot; then that solves that problem
      • benj11122 hours ago
        It already exists. Tabbed by suckless.
    • AtHeartEngineer23 hours ago
      and music
  • Surac1 day ago
    TUI is a kind of self defense. big corps create and kill gui frameworks faster that one can learn them. Browser based ui is a real waste of resources (and also evolve in a absurd pace). The Console is a last resort to write small (understandable) gui that work on many platforms.
    • no-name-here23 hours ago
      Are the TUI apps built on TUI frameworks? Do the TUI frameworks last longer than the gui frameworks you mentioned being quickly killed by &quot;big corps&quot;? In the Windows space, WinForms, WPF, WinUI are likely the biggest examples of gui frameworks, especially from &quot;big corps&quot;; they&#x27;ve been around for decade(s) and have not been abandoned (&#x2F; they continue to be supported) - how do TUI frameworks compare? On the other hand, TUIs may be better for things like running over SSH, and for cross-platform compatibility - important, yes. Although for x-platform, things like Avalonia or Uno could be better comparisons?
      • cbarnes9916 hours ago
        Curses, the TUI library, has been around since 1978. It was superseded by ncurses in 1993, which saw it&#x27;s latest update in December of 2025. Both of them still work and can be used today, with the caveat that the official original curses has been deprecated since 95, but NetBSD maintains an updated version iirc.
    • underdeserver1 day ago
      They generally stay supported, or if not supported, working.
    • 0x4571 day ago
      Huh? Qt, GTK, Cocoa (AppKit and UIKit), bunch of other linux friendly gui frameworks been around for a long time, even Flutter is still around. What is being killed?
      • Shank23 hours ago
        Apple believes SwiftUI is the future, not AppKit and UIKit&#x2F;Cocoa.
        • 0x45713 hours ago
          Sure, Apple positions SwiftUI as its primary forward-looking UI framework, but AppKit and UIKit still developed and have access to all API that SwiftUI has.
      • throw8394939023 hours ago
        What versions of QT and GTK? Running GTK1 or 2 apps is pretty hard. P TUI apps from that era work just fine!<p>The same reason webui and js is so popular!
        • 0x45714 hours ago
          There were 4 (four) major versions of GTK since 1998. You&#x27;re telling me that rate is faster than you can learn? Maybe you just a slow learner.
      • worthless-trash23 hours ago
        gtk1&#x2F;gtk2&#x2F;gtk3 code will require you shipping gtk(version) on modern linux, not all distros have the legacy libraries.<p>Apple deprecated carbon (which was a thing when gtk1 was around). I don&#x27;t think you have an option for this on their ARM hardware.<p>QT1-&gt;N code has the same problem, the older libraries are not shipped on most modern linux.<p>I do absolutely understand if you&#x27;re going to do static compiles, that can work around that problem, but that arguement nullifies everything, since you can run&#x2F;write&#x2F;execute anything in a turing complete system, if you complain you&#x27;re just not dedicated enough.
        • 0x45714 hours ago
          Carbon was released in 2000 and final release was in 2019. Cocoa, correct me if I&#x27;m wrong, was released in 2005. That&#x27;s 14 years to learn it. Not like you knew Carbon when Cocoa came out because there were like 10 developers making Mac OS X apps before 2007.<p>y&#x27;all are slow learners if that&#x27;s an issue for you, but React doing major breaking changes at least once a year is totally fine.
    • ssivark23 hours ago
      We&#x27;re in an era where soon (if not already) it will become straight forward to direct a clanker to move an application from one gui framework to another.<p>Once we have robust automated computer use, that becomes the verification loop, and this problem will almost surely get solved.
  • zorked23 hours ago
    Haha, no. For a while, many years ago, it seemed TUIs were indeed on the way out, but then they were relived by the awesome work of people who wrote GPU-accelerated terminals, widget libraries, who extended terminals with more colors and the ability to show Unicode and graphics.<p>I salute you, heros.
  • zmmmmm23 hours ago
    Make more TUIs ....<p>The main thing I like is that TUIs are guaranteed to be navigable by keyboard. So many non-TUI apps don&#x27;t include shortcuts at all for critical actions. It makes the first week of using the app more efficient and the entire rest of your life less so. Add on to that, I can probably run a TUI on my server. Or my cloud instance. And in my sandbox. Over SSH.<p>So: do make TUIs and bind their keys to Vi-like shortcuts as much as possible and I will use your app every time over a GUI app.<p>Pro tip for Mac users - install Karabiner and bind right-Alt + jklm to cursor movements. Immediate VIM navigation through the whole OS.
    • benj11121 hours ago
      &gt;The main thing I like is that TUIs are guaranteed to be navigable by keyboard<p>I don&#x27;t disagree with you, but in ye old days you had guis that were navigable by keyboard.<p>And these were discoverable. That one program you use every day, you can spend the time to learn the short cuts. You can still get things done by clicking around though.<p>I suspect the underlying issue is one of limitations. Terminals are limited in what they can do. Guis and the web, you can do so much more, so people do.<p>I think another issue is touch screens. Guis and the web have moved to optimise for those. It decreases information density, forces a move away from the old standards to new much weaker ones. Tuis can&#x27;t really do touch, so they don&#x27;t have to make those tradeoffs.
  • pmontra22 hours ago
    I like TUIs a lot and I use a TUI instead of a GUI as long as there is one available, but please note the main point of the post, the very last sentence<p>&gt; I barely think about these things as “apps” (I have no intention to distribute them). They’re artifacts of me making my computer do stuff for me, the way I want it to. As a Unix nerd, I’ve always been able to do this, in the language of the command line. Now, it’s just as easy to do that kind of work with graphical interfaces.<p>And so the author (second sentence of the post)<p>&gt; I built my first serious Mac application a few months ago, and since then I’ve built more native UI thingies than in my entire career prior to that.<p>I still build my personal stuff either for the command line (not even TUIs) or in a HTML page but I can see the point of creating a native app. Unfortunately there are some drawbacks: I would have to create the app for GNOME Debian and for Android, while a web app runs on both, and I would have to go all in on vibe coding because my last serious GUI programming has been in the 90s with Motif. The latter point is more or less the point of the author (the LLM does it for you) but it means that programming personal stuff will cost money paid to the LLMs companies. More and more money at each price hike and the multi thousand dollars box to run local models only makes the expense happen immediately instead of diluting over a long period.
  • PaulRobinson23 hours ago
    Yesterday I was flipping between some TUIs, native apps, web apps and an electron app. I think it was only because I was trying to do a lot in each of them I became <i>really</i> aware of the latency lag in some of these.<p>There are real advantages of TUIs: less CPU; sometimes I want to be using a personal TUI on a personal dev server quickly from a work laptop at lunchtime and an ssh + tmux + TUI is perfect; most modern TUI libraries are significantly less painful to work with than most modern web app frontend libraries; I can change the font size of my terminal easily if I need to, more easily than native (but not web app). But by far the biggest, is they just generally tend to be very fast and responsive compared to everything else.
    • codethief10 hours ago
      &gt; I think it was only because I was trying to do a lot in each of them I became really aware of the latency lag in some of these.<p>While I get your point, a lot of vibe-coded agent TUIs (Claude Code, GitHub Copilot CLI, …) aren&#x27;t exactly fast, either.
  • anthonj22 hours ago
    &quot;I built my first serious Mac application&quot;<p>I will just stop here. No hates for macs, but your typical cli&#x2F;tui software devoper is concerned about making their software run on almost anything with an actual os. As soon as I see references to specific operating systems or platform specific libraries my bullshit meter goes off.<p>I was expecting an article about methology and tooling to develop guis, got an apple fan telling stories about ai use.
    • anon700016 minutes ago
      This is covered towards the end of the article.
  • eloisius22 hours ago
    The LLM fetishists really do themselves a disservice with these wild, over-the-top statements about AI capabilities. I’d be willing to bet money that giving Claude a screenshot of part of this blog post would not producing “something useful” for any reasonable interpretation of useful. This reminds me of a line from Peter Diamandis’ Abundance (basically the only thing I remember) that described Google using a “stroke of HTML” to organize the worlds information.
    • anon700015 minutes ago
      It’s extremely easy to try it and find out. No reason to bet money.
  • jmorenoamor23 hours ago
    No. I like them.
    • danpalmer23 hours ago
      What do you like about them? I disagree, but so many people seem to like them that I assume I&#x27;m missing something. The main one I&#x27;ve heard before is that they work nicely over SSH, but I assume there must be more?
      • nimih23 hours ago
        I personally like making (and using) TUIs because:<p>- They encourage developing simpler, information-dense, and keyboard-driven interfaces, which I tend to prefer in general.<p>- I find them more fun to write, and less aggravating to maintain and debug, than interfaces built with GUI toolkits.<p>- Most software I write for personal use is going to be run in both a Linux and Mac OS environment (and a lot of the time on a headless server to boot), and a TUI often has less fuss than other options (at least, IME).<p>- I think monospaced text in a terminal just looks cool.
        • beej7119 hours ago
          I think the &quot;fun as hell to write and use&quot; angle is underrepresented in the comments—thanks for bringing it up.<p>It is, of course, completely subjective, but I know there are a fair number of people out there who agree with that statement.
        • annapanna22 hours ago
          But you can&#x27;t really do information dense when you are limited to a fixed grid of monospaced character glyphs. Variable width fonts are much more information dense for example.
          • nimih13 hours ago
            By &quot;information dense,&quot; I meant in contrast to what is typical in modern GUIs: generous borders and margins between interface elements, large buttons, etc. My experience both using and writing TUIs is that, because of the extreme limitations of your tools w&#x2F;r&#x2F;t styling and layout, more of the screen real estate tends to be devoted to displaying data, and on whole I prefer that.<p>YMMV, of course, I&#x27;m just sharing my own experience and perspective.
          • croon20 hours ago
            I prefer TUIs personally, but I can&#x27;t see myself use maps, or visual image editing in a TUI for example, but is vi infinitely faster than vscode for manipulating a codebase? Absolutely.<p>Anything that lends itself to keyboard input, piping, text manipulation and a bunch of other things are so much faster if you&#x27;re equally proficient in both input modes.
      • barnabee23 hours ago
        IMHO the rise of TUIs is heavily correlated with the near-abandonment of professional quality graphical interfaces.<p>If there was a powerful, information dense, configurable docking&#x2F;tiling, multi-application-composing GUI framework (all things a good terminal can do) then yes, build everything in that. I’d love to see it.<p>Until then, TUIs are vastly better than another Electron app or Mac app using UI frameworks that are trying their hardest to look and act like basic phone apps.
        • anon700011 minutes ago
          Nailed it. As the blog post says, GUI’s aren’t normally written for nerds. They exist, but it’s not normal.<p>So even professional tools all follow industry design and product trends which are too simplistic, don’t give you the info you need, and are optimized for abstract brand design or chasing metrics for the company, and not optimized for “how do I let my user accomplish their task as fast as possible”
      • mrheosuper23 hours ago
        Lightweight and can run over ssh are 2 main reasons i like them.
      • takluyver23 hours ago
        In addition to what other people have said, the terminal interface is cross-platform and very stable, so TUIs need little or no maintenance to keep working.
      • TurboHaskal23 hours ago
        I don&#x27;t think TUIs are inherently better but some are simply too good versus the alternative. magit and k9s for example.
        • anon700010 minutes ago
          Also CLI args to TUI are very useful. Like the k9s command flag to take you to any view. It feels more immediate than launching a separate app from the terminal
      • duskdozer23 hours ago
        (other user) in my typical experience:<p>- keyboard can be used for pretty much everything<p>- less visually busy (no&#x2F;less animations, background images&#x2F;color variations. often close to plain text on plain background)<p>- more information dense (fewer things hidden behind hamburger menus, modals, drawers, etc)<p>- more&#x2F;more easily customizable and documented<p>- more often can provide data directly into the terminal that I&#x27;m working in, so don&#x27;t need to copy&#x2F;paste through windows etc<p>these aren&#x27;t necessarily impossible for GUI or universally true for TUI, but maybe I would guess just more an artifact of there being types of people who prefer working in the terminal who are then more likely to make TUIs, and I share their preferences more.
      • jmorenoamor21 hours ago
        A good UI can be text, graphic, voice, etc.<p>I enjoy the usability and self perceived speed of not having to leave the console or reach the mouse to move a pointer when a cople of key presees is enough.<p>It&#x27;s a matter of choice, I know, but I also think there is a genuine case for text over graphics. I see it everyday on businesses that keep old cobol tpvs at the cash, the speed at which the clercks check inventories or perform other crm activities is unmatched to mouse or touch interfaces
      • skeledrew22 hours ago
        It&#x27;s easier to automate TUIs, since it&#x27;s just text.
        • benj11121 hours ago
          Nit. Surely it would be keyboard navigation? Your macro can consist of the key presses you would actually use, rather than trying to describe mouse movement.<p>If you want to automate from the perspective of what&#x27;s on screen, tuis have no metadata. A button in a gui does have metadata associated with it, so you could automate &#x27;click button x&#x27; where as in a TUI you&#x27;d be limited to clicking &#x27;position x,y&#x27;
          • skeledrew18 hours ago
            You don&#x27;t really need metadata to automate in a terminal. Literally everything is there in the clear and ANSI is used for control. It&#x27;s all characters; no need to think about pixels (I made something that automates TUIs[0] BTW.<p>For GUIs you have to handle the particular metadata of a given framework, if it exposes metadata at all for the controls. Otherwise you&#x27;re dealing with raw pixels which is an instant nightmare, though not so much now there are visual LLMs, but you&#x27;re still paying for the tokens and&#x2F;or extra processing.<p>[0] <a href="https:&#x2F;&#x2F;gitlab.com&#x2F;skeledrew&#x2F;jaiver" rel="nofollow">https:&#x2F;&#x2F;gitlab.com&#x2F;skeledrew&#x2F;jaiver</a>
            • benj11118 hours ago
              Ah ok. I was thinking from the perspective of automating the input, for a human to view, rather than automatically getting data out.
              • skeledrew17 hours ago
                Automating input is just sending character codes. It&#x27;s all wonderfully simple and uniform.
  • alerighi22 hours ago
    To me TUI have a better user experience than graphical applications. And considering the amount of companies that are still using decades old AS&#x2F;400 systems instead of new ERP system I&#x27;m probably not the only one to think it like this.<p>First, a TUI is usable with only the keyboard. Moving the mouse is a waste of time, and if you are using an application multiple hours a day, it can lead to being more productive.<p>Second, a TUI has no useless animations, elements, etc. It&#x27;s not pretty, you have on the screen only the stuff you need to do your job, and you are not distracted by useless elements.<p>Third, a TUI works beautifully in a client&#x2F;server world, where you have one central computer and dumb clients that connects to it, and the connection can be a simple serial connection as well as a network connection. It can be rendered even with an ESP32, making it suitable for embedded HMIs and all kind of computing scenarios.<p>Lastly, the user can choose the font, the colors, the size of the font that are best for him, usually a monospace font that it&#x27;s surely better to read information multiple hours a day.<p>To me it&#x27;s the opposite, GUI interfaces were born to make it intuitive to use a computer, but are not as efficient as TUI in terms of productivity.
    • codethief10 hours ago
      &gt; First, a TUI is usable with only the keyboard.<p>Is it? Many TUIs these days don&#x27;t allow me to configure my usual key bindings for moving my cursor within input fields. Meanwhile, GTK offers (used to offer) a way to customize key bindings across all GTK applications. (Unfortunately, they removed that feature in recent versions. Now I understand why people always get so upset about the GNOME devs…)
    • benj11121 hours ago
      The real shame though is that you can make gui apps efficient.<p>I&#x27;ve used the same systems you describe, except in gui form.<p>And the thing is, with this kind of application, everyone has a different 20% that they spend 80% of their time using. Guis can be as good as the TUI in the 80%, and very handy in the 20% where you aren&#x27;t so well versed.<p>The issue, is that guis seem to have dropped the ball with regards to efficiency.
  • hiAndrewQuinn22 hours ago
    I like TUIs, and I chose to build e.g. <a href="https:&#x2F;&#x2F;taskusanakirja.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;taskusanakirja.com&#x2F;</a> as a TUI for a couple of reasons, some of which are in this article and some not. Cross platform compatibility was a big one since at the time I started building it I didn&#x27;t actually have a Windows or Mac machine handy to test this out.<p>One thing I think which is overlooked is the raw feeling of speed a good TUI can give you. The lowest grade consumer laptop could probably download my little dictionary program and still get true search-on-keystroke performance, because there is virtually nothing slowing down that path, no animations, no nothing. Now most of that comes down to the data structures involved and making sure nothing ever has to go over a network, but I still appreciate the sheer simplicity of the approach.<p>It&#x27;s also nice to know that I can probably recompile this same exact code 50 years from now and still get it to run exactly as intended, since GUI frameworks have waxed and wanted in popularity, but terminals truly don&#x27;t seem to be going anywhere.
    • lelanthran21 hours ago
      &gt; One thing I think which is overlooked is the raw feeling of speed a good TUI can give you. The lowest grade consumer laptop could probably download my little dictionary program and still get true search-on-keystroke performance, because there is virtually nothing slowing down that path, no animations, no nothing. Now most of that comes down to the data structures involved and making sure nothing ever has to go over a network, but I still appreciate the sheer simplicity of the approach.<p>Recently, I posted a <i>GUI</i> mp3 playing program written purely in Tcl&#x2F;Tk using shell scripts for some things. On my 2011 desktop, filtering for a specific mp3 across all the mp3s stored on my computer (about 80GB of mp3s) takes single-digit milliseconds. I can only imagine what a modern desktop, with an SSD, will do!<p>GUI apps don&#x27;t <i>have</i> to be laggy. My Qt and Lazarus apps aren&#x27;t laggy at all, and are far more snappy and responsive than the clear majority of TUIs I use (like CC).
  • smcleod23 hours ago
    I absolutely love TUIs, they can live in a pane in my terminal, run via SSH on remote machines, use hardly any resources and are very flexible.
  • divbzero22 hours ago
    It’s a matter of preference: Everything OP says about GUI development getting easier is also true about TUI development getting easier.
  • jesse_dot_id23 hours ago
    I&#x27;m a fan of a TUI, I think because they are usually pretty intuitive out of necessity. I can usually feel the developer&#x27;s skill level in the user experience.
  • closetheloopdev22 hours ago
    If you want to live only in the terminal, you can also use one of the text-based browsers [1] instead of Chrome, Firefox, etc. browsh [2] can also play YouTube videos if you&#x27;d like.<p>You can also just use the system console with tmux or GNU screen if you absolutely don&#x27;t want any graphics at all.<p>The TUI programs usually do not consume a lot of resources. They are also very fast and optimized for keyboard-only navigation.<p>[1] <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Text-based_web_browser" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Text-based_web_browser</a> [2] <a href="https:&#x2F;&#x2F;github.com&#x2F;browsh-org&#x2F;browsh" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;browsh-org&#x2F;browsh</a>
  • theultdev44 minutes ago
    You can&#x27;t ssh into a swift app.
  • cube222220 hours ago
    Yeah, I think I agree with this. I think making GUIs and reverse engineering proprietary APIs are two things that frontier models make really pleasant - e.g. I made a menu-bar app (very similar to your temperatures dropdown, similar graph, SwiftUI) which connects via bluetooth to my Inkbird CO2 sensor, graphs the CO2 level over time, and looks fabulous.<p>The skills are useful, thanks for linking them! They&#x27;ll be useful for my future projects like this. FWIW I&#x27;ve had good luck with using Claude Design first to do mocks.<p>At the same time, I think there&#x27;s still the &quot;is this worth doing a hyper-customized version of this software, if I&#x27;m also then responsible for fixing the bugs?&quot;. But I think increasingly as we improve our agentic workflows and make them more self-contained loops driving the result to completion, this becomes kind of a non-issue.<p>In general, I do think LLMs are bringing about a new age of hyper-customization, which I welcome.
  • burnoutdv23 hours ago
    I am team TUI for the matter.<p>Its also a bit funny how the author show cases a bunch of apps that only exist on a very specific setup, IOS Mac devices while TUI can exist everywhere a terminal can reach.<p>The right tool for the right job, noone would srsly use a TUI photoeditor but for many things the simplicity and constraints that a terminal introduces condenses design.<p>I got this article about UI density open since weeks and meant to read it <a href="https:&#x2F;&#x2F;mattstromawn.com&#x2F;writing&#x2F;ui-density&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mattstromawn.com&#x2F;writing&#x2F;ui-density&#x2F;</a> But from what I could interfere so far..more UI frameworks, more white space, more wasted space.<p>Also..TUIs usually allow me a wide variety of colorschemes out of the box which is nice
  • swiftcoder23 hours ago
    As someone who works on a very GUI-centric OS (i.e. Mac), TUIs just don&#x27;t integrate very well with the rest of the non-Terminal ecosystem.<p>They don&#x27;t support standard GUI shortcuts. They don&#x27;t support drag-and-drop. I can&#x27;t double-click a file and have it open in a TUI. They don&#x27;t integrate with spotlight metadata. They don&#x27;t ship document icons. They have terrible support for accessibility APIs. And so on...
    • benj11121 hours ago
      It&#x27;s somewhat an issue with Linux as well.<p>Ctrl c does 2 completely different things. Terminology is different. Etc.<p>Problem is. Terminal applications standardised in the 70s. Guis in the 90s. Although that&#x27;s being undone by web apps, and the influence of touch screens.
  • rayiner26 minutes ago
    I find it hilarious that Claude is still a piece of shit web app. Claude can just make apps! Why not release native ones? At least the TUI is pretty good.
  • gemisis23 hours ago
    Hot take: Too many people are building GUIs for what should just be a TUI, and vice versa<p>My stances:<p>- Dev tools need a CLI at minimum, TUI for complexity<p>- User facing needs a GUI, CLI for power users<p>If you&#x27;re building a TUI for a user facing thing, then yeah, you&#x27;re doing it wrong, but if your target audience is devs then yes, PLEASE do a TUI, and make it nice.
  • farhadhf21 hours ago
    The CLI&#x2F;TUI split in the article is right, but to me the more interesting boundary now is human-facing vs agent-facing interfaces. For most things TUIs lose on both sides.<p>We run an internal agentic development harness we experimentally built for working on large-ish projects. first version started as a TUI, but it quickly became unusable for the large scale projects it was meant to work on (essentially PRD to PR, with planning loops, task decomposition loops and dependency aware execution &#x2F; review loops). The TUI was too state-bound for another agent to drive reliably, and too cramped for a human to review at scale. We ended up replacing the TUI with a headless cli, and every interface we&#x27;ve built for the harness has become either a text artifact (mostly for agents to work) or a web view (for humans to drive and review).
  • ammar_az22 hours ago
    I like to have my freedom in choosing what software I want to make&#x2F;use, without anyone dictating what is better for me.<p>You like GUIs and want to build&#x2F;use ones that works in MacOS, that&#x27;s perfect go ahead and build as much GUIs as you want. However, this wouldn&#x27;t work for me as I know how bad developing native cross-platform GUI applications is.
  • likeclockwork1 hour ago
    No.
  • JKCalhoun15 hours ago
    &quot;I’m glipping balls like everybody else.&quot;<p>Well, that&#x27;s a new one, ha ha (guessing &quot;tripping balls&quot; on GLP-1).<p>(And here I am too, about to be <i>glipping balls</i>… like everybody else, I suppose.)
  • sochowski18 hours ago
    &gt; But there’s one of the problems with TUIs: even with a good framework, like Ratatui, Textual, or Bubbletea, you’re fighting the terminal to come asymptotically close to what every native framework does well out of the box. Scrolling and scroll targets are an obvious example.<p>maybe the answer is... you just don&#x27;t need features like scrolling? this guy is trying to fit a square peg into a circle hole
  • bborud22 hours ago
    I think it depends on how you work and what the application does. When I&#x27;m in a flow state I need things that are fast. GUIs, even on my relatively fast mac are not terribly fast. They take more time to start. They require more screen real-estate, and more management of same.<p>For something to become a GUI app (or a web-based UI) the GUI needs to offer something more valuable than a TUI can offer in terms of interaction.<p>I have one TUI app that wrote a while back to keep track of what I work on. It started off as a &quot;wizard&quot;-style UI. You choose project, then subproject, day, hours, activity and then hours and comment in a sequence of steps.<p>Arrow keys -&gt; enter -&gt; arrow keys -&gt; enter .... -&gt; comment -&gt; enter<p>It takes about 2-3 seconds for me to do. And this is a time-sensitive task: if it isn&#x27;t fast the user will not do it as often. There is a web interface to do the same thing, but the backend is slow. My TUI utility speeds that up by caching (between sessions) the things that the web UI has to look up (slowly) every time.<p>Then I wrote a more involved UI for it that &quot;looks more like an application&quot;. Result? Now we were up to 15-20 seconds of interacting. Oh year it could do more and it certainly looked better, but it was less efficient so I noticed that I would postpone using it to record what I was doing. Because it now had friction. Lots of it. So a couple of weeks later I just did a hard reset and went back to the wizard style, minimalist version.<p>I would make a web UI, but that would burn 2-3 seconds just to navigate the browser there, juggle tabs (which I have too many of already), find the right browser to open the tab in etc. Once there do I keep it for &quot;faster access&quot; or close the tab? Keeping it is almost always the wrong thing.<p>There&#x27;s a reason I have perhaps 15 different tools in my garage that can attach to a given fastener size. And there&#x27;s a reason for that. Not all 19mm bolts are treated the same way. Some are low torque and live in tiny spaces. Some require precise fastening torque. Some need a lot of force to come loose - some will only come loose with force and I&#x27;m okay with destroying them. This is why I have so many tools that all do essentially the same job: apply rotational force to a piece of metal that has a standardized interface.<p>Similar tasks are not always best solved with the same tool because the context and the details do matter. Same goes for UIs. There are some things TUIs are very good at. Not least portability and remote usability.
  • newtonianrules1 hour ago
    No.
  • himata411335 minutes ago
    I feel like this is the typical MacOS user stereotype.. Cosmetics over efficiency.<p>No, for the love of god never stop making TUI&#x27;s.
  • sgt23 hours ago
    Question about Markdown, I&#x27;m intrigued by this. I recently bought FS Notes but it has some bizarre bugs on startup. I might consider some other tool, perhaps also something with better MD support. Is this library you mentioned truly fast? <a href="https:&#x2F;&#x2F;github.com&#x2F;gonzalezreal&#x2F;swift-markdown-ui" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gonzalezreal&#x2F;swift-markdown-ui</a>
  • lukasbm23 hours ago
    TUIs are just an accessibility nightmare without any of the advantages of a CLI like scriptability. Truly, Truly horrible
  • knorker23 hours ago
    So wrong.<p>They&#x27;re fast, efficient, work across SSH, in a tmux, and survive the almost daily browser upgrades.<p>And they are easy to run as separate users without VNC or sandbox hell.<p>Like do you want to think about X&#x2F;Wayland isolation, or do you just want to get shit done?
  • x0xMaximus23 hours ago
    aerc is the best program I&#x27;ve ever used. tmux from anywhere. May TUIs never die.
  • curtisblaine22 hours ago
    Clickbaity title. Boring show off of vibe coded apps that only make sense to the author, disguised as think piece. This post has it all.
  • kunley23 hours ago
    What is the complaint in the article really about?<p>People write code using the platform X because they like it. It doesn&#x27;t make sense to try to stop this
  • rochak23 hours ago
    Or, you know what, don&#x27;t listen to strangers on internet telling you what you should do. Do what you want.
  • skeledrew23 hours ago
    Making TUIs isn&#x27;t the issue. Making them with JS&#x2F;TS, and in general an ecosystem designed for the web, is the problem. I&#x27;ve used some really good TUI apps in the past, but all these new ones mostly based on web tech are just... sloppily bad. Probably because the dev would rather be in the web browser where it&#x27;s naturally colorful and scripts can run wild, but mostly-static terminal is where things are currently at. And they&#x27;re using LLMs, which don&#x27;t have sufficient data on web-tech-in-terminal since it wasn&#x27;t really a thing until now, which also ensures they will likely never gain enough data on decent patterns since almost nobody will be engineering said patterns, creating a permanently slop-ridden cycle as future models only have slop projects to learn from.
  • self_awareness23 hours ago
    Do more TUIs.<p>People are unable to do good GUIs. The web shows this; completely disregarding any UI guidelines by web people established since 80s is a proof that most people have no idea how to make GUIs.<p>I don&#x27;t know how to make a good GUI. That&#x27;s why I need good templates and strong guidelines, discipline and spend long time on design. Most people don&#x27;t do that.<p>TUI is much, much easier. It&#x27;s also possible to do bad TUIs, but it&#x27;s easier to do a good TUI than to do an average GUI.
  • globular-toast26 minutes ago
    I agree with the author, as long as you keep the good bits of TUIs, i.e. keyboard driven and fast. There is absolutely no reason why a GUI shouldn&#x27;t be strictly better than a TUI.<p>I&#x27;ll just copy a comment I made about this in another thread:<p>TUIs are just GUIs that use a grid of characters instead of pixels. They are strictly worse than true GUIs, by definition. The only thing I liked TUIs for is running over SSH, but can any of these newer ones really run over SSH with any kind of decent performance anyway?<p>I think people are confused and think they like TUIs because they like them being keyboard driven etc. But this could all be done with a GUI.<p>The other factor is probably just fashion. Similar to how some kids are now listening to music on cassette tapes, which are objectively worse than other media in almost all respects. The less cynical take is it&#x27;s like vinyl: it does come with compromises but gives us back some of the things we lost over the years.<p>The actual interesting text-based interface is the CLI. I&#x27;ve seen a few examples of TUIs that really should be a CLI and would be much more useful as such.
  • picafrost23 hours ago
    Are there not disparities between running an application in the terminal and running a native GUI? I can only speak for macOS, but my experience with bespoke native GUI applications of my own or other developers (pre-built distributions in GitHub assets) is that I must first pass through the layers of the macOS security model: doing a right-click dance to launch the application, changing permissions in security settings, etc. I assume the experience is different depending on how you set up Xcode to compile, how it&#x27;s signed, etc (I have <i>zero</i> experience with how this works). That said, I do not recall being subjected to any of this using terminal applications.<p>Put differently, a GUI application seems to subject you far more to the whims of Apple or Windows than a TUI and perhaps even a different run context. Maybe the permissions fiddling for this is insignificant. Is there a clear user contract from Apple or Microsoft about this?<p>Naturally, this is a non-issue in Linux.
  • yellow_lead23 hours ago
    This piece is just marketing for all the authors slop coded projects
  • GreenSalem23 hours ago
    Incoherent and far too long .<p>Lists a bunch of things .<p>Fails to make any clear points .<p>Fails to give real reasons for the few claims it makes .
    • joshka13 hours ago
      I really liked this article (despite disagreeing with its conclusion and agreeing with many of the concerns about failures of TUIs). It gave a feeling of &quot;here&#x27;s a bunch of cool stuff I&#x27;ve done&quot; to help back the claim, which is far more personal than a lot of blog posts tend to be.
    • PaulRobinson23 hours ago
      Building software for yourself - and only yourself - is a super-power.<p>I can see how LLMs help.<p>I wouldn&#x27;t want to maintain software for other people entirely vibe coded. I think I might think again about native app development for my own needs, if it&#x27;s kind of disposable.
    • zombot19 hours ago
      But it makes some things very clear:<p>- All those GUI windows look the same. How the fuck do I tell one app from the other?<p>- The abysmal corner radii are a clear indication of terminal macOS. Pun fully intended.
    • mike_hearn21 hours ago
      Did you read it all the way to the end? It&#x27;s coherent and does give real if debatable reasons for the claims it makes, I think it also does so quite clearly although if I&#x27;d written it the ordering of the sections would be different.<p>Here&#x27;s an organically grown summary:<p>• TUIs suck because they are primitive, often buggy, hard to write and aren&#x27;t accessible. Their existence isn&#x27;t due to any real technical advantage but more because UNIX historically had a very bad UI toolkit (Motif) which established a &#x27;culture&#x27; of TUIs.<p>• It&#x27;s now easy (on macOS) to write native apps that use SwiftUI and give a much better GUI. You can just vibe code them.<p>• Some specific skills, features, templates etc are linked which look useful if you agree with this approach.<p>• You don&#x27;t have to give up remote access because there&#x27;s no reason the GUI has to run on the same machine as the thing it controls. A native GUI can just SSH in to a remote machine and run non-TUI CLI tools to control it. Lots of apps have worked this way and it functions fine.<p>• On the other hand, TUIs are portable (ish). The author concedes this may sometimes be useful.
    • dmos6223 hours ago
      Spent 2 minutes skimming, didn&#x27;t manage to find a single talking point. I&#x27;ve no idea what the thesis is. Seemed like a list of things this person built.<p>People talk shit about LLM writing. Well, here&#x27;s a prime example of why I like LLM-speak. Does this article have personality? Yes. Attitude? Yes. Is it structured and accessible? No.<p>I&#x27;ll take clarity over personality any day of the week.
      • SpaceNugget22 hours ago
        That&#x27;s a false dichotomy. If you launder rambling pointless prose through the llm you don&#x27;t trade the personality of the writing for a well reasoned argument with clear points, you just lost the personality and gained shitty writing. LLMs aren&#x27;t magic and can&#x27;t make your point for you if you don&#x27;t have one to begin with in the prompt. Garbage in garbage out.
        • dmos6222 hours ago
          I disagree. An editor can definitely make a piece of writing clearer without further input from the author. I often use an LLM to do that.<p>Of course, I didn&#x27;t mean to imply that there&#x27;s a dichotomy between personality and clarity. There&#x27;s a dichotomy between ordinary LLM writing and personality.
  • knorker19 hours ago
    If there&#x27;s anything that&#x27;s anachronistic, it&#x27;s native apps.<p>You want it graphical: Make a webapp.<p>You don&#x27;t: Make a TUI.<p>What exactly is the use case for native apps? Even lots of legacy code can build to WASM now.<p>(yes, I&#x27;m exaggerating a bit, but not much)
    • err4nt17 hours ago
      As a web developer who has just begun building native apps: running outside of the various sandboxes browser based apps are quarantined in. Deeper file system access, better access to hardware and sensors, notifications where helpful, deeper integration into the operating system (open with, file previews, widgets to launch the app, etc) and performance. Some things the web does well, some things it does less well than native. With a native wrapper around a web app you can leverage the best of both!
  • rvz55 minutes ago
    Old man yells at terminal.<p>Who tf cares about what the author who appears to be new to building native desktop apps (and vibe codes them) says about terminal apps?<p>I am not writing my code 3 times for each native platform even for agents and then dealing with signing keys just for it to break on a OS update. Terminal apps for developers survive all of this.<p>The entire article is just a massive rant with woefully weak points. I guess agents really does amplifies both Gell-Mann Amnesia and Dunning-Kruger in others.
  • Hizonner17 hours ago
    &quot;Stop liking things I don&#x27;t like!!&quot;
  • qsera23 hours ago
    Do more TUIs. Please.