Ask HN: What are your favorite Linux applications?
41–50 of 52 posts
Re: Ask HN: What are your favorite Linux applications?
#42Being part of the GNOME project is also follows the GNOME design and maintain consistency with the rest of the desktop environment — a must for me.
Aside from that, I mostly like applications that follow the GNOME HIG, like GNOME Terminal, Geary, Polari, and Fractal.
My favorite text editor after vim is still Gedit, and it is a shame I can't use it on macOS ¯\_(ツ)_/¯
Re: Ask HN: What are your favorite Linux applications?
#43For all cli apps, the importance of cli itself can't be understated. While there are only a few cli programs available to ALL unix users (grep/ps/awk/sed/xargs/etc), the value of the pipe are one of the defining features of CLI that amplify any program made to work in CLI. A command I often run: `ps aex | grep $common_denominator | awk '{print $1}' | xargs kill` to deal with multiprocess testing runs demonstrate this…
ps aux |awk '/what/ {print "kill " $2}'
This will give you a list of kill commands you can review, before piping to |sh to shake off those processes :)And when what you try to do sequentially might take too long, you can consider throwing GNU Parallel [1] in the pipemix!
Re: Ask HN: What are your favorite Linux applications?
#44Kazzam is a simple (tiny) screen capture app, which does one thing and does it well.
Re: Ask HN: What are your favorite Linux applications?
#45Re: Ask HN: What are your favorite Linux applications?
#46OS: Debian 10 + XFCE Terminal: highly-customized Terminator bound to F1 + XFCE Terminal for "floating" instances Text/Programming: Sublime Text, Intelij IDE, nano (yeah yeah bring your hate vim users - I know it well and I'm not a fan), Meld Markdown/docs: Typora (TRY THIS OUT IT'S AMAZING.) Browsing: Chrome, Chromium, FF, Brave (in that order); Postman for API work, Charles Proxy for reverse-engineering work Communi…
As an open-source alternative to typora I can suggest Marktext https://github.com/marktext/marktext which I believe is on par with typora features. Don't be alarmed by the fact that it's electron, it's pretty fast either way. And as far as I know typora is electron based too.
Re: Ask HN: What are your favorite Linux applications?
#47GNOME Browser offers an extraordinary browsing experience, and most people seem to ignore it — probably because it lacks extension support, which I don't really care about. Being part of the GNOME project is also follows the GNOME design and maintain consistency with the rest of the desktop environment — a must for me. Aside from that, I mostly like applications that follow the GNOME HIG, like GNOME Terminal, Geary,…
Re: Ask HN: What are your favorite Linux applications?
#48OS: Debian 10 + XFCE Terminal: highly-customized Terminator bound to F1 + XFCE Terminal for "floating" instances Text/Programming: Sublime Text, Intelij IDE, nano (yeah yeah bring your hate vim users - I know it well and I'm not a fan), Meld Markdown/docs: Typora (TRY THIS OUT IT'S AMAZING.) Browsing: Chrome, Chromium, FF, Brave (in that order); Postman for API work, Charles Proxy for reverse-engineering work Communi…
Re: Ask HN: What are your favorite Linux applications?
#49For all cli apps, the importance of cli itself can't be understated. While there are only a few cli programs available to ALL unix users (grep/ps/awk/sed/xargs/etc), the value of the pipe are one of the defining features of CLI that amplify any program made to work in CLI. A command I often run: `ps aex | grep $common_denominator | awk '{print $1}' | xargs kill` to deal with multiprocess testing runs demonstrate this…
That looks pretty equivalent to:
pkill -f $common_denominator
I suppose this is less portable, though.