2
votes
4answers
59 views
How do I apply the DRY principle to iterators in C++? (iterator, const_iterator, reverse_iterator, const_reverse_iterator)
OK, so I have two (completely unrelated, different project) classes using iterators now. One has iterator and reverse_iterator working as intended, and the other, current one has i …
1
vote
6answers
74 views
When does technical documentation violate the DRY principle?
We had a project where things got in a bit of a mess a while ago because of inexperienced developers.
The main issue was the fact that the programmers rushed directly into writin …
3
votes
5answers
154 views
Why isn’t DRY considered a good thing for type declarations?
It seems like people who would never dare cut and paste code have no problem specifying the type of something over and over and over. Why isn't it emphasized as a good practice th …
0
votes
4answers
43 views
DRYing my views, helper / method / something else?
Have written some RoR sites in the past, but never bothered too much at DRYing up my views as it's only ever been me looking at the code.
Just starting a new site, that is likely …
0
votes
6answers
169 views
How to refactor this code?
Please suggest in refactoring this code.
Avoid code duplication, mutiple If's
public FormDataDTO getDataForFieldFormCHrzntalField(Field field) {
FormDataDTO formDataDTO = new …
1
vote
2answers
60 views
asp.net MVC ddd DRY vs loose coupling and persistance/data access layer
So as I understand it with good loose coupling I should be able to swap out my DAL with a couple lines of code at the application root.
I have 2 DAL written, Linq-to-sql and a JSo …
1
vote
6answers
81 views
Need to make full names in cakePHP
Hi all,
If I have a person model with first_name and last_name, how do I create and display a full_name? I would like to display it at the top of my Edit and View views (i.e. "Ed …
0
votes
1answer
48 views
Which side of the api chasm?
I am torn between to DRY and loose coupling :(
I have two sites which you can link your account and then the sites can share data (via a RESTful api...)
one site is a media aggre …
1
vote
2answers
58 views
Duck typing: how would you treat this situation.
Hi,
Relatively new to python. I recently posted a question in regards to validating that a data type is boolean.
[http://stackoverflow.com/questions/1708349/use-a-single-decorato …
0
votes
6answers
235 views
Is there a good way to avoid duplication of method prototypes in C++?
Most C++ class method signatures are duplicated between the declaration normally in a header files and the definition in the source files in the code I have read. I find this repet …
1
vote
2answers
46 views
Finding ways to not check a db regularly in rails..
Hi all-
I have an application wherein the application will need to check whether one user is waiting for another user whenever a page is loaded. I have entries that look like thi …
5
votes
12answers
433 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, …
4
votes
3answers
190 views
Java: DRY out these two functions
These two functions have basically the same code. How can I factor it out?
public static String[] removeSuffix(String gA, String gB) {
String[] results = new String[2];
…
0
votes
3answers
86 views
How to DRY this snippet of Ruby code?
This is bothering me. It doesn't look too DRY. What would be a better implementation? As an aside, how come this ActiveRecord finder doesn't throw an exception when record is not f …
2
votes
4answers
76 views
Jquery - (re)wiring dynamically generated elements
Often times I have elements hooked to added functionality, like:
$('.myfav').autocomplete();
$('.myfav').datepicker();
$('.myfav').click(somefunction);
But when more instances o …
