Live data from Hacker News

Ask HN: What are your favorite Linux applications?

news.ycombinator.com

41–50 of 52 posts

Re: Ask HN: What are your favorite Linux applications?

#42
GNOME 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, 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?

#43
post #3

For 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…

As Awk is a pattern-matching language, you can simplify it to something like 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!

[1] https://en.wikipedia.org/wiki/GNU_parallel

Re: Ask HN: What are your favorite Linux applications?

#46

OS: 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.

+1 for mark-text

Re: Ask HN: What are your favorite Linux applications?

#47

GNOME 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,…

Two things that keep me away from gnome browser. 1. The tab handling is awful, would be great if they added vertical tab support. 2. Like firefox, it doesn't play with dark desktop themes, you end up with text areas with black text on a black background.

Re: Ask HN: What are your favorite Linux applications?

#48

OS: 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…

Try out Dbeaver instead of pgAdmin for database administration. It's a much, much better tool.

Re: Ask HN: What are your favorite Linux applications?

#49
post #3

For 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 aex | grep $common_denominator | awk '{print $1}' | xargs kill

That looks pretty equivalent to:

  pkill -f $common_denominator
I suppose this is less portable, though.
Post reply on HN