HN user

whimbyte

38 karma
Posts2
Comments11
View on HN

There's no web renderer at all. The UI is native AppKit (NSTableView, NSOutlineView, NSPanel, etc.) driven from C#/.NET via P/Invoke. It uses real Cocoa controls, not HTML/CSS in a Webview. The app doesn't phone home except for checking if there is a new version (and only does this in the registered version) and the only information sent is the current version number.

and I really dislike drag and drop behavior on macOS

In the app you can have a dual pane with two folders side-by-side and select the file(s) you want to move/copy to the other folder and right click or open the command palette to do the operation, so you do not have to drag them (though dragging still works too). It's also possible to cut files with CMD + X and paste them somewhere else with CMD + V.

does this index the disk to do this ? So the filemanager is working with an index rather than the files ? It could be stale ?

Good question. There is no index. WhimFiles reads the actual directory live when you open it, and filtering runs in-memory on the real file list, so there's nothing to go stale. It also watches the folder and refreshes when things change on disk, so you're always seeing the real current state.

On getting/pasting paths WhimFiles does both: "Copy Full Path" in the right-click menu (or from the command palette), and "Go to Folder/File" where you paste a path and jump straight there. That was one of my own Finder annoyances.

Maybe not go live life completely offline. Just throw out the bad parts and keep the good. There's plenty of better things to do instead of doomscrolling, like taking a walk through nature.

There's also the sunk cost fallacy. Instead of removing code/features that it's becoming more and more obvious were a bad idea to begin with they get kept in the code base causing even more problems and delays because of "we cannot just remove it after spending so much time and money creating it".

The issues with bad code/architecture/complexity often gets "solved" by creating even more of it.