search

How SEO's are done for dynamic webistes? Whether each pages are seperately built static?

I had a food takeaway website, where the users can search the restaurants by giving their area name. I want my website's LONDON search page to be listed when user search in google 'TAKEAWAYS IN LONDON'. I think google dont crawl websites with query string. HOW CAN WE ACHIEVE THAT? Plz help Any help will be highly appreciated ...

Is there some kind of RSS Search Service?

Hi, while building a small RSS Reader for myself I discovered, that the iPad Reader Pulse or the Google Reader let you search RSS feeds simply by entering a keyword. So, there is no need to know the RSS URL. How can I integrate something like that in my own Reader? Is there some kind of web service that provides such a search? Thank yo...

Is there way to expand all folders in Eclipse project view and search results?

I'm spending a lot of time manually expanding deeply-nested folders in tree views like the Project Explorer and the File Search result tree. Is there a keyboard shortcut or menu command to expand all folders? ...

How to read text from a website using Javascript ?

I am writing an HTML code for my cell phone. Its essentially a Dictionary App where I input a word and I look up the meaning from say, Dictionary.com ; I am using Javascript to get the string but can I embed the word into the URL, "http://dictionary.reference.com/browse/" Is there any way of doing this ? ...

Google Custom Search Engine with IE6

I am trying to use Google Custom Search (Business Edition) on my site. I am not using the iFrame but I am using the Custom Element. I selected a theme and everything looks fine in all the browsers except IE6. All the search results are taking the Promotion CSS. Update - Posted Code <div id="cse-search-form" style="width: 100%;">Loading...

Using LINQ to find keyword in all properties in object graph

I have a survey that's stored in a large object graph of variable depth, depending on how many sections and sub-sections the user chooses to create. I need to be able to search through all the properties for each object in the object graph and see if that property's .ToString() contains a certain keyword that's being searched for. Can I...

What's a good Search Engine for Searching for Programming Tutorials, Code Examples, News and other Programming Related things?

Yes, there's google.com. But I wonder if programmers use anything else for searching on the web related to programming. ...

Lucene Indexing - using a web service

I have an incremental index on a shared hosting server. I would have used a console application to perform the indexing by the hosting provider does not allow console apps on the server. I am thinking of using a web service to do the indexing (with some queuing mechanism). Is this a good idea? What are the pros/cons or alternatives? ...

Drupal search user by profile firstname and lastname query

Hi! I am writing module which allows to quick add users only by providing First and Lastname (without emial address or user name). Those users are 'ghost' like, just for a temporary uses. Before adding user module needs to check if user with the same first name and last name already exists in system to avoid creating multiple ghost user...

PHP to search inside 30,000 text files.

I have a directory of about 30,000 text files and I'd like to search inside each to find if they contain a specified text. How can I do this effectively in PHP? ...

Search mySQL with PHP, using a WHERE wildcard or an IF statement?

I'm letting users search my database for data by city. My query looks like: $results = mysql_query("SELECT * FROM mydb WHERE City='".$city."' LIMIT 10"); I want a user to be able to search 'all cities', so I'd like to either remove the WHERE statement if $city=='all cities'; or use a wildcard for the WHERE statement that matches all ci...

Django search for strings containing spaces

I have a seach by name function, which should return the name of one person, if the search matches the first name or the last name. The problem is that if i search for strings like 'firstname lastname' it doesn't find the name that matches (guess it's because of the space between the words) . What should i do for the search to work? Also...

How TO include External lists (BCS) in sharepoint 2010 search

I followed steps in this link but it didn't work well http://www.toddbaginski.com/blog/archive/2009/11/12/how-to-register-an-external-content-type-with-the-sharepoint-search-service.aspx any ideas plz ...

can create local search on google maps v3 ..

i can't find how to create it, i can create it on google maps v2, use : map.addControl(new google.maps.LocalSearch() but now my company use v3 now , so how to create it . thanks ...

Problem searching my SQLite database which contains cyrillic data

Hi, I have a problem searching my SQLite database, which contains data written with cyrillic characters. If the key word is also cyrillic, then everything is ok, but if not, then I can`t get the result in my Android application. Does anyone have an idea how can I implement searching the cyrilic data no matter the charset of the keywor...

How can I add a search feature to a website that returns images?

Hello, I need to add a search feature to a website. Not being adept at PERL or PHP, I was thinking of adding a remotely hosted search CGI (like freefind or fusionbot). Alternately, I might end up trying to convert the HTML site to a Wordpress site (as I think I may be able to add a search function relatively easily once that is achiev...

Search creates new activites in TabActivity

Hi, I want to develop a tabbed application on Android. At the same time, I want the search functionality to be present on some tabs. For this reason, I declared some activites in manifest file and added them to TabHost. But the problem is that when I make a search, it calls onCreate() method of the current activity which resided in tab c...

Search uniqueidentifier value in SQL Server 2008 table

I have a table in SQL Server 2008 with uniqueidentifier field. In my application (C#, WPF) I have a textbox which intended for search some data by GUID, user can enter guid by typing, ctrl+v, etc, so he/she can make an error. What is the best and fastest approach to make a search by this field using linq2sql ignoring whitespaces, "-".....

How do i go about searching in Ruby on Rails?

I would like to implement a simple search. Let's say the user enters 'york', then I would like to find all records that has a matching substring like 'new york' or 'yorkshire'. So far I have figured out I will have to use the find method, but I can't figure out how to match for substrings. ...

SQL Search with parameter that could be date or could be string

Hi there. I have a search box where you can enter plain text. The keywords are separated by spaces. I check each keyword if it fits the format for a date and store 'all keywords' in one array and 'date keywords' in another. All the 'date keywords' are also in the 'all keywords' array, as I can not tell if its 'only' a date or maybe also ...