Tagged Questions
Don't Repeat Yourself, a software development philosophy which aims at reducing redundancy and code repetition.
48
votes
15answers
2k views
Why is “copy and paste” of code dangerous?
Sometimes, my boss will complain to us:
Why do we need such a long time to implement a feature?
Actually, the feature has been implemented in another application before, you just need to ...
29
votes
8answers
10k views
What CSS compiler do you use (SASS, Less, HSS, etc)?
I've been looking to make my web development a little more DRY. SASS+HAML seem to have a degree of popularity within the Ruby/Rails community, but, do those outside of that community generally use ...
21
votes
4answers
463 views
Best practice for reusing python code
I have write a python library app(which contains several *.py files). And several of my python projects need to reuse the code in the library app. What's the recommended best practice for reusing ...
20
votes
11answers
902 views
Is duplicated code more tolerable in unit tests?
I ruined several unit tests some time ago when I went through and refactored them to make them more DRY--the intent of each test was no longer clear. It seems there is a trade-off between tests' ...
18
votes
10answers
5k views
How to repeat a “block” in a django template
I want to use the same {% block %} twice in the same django template. I want this block to appear more than once in my base template:
# base.html
<html>
<head>
<title>{% ...
17
votes
13answers
991 views
How much duplicated code do you tolerate?
In a recent code review I spotted a few lines of duplicated logic in a class (less than 15 lines). When I suggested that the author refactor the code, he argued that the code is simpler to understand ...
16
votes
4answers
3k views
Is it possible to share a masterpage between MVC and webforms?
I am adding MVC to a project that has MANY legacy webform pages. This works fine. However, I currently have a separate masterpage for MVC and for the webforms. The two master pages produce ...
15
votes
3answers
350 views
Best way to require several modules in NodeJS
I don't much like the standard way to require modules, which goes something like this:
connect = require 'connect'
express = require 'express'
redis = require 'redis'
sys = require 'sys'
coffee = ...
15
votes
2answers
1k views
DRY URL's in Django Javascript
I'm using Django on Appengine. I'm using the django reverse() function everywhere, keeping everything as DRY as possible.
However, I'm having trouble applying this to my client-side javascript. There ...
12
votes
9answers
832 views
What's the best platform for a static-website? [closed]
I am building a static-website (as in, to change a page, we change the HTML and there is no DB or anything). Well, it will have a number of pages and I don't want to copy and paste the HTML navigation ...
12
votes
7answers
468 views
Does it exist: Repeated Code Finder?
In the near future, I will be inheriting a somewhat large project. I've been making some small updates to it recently, and noticed that parts of it could use some refactoring, since there are methods ...
11
votes
2answers
340 views
Does validation in CQRS have to occur separately once in the UI, and once in the business domain?
I've recently read the article CQRS à la Greg Young and am still trying to get my head around CQRS.
I'm not sure about where input validation should happen, and if it possibly has to happen in two ...
11
votes
6answers
386 views
How do you keep your business rules DRY?
I periodically ponder how to best design an application whose every business rule exists in just a single location. (While I know there is no proverbial “best way” and that designs are situational, ...
11
votes
2answers
548 views
Django - use reverse url mapping in settings
A few of the options in the django settings file are urls, for example LOGIN_URL and LOGIN_REDIRECT_URL. Is it possible to avoid hardcoding these urls, and instead use reverse url mapping? At the ...
11
votes
9answers
984 views
Do setup/teardown hurt test maintainability?
This seemed to spark a bit of conversation on another question and I
thought it worthy to spin into its own question.
The DRY principle seems to be our weapon-of-choice for fighting maintenance
...
10
votes
8answers
528 views
C# - How to intelligently & safely convert a Double to String?
Trying not to repeat myself (to be DRY) here, help me out. =)
I have a double which represents a rating / 5.
The possible values are:
0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5.
I want to convert ...
10
votes
5answers
1k views
How to “DRY up” C# attributes in Models and ViewModels?
This question was inspired by my struggles with ASP.NET MVC, but I think it applies to other situations as well.
Let's say I have an ORM-generated Model and two ViewModels (one for a "details" view ...
10
votes
6answers
11k views
How to make a char string from a C macro's value?
For example, how to avoid writing the 'func_name' twice?
#ifndef TEST_FUN
# define TEST_FUN func_name
# define TEST_FUN_NAME "func_name"
#endif
I'd like to follow the Single Point of Truth rule.
...
9
votes
2answers
375 views
How can I convert this code to meta-programming, so I can stop duplicating it?
I've got a small but growing framework for building .net systems with ruby / rake , that I've been working on for a while now. In this code base, I have the following:
require 'rake/tasklib'
def ...
9
votes
5answers
258 views
Composing functions in Java?
I'm writing demo code for an API we've created and I keep running into the same problem where I'm repeating myself, over and over ad nauseum. I am painfully aware that Java is scheduled to have ...
9
votes
3answers
1k views
ASP.NET MVC - How to achieve reusable user controls and maintain DRY?
First post so please be gentle :)
When creating user controls in ASP.NET MVC, what is the best way to structure the code so that the controllers that invoke views that use the user controls do not ...
8
votes
12answers
782 views
How to generate a non-const method from a const method?
While striving for const-correctness, I often find myself writing code such as this
class Bar;
class Foo {
public:
const Bar* bar() const { /* code that gets a Bar somewhere */ }
Bar* bar() {
...
8
votes
4answers
317 views
How do you share configuration information or business rules between languages
I'm looking for best practices for using the same data in different places without repeating yourself - this could include configuration or business rules.
Example 1. Data validation rules where you ...
7
votes
1answer
169 views
Javascript duplicate code detector?
I am looking out for a software that identifies duplicate/redundant Javascript code. I found one such tool named CloneDR, but don't know how good it is .
I was looking out for similar open source ...
7
votes
3answers
147 views
DRY: Minimizing repeated code in Java
I'm writing a method in Java:
List<Foo> computeFooList(/* arguments */)
{
/* snip */
}
I'd like to write a second method with exactly the same logic, but a different return type:
...
7
votes
3answers
4k views
How to customize to_json response in Rails 3
I am using respond_with and everything is hooked up right to get data correctly. I want to customize the returned json, xml and foobar formats in a DRY way, but I cannot figure out how to do so using ...
7
votes
2answers
4k views
ASP.NET MVC 2 - When To Use Templates vs When to Use Partial Views
One of the new features in ASP.NET MVC 2 Preview 1 is support for the concept of Editor Templates and Display Templates which allow you to pre-define how a given object will be rendered for display or ...
7
votes
5answers
1k views
How do I DRY up my CouchDB views?
What can I do to share code among views in CouchDB?
Example 1 -- utility methods
Jesse Hallett has some good utility methods, including
function dot(attr) {
return function(obj) {
return ...
6
votes
2answers
67 views
Check if two variables have values from two different sets, the DRY way
I have a range of values (L,R,U,D) and two variables, d and newd, containing one of them. I need to check if d and newd are in the same subset (L,R or U,D) or not.
I know I can do this:
d in ...
6
votes
5answers
270 views
When KISS and DRY collide
I'm an obsessive follower of the DRY and KISS principles but last week I had a case where both seem to contradict each other:
For an application I was doing, I had to implement a loop for times which ...
6
votes
1answer
701 views
WCF Web API UriTemplate Elements Found in Multiple Methods
Let's say I am using the new WCF Web API to build a RESTful service and, in my service, I have a section of the URI that will describe the target resource, but is used on (nearly) all methods of the ...
6
votes
3answers
284 views
Rails: Making ''show' view and 'edit' view match
Using Rails 2.3.5, Ruby 1.8.7.
Is there any plugin that will make it easier to make my "show" and "edit" and "new" pages have the same look and feel? I'd love to be able to do the following type of ...
6
votes
5answers
247 views
using yield in C# like I would in Ruby
Besides just using yield for iterators in Ruby, I also use it to pass control briefly back to the caller before resuming control in the called method. What I want to do in C# is similar. In a test ...
6
votes
2answers
299 views
Eliminate repetition in C++ code?
Given the following:
StreamLogger& operator<<(const char* s) {
elements.push_back(String(s));
return *this;
}
StreamLogger& operator<<(int val) {
...
6
votes
3answers
704 views
Best way to handle view and helper-only constants in Rails
I have a constant that is only used in views, but it's used in different ways in different places. It's an array of option names, and is used for select boxes, but I also use this in other views to ...
6
votes
4answers
193 views
Getting DRY with Rhino Mocks
I am looking for ways of making the following more concise.
public class MyTests
{
IPresenter presenter;
[SetUp]
public void SetUp()
{
presenter = ...
6
votes
12answers
648 views
D.R.Y vs “avoid macros”
I am creating my own implementation of XUL in C++ using the Windows API. The fact that the elements are constructed by the XML parser requires that they have identical interfaces, so that we don't ...
6
votes
4answers
480 views
“inheriting” ASP.NET MVC sites from a common template app? (multi-tenancy)
We're building about 10 ASP.NET MVC sites which have a common set of features (and corresponding URLs, Routes, Controllers, Actions, and Views). The sites will also all share a base set of domain ...
6
votes
2answers
262 views
How to balance DRY principle with minimizing dependencies?
I'm having a problem with the DRY principle (Don't Repeat Yourself) and minimizing dependencies that revolves around Rete rules engines.
Rules engines in large IT organizations tend to be Enterprise ...
6
votes
4answers
299 views
How to make source code a part of XML documentation and not violate DRY?
I'd like to add parts of the source code to the XML documentation. I could copy & paste source code to some <code> elements, like this:
/// <summary>
/// Says hello world in a very ...
6
votes
5answers
2k views
Does the DataMapper pattern break MVC?
I have been reading up on multiple PHP frameworks, especially the Zend Framework but I am getting confused about the proper way to go forward.
Zend Framework does not use ActiveRecords but instead ...
6
votes
2answers
1k views
Best Practices for using partials in Rails
In keeping with the DRY-principle I try to use partials as soon as I am repeating a particular pattern more than once or twice. As a result, some of my views consist of ten or more different partials. ...
6
votes
6answers
181 views
Are there any code DRYer tools out there?
I have a large code base and there is lots of repeated, or nearly repeated code all over the place, it's about as unDRY as code can get, but tracking the "duplicates" is hard, so I was wondering if ...
5
votes
4answers
983 views
How to stay DRY when using both Javascript and ERB templates (Rails)
I'm building a Rails app that uses Pusher to use web sockets to push updates to directly to the client. In javascript:
channel.bind('tweet-create', function(tweet){ //when a tweet is created, execute ...
5
votes
2answers
136 views
How can I DRY up all these calls to render :index?
I have a bunch of controllers with methods that render the index view. This results in me writing render :index at the end of the majority of methods. Here's an example
def index
@models = ...
5
votes
2answers
267 views
How to avoid repetition in MSBuild?
I don't mind an occasional repetition of something when it's necessary, but in MSBuild I really don't know how to ever avoid repetition. It doesn't offer "functions" in the usual sense; a target can ...
5
votes
3answers
288 views
Template function as a template argument
I've just got confused how to implement something in a generic way in C++. It's a bit convoluted, so let me explain step by step.
Consider such code:
void a(int) {
// do something
}
void ...
5
votes
1answer
260 views
sed command in dry run
I am not able to find out if and how it is possible to make a dry run with sed.
So i have this command:
find ./ -type f | xargs sed -i 's/string1/string2/g'
But before I really substitute in all ...
5
votes
4answers
155 views
How to DRY in Ruby?
How could I make this shorter and extendable:
def overview
puts "All As:"
for f in @a
puts f
end
puts "\n"
puts "All Bs:"
for f in @b
puts f
end
end
5
votes
5answers
328 views
.NET refactoring, DRY. dual inheritance, data access and separation of concerns
Back story:
So I've been stuck on an architecture problem for the past couple of nights on a refactor I've been toying with. Nothing important, but it's been bothering me. It's actually an exercise ...