Termui – Go terminal dashboard
11–20 of 74 posts
Re: Termui – Go terminal dashboard
#12Are there other in-terminal applications that have browser-like presentation options like this? Specifically with padding/margin and a "responsive" view? In short, very, very cool.
Re: Termui – Go terminal dashboard
#13Re: Termui – Go terminal dashboard
#14This is pretty cool! Do you guys know if there is a web app that lets you create dashboards like this one?
Re: Termui – Go terminal dashboard
#15One thing which is subpar about such an interface is that you basically have to type "help" unless you just want to blindly guess what the commands are. This is like a landing page that has a button that says "show what sites I can go to from here": why not just show my options straight away? Unnecessary indirection.
Re: Termui – Go terminal dashboard
#16This is pretty cool! Do you guys know if there is a web app that lets you create dashboards like this one?
Re: Termui – Go terminal dashboard
#17All these Go applications/talks/whatever coming out of the woodwork make me giggle. YOU CAN'T DO AWESOME STUFF WITHOUT GENERICS, OK?
You can build awesome software projects using almost any toolset. C, or C++, or Ruby, or Go, or Java, or…
The question is – is the trade-off worth it? Lack of generics makes things more awkward – but it's also simpler, so maybe it's a net gain? Some people think it is, and some people think it's not. But it's a useful conversation to have.
Re: Termui – Go terminal dashboard
#18Learning about terminal escape sequences and capabilities (SIGWINCH, alternate screen, doing coloring non naively, clear part/all of line/screen) was quite fun and not that hard.
Going terminal/VT is incredibly interesting for us when building such tools because the setup is extremely simple, robust, secure, and portable.
This package will certainly allow us to go to the next level much more easily.
Re: Termui – Go terminal dashboard
#19All these Go applications/talks/whatever coming out of the woodwork make me giggle. YOU CAN'T DO AWESOME STUFF WITHOUT GENERICS, OK?