search

building safe search engine for kids ?

my project this year : build safe search engine for kids so i need some info about : 1- where to find some studies , papers about this topic ? 2- how to make use of open source tools ? 3- what the technologies that i need to learn for my project ? and some advices please thanks . update : safe mean that when kids search for any ...

sequential search

For sequential search, what is the average number of comparisons needed to find a record in a file? ...

Suppose I have 400 rows of people's names in a database. What's the best way to do a search for their names?

They will also search part of their name. Not only words with spaces. If they type "Matt", I expect to retrieve "Matthew" too. ...

UISearchDisplayController not working when created in code??

I'm working on a tab bar application and one of the tabs has a UISearchDisplayController hooked up to a UISearchBar. It's all connected up in the NIB and is working. When I tap the search bar, the Scope and Cancel buttons fly in etc, and the search delegate updates the results table correctly. However, I'm trying to implement the same c...

make job Custom Search with cck and taxonomy

Hello There: Im building job website using drupal and some modules like job_search + cck + views + panels .... etc i added to jod node some cck fields like work type and salary and integrate with taxonomy (job: doctor,web developer, teacher ,worker .....etc) Im trying to make custom search that I can enter salary that i want in input te...

Counting Alphabetic Characters That Are Contained in an Array with C

Hello everyone, I am having trouble with a homework question that I've been working at for quite some time. I don't know exactly why the question is asking and need some clarification on that and also a push in the right direction. Here is the question: (2) Solve this problem using one single subscripted array of counters. The pro...

How to customize the full text search ?

Full text search is becoming a tedious job using the relational databases’ approach. Can anybody suggest an alternate option if any or way to customize the full text search ? ...

How to search the file contents in multiple subversion repositories?

I've got multiple SVN repositories of different projects which I would like to search for the same search term / regex, but without checking out or updating each project and doing the search manually on each of them. I'd like to know if it is possible to search the file contents in multiple SVN repositories for some search term (or rege...

figuring out which field to look for a value in with SQL and perl

I'm not too good with SQL and I know there's probably a much more efficient way to accomplish what I'm doing here, so any help would be much appreciated. Thanks in advance for your input! I'm writing a short program for the local school high school. At this school, juniors and seniors who have driver's licenses and cars can opt to drive...

What would be the most efficient way to do this search (mysql or text)?

Suppose I have 500 rows of data, each with a paragraph of text (like this paragraph). That's it.I want to do a search that matches part of words. (%LIKE%, not FULL_TEXT) What would be faster? SELECT * FROM ...WHERE LIKE "%query%"; This would put load on the database server. Select all. Then, go through each one and do .find >= 0 This ...

Multiple model search result sorting by date time field value

I am using ultraspinx rails plugin in a project to handle the search module. Sphinx uses more than one model for searching the content(for eg: Discussion and Comments). I need to sort the output by created at descending, which is available in both models. While searching in internet I found that we need to use the following options with...

Can I perform a search on mail server in Java?

I am trying to perform a search of my gmail using Java. With JavaMail I can do a message by message search like so: Properties props = System.getProperties(); props.setProperty("mail.store.protocol", "imaps"); Session session = Session.getDefaultInstance(props, null); Store store = session.getStore("imaps"); store.connect("imap.gmail.co...

sequential search homework question

Consider a disk file containing 100 records a. How many comparisons would be required on the average to find a record using sequential search, if the record is known to be in the file? I figured out that this is 100/2 = 50. b. If the record has a 68% probability of being in the file, how many comparisons are required on average? This ...

Open Search spaces replacement issue

Hello.I am using open search, from opensearch.org . The problem is if the user types spaces after the search word, the spaces are replaced with + signs. Is there a way of controling, possibly trimming or replacing, what is going to be sent in the search box of my website from opensearch? ...

How do you spell/pronounce all the special characters and symbols

English is not my first language and when programming I sometimes need to look for information for a special portion of code. When this code concerns or contains a special character (°, *, #, ... etc), that is not always recognized in search engines, I often end up having to ask a new question because I do not know how to write these cha...

How to Make an OS X Style Search in XHTML/CSS

Any way to make a OS X Finder "like" but valid XHTML/CSS search textfield with an X to the right, etc.? Even if it only shows up on Safari but degrades that would be fine. I've seen a couple of examples but they seem very complicated. ...

Algorithm to find common substring across N strings

I'm familiar with LCS algorithms for 2 strings. Looking for suggestions for finding common substrings in 2..N strings. There may be multiple common substrings in each pair. There can be different common substrings in subsets of the strings. strings: (ABCDEFGHIJKL) (DEF) (ABCDEF) (BIJKL) (FGH) common strings: 1/2 (DEF) 1/3 (ABCDEF) 1/4...

Search Keywords not working if added to any other site collection other than Search Center sitecollection

Hi All, I have so many different site collections and one of these site collections hosts SearchCenter site as well. I wanted to use the same search center for all the site collection in SharePoint so I changed the search settings of each sitecollection to point it to SearchCenter site. Then I added Search Keywords in each site collecti...

How do I get a column type "date" inserted into FULLTEXT in a mysql table?

I am making a control panel for administrators on my site that is a search function. When you enter a name it pulls the users first name,last name, email and password. When I tried to insert Birthday into the FULLTEXT to include it in the search, it is not on the drop down. I think because its type is 'date'. Is there a way around that? ...

MySQL Search (Sort by Relevance)

Hi guys, Can any one help me how to sort rows by relevance for the following criterion ? `tbluser` - - - - - - - First Name Last Name `tbleduc` - - - - - - - School College University On the search form the user has following fields Name School College University Where School College and University are Optional.. And Name is spl...