←back to thread

331 points willm | 1 comments | | HN request time: 0.215s | source
Show context
mikkelam ◴[] No.41217448[source]
Why do software engineers care so much about TUI? I really don't get it. I love a good command line program. But TUI just doesn't appeal to me.
replies(9): >>41217465 #>>41217542 #>>41218233 #>>41218568 #>>41219439 #>>41220309 #>>41221102 #>>41222105 #>>41223080 #
electroly ◴[] No.41219439[source]
There isn't much obvious benefit in using TUIs, but writing TUIs has a big upside: it's easier in most ways. It's trivially cross-platform, you don't have to make pixel-perfect GUIs (because it's impossible), you don't need icons or graphics (because you can't show graphics), etc.
replies(1): >>41222175 #
1. ofseed ◴[] No.41222175[source]
That's the main reason. TUI programs can be created quickly, and they're mostly developer-oriented, so they just need to be useful enough and don't need to be optimized as much as a GUI program.