Live data from Hacker News

Ask HN: Best Command-Line Applications?

news.ycombinator.com

191–200 of 393 posts

Re: Ask HN: Best Command-Line Applications?

#193
I use vim exclusively, and use a terminal for most things.

FZF - fuzzy file finding lightning quick, I use this as a ctrl+p replacement in vim too. Kubectx - Supported by FZF. Quickly change k8s context and define namespaces easily too (Kubens)

Re: Ask HN: Best Command-Line Applications?

#195
Just about every Rust cli app written by sharkdp:

    https://github.com/sharkdp/fd
    https://github.com/sharkdp/bat
    https://github.com/sharkdp/diskus
    https://github.com/sharkdp/hyperfine
For viewing csv's as tabular, paged data from the terminal, check out VisiData (python) https://github.com/saulpw/visidata

Re: Ask HN: Best Command-Line Applications?

#198
post #62

Earlier quoted context omitted.

Tail -f works by opening the file and remembering the byte offset, if it’s a log file that gets flushed/wiped then tail -f won’t see anything until the logs fill enough to exceed the previous file contents.

True, but the `-F` flag will work in that case.

TIL

Works on BSD `tail` too. :)

Re: Ask HN: Best Command-Line Applications?

#199
post #151

Ngrok - https://ngrok.com So easy and super convienient if you quickly need your local server accessible from somewhere else.

This one is even easier because it doesn't require to install anything, just make a good old ssh tunnel: http://localhost.run

Oh, looks like you can get a consistent sub-domain too, provided it's unique enough. Nice.
Post reply on HN