© 2023 Hashnode
#search
Binary search is a classic optimization algorithm that is widely used in computer science. If you have been working in computer science or software engineering, you have probably heard of binary searc…
SEO, or Search Engine Optimization, is the process of optimizing a website to improve its ranking on search engine results pages (SERPs) and increase its visibility to potential visitors. Here are som…
Are you looking to build a search UI with charts capabilities for your SaaS product? We will talk about creating programmatic charts with the ReactiveSearch UI library in this post. We will use Elasti…
If you're reading this, then you might already be familiar with ReactiveSearch, an open-source library to create elegant search UIs. In the last few months, we've updated the library with some new UI …
BookSearch App Demo 📚 In this post, we are going to build a Booksearch Application using Vue.js and ElasticSearch. You might have already heard of Vue.js, one of the fastest-growing JavaScript frameworks. You might also have heard about El…
What is Debouncing ? Debouncing is the process of removing unwanted user input. For example, you want to run a function only once in spite of it being triggered multiple times. The most common use case of debouncing is when you want to trig…
Add the following function to your .zshrc file & then source ~/.zshrcThis search is case insensitive function gsearch(){ git log -3 -i --grep="$1" --pretty=format:'%h %s [%an]' } Usage : gsearch wip
Introduction SearchBar in any application is a key component for finding necessary fields from the Database. This searchbar can be easily implemented in react(NextJs) as a reusable component. In this …
Retrieving relevant search results blazing-fast is a challenge. A solid search requires typo tolerance, result rankings, synonyms, filtering, faceting, geo search, and so on. Quite often the underlyin…
At the simplest level, search is the process of finding matches to a user-provided query string. While this base-level version of search is sometimes still utilized in simpler applications, for the mo…