this post was submitted on 30 Aug 2022
8 points (100.0% liked)
General Programming Discussion
7814 readers
5 users here now
A general programming discussion community.
Rules:
- Be civil.
- Please start discussions that spark conversation
Other communities
Systems
Functional Programming
Also related
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
But are they state-of-the-art and modern? What I mean by that is really efficient, like energy-efficient, small and fast. Old software has sometimes the problem that old code can't be removed, because it is just the core of it or would take too much time. Newer software could learn from that and be much better.
Okay, writing about it I realized that modern websites eat up most resources of high-end pcs just while scrolling through. This is something I don't had in mind :D
Well, you're wanting to write a TUI in the first place, which (arguably) means you're not really looking for "state of the art" or "modern" -- if you see what I mean.
And if one wants to write a TUI app, then curses is the most natural and least bloated way I can think of to make that happen.
And you don't need to resort to writing your app in C -- lots (most?) programming languages have bindings to curses. I've written a curses app in Ruby, for example.
Is your Ruby application open source? I am curious for what it is :)
Yes they're open source. They're also not terribly interesting and I haven't updated them in many years, but maybe I should fix that!
https://github.com/dressupgeekout/pless https://github.com/dressupgeekout/pres
Finally someone who uses
#!/usr/bin/env
in their scripts.