Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
7answers
4k views

How to deploy an ASP.NET Application with zero downtime

To deploy a new version of our website we do the following: Zip up the new code, and upload it to the server. On the live server, delete all the live code from the IIS website directory. Extract the ...
18
votes
1answer
498 views

Why do we have map, fmap and liftM?

map :: (a -> b) -> [a] -> [b] fmap :: Functor f => (a -> b) -> f a -> f b liftM :: Monad m => (a -> b) -> m a -> m b Why do we have three different functions that ...
14
votes
7answers
402 views

CSS “Normalizer” tool?

I need to maintain & improve an existing website and I am drowning in the redundancy I have discovered in its CSS stylesheet. Given the existing redundancy and non-methodlogical ordering of ...
11
votes
1answer
276 views

small code redundancy within while-loops (doesn't feel clean)

So, in Python (though I think it can be applied to many languages), I find myself with something like this quite often: the_input = raw_input("what to print?\n") while the_input != "quit": print ...
10
votes
5answers
4k views

How To Check Dependencies Between Jar Files?

This is my first Q here :) I recently have taken the support and programming of a web system written in JSF. The code is kind of messy and redundant, and yes, no documentation exists. The system ...
9
votes
9answers
312 views

How can I reduce the redundancies in my jQuery code?

The size of my JavaScript file is getting out of hand because I have hundreds of links, and each one has its own jQuery function even though they all peform basically the same task. Here's a short ...
8
votes
5answers
340 views

programmatically optimizing expressions (by removing redundant computations)

I had a pretty big equation that I needed to use to solve for a given variable. So I used an online tool that was capable of rewriting an equation in terms of a given variable. It gave me some huge ...
7
votes
6answers
754 views

Why does resharper say 'Catch clause with single 'throw' statement is redundant'?

I thought throwing an exception is good practice to let it bubble back up to the UI or somewhere where you log the exception and notify the user about it. Why does resharper say it is redundant? try ...
7
votes
3answers
1k views

Cross-colo fail-over design, DNS level fail-over?

I'm interested in cross-colo fail-over strategies for web applications, such that if the main site fails users seamlessly land at the fail-over site in another colo. The application side of things ...
6
votes
2answers
391 views

cppcheck thinks I have “Redundant code: Found a statement that begins with numeric constant”

Cppcheck (version 1.46.1) gives the following warning for an enum like this one: enum DATABASE_TYPE { DATABASE_TYPE_UNKNOWN = -1, // <- line of warning DATABASE_TYPE_ORACLE, ...
5
votes
9answers
337 views

Do you put a super() call a the beginning of your constructors?

This is a question about coding style and recommended practices: As explained in the answers to the question unnecessary to put super() in constructor?, if you write a constructor for a class that is ...
4
votes
1answer
91 views

Redundancy Amazon S3 / Rails

We use amazon S3 buckets for publishing js files and putting them on client web sites. In other words, js files are stored in amazon s3. The main problem is since these files are on client sites, we ...
4
votes
3answers
191 views

Avoid Redundancy in Python

I recently started using Python 2.6 for Ubuntu Server admin and have two minor issues concerning redundancy: First thing are imports: They all look something like import Class from Class from ...
4
votes
1answer
505 views

C# Designer: Removing redundant code from Design.cs

I have a form which has several buttons, labels and other stuff on it, but the designer appears to remember old elements of that form that have previously be deleted. Is there anyway to 'refresh' the ...
4
votes
5answers
2k views

Database replication for redundancy using a free database and a Java with Spring & Hibernate web application

I have this in mind: On each server: (they all are set up identically) A free database like MySQL or PostgreSQL. Tomcat 6.x for hosting Servlet based Java applications Hibernate 3.x as the ORM tool ...
3
votes
1answer
27 views

does hadoop namenode dirs synchronize after a failure?

What happens in this scenario: Namenode is writing to two directories on two different drives, one is local and the other (remote) is mounted . Now, the namenode fails and we launch namenode process ...
3
votes
0answers
82 views

Pretty print expression with as few parentheses as possible?

My Question: What is the cleanest way to pretty print an expression without redundant parentheses? I have the following representation of lambda expressions: Term ::= Fun(String x, Term t) | ...
3
votes
4answers
223 views

How can I merge two redundant records in a MySQL table, maintaining all PK/FK relationships?

Say I have a table customers with the following fields and records: id first_name last_name email phone ------------------------------------------------------------------------ ...
3
votes
1answer
861 views

How to make my Java application scalable and fault tolerant?

In a simplified manner my Java application can be described as follows: It is a web application running on a Tomcat server with a SOAP interface. The application uses JPA/Hibernate to store data in ...
3
votes
2answers
69 views

How to design a database where the main entity table has 25+ columns but a single entity's columns gets <20% filled on average?

The entities to be stored have 25+ properties (table columns). The entities are pretty diverse, meaning that, most of the columns are empty. On average, I'd say, less than 20% (<5) properties have ...
3
votes
3answers
526 views

CSS Redundancy checker for GWT

In my project i have a lot of css styles. Some of them are never used (not anymore). I check this manually with eclipse: i select text and then with "Search -> Text -> Project" i can find, if this ...
2
votes
1answer
48 views

economical way of scaling a php+mysql website

My partner and I are trying to start a website hosted in cloud. It has pretty heavy ajax traffic and the backend handles money transactions so we need ACID in some of the DB tables. Currently ...
2
votes
1answer
53 views

How to implement a dynamic nav without repeating html in multiple JSP/JSTL files

I have this nav code in multiple JSP files: <ul id="nav"> <li ><a href="/home">Home</a></li> <li class="active" ><a ...
2
votes
3answers
96 views

PHP performance and redundancy

I have a section in my site where I do need to count the number of comments for a specific post.I actually already built a function for retrieving all the data in the comments DB table (function ...
2
votes
1answer
50 views

Do browsers re-try DNS when a page load fails?

After Amazon's failure and reading many articles about what redundant/distributed means in practice, DNS seems to be the weak point. For example, if DNS is set to round-robin among data centers, and ...
2
votes
4answers
100 views

DependencyProperty VS redundancy-free state management

Let us assume that we have a simple UI that has only one state variable. This state is expressed as an enum value, eg. Phase1, Phase2 etc. Depending on which state (phase) the UI is, different UI ...
2
votes
1answer
236 views

How to apply different layouts to the same target in NLog?

NLog allows me to use SplitGroup to log my messages to several targets. I'd like to use this feature to log each message to a common, user-specific and date-specific logs at once: <variable ...
2
votes
4answers
113 views

What's the difference between Object, *, and no type at all?

Is there any difference between those three declarations? var x; var y:Object; var z:*; Is there anything in AS that's not an Object?
2
votes
3answers
167 views

Why Ruby has so many redundancies?

I love Ruby, for past couple of years it is my language of choice. But even since I started learning it, I was repelled with the fact that so often there are several ways to do the same (or ...
2
votes
4answers
249 views

asp.net c# scan application for code duplication - utility

Do you guys by any chance know of a tool for visual studio that can scan the entire application and find code duplication? I have to clean up a medium sized asp.net c# application and I am using ...
2
votes
4answers
230 views

Compressing three individual jpeg pics containing temporal redundancy?

I am interfacing an embedded device with a camera module that returns a single jpeg compressed frame each time I trigger it. I would like to take three successive shots (approx 1 frame per 1/4 ...
2
votes
2answers
82 views

Find redundant user functions

I'm profiling an app that has a boat load of functions in many files and I'm trying to isolate functions that don't get called ever. Any ideas before I proceed?
2
votes
4answers
245 views

What's the best way to avoid code duplication in these two functions that do the same thing?

Given this form (which contains a submit button): <form id="review_form"> <input type="submit" id="btn_submit" value="Submit with ajax! (submit button)"> </form> and this link ...
2
votes
2answers
865 views

Redundancy, reliability and fault tolerance in C# - where to look for examples?

I want to learn how to create truly robust applications in .net - ones that are fault tolerant and are capable of withstanding unexpected situations. Where can I find literature/guidance on this ...
2
votes
3answers
1k views

Creating Redundancy for a Subversion Repository?

What is the best way to create redundant subversion repositories? I have a subversion repository (linked through apache2 and WebDAV) and would like to create a mirror repository on a different server ...
1
vote
1answer
55 views

Is it possible to have two databases sharing the same files?

I'm designing one application and considering some options regarding the database system since i'm not familiar with Microsoft sql server. I would like to know if its possible to have 2 databases ...
1
vote
3answers
103 views

How can I optimize this simple script?

Actually I have this piece of HTML code <form method=POST action=dosomething.php> <fieldset> <legend>My account</legend> <ul> <li> ...
1
vote
1answer
42 views

how to DRY up (remove redundancy) from this css class selector declaration?

I have: .sketch_img_thumb_box .title{ opacity: 0.1; } .sketch_img_thumb_box:hover .title{ opacity: 1; } .sketch_img_thumb_box .artist{ opacity: 0.1; } ...
1
vote
1answer
90 views

Cname and Amazon S3 failure

I had a quick question. If you set up a cname for your amazon bucket and lets say your main amazon s3 bucket goes down, does cname you created serve files, in order words does your files get ...
1
vote
2answers
68 views

DeNormalize Many to Many but don’t want to store redundant data in SQL world

Say I have newsletters and then subscribers: Whenever a user subscribes to a newsletter we need to store this in a table - the subscribers list. Should I store this in the newsletter table or in ...
1
vote
2answers
28 views

Should I separate redundant data in my database?

I have a database app that stores prices for things in different places. Each price has the following data associated with it: price date product ID country price type (factory/wholesale/retail) ...
1
vote
2answers
66 views

using Exceptions in android

respected all; I am new to programming and find a barrier i.e on clicking the button without any thing being inputted in the Edittext box converts mine activity to crash. So after research i got Try ...
1
vote
1answer
49 views

Implementating Generalizations When At The Logical Design Stage Of Database Design?

I am designing a database and as i do not have much experience in this subject, i am faced with a problem which i do not know how to go about solving. In my conceptual model i have an object known as ...
1
vote
2answers
255 views

C# Object Passing over Network Stream with High Redundancy

I need to send a binary payload with metadata over an unconventional slow, low-bandwidth, jittery connection which can basically be treated like any other normal connection at and above Layer 3. I ...
1
vote
2answers
34 views

Is it possible to remove this redundancy from my XML schema?

I have the following problem: I have two complexTypes, foo and bar with both the member foobar: <xs:complexType name="foo"> <xs:sequence> <xs:element name="foobar" ...
1
vote
3answers
52 views

Database Aproach - Redundant data

I have 3 tables: products (id, name, price, etc) orders (id, date, payment_method, etc) shipments (id, order_id, product_id, address, etc) My question is: It is correct to keep in shipments table ...
1
vote
2answers
128 views

Remove Pair of XML Tags

Is there a fast visual way of deleting unwanted XML tags. It's just very time consuming having to delete both the beginning and the end tag. I have some XML code which I need to clean up for redundant ...
1
vote
1answer
122 views

ways to detect data redundancy between tables with different structures

I'm working on a problem that involves multiple database instances, each with different table structures. The problem is, between these tables, there are lots and lots of duplicates, and i need a way ...
1
vote
1answer
268 views

How to use fastcgi_next_upstream in Nginx

I'd like to have 1 web server (nginx) and 2 FastCGI instances of the same application as back-end. The idea is to forward requests to second one if the first one is down. Apparently, I need to use ...
1
vote
1answer
143 views

Is there any reason this isn't redundant code?

I came across this code in some existing codebase: double rad = ComputeCurviness(); double off = Math.Abs(rad); if (rad < 0) off = -off; It seems to be basically just making off equal to rad. ...

1 2