search

Search engine for website source

What I'm looking for is a search engine that enables me to search websites for a specific code-snippet.Specifically, I'm interested in the occurrence of a javascript script that displays a layer ad on the target website. Can anybody think of a way to make this happen? I assumed that there was some kind of search machine that simple craw...

Is there anyway to implement Full Text Search (FTS) in SQlite from Android platform?

I am trying to create an application which collects a lot of notes from users. I want to implement full text search on the notes so that the user can get relevant notes from the whole array of notes. I am looking for a solution for this. Full-text-search(FTS) is actually supported by SQLite, but is it available for Android? Can anybody ...

Plone CMS: how heavy are search requests compared to typical CMS GET requests?

Plone CMS: how heavy are search requests compared to typical CMS GET requests? I fear that on a large site (0.5 milions of documents) enabling search capability is asking for DOS. If so, how this threat can be mitigated? Can search work on a different ZOE instance? ...

See function for symbol search in Visual Studio 2005

I'm currently editing a good sized class in C# that has a ton of properties, many of which I suspect are just local variables used by a single function. Hence I'm in a mood for some refactoring. Is there a way to customise the search results on a "Find Symbol" search to give more information, like the function where a symbol appears (an...

Enable field search without field column model show

Hello. I wish I could hide a column in the list of records but in the search dialog display it. How i do it? Thanks for your help. ...

How do you search against a managed property in MOSS that is setup as a date using the querystring parameters?

I have setup a custom managed property in MOSS and mapped it to a crawled property. The managed property is a date. How can I search "Earlier than this date" in the query string. This does not seem to work, so does anybody know what does? ...Results.aspx?k=thekeywords&createddate=<10/10/2010 I'd want to bring back results where the...

Does Google have any official Image API for Python?

I want to search for images using a Python script and pull them off the web. Is there an official API for this? What would be the best way to do this in case there's no API for it? ...

ASP.NET MVC - What is the best way to build a search form that works properly with SEO and users without JS?

I'm working on building a search engine in my application, and because I don't want to have a Querystring in my URL, I'm currently using Javascript to submit the searchTerms for me. Basically I am NOT using a "form", but rather just an input <input id="searchBox" class="search" name="searchTerm" tabindex="1" onfocus=" this.className = ...

Search Feature for WordPress CMS

Hi, I need to incorporate a "Search" feature within my WordPress CMS site that I am currently developing and was hoping to attach this feature/plugin to the following piece of code and unsure how to do this in WordPress, i.e.: <div id="search_box"> <form method="get" action="/search" id="form"> ...

ASP.NET - How to properly split a string for search?

I'm trying to build a search that is similar to that on Google (with regards to exact match encapsulated in double quotes). Let's use the following phrase for an example "phrase search" single terms [different phrase] Currently if I use the following code Dim searchTermsArray As String() = searchTerms.Split(New String() {...

Django admin search: how to override the default handler?

I wish to customize the way in which search queries across the search_fields. Is there a way to do it without hacking deeply into the Django code or creating a totally independent view? For instance, I would like to return the union of the querysets for each of the items of the querystring.split(). So that searching for "apple bar" wou...

Custom Google Search with 'search web' and search 'my site' radio buttons.

I have some experience setting up Google CSEs. I have a request to set up a CSE with an option to 'search the web' or just search the site. I thought it would be very simple, but iver yet to find an example or tutorial. Can anyone point me in the right direction and or give me an example of a Google CSE that has a radio button (any but...

Counting unique words in a file? Good Linear Search alternative?

I'm using a naive approach to this problem, I'm putting the words in a linked list and just making a linear search into it. But it's taking too much time in large files. I was thinking in use a Binary Search Tree but I don't know if it works good with strings. Also heard of Skip Lists, didn't really learn it yet. And also I have to use...

Can sunspot-solr filter_by nested attributes?

Let's say I have People, and People has_many Watermelon . I have a filter_by that can work for People attributes, for example : :filter_by => 'has_eaten_today' But can I do a :filter_by for the nested attribute of Watermelon? For example : :filter_by => 'watermelons.created_at' Thanks! ...

Full Text Search in SQL Server 2005

Hi, I am working on the Full Text Search in Sql Server 2005. I have created a catalog and then an index on a particular table. I am searching for data using FREETEXTTABLE(tablename,*,@SearchKeyword). So I am searching in all columns in the index since any of the columns can contain the keywords. Is there is a way for me to know which ...

SQL search, search for a|b|c|d in a table and return results ordered by number of elements in the record

the question: there are two tables - DAYS(name), ACTIONS(day_name,name) records for DAYS are: Sunday, Monday, Wednesday records for ACTIONS are: {eat,sunday}, {sleep,sunday}, {write,sunday}, {drink,sunday} {eat,wednesday}, {sleep,wednesday}, {write,wednesday}, {eat,monday}, {sleep,monday}, i want to search in ACTIONS for the day...

Lots of xml files - need search and filter

Hi, I have data in xml files (about 5000), need to search and filter this data. It would be wonderful if i can use Fuzzy Search. Suppose need use index? index of the attributes? what should I do use xml database, something like lucene? I prefer .net. ...

How do I disable Eclipse's find/search regex hint drop-down ?

When searching (across files) or finding (within files), if you have regular expressions enabled and enter a certain character (backslash, opening paren, etc) it displays a drop-down box with hints in. I don't need these hints; they get in the way of the rest of the dialog, and the stupid drop-down hijacks my home/end keys. However, I ...

Installable search engine package for file search

Currently there exist package like gonzui (example of the implementation here) for doing source code search. Is there a similar package that does the same thing except for simple file search. Basically I have two list of files for file type A and file type B. When the user type a word in the search box, all files (in "gz" format) wit...

php faceted search

hi, i have table question(mysql with php) which contains question,category(multiple) and subcat(multiple) its belong. for simplification while saving each question i saved the category in comma separated as below qid question catid subcat 2 question1 2,3,4 5,7 like this i have 1000 of question right now in DB...