Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
64 views

How do I handle two separate yet very similar code-bases with git /github?

What is the best method to handle two separate, but very similar code-bases in git and git-hub? Background I have a git repository for a small shell script project. It only has 2 or 3 files of code ...
4
votes
2answers
375 views

javascript text similarity Algorithm

im building a website that should collect various news feeds and would like the texts to be compared for similarity. What i need is some sort of a news text similarity algorithm. I know that php has ...
3
votes
0answers
77 views

A reliable measure of series similarity - correlation just doesn't cut it for me [migrated]

I'm trying to determine a method to compare one particular time series against about 10,000+ reference time series programmatically, and shortlist those reference time series which can be of interest. ...
3
votes
3answers
171 views

best way to find similar items in python

I have 1M numbers:N[], and 1 single number n, now I want to find in those 1M numbers that are similar to that single number, say an area of [n-10, n+10]. what's the best way in python to do this? Do ...
2
votes
4answers
82 views

Python - Find similar colors, best way

I've made a function to find a color within a image, and return x, y. Now I need to add a new function, where I can find a color with a given tolerence. Should be easy? Code to find color in image, ...
2
votes
1answer
102 views

Checking Triangle Similarity in C

The problem set asks me to create two triangles, defining them using points, and then checking if they're similar. The first part I did, i created a struct point and a struct triangle, as the profesor ...
2
votes
1answer
47 views

Jquery regular expression - finding and formatting similar text parts

I am trying to find similar strings in feedback option texts using regex to make them bold. Example feedback option list. Your risk is low. Your risk is low to moderate. Your risk is moderate. ...
2
votes
1answer
470 views

Best way in php to find most similar strings?

Hell, PHP has a lot of string functions like levenshtein, similar_text and soundex that can compare strings for similarity. http://www.php.net/manual/en/function.levenshtein.php Which is the best ...
2
votes
1answer
654 views

MYSQL: Like Method, Similar Words - But Don't Show the Searched Word

actually i use this method to show similar words for a search request.. $query = "SELECT * FROM searches WHERE Query LIKE '%$search%' ORDER BY Query"; if someone searches for "nelly" it looks up ...
2
votes
2answers
195 views

Mysql join on similar columns

I want to join table1 with table2 on column 'Name', but table2.Name has an 'e' in front of all the names (if table1.name=ABC,table2.name=eABC). How am I supposed to use a join for those two? I tried ...
2
votes
5answers
270 views

Language with similar object use to Javascript/JSON

I've been doing a project at work recently focused on an almost entirely client-driven web site. Obviously Javascript is used heavily, and I've been using jQuery on top of it which has turned out to ...
1
vote
1answer
57 views

Moving Background Using HTML or JavaScript

I'm trying to create a similar effect as the background shown in the website below. Would prefer HTML if possible, if not JavaScript should be fine. Thanks! Example
1
vote
1answer
38 views

Get category for texts

I want to choose a category of text(article)(ex. sport,economic), string, and I want to know whether the best way to do with function similar_text() or otherwise. I need to compare the texts. One ...
1
vote
3answers
122 views

is there a PHP function to simulate how apache mod_rewrite works?

I'm pretty stuck in here, so what I need is a function or, an idea to create a function, to work pretty the same way as mod_rewrite of Apache. It is supposed to have as param a regexp, writtten for ...
1
vote
2answers
175 views

similar images search solution

i've got a really big problem with my image storage server: there are about 2,000,000 prduct images on it and keep increasing , but a lots of them are very similar. For example: an iPad photo with ...
1
vote
1answer
50 views

Mysql-How to enforce the number of similar recodes retrieved?

I am working on a website that shows videos similar to that of youtube. This website has a section that shows the most ten similar videos used the FULL TEXT search to get the similar ones. SELECT * ...
1
vote
0answers
164 views

PHP - similar_text() function returns inaccurate results?

I'm working on a searchengine, and to filter out all the bad results i compare the result string with the search query, and if the results exceeds 30% it's returned. I know that works, i've done it ...
1
vote
2answers
153 views

A good design pattern for almost similar objects

I have two websites that have an almost identical database schema. the only difference is that some tables in one website have 1 or 2 extra fields that the other and vice versa. I wanted to the same ...
1
vote
2answers
38 views

Is it possible to search the database for related files when a file is loaded in a upload form

I have an idea for a site that involves uploading files to the site. But what I'd like - and wondering if it's possible - is when a user clicks on "Browse", and selects the file, if it's possible for ...
1
vote
4answers
477 views

Finding cropped similar images

The 2 images have same color,pattern,etc. One image is cropped from the other one. The algorithms I've found mostly use location to compare difference between images, so it produces false result for ...
0
votes
0answers
58 views

MYSQL: Find and delete similar records - Updated with example

I'm trying to dedup a table, where I know there are 'close' (but not exact) rows that need to be removed. I have a single table, with 22 fields, and uniqueness can be established through comparing 5 ...
0
votes
0answers
50 views

Facebook pages - Similar pages on the right side

When not logged in as a user, why on some business pages there is a section on the right hand side menu, which relates to similar Facebook pages, while on others, there are none. ie cocacola and ...
0
votes
0answers
15 views

How to fast retrieve a most similar signal from database of signals for a input signal

Here, a 'signal' means a vector of real-numbers, and I could define a similarity for a pair of signals, such as 'cross-correlation', but it's too expensive for computing, suppose there are million ...
0
votes
1answer
86 views

PHP - Compare array elements for similarity and create new array with most similar pairs ranking first

Say I have an array of sentences like this "great white fox jumped" "I like it like that" "great white hen eats" "Today is friday" "hahaha, I did a great jump" I would like to compare each ...
0
votes
0answers
42 views

iOS library: programming a set of related/similar ipod songs

I am figuring out how to code a function to, given a certain ipod song, return a set of similar/related songs currently available in the ipod library. Just like genius does, but because it can not be ...
0
votes
2answers
346 views

MySQL query to match similar words/sentences

I have a table in a MySQL Database which has this structure: CREATE TABLE `papers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(1000) COLLATE utf8_bin DEFAULT NULL, `booktitle` ...
0
votes
1answer
102 views

MySQL select statement similar to entered value

I've been searching all over and trying out different approaches but I'm just not getting what I need. Is there a possibility in MySQL to select a db entry similar to a string value entered in a ...
0
votes
2answers
426 views

Find rows with duplicate/similar column values MySQL

I want to select from the following table all the rows which have similar values in the fname column as the first in their order. IOW from this table I want to retrieve rows with ids 2,5 and 7 ...
0
votes
1answer
94 views

Similar By Terms module

I have a blog where you can add tags. I wanted to see the related blogposts to this tag in a view so i created one with the module Similar By Terms. However, i can't seem to link old blog posts to ...