search

Designing a one EVERYTHING search box (date+address+keywords)

Hi! I'm storing information about local "events". They are described by 3 things - address, date, keywords(tags). I want to have only one search box for at least address and keywords. The date might go to a separate field. I'm assuming that most people will search for events that are taking place "today" so this filter won't get that mu...

Does the CSS property "text-transform" affect SEO results?

I am building a site with a ton of 1999 style capitalization of navigation and headings. I have been simply adding in the text content as it appears (capitalized), but the other designer on the project insists on using lower case text in his HTML and capitalizing it with an applied style: .tedious {text-transform:uppercase;} I underst...

vimgrep, :cn and n

I'm reading through a large C++ code base in Vim. Within a single file, I can do /foo n n n Now, if I want to search through more than one file, I have to do: :vimgrep /foo/ :cn :cn :cn Now, typing ":cn" is so much less convenient than "n". Is there a way to search through vimgrep results with "n" (like searches with /) instead of...

Searching for a file with .java extension

Hi, is there any way that at first filter all files with the extension as "java" and then search for finding some files with that extension? can you explain with a snippet code?thanks ...

Android - how to disable long press on Search button (Nexus One)

The Android documentation describes how to disable the search the search feature in Activity: public boolean onSearchRequested() { return false; } This works fine for a short press of the search button on the Nexus One. However, it doesn't disable the long press, which still fires off a voice search. How do I disable the long pres...

what is the better way to search in millions of file names with wildcard(GLOB) support

i am working on a small search engine to display a matching file names with full path. and important thing is that i need to provide wildcard(GLOB) search like *.doc or *list*.xlx or *timesheet* or ???.doc or something like that. i found some related solution http://stackoverflow.com/questions/954752/search-for-strings-matching-the-p...

ASP.NET MVC + C# Search Functionality

Possible Duplicate: How to implement search features in ASP.NET MVC applications I have a program designed using Asp.net MVC and c# I want a simple way to implement a search for the data that I have using the models and Controllers I did it by doing a script in a page itself but I want it by using Models for example I ...

Linq to SQL Search Query

Hey, I have a table of news, and I want to allow the user to search in it. Something like this: News.Where(p => p.Title == user_query); ...that will allow more advanced queries, like Differences Between "Linq to Objects" and "Linq to SQL" queries, etc. Also it should be incase-sensitive. Any ideas? Thank you. ...

Automating book citation search

I have a list of books listed by their titles in a text file. I want to write a script which can use a web service like Google scholar or amazon to search for the books and return me a xml or bibtex file with citation info for each book. Which programming tools can I use for this kind of automated search ? ...

ASP.NET: Internal Site Search

I'm searching for some internal site search code. The scenario is: I'm having a site in which the content comes from database (CMS) which makes the pages dynamic. So the search tool should search this dynamic content too. I don't want to use readymade search engines like google, bing etc.... Do I need to make my own search control f...

How can I match "laptop" and "laptops" when search for "laptop" is performed using MySQL's match...against full-text search?

I'm trying to build a search feature in to my website. Searching is the primary purpose of the site and I am having a few issues with the MySQL search feature. I would like to be able to search with a single search string against multiple text fields. I'm using MySQL's match...against statements to perform a full-text search. I'm runni...

how to find specific xml data by attribute name/value in flex / actionscript

From some xml I want to find items that have a specific attribute and value. Here is example xml: <node> <node> <node> <special NAME="thisone"></special> </node> <node> <special>dont want this one</special> </node> </node> </node> (nodes can contain nodes...) I need to find the first based on it has an attribute nam...

Google Search Appliance index content from database

Hi, Instead using the google search appliance crawler for index content, im using a query to a sql server database. The query is running fine, but i supposed that all these registries belong now to the Default collection (the complete index of Google Search Appliance). Do you know how could i create a new Collection with only the dat...

Database for super-fast querying

We have a 300 Gb+ data array we'd like to query as fast as possible. Traditional SQL databases (specifically, SQL Server) cannot handle this volume as effectively as we need (like, perform a select with 10-20 conditions in where clause in less than 10 sec), so I'm investigating other solutions for this problem. I've been reading about N...

Twitter search and earliest possible date

Hi Can anyone familiar with the Twitter Search API tell me what the earliest possible Search date in (YYYY-MM-DD) format is? Also, when using this date, is it necessary to omit any date limited query string parameters? And does the order of query string parameters matter? ...

Twitter Search API and 'best practice' for creating query string

Hi I'm confused about the differences in query string parameters if you use the advanced search page vs referencing the Twitter search operators page http://search.twitter.com/operators Are both of the following equivalent? http://search.twitter.com/search?q=&amp;ands=&amp;phrase=near+city http://search.twitter.com/search?q="%22"nea...

Fulltext search with rich media files.

Hi all, What's the best way to perform fulltext searches across rich media files? I'm trying to implement a system where the user could upload random files (.doc, .pdf, .jpg, ...) and down the line, he would be able to search for them based on the file contents or metadata. I would appreciate some ideas on how to build this. PS - I st...

Firefox quick search extension idea. Is it possible?[see details]

I use search sites very often. And in 99% of cases search results that i need contained in first 3 links,that search engine returns. Is it possible from programming point to write extension for Firefox,that satisfies next use case: 1. user clicks icon 2. modal window appeared 3. select search engine(e.g. Google,Yahoo or Yandex...any othe...

figure out how many times a word comes up

dogdogdogdogsdogdogdogs how would I count how many times "dog" and "dogs" appeared without regex? ...

Database table search using text box and dropdown list with ASP.net/C#

I'm building a small website using ASP.net/C# and I wanted to know how to implement a simple search feature using a text box and a dropdown. The datasource is a products table and in the text box I enter the product's name and in the dropdown are the categories. (I have managed to populate the dropdown with the available categories alre...