The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

notepad search and replace with stack entry

Using Notepad++, I am searching for an HTML tag and trying to replace it with a text string from a stack. This starts with: <div class="title">Book1</div><a href="#"> <div ...
0
votes
1answer
110 views

imap_search “FROM” issue

I tried to search by the following criteria: imap_search($this->box, 'FROM "@avito.ru"'); And I faced with such problem: 2013/03/03 11:24:23 [error] 12481#0: *102 FastCGI sent in stderr: "PHP ...
0
votes
1answer
83 views

How to efficiently draw only visible objects in the current graphics region?

How to efficiently select only the graphics objects which are visible in the current drawing view? I'm working with an open source charting library, ZegGraph, for graphing billions of objects. The ...
0
votes
0answers
36 views

search by more than one inputs in prolog

I have this code in prolog : domains person = person(name,address) name = name(first,last) address = addr(street,city,state) ...
2
votes
5answers
252 views

PHP Search multidimensional array and return key - super super large varying array

Hi there I'm currently using an API built to scrape prices out of an MMO and display them in an array. At the moment this is my code: <?php ini_set('max_execution_time', 0); $data = ...
2
votes
0answers
192 views

Facebook Graph API search returns empty data for some Keywords

I'm making facebook graph api call for search user. Query is https://graph.facebook.com/search?q=vijay&type=user&access_token=MY_ACCESS_TOKEN. I got empty response like {"data": []}. But I'm ...
0
votes
1answer
100 views

Wordpress How do we make a simple custom search with meta_value?

I've been in a stumbling block for long. Now I would like to ask expert like you that. I would like to customize my Search to search only in a specific meta_key and meta_value and return posts or ...
1
vote
1answer
365 views

Customized soundcloud player with 'view by tag'

I was hoping someone maybe able to help me or at least point me in the right direction. My html and coding is self-taught some I'm looking for some form of 'dummies guide'. I remember stumbling ...
2
votes
2answers
179 views

How to do partial search in Linux with locate?

I prefer to seach with locate command but I don't know how to perform a partial search with it. Suppose I want to search file containing the word libevent. How can I do that?
1
vote
4answers
3k views

Does grep allows search duplicates?

I have many (near 100) big csv files with sellID in first column. I know that some sellID are repeated 2 or more times in 2 or more files. Is possible with grep find all this duplicate sellID (create ...
0
votes
1answer
174 views

PHP/MYSQL - Need a better way to go about this FULLTEXT search query

I am currently busy creating a search function that queries a user input string against certain row in a mysql table. This is what the code looks like so far: $space_separated = implode(" ", ...
1
vote
2answers
145 views

PHP search and Replace query

I want to search the foullowing a <style type='text/css\'> and replace it with 'text/css' i am using $filenew = str_replace("'text/css\'" , "'text/css'", $filenew); But it isn't ...
0
votes
1answer
145 views

How to map a component collection with compass?

I need to map a collection of components with compass (using XML mapping)... Is there any way to achieve this? Thanks in advance for any suggestions. Example classes: class ClassA { private ...
0
votes
1answer
171 views

jquery search custom

See this site http://g1.globo.com/ has a custom search field that uses jquery for any of the bottom also if placed a value in less than 2 appears a custom alert. I am hours here trying to find a ...
0
votes
2answers
193 views

Can Microsoft Search Server index a Subversion repository

Our development team is moving to subverison and we would like to index the content on it. Currently we use Visual Source Safe and keep the latest source on a shared drive for indexing. We are also ...
1
vote
3answers
536 views

Is it possible to emulate Mac Osx Finder search highlight in HTML + CSS?

Mac OSX Finder has a search feature that darkens everything but the part that matches. Is there a way to emulate it via CSS? I was thinking about adding a semi-transparent black div with opacity ...