37,170 questions
-5
votes
0
answers
25
views
Serach for particular word in web search results by command line [closed]
I want to find out a particular word in web search results page.Just like ctrl+f from keyboard. interested in a linux command to do this. I have used https://www.google.com/search?q=KEYWORD&start=...
-4
votes
0
answers
68
views
I'm trying to run an elemental full-text search algorithm coded in C# using Visual Studio [closed]
I coded a full-text search algorithm in C#, which I want to run on Visual Studio Code 2022, by pasting it on a file. The code is the following:
using System;
using System.Collections.Generic;
using ...
-1
votes
0
answers
29
views
How to register new search engines (so that services such as CloudFlare do not bock those as "DDOS")?
So that DDOS protection services do not promote anticompetitive business practices (such as blocking all search engines except Google), how do you whitelist/register new search engines?
Hope that ...
-5
votes
0
answers
31
views
search text inside the content of a window [closed]
I am trying to use xdotool to search for text inside the content of a window (e.g., text in a document or webpage).
Would be very helpful if anyone can let me know the command for that. OR any other ...
0
votes
0
answers
31
views
Combine autocomplete and text search into single index definition
Suppose that I have the below simplified schema:
const Venue = new mongoose.Schema(
{
name: {
en: { type: String, required: true }, // English translation
fr: { type: String, ...
3
votes
1
answer
43
views
User Input Processing(getting rid of typos: when they do not have space(s)
I'm building graph query to Cypher and trying to process user input with fuzzy matching and then filtering with Lavenshtein distance. This works really well for the most cases for me but I struggle ...
0
votes
1
answer
56
views
How can I save the search name and filters in react?
I have a site made using the MERN stack, and right now I am trying to save the search names and filters when the user clicks to return to the Families.jsx page.
GIF showing the problem.
Before, the ...
1
vote
2
answers
81
views
Vespa ai rank function with multiple operands
I am evaluating vespa ai for our search use case, I want to understand if I am using the rank function correctly and if this is a right way to use it
"default-index": "all_text",
...
0
votes
0
answers
26
views
Silverstripe 5 - Specific Page Type Frontend search form - displaying search results matches below the form
I am trying to let a user search jobs through a frontend jobs search form.
The form is properly displayed in the JobSearchPage.ss template.
The form field values submitted by the user allow me to ...
3
votes
1
answer
153
views
Efficient Algorithems to find position of vector in 2D array
I have an interesting problem but cannot find the relevant literature, so need algorithem suggestions or just the correct way to phrase the problem so I can find the literature.
I'm given a vector of ...
0
votes
2
answers
41
views
Why doesn't `re-search-forward` populate match data from all alternatives?
When using re-search-forward with a regexp that contains an or operator with a captured subexpression in an alternative after the first, the group is not captured.
Evaluating
(progn
(re-search-...
0
votes
0
answers
23
views
Open form with filter set in another form's subform
I have been trying to work on this for days and struggling to understand the coding I need. I know it's going to be really simple but I can't wrap my head around it.
I need to open a second form ...
0
votes
0
answers
57
views
Using React-pdf-Viewer library search and highlight plugins, is there any way I can restrict to highlight just the first match?
In my React app, I have rendered pdf using the library on left side of the page. On the right side, i am showing extracted data from the pdf in tabular format. Whenever a user clicks on the displayed ...
3
votes
3
answers
114
views
Minimize Subset Span
I need to select one number from each set in a list of sets of positive integers, such that the difference between the smallest and largest number in the output list is minimized. For example:
...
0
votes
1
answer
62
views
Find and Replace using wildcard in VIM or VI [closed]
I have a file with numbered host names. I want to change the name while preserving the numbers.
CHANGE THIS:
server1.domain.com
server2.domain.com
server3.domain.com
server4.domain.com
server1....