search

Visual Studio 2010 Language-Specific Help Search Results

I am in the process of learning F# and so am only interested in help search results involving this language as I debug my programs. Previous versions of help let you filter results for specific languages via checkboxes. How is this best done now in the VS2010 help system? ...

Find links to images in HTML (incl. outside of common tags/attributes)

I'd like to find (using javascript) all of the references to image links on an HTML page. Since I'm also looking for image references that may not be displayed, or are in unknown attribute types, simply looking for image tags or src's etc. isn't enough. As such, I haven't yet found a simple method using an html parser to do this. Ha...

What is an elegant way to bin/map an integer in various categories in C?

Assume we have an integer 'x' and 'n' possible values that 'x' can be mapped/binned to. What is an elegant way in C to have a function that returns the closest 'nth' value to x? Pseudo code example; int x = 40; int res; int bins[] = { 0, 20, 80, 200 }; /* Sorting is guaranteed */ res = int_bin(x, bins); assert(res == 20); /* 40 is clo...

Search for a property in Hibernate after aplying a function.

In my db I store telephone numbers of things as input by the user (I want to let user decide how he format their phone number) when users search for a phone number they most likely wont format the number in a way that I can just compare the two strings. Even 'like' wont do the trick since maybe the number has parenthesis or some other u...

User targeting algorithm

I have an application that visitors come and go. I m working with a data provider that gives me information about users such as their gender, age, location, and information about their personalities etc. Now, i d like to target these users with appropriate content. In short, I have content and users with their personality information...

Find first non-matching line in VIM

It happens sometimes that I have to look into various log and trace files on Windows and generally I use for the purpose VIM. My problem though is that I still can't find any analog of grep -v inside of VIM: find in the buffer a line not matching given regular expression. E.g. log file is filled with lines which somewhere in a middle co...

List domain-class properties in index with Grails & searchable

Hello, i want to list all propertys available to the searchable plugin in a small form. Is there a smart way to list all indexed properties by lucene/compass? Imagine this grails domain-class: class Person { String realname String login static searchable = { realname() } } It would be nice to get a list li...

Grails: filter data in a Grails table dynamically

I have a table, with a series of events, name of my class is Entry. Here is a picture of my table is in Spanish, but the basics are the same so it shouldn't be a problem. (the filter HTML code is not yet so its a mess but it works) and here are the results that I get when I look for the entry. Now my problem is that I need the resu...

Searching Database PHP/MYSQL Question

Right now I'm just using a simple WHERE name LIKE '%$ser%' But I'm running into an issue - say the search is Testing 123 and the "name" is Testing, it's not coming back with any results. Know any way to fix it? Am I doing something wrong? ...

If I have an array of keys M, and an array of targets N, how can I verify that M[i] exists in N before searching it?

Like the title says, I'm trying to find elements of M that exist in the large constant array N. Most of the time, no element of M will exist in N, so the vast majority of searches done on M are a waste of time. I'm looking for some way to create an index to check before doing a full-scale search of M. A project similar to mine creates a...

An API to use to retrieve similar words from a keyword?

I'm writing a search engine in C#, retrieving rows from a SQL database. I'd like the search to also include similar words - for example, if a user searches for "investing", the search will also return matches for "investment", or if the user searches for "financial", the search will also return matches for "finance". How can I retrieve ...

vim search by syntax-highlighting type

I'm adding i18n to an existing project (web application). This involves replacing every bit of static text with calls to an i18n library. It would be convenient to be able to search for this text rather than rely on syntax highlighting to identify it visually. In vim, is it possible to search within a file for occurrences of a certain...

Generate all subset sums within a range faster than O((k+N) * 2^(N/2))?

Is there a way to generate all of the subset sums s1, s2, ..., sk that fall in a range [A,B] faster than O((k+N)*2N/2), where k is the number of sums there are in [A,B]? Note that k is only known after we have enumerated all subset sums within [A,B]. I'm currently using a modified Horowitz-Sahni algorithm. For example, I first call it t...

Google image api, how to get more than 8 results per search

Hi all. I'm using google image api, i've set large result set, now it retrieves 8 images. What should i do in order to get more images at once? more than 8 images Thank you ...

Google AJAX Search API onclick of image

I want to use the Google AJAX Search API to let users choose an image from the web to use as a background in my website. However, I can't find how to change the result images so that it doesn't open a new window with the image anymore, but it runs my javascript code to use the image as background. ...

How to "star" a URL in Google search programatically

I inevitably end up bookmarking a lot of sites because I think they might be useful in the future. Then two days later I have no idea what the bookmarks point to. What I would like to do is instead star these bookmarks in google. That way when I do a similar search they will be shown at the top of the list, and I don't have a massive li...

Question about strpos. How to get 2nd occurrence of the string?

I understand that this function will get the first occurrence of the string. But what I want is the 2nd occurrence. How to go about doing that? ...

How to programmaticaly get windows search history?

Hi, how can i get the windows search history and use it in my program? For example i write ".doc" in windows search bar. Now i want in my program to find out from somewhere, that i searched for ".doc" in my system(not web). How can i do this? ...

Placing Google Custom Search Input Box Over An Image

Developing a wordpress blog. Wanting to install the GCS box over an image centered inside the page. Example: Have an image 700px by 100px centered inside a page. I would like to add the custom search box over that image to create a "background" for the custom search box ...

wordpress search function

Say I have a wordpress search box that searches the site for whatever is typed into the text field. Like so: <form action="<?php bloginfo('siteurl'); ?>" method="get"> <input name="s" type="text" value="Search here..." /> <input id="sermon_search_submit" type="submit" value="GO!" /> </form> This searches the entire site fine, bu...