Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
718 views

too much data duplication in mongodb?

so i'm new to this whole NOSQL stuff and have recently been intrigued with mongoDB. i'm creating a new website from scratch and decided to go with MONGODB/NORM (for C#) as my only database. i've ...
7
votes
4answers
1k views

Entire website hijacked! How to prevent from being hijacked?

The technical solution can be found here: Entire website hijacked! Part 2: How to configure name-based virtual hosting? The original domain is http://neteditr.com The offending copycat site is ...
5
votes
2answers
147 views

Algorithm for bit expansion/duplication?

Is there an efficient (fast) algorithm that will perform bit expansion/duplication? For example, expand each bit in an 8bit value by 3 (creating a 24bit value): 1101 0101 => 11111100 01110001 ...
5
votes
1answer
708 views

How iOS handle URL scheme duplication?

If 2 other app register same url scheme, how iOS handle this?
4
votes
3answers
73 views

Is there a tool to finding redundancy through out a set of library code (.net C#)?

Is there a tool to finding redundancy through out a set of library code (.net C#)? The problem is I have a number of .NET libraries, but they tend to have a lot of similar/duplicate "helper" or ...
4
votes
3answers
333 views

Javascript fastest way to duplicate an Array - slice vs for loop

In order to duplicate an Array in Javascript, does anyone know (and maybe tested) if it's faster to use slice method: var dup_array = original_array.slice(); or doing a for loop: for(var i = 0, l ...
4
votes
5answers
410 views

How to choose colors in web development

When I build a site I tend to do a bit of graphic design (developer style) in Paint.NET, but how do I know the colors will all display properly on all browsers on different machines? What color depth ...
4
votes
8answers
4k views

Is there some industry standard for unacceptable webapp response time?

There's a cots (commercial off-the-shelf) application that I work on customizing, where a couple of pages take an extremely long time to load for certain distributions of data. (I'm talking ...
3
votes
1answer
135 views

Why does Aptana (eclipse) create duplicate python packages/files?

A picture says more then thousand words: I created one src foulder and one webscraper folder with one file named dblp.py in it. Why is Aptana/Eclipse showing the duplicates?
3
votes
1answer
123 views

Duplicate a mysql database from within mysql?

This is probably a longshot but.. is it possible to duplicate a whole database layout (tables, view, procedures, everything) with a query or multiple queries in a stored procedure? Basically looking ...
3
votes
1answer
243 views

PMD/CPD: Ignore bits of code using comments

Is there a way to tell PMD to ignore checking parts of code for duplication? For example, can I do something like this: // CPD-Ignore-On ... // CPD-Ignore-Off Currently I have PMD set up like this ...
3
votes
2answers
157 views

How to programmatically determine param name when constructing an ArgumentException?

When constructing an ArgumentException, a couple of the overloads take a string that is the invalid argument's parameter name. I figure it would be nice to not have to remember to update this ctor ...
2
votes
3answers
54 views

duplicating arrays javascript splicing

I have come across a strange bug in my code and I cannot understand why it happens. I have an array array1. I duplicate array1 by making array2 equal to array1. I then modify array2 using splice to ...
2
votes
1answer
128 views

How to avoid operator's or method's code duplication for const and non-const objects? [closed]

Possible Duplicate: How do I remove code duplication between similar const and non-const member functions? My task is to implement c++ vector analogue. I've coded operator[] for 2 cases. T ...
2
votes
1answer
93 views

Ajax Design/Refactoring help when rendering new content - like list items and divs

I consistently come across this code smell where I am duplicating markup, and I'm not really sure how to fix it. Here's a typical use case scenario: Let's say we'd like to post comments to some kind ...
2
votes
3answers
439 views

How can I copy clone/duplicate a folder on S3?

I want to make a copy of the folders and images on my s3 bucket for my development server. How can I do that?
2
votes
5answers
243 views

Using the same test suite on various implementations of a repository interface

I have been making a little toy web application in C# along the lines of Rob Connery's Asp.net MVC storefront. I find that I have a repository interface, call it IFooRepository, with methods, say ...
1
vote
2answers
47 views

Eliminate duplicate code that builds similar copies of the same object

I have two classes that both build an object, and at the moment there is duplicate code in both these classes, e.g this code exists in class 1: new Object("a", "b", "c"); Only one of the arguments ...
1
vote
1answer
71 views

nodejs modules and duplication? If an app uses two modules that require a common module, does node optimize to prevent loading the same code twice?

Apologies if this is a dumb question, but if I create 2 modules that both require('http') and my main application that requires both modules, or requires modules that in turn require both modules, ...
1
vote
2answers
395 views

How to Insert Core Data Record Related to Another Without Duplication

I have two core data entities, Articles and Favorite. Articles has To-Many relationship to Favorite. First, I inserted all Articles object successfully. Now, I'm trying to insert ArticleID in ...
1
vote
0answers
167 views

Duplicate form fields when using fields_for

I am trying to create a nested form to handle a has_many :through relationship and getting duplicated fields being rendered. Models Company has_many :provides has_many :services, :through => ...
1
vote
2answers
131 views

db4o Impedance Mismatch

I've built a nice repository layer around a db4o database to store Product objects, which relate to Manufacturer objects in a one-to-many relationship, i.e.: public class Manufacturer { public ...
1
vote
0answers
592 views

ASP.NET MVC - Avoiding duplicated validation code in JavaScript and C#, and with contextual validation that considers other property values?

How can you avoid duplicated validating code in JavaScript and C# in ASP.NET MVC 3, preferably also an example with contextual validation that considers other properties ? Does ASP.NET MVC 3 make it ...
1
vote
2answers
106 views

Duplicating subclass of abstract baseclass

I have an abstract base-class to enforce some subclasses to overload the << operator. I am storing a bunch of pointers to instances of these subclasses in an std::stack... At some point I wish ...
1
vote
3answers
1k views

Does anyone know how to get rid of this error while trying to use GSON libraries?

I am using code (not written by me) with dependencies on GSON libraries. I have downloaded the libraries and when I try to include them in the project I get a duplication error. Specifically: Error ...
1
vote
2answers
41 views

Question regarding Duplicating Properties in ViewModels

I have a question regarding the duplication of properties within view models. For my Search View i have a viewmodel that looks like this public class SearchModel { public ...
1
vote
2answers
125 views

How can I read, analyze, and then “un-read” and reread the beginning of an input stream in Perl?

I'm reading and processing a stream of input from the ARGV filehandle in Perl (i.e. the while(<>) construct) a regular filehandle, which may be STDIN. However, I need to analyze a significant ...
1
vote
1answer
125 views

Avoid duplication of function in jQuery

This function is written twice to save the checkbox state as well as the corresponding div text. How do I write the code in a function once and then call it twice on load and click events ...
1
vote
1answer
492 views

Problems using Lucene Highlighter

I am using Lucene Highlighter 2.4.1 for my application. I use the highlighter to get the best matching fragments, and display them. I make a call to a function String[] ...
1
vote
3answers
350 views

Is SHA sufficient for checking file duplication? (sha1_file in PHP)

Suppose you wanted to make a file hosting site for people to upload their files and send a link to their friends to retrieve it later and you want to insure files are duplicated where we store them, ...
1
vote
2answers
107 views

Duplicating an imported graphic in Flash

I'm loading a graphic via the Loader Class. Now I need to use it both as the original image and a thumbnail of that image. Alas, there is no "duplicateMovieClip" or anything like that in AS3 If I ...
1
vote
2answers
104 views

Reducing the recordset where a particular field has similar data. (MySQL)

I have two tables, 'discussion' and 'discussion_responses'. A unique ID from 'discussion' is used in 'discussion_responses' to identify the response to the original post in a forum. I created the ...
1
vote
2answers
830 views

How to detect duplicate text with some fuzzyness

Some thing ago, I write small script using Text::DeDupe to remove duplicates of blog posts before I have to lay my eyes on them. After reading Syntactic Clustering of the Web paper on which ...
0
votes
2answers
18 views

How to solve duplicate content for search engines?

I have 2 websites: Site1.com and Site2.com. Site1.com has 2 pages: a.htm and b.htm. Site2.com has 3 pages: a.htm, b.htm and c.htm. Pages a.htm and b.htm are duplication at the 2 sites. I want ...
0
votes
1answer
69 views

How can i factor out this code to avoid code duplication in C#?

I have the following code: private int AllFeb(Forecast f, IRepository repository) { return All(f, repository, f.Feb); } private int AllJan(Forecast f, IRepository repository) { return All(f, ...
0
votes
3answers
45 views

jQuery function duplication. How can I make this shorter?

You can check page here: http://jsfiddle.net/7JhjN/ Basicly, there is a hell of duplication going on and I don't like this. I am sure there is something wrong since it's not a correct programming ...
0
votes
0answers
52 views

AS3: Changing z order of DisplayObjectContainer children using setChildIndex causes duplication of MC

I have a similar problem to the question addressed here: Switching of depths causes duplication of MC Here is the relevant code: var widget:DisplayObjectContainer = ...
0
votes
0answers
14 views

google content duplication

I would like to know what google treats as content duplication. I have read google documents on this topic, but i have different problem. For example lets say I would like to have lyric website. 90% ...
0
votes
2answers
76 views

Preventing ID duplication

I am using this below. Will it prevent ID duplication? Code: $new_generating_id = on the process page this will be generating a new id for each time the process page is being processed; $sql = ...
0
votes
2answers
65 views

Duplicating Object

I am trying to duplicate an object with no success. I tried Serialization Cloning both methods don't work for me. When I used serialization (I am using the technique specified here Faster Deep ...
0
votes
3answers
43 views

How can I duplicate an array to another object?

This seems fairly straightforward. @new_email.distributions = @email.distributions.dup After this is performed, both share identical distributions. However, once the new object "saves". The old ...
0
votes
3answers
47 views

Avoiding duplication of IDs in php

I have a php browser based application that is for a hospital management system. The situation is that there are 3 departments from which payments are made ie. reception, lab and pharmacy. The worker ...
0
votes
1answer
37 views

If the where condition is on a joined table, will I get duplicated results?

I have three tables, one is tasks which are tasks that factory workers complete by putting them into batches, which is another table, each task has a batch_id, multiple tasks can have the same ...
0
votes
1answer
194 views

Facebook post being duplicated multiple times on a page

I have an article posted on a Facebook Page. However the article seems to keep reposting itself on the page at random intervals. Sometimes this will happen 3 or 4 times in a single day, and sometimes ...
0
votes
0answers
31 views

Single threaded Program, read objects from messgae stream and store in DB

In a single threaded program, how would I write code which would read objects from the message stream and store it into the database without losing or duplicating any objects? please help i need an ...
0
votes
1answer
301 views

Primefaces dataTable is duplicated on page

Have review(for adding review or comments) component in my application. When add review, that p:dataTable is updated with ajax. before adding review: after adding first review refresh page(F5): ...
0
votes
3answers
346 views

Select query to check the existing record in the SQLite Database in android

I want to know the Query to check whether the particular Record in the DataBase already exists or not for my application. I have made one function for these, but it is not working properly. public ...
0
votes
4answers
341 views

Making a duplicate of a form in Visual Studio 2008 (C#)

I have a form in my existing project. My current task is to make a duplicate of an existing form and change few things on the new form. Making a copy of the form cs files would not do since the ...
0
votes
1answer
176 views

WSAEINVAL error from WSASocket on socket duplication

I'm trying to transfer socket from the one process to the another process constantly. I'm using WSADuplicateSocket on the master process which always works fine. Then I'm calling WSASocket on the ...
0
votes
3answers
956 views

Flash, ActionScript 3: using get/set properties to get values from other classes creates much duplicate code can it different?`

i am using get and setters in my as3 code to edit values of an other class (because those variables are shared) i dont like to put stage.sharedVar.isScrabble in my code every time to change a variable ...

1 2