LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   2015 LinuxQuestions.org Members Choice Awards (https://www.linuxquestions.org/questions/2015-linuxquestions-org-members-choice-awards-117/)
-   -   File Manager of the Year (https://www.linuxquestions.org/questions/2015-linuxquestions-org-members-choice-awards-117/file-manager-of-the-year-4175562723/)

dugan 01-31-2016 05:03 PM

Quote:

Originally Posted by dabreese00 (Post 5490827)
If you wouldn't mind explaining a bit (and if this isn't too off topic), what is so bad about the ranger code, compared to mc?

I have never looked at mc's code. One thing that's bad about Ranger's code is the multiple instances of:

Code:

try:
    value = dictionary[key]
except:
    pass

Those should be either:

Code:

try:
    value = dictionary[key]
except KeyError:
    pass

Or

Code:

if key in dictionary:
    value = dictionary[key]

Or
Code:

value = dictionary.get(key)
Any of those three would have been better.

Keep in mind that I program in Python for a living.

dabreese00 01-31-2016 07:55 PM

Hmm ok, thanks. I think I can see why that's bad practice: it will mask actual errors that aren't just the one he's expecting, making it hard to debug.

Pyrotech72 02-01-2016 09:44 AM

Dolphin. If a file manager doesn't have split view, I don't even consider it. I used to use DirWork extensively on the Amiga.

bsdunixdb 02-02-2016 01:48 PM

Dolphin no contest.

astrogeek 02-09-2016 01:22 PM

Bash.

bloody 02-09-2016 04:51 PM

Quote:

Originally Posted by astrogeek (Post 5497667)
Bash.

OMG that's right...

libc FTW! It might require some more typing (and sometimes compiling before executing), but it can do everything, i.e., far more than any other file manager known to man. Most versatile and already installed everywhere. :cool:

cowlitzron 02-11-2016 04:01 PM

Dolphin has won the title for five straight years, with Thunar coming in second. I use and like them both.

dugan 11-27-2016 12:13 PM

Quote:

Originally Posted by orbea (Post 5490688)
rover (File browser, not manager).

I just got around to trying this. It's amazing once you set $ROVER_OPEN to xdg-open.

I plan to vote for vifm this year, but rover is a very nice complement to it.


All times are GMT -5. The time now is 02:41 PM.