Use this tag for questions about search algorithms, tools, and technologies.
1
vote
0answers
5 views
Search suggestions retrieving IllegalArgumentException unknown uri
I am confused with the so many options on the SearchSuggest process on Android. And it does not matter what I try, I got the UnkownUri Exception.
My app has a 1) MainActivity extending ...
1
vote
1answer
12 views
How to search keywords in Visual Studio like in google? Can we trim the white spaces?
When I try to search some keywords in VS 2010, it just provides me Match Case, Match whole word Search Up. There is also regular expression option as well but when I try to deal with that, its being a ...
0
votes
0answers
10 views
How to search for text in the Access Class Objects in an accdb file
My team has many Access database files that use VB in their form classes to call stored procedures.
I want to be able to search the Access Class Objects in these accdb files for the stored procedure ...
0
votes
3answers
46 views
match elements algorithm in two lists C++
I am thinking a method to change the order of two loops
Here are two lists:
list<element> aList1;
list<element> aList2;
I want to check each element in both lists, to make sure that ...
0
votes
1answer
16 views
Error with SQL syntax, FULLTEXT search
SELECT *, MATCH(NAZOV, POPIS, CENA) AGAINST ('+nokia') as Score
WHERE MATCH (NAZOV, POPIS, CENA) AGAINST ('+nokia')
FROM `produkty`
ORDER BY `TOP` DESC
LIMIT 0, 9
error:
You have an error in your ...
-6
votes
0answers
20 views
a google search API [closed]
Please tell me a simple code step by step to create a google search API. I need to give a presentation on this please explain me what is google search API and how to create it. I need to give the ...
0
votes
2answers
44 views
Java binary search, high values throw exception
I'm trying to implement a recursive binary search, after looking at the example on this textbook page.
My algorithm seems to work fine in most cases, but on values higher than the highest value in ...
1
vote
0answers
13 views
adding search capability to my map
Can someone please explain to me how I can get the search functionality from this:
https://developers.google.com/maps/articles/phpsqlsearch_v3
to work with your map when you have followed this ...
5
votes
2answers
88 views
Java generics - Class<?> constructor argument issue
I've used Java for quite some time now, but some things are still not very clear to me, especially when it comes to generics...
Here's the thing: I have this Search class that I'm using (see here ...
2
votes
3answers
52 views
How to detect keyword stuffing?
We are working on a kind of document search engine - primary focused around indexing user-submitted MS word documents.
We have noticed, that there is keyword-stuffing abuse.
We have determined two ...
0
votes
0answers
14 views
My facebook app does not appear in the search box
Few weeks ago, i have developped a Facebook app but it never appeared in the search box and I don't really know why... I thought it was just a matter of time before Facebook updates its search box and ...
1
vote
2answers
20 views
Search sql database using select dropdown?
I have managed get the search function to work but it is very chunky :(
Code:
If dropdown_sV.Value = "N" Then
If WhereParts > 0 Then
WhereClause = WhereClause & " AND"
...
0
votes
0answers
10 views
Alter bash function to search NEXT
I found this useful code on commandlinefu.com, but it's a few years old. It works well, but I am unable to alter it to either: give me more URLs in return OR do a "NEXT". I want to use this in either ...
0
votes
0answers
8 views
“Search More…” in my many2one field
I want an advanced search when picking an item from many2one listbox. This feature is implemented for 'res.groups' object, for example. I cannot find this feature in /addons.
To be more exact, I ...
1
vote
3answers
26 views
Finding all files containing a text string in linux
I'm trying to find a way to scan my entire linux system for all files containing a specific string of text. Just to clarify, I'm looking for text within the file, not in the file name.
When I was ...