All Projects → cboxdoerfer → Fsearch

cboxdoerfer / Fsearch

Licence: other
A fast file search utility for Unix-like systems based on GTK+3

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Fsearch

Pkgsearch
Search R packages on CRAN
Stars: ✭ 73 (-94.67%)
Mutual labels:  search-engine
Mhtextsearch
A fast full-text search library for Objective-C
Stars: ✭ 79 (-94.23%)
Mutual labels:  search-engine
Algoliasearch Client Android
Algolia Search API Client for Android
Stars: ✭ 92 (-93.28%)
Mutual labels:  search-engine
Shodanz
🔭 A modern, async Ruby gem for Shodan, the world's first search engine for Internet-connected devices.
Stars: ✭ 74 (-94.6%)
Mutual labels:  search-engine
Xinahn Socket
一个开源,高隐私,自架自用的聚合搜索引擎。 https://xinahn.com
Stars: ✭ 77 (-94.38%)
Mutual labels:  search-engine
Dig Etl Engine
Download DIG to run on your laptop or server.
Stars: ✭ 81 (-94.09%)
Mutual labels:  search-engine
Vectorsinsearch
Dice.com repo to accompany the dice.com 'Vectors in Search' talk by Simon Hughes, from the Activate 2018 search conference, and the 'Searching with Vectors' talk from Haystack 2019 (US). Builds upon my conceptual search and semantic search work from 2015
Stars: ✭ 71 (-94.82%)
Mutual labels:  search-engine
Magento 2 Seo
Magento 2 SEO extension will do perfectly for your better SEO. This is a bundle of outstanding features that are auto-active when you install it from Mageplaza without any code modifications. It is also friendly with your store if you need to insert meta keywords and meta descriptions for your product.
Stars: ✭ 99 (-92.77%)
Mutual labels:  search-engine
Thesaurus Of Job Titles
Open Source Thesaurus of Job Titles in US English
Stars: ✭ 77 (-94.38%)
Mutual labels:  search-engine
Readingbricks
A structured collection of tagged notes about machine learning theory and practice endowed with search infrastructure that allows users to read requested info only.
Stars: ✭ 90 (-93.43%)
Mutual labels:  search-engine
Searx
Privacy-respecting metasearch engine
Stars: ✭ 10,074 (+635.33%)
Mutual labels:  search-engine
Flask Ponywhoosh
A Flask full-text search engine
Stars: ✭ 76 (-94.45%)
Mutual labels:  search-engine
Digital Privacy
一个关于数字隐私搜集、保护、清理集一体的方案,外加开源信息收集(OSINT)对抗
Stars: ✭ 1,231 (-10.15%)
Mutual labels:  search-engine
100projectsofcode
A list of practical knowledge-building projects.
Stars: ✭ 1,183 (-13.65%)
Mutual labels:  search-engine
Tutorialdb
A search 🔎 engine for programming/dev tutorials, See it in action 👉
Stars: ✭ 93 (-93.21%)
Mutual labels:  search-engine
Gnes
GNES is Generic Neural Elastic Search, a cloud-native semantic search system based on deep neural network.
Stars: ✭ 1,178 (-14.01%)
Mutual labels:  search-engine
Houndsploit
An advanced graphical search engine for Exploit-DB
Stars: ✭ 81 (-94.09%)
Mutual labels:  search-engine
Simpleaudioindexer
Searching for the occurrence seconds of words/phrases or arbitrary regex patterns within audio files
Stars: ✭ 100 (-92.7%)
Mutual labels:  search-engine
Ndx
🔍 Full text indexing and searching library
Stars: ✭ 94 (-93.14%)
Mutual labels:  search-engine
Imageclassification
Deep Learning: Image classification, feature visualization and transfer learning with Keras
Stars: ✭ 83 (-93.94%)
Mutual labels:  search-engine

Build Status Translation status

FSearch is a fast file search utility, inspired by Everything Search Engine. It's written in C and based on GTK+3.

Note: The application is still in beta stage, but will see its first release as soon as localization support has been added

Features

  • Instant (as you type) results
  • Wildcard support
  • RegEx support
  • Filter support (only search for files, folders or everything)
  • Include and exclude specific folders to be indexed
  • Ability to exclude certain files/folders from index using wildcard expressions
  • Fast sort by filename, path, size or modification time
  • Customizable interface (e.g. switch between traditional UI with menubar and client-side decorations)

Requirements

  • GTK+ 3.18
  • GLib 2.44
  • glibc 2.19 or musl 1.1.15 (other C standard libraries might work too, those are just the ones I verified)
  • PCRE (libpcre)

Download

Arch Linux (AUR)

https://aur.archlinux.org/packages/fsearch-git/

openSUSE (unofficial)

https://software.opensuse.org/download.html?project=home%3AAsterPhoenix13&package=fsearch

Ubuntu

Daily Development Builds PPA

https://launchpad.net/~christian-boxdoerfer/+archive/ubuntu/fsearch-daily

PPA Installation
sudo add-apt-repository ppa:christian-boxdoerfer/fsearch-daily
sudo apt-get update
sudo apt install fsearch-trunk

Roadmap

https://github.com/cboxdoerfer/fsearch/wiki/Roadmap

Build Instructions

https://github.com/cboxdoerfer/fsearch/wiki/Build-instructions

Localization

The localization of FSearch is managed with Weblate.

https://hosted.weblate.org/projects/fsearch/

If you want to contribute translations please submit them there, instead of opening pull requets on Github. Instructions can be found here: https://docs.weblate.org/en/latest/user/basic.html

And of course: Thank you for taking the time to translate FSearch!

Why yet another search utility?

Performance. On Windows I really like to use Everything Search Engine. It provides instant results as you type for all your files and lots of useful features (regex, filters, bookmarks, ...). On Linux however I couldn't find anything that's even remotely as fast and powerful.

Before I started working on FSearch I took a look at all the existing solutions I found (MATE Search Tool (formerly GNOME Search Tool), Recoll, Krusader (locate based search), SpaceFM File Search, Nautilus, ANGRYsearch, Catfish, ...) to find out whether it makes sense to improve those, instead of building a completely new application. But unfortunately none of those met my requirements:

  • standalone application (not part of a file manager)
  • written in a language with C like performance
  • no dependencies to any specific desktop environment
  • Qt5 or GTK+3 based
  • small memory usage (both hard drive and RAM)
  • target audience: advanced users

Looking for a command line interface?

I highly recommend fzf or the obvious tools: find and (m)locate

Why GTK+3 and not Qt5?

I like both of them. And in fact my long term goal is to provide console, GTK+3 and Qt5 interfaces, or at least make it possible for others to build those by splitting the search and database functionality into a core library. But for the time being it's only GTK+3 because I tend to like C more than C++ and I'm more familiar with GTK+ development.

Questions?

Email: christian.boxdoerfer[AT]posteo.de

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].