search

Quick MSDN Search in Firefox

Is there a way to get an MSDN search bar in Firefox which will autocomplete .Net class and member names (and preferably also Win32 API methods) and take me directly to the MSDN page? Google toolbar with Shift+Enter (I'm feeling lucky) will usually go directly to the msdn page for a .Net class, but it doesn't have targeted autocomplete....

MySQL search for 1,2,3,11,22,33 in field

Can I search for 1 AND 2 AND 3 without getting a false match because 11,22,33 are in the field? A field that has the string = "11,22,33" should then not return any results. ...

How do you make one of those search boxes on a web page that previews search results?

I'm developing a web site that has a search box as part of the standard page template (similar to what you see on the top right of the SO site). I want to dynamically preview possible matches to the user input, similar to what you see when you start typing in a query into the google.com search page, as a drop down that appears underneath...

How can I implement a color search for an image gallery?

I'm working on a simple image gallery project and I'd like to implement the ability to search based on a color hex code. So if someone enters 'ff1212' into the search, it will display only those images that contain that particular shade of red. I've seen a website that has a search that works the way I want: http://cssline.com (the AJAX ...

How do I use multiple sources in one index in Sphinx?

The Sphinx config file hints to it supporting multiple sources for one index, how do I actually specify it? Here's the snippet from the config file: # document source(s) to index # multi-value, mandatory # document IDs must be globally unique across all sources source = src1 I've tried setting it in the following for...

Django admin search

I have a simple Django admin app with a search box that searches by last name. Then I filter by school and sort by year graduated to find lawyers that graduated from same school the same year. I want to simplify this three step process to a single search: enter lawyer last name and return other lawyers that graduated from same school the...

Search over many different columns in different tables in Rails

I need to provide some kind of global search over most of the data that my application have. The data is distributed in different tables, like users, comments, etc. in MySQL. I do want to handle this in the application, not with something like Google Custom Search. My idea is to create table, which would have columns like source id and...

Netbeans: Is there a way to mimic Eclipse CTRL+H looking for usages in JRE and Application Libraries ?

Hi, See Eclipse Java Search screenshot . I googled a lot, tryied my best but could not find any ways to tell Netbeans to search for method invocation in JRE / Application libraries. Let's consider: I have maven project with ApplicationA being runtime ApplicationA* artifat defines interface InterfaceA with method methodA I'm impleme...

Searching for individual bipartite networks

I have data in the below form, which makes up a bipartite network. A1 - B1 A2 - B2 A2 - B1 A3 - B1 A4 - B2 A5 - B3 A6 - B3 A7 - B3 A7 - B3 A8 - B4 A9 - B3 What I would like to do is write something (ideally in python or C) or use an existing library to identify individual communities within the data. For instance A1,A2,A3,A4 are all ...

java file sharing application, user logging

OK I have so much questions regarding my file sharing application that I don't know where to start. My Java knowledge is very limited and I will be satisfied with any help you provide me. That being said, here come the questions. Firstly, I'm working on a user login method that needs to look sort of like this: import java.io.File; imp...

Is it possible to obtain real time search results sorted by frequently updating field with Lucene 3.0 in Java

Consider following assumptions: I have Java 5.0 Web Application for which I'm considering to use Lucene 3.0 for full-text searching There will be more than 1000K Lucene documents, each with 100 words (average) New documents must be searchable just after they are created (real time search) Lucene documents have frequently updating inte...

Is there a mini-search engine or documentor for undocumented code?

I'm often working with undocumented code. Much of the time, PHPxref works great for this, but often there's code that isn't a php variable or function, so PHPxref won't search for it. For example, right now I'm working with Smarty templates, and it's not straightforward to search for the smarty variables in the rest of the code. A sea...

Is k-d tree efficient for kNN search. k nearest neighbors search

I have to implement k nearest neighbors search for 10 dimensional data in kd-tree. But problem is that my algorithm is very fast for k=1, but as much as 2000x slower for k>1 (k=2,5,10,20,100) Is this normal for kd trees, or am I doing something worng? ...

Implementing full text search on iPhone?

I'm looking for suggestions on the best way to implement a full-text search on some static data on the iPhone. Basically I have an app that contains the offline version of a web site, about 50MB of text, and I'd like for users to be able to search for terms. I figure that I should somehow build an table of ("word", reference_to_file_con...

Tutorials for simple Android search & what's necessary

I have a ListView, as well as a refreshListFromDB(String searchKeywords) method which updates the adapter. I'd like to implement search, where pressing the search key on my device will pop up the standard search box (and on-screen keyboard if required), and pass the result (onKeyDown) to refreshListFromDB() - or is this considered bad U...

MYSQL with Coldfusion - Solutions to create Search Capabilites?

I'm using MySQL & ColdFusion. Currently for searching TEXT fields I'm using LIKE in the database. Luckily my database is empty but soon the table will fill up and I fear I the LIKE SQL query will kill my app. I'm looking for a solution that works with both MySQL & ColdFusion that will allow me to scalably offer search capabilities with ...

How to find the usage of constant in sql server database

Is there a way to search through the set of (Stored Procedures, Functions, Views) for the usage of a constant? I have a problem where I've got a sql server database. It has quite a few stored procedures and functions declared. I'm looking for the usage of "115", which happens to be a pay code. I didn't write all of the code origina...

php - display links to related content

I am looking to implement a 'youtube related videos' style related content system. I have 5 tags/keywords for each of my pages, a title and a description. I would like to display links to the two most similar pages. I am guessing a mysql query based around order by relevance. many thanks. ...

Index of item in list when only part of the item is known

This is a follow-up on a previous question of mine regarding searching in lists of lists I have a list with pairs of values as lists in it. [['a',5], ['b',3], ['c',2] ] I know the first element of each pair but I don't know the second (it's the result of a calculation and stored in the list with the first element. I sorted the li...

please tell me how to implement Live Search in DataGrid

i am using .net 2.0, i have a datagrid and a textbox. i want a live search in datagrid on textchange in textbox. please tell me how to implement it. (vb.net preferred) ...