Live data from Hacker News

Ask HN: What's the best 'non-frustrating' search/directory UI/UX you've seen?

news.ycombinator.com

11–20 of 50 posts

Re: Ask HN: What's the best 'non-frustrating' search/directory UI/UX you've seen?

#11
post #4

If you means something that searches for files within any directory, I think the best so far I've used was Everything ( https://www.voidtools.com/ ). Lightweight, fast, and really simple UI. I'm still looking for a Linux equivalent (I'm currently using a shell wrapper for `ag --depth 0 -g `.)

I use Everything as well, it's really useful, very focused.

It may seem "lightweight" in a modern desktop machine, but I believe the way it works is: it keeps the index of your entire filesystem in RAM at all times. And it continuously monitors that filesystem to keep the index updated. It's kind of brute-force, really. I can think of some ways that could get out of hand and not seem so lightweight.

Regardless, the gap between what Everything can do and what the built-in File Explorer search can do is an embarrassing canyon, and I can't believe MS hasn't even fixed the built-in search enough to make it function correctly let alone quickly at this late stage.

Re: Ask HN: What's the best 'non-frustrating' search/directory UI/UX you've seen?

#12
We built a SQL query tool for the filesystem (macOS) last year, and will be launching for Windows in the next two weeks.

Finding files is pretty straight forward using the LIKE operator against text in the filename, path or file contents. And the set-based logic of SQL works very well for identifying sets of files to work with: we have an exec() command that lets you run commands on file paths returned in query results.

License terms are free for personal use and $5/month commercial.

http://etia.co.uk/

Re: Ask HN: What's the best 'non-frustrating' search/directory UI/UX you've seen?

#13
I do consulting for UX for faceted search, and the top of my shortlist for ideas/inspiration is still http://devart.withgoogle.com/ But for a search engine, I'm interested in how UI that works much like this example would play out: https://material.uplabs.com/posts/google-search-design-conce...

Re: Ask HN: What's the best 'non-frustrating' search/directory UI/UX you've seen?

#16
I tend to add live searches in the most important tabular views of my apps, using something like this:

http://intercoolerjs.org/examples/activesearch.html

Search speed, good fuzzy matching and good row/chip design are as important/more important than the basic search UI, IMO.

Re: Ask HN: What's the best 'non-frustrating' search/directory UI/UX you've seen?

#17
post #4

If you means something that searches for files within any directory, I think the best so far I've used was Everything ( https://www.voidtools.com/ ). Lightweight, fast, and really simple UI. I'm still looking for a Linux equivalent (I'm currently using a shell wrapper for `ag --depth 0 -g `.)

> I'm still looking for a Linux equivalent

You mean `locate`? Package name in Debian is mlocate.

I don't know ag and it's not a package in Debian.

That said, I agree that Everything is a must-have on Windows. I don't understand how Microsoft's own search engine is so incredibly crappy (and has been since, what, Windows 95?) while Everything is a 200KB binary that does it perfectly.

Re: Ask HN: What's the best 'non-frustrating' search/directory UI/UX you've seen?

#18
I've also been working on a search engine website, and personally my approach for the search/directory UI has been to keep it as minimal as possible, like early Google.

Not sure how inspiring it is, but here you go: https://changelogs.md/

The goal of this UI is to have the bare minimum of useful info easily accessible.

Post reply on HN