GoAccess is a real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems or through your browser.
-
Updated
May 6, 2022 - C
{{ message }}
GoAccess is a real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems or through your browser.
n³ The unorthodox terminal file manager
sc-im - Spreadsheet Calculator Improvised -- An ncurses spreadsheet program for terminal
blingful character graphics/TUI library. definitely not curses.
Vifm is a file manager with curses interface, which provides Vim-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Unix pager (with very rich functionality) designed for work with tables. Designed for PostgreSQL, but MySQL is supported too. Works well with pgcli too. Can be used as CSV or TSV viewer too. It supports searching, selecting rows, columns, or block and export selected area to clipboard.
A modern port of Turbo Vision 2.0, the classical framework for text-based user interfaces. Now cross-platform and with Unicode support.
Ncurses based XMPP client
A Tox-based instant messaging and video chat client
Describe the bug/Expected behavior
The TUI window takes less than half of vertical space, losing information. For example, on the Memory tab, only first six banks are visible, plus the header of bank 7 (and there's apparently no way to scroll down).
The window also doesn't take the full horizontal space; in this case the text is not lost but spills into frames and wraps around onto the le
Text-based user interface CSS library
ranger-like terminal file manager written in Rust
C++17 Terminal User Interface(TUI) Library.
A ncurses file manager written in C with vim like keybindings
Systemd units manager with ncurses, terminal interface
ncurses PulseAudio Mixer
Music On Console Player
A protocol analyzer like a wireshark on CUI. cuishark is using libwireshark to analyze packets. https://cuishark.slankdev.net
Add a description, image, and links to the ncurses topic page so that developers can more easily learn about it.
To associate your repository with the ncurses topic, visit your repo's landing page and select "manage topics."
Vec2is currently made of 2usize. This means 16 bytes on x86_64, which is crazy.A pair of
u16would probaby be enough (this puts a limit of 65k, or 32k if we usedi16, which sounds enough). Or evenu32/i32would already halve the size.The main issue is conversion with other types. We'll need to see when/how values are converted.