Tagged Questions
0
votes
1answer
47 views
Refactor LINQ queries in different controllers in MVC4 and C#
I am trying to apply the DRY (Do Not Repeat Yourself) to my MVC4 program.
I have two LINQ queries in two different controllers.
The queries are the same.
What is the best way to make the query ...
1
vote
1answer
42 views
Need help refactoring and speeding up if statement for view
I have the following Ruby on Rails code in my helper. My views are slow loading when I have many links on the page.
Can anyone show me a refactored version that would be DRY and speed it up?
...
1
vote
4answers
65 views
How can I DRY out this Ruby Code
How can I DRY out the following Ruby Code:
x = 'a random string to be formated'
x = x.split('^')[0] if x.include?('^')
x = x.split('$')[0] if x.include?('$')
x = x.split('*')[0] if ...
4
votes
5answers
79 views
jQuery drying up function
As you can see below, I clearly repeat myself over. I understand that this is bad practice.
So, how can the 4 duplicate lines of code within the if and else statement be refactored into one?
Some ...
3
votes
1answer
115 views
How to refactor complex search logic in a Rails model
My search method is smelly and bloated, and I need some help refactoring it. I'm new to Ruby, and I haven't figured out how to leverage it effectively, which leads to bloated methods like this:
# ...
3
votes
5answers
157 views
How to reduce the number of IF statements?
I have many IF sentences that each start a function.
Is there an obvious way to write this code much simpler?
Every IF starts different function, but it still looks like an overkill.
if ...
0
votes
1answer
108 views
How best to DRY up this Rspec code?
I have the following Rspec code which I think can be DRY'ed up quite a bit, specifically the check_creation_email_sent and check_rename_email_sent methods, I just don't know how to do it.
I tried ...
0
votes
2answers
52 views
Javascript refactor oftenly called function
I'm working with javascript for quite a long time, but it happens to me often that I come up with the following code:
function1 () {
// do stuff
...
end_function();
}
function2 () {
// do ...
1
vote
1answer
70 views
How to make this ruby code more DRY
I just did the following code. I see a lot of repetitions in syntax and pattern (like use temp variable r again and again, and append string when it is not nil). How can I make this more DRY? I am ...
1
vote
3answers
115 views
How does DRY combine with “Separation of concern” and “One function, one task”? [duplicate]
Possible Duplicate:
How many lines of code should a function/procedure/method have?
Out team has a project of not well structured ansi-c code. I would like to use some CC techniques to tidy ...
1
vote
1answer
67 views
How should one go about moving from two nearly identical controller actions to one action that handles both necessary tasks?
I have the following Actions:
public ActionResult ProductList(int category)
{
IEnumerable<Product> productList = repository.Products.Where(p => p.CategoryId == category);
return ...
1
vote
1answer
70 views
How to refactor repeating of similar getters and setters in rails model?
In my rails model I have something like
def price
Money.new(price_cents, currency)
end
def price=(val)
price_cents = val.to_money.cents
end
def value
Money.new(value_cents, currency)
...
5
votes
2answers
189 views
How to DRY scope methods used in two different classes?
I am using Ruby on Rails 3.2.2 and I would like to retrieve / scope associated objects by "specifying" / "filtering on" an attribute value on those associated objects. That is, at this time I am using ...
2
votes
3answers
150 views
Refactoring code/consolidating functions (e.g. nested for-loop order)
Just a little background: I'm making a program where a user inputs a skeleton text, two numbers (lower and upper limit), and a list of words. The outputs are a series of modifications on the skeleton ...
1
vote
4answers
158 views
How to refactor a big function with many if constructs?
We have App A as main app. Now we build from it App B which uses a subset of App A's functionality.
App A stays like it is whereas app B only uses a subset of A
So I want to refactor the function ...
0
votes
0answers
91 views
When to use a new variable vs string interpolation?
I wrote a script that I decided to refactor so I could add functionality to it as my coworkers think of it. I only saved four lines in the effort, but the main change is I removed both methods and ...
0
votes
1answer
54 views
jQuery refactored function
I like to keep my code as DRY as possible and would like to know if the following is possible.
I'll need to reuse the code below many times with the only difference being what I do in the following ...
1
vote
1answer
73 views
Want to DRY this code but have trouble
I have two methods that do similar things. I am a noob and want to know how I might be able to make these combine into one method:
#test if the current selected language is the one that was clicked ...
1
vote
2answers
126 views
How to DRY (these) RSpec tests using custom matcher
I currently have the following tests, which look like good candidates for a little DRY treatment:
describe League do
context 'attributes validation' do
before(:each) do
@league = ...
1
vote
2answers
62 views
Refactoring near identical linq queries where the where clause is different
I have two methods that are almost identical. The only dffernece is the where clause (and method name). I have just included a simplified linq query.
from tableA in db.tableA
join tableB in ...
1
vote
1answer
96 views
DRY'ing multiple 3 column lists with SASS
I have the following SASS code:
ul {
&.threeColList1 {
margin: 30px auto 0 auto;
padding: 0;
list-style: none;
width: 775px;
li {
width: 225px;
height: 330px;
...
0
votes
1answer
94 views
Python trying to Refactor (DRY out) a long Control Flow
I am grabbing a lot of data from and SQL query that takes a long time to run. Since the SQL query takes so long to run, I am grabbing the data from the database in its most granular form. I then cycle ...
0
votes
1answer
92 views
Applying DRY principles to JavaScript, help me optimize this code?
While on the search for ways to optimize the quality of my code, I eventually came across the concept of DRY (Don't repeat yourself). I try to follow this as best I can but sometimes I get into ...
1
vote
3answers
164 views
How can I DRY this code and clean up my model?
I have the following two methods for a Number model.
def track
number = sanitize(tracking)
case determine_type(number)
when 'UPS'
tracker = ups.track(:tracking_number => number)
...
6
votes
2answers
925 views
DRYing rails view: partial vs helper
I need an advice on good practice in DRYing view's code.
I have three classes (NewsItem, RssItem and BlogItem) in my app, that use separate views, but have similar parts in them. One of this parts is ...
1
vote
1answer
2k views
Refactoring: How to efficiently render json in Rails update action
How can I refactor this code so I don't repeat the json objects over and over again when they use the same basic format? I'm still a bit uncomfortable with Ruby on Rails so I'm unsure of the best way ...
1
vote
2answers
323 views
RSpec: DRY way to test a set of values
I have a vote model, which has a class method called score. Basically, I created a mathematical equation in a spreadsheet, and am attempting to reproduce this in ruby. However, my first go isn't ...
0
votes
2answers
1k views
DRYing up some Rails/HAML/jQuery view code
I render an alert bar as a partial at the top of the screen that gets shown to the user for success/failure/notice flash messages.
I finally have it working for most scenarios, but the code itself is ...
5
votes
5answers
492 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 ...
4
votes
2answers
183 views
Can I DRY up these jQuery calls?
Is there a way to DRY this jQuery up?
<script type="text/javascript">
$('form input#search').watermark('search...');
</script>
<script type="text/javascript">
$('form ...
0
votes
2answers
107 views
DRYing out C# for WPF windows with the same fields
I have two windows in my WPF app: a login window and an options window. Both have the same form with a user name and password field, as well as some other fields for providing credentials. I want ...
2
votes
2answers
187 views
What is the best way to DRY up these classes, duplication in everything but constructor
So I did some refactoring and two of my classes now look exactly the same except for their constructors.
The classes wrap an API object that isn't very pretty, and add some functionality that belong ...
1
vote
8answers
562 views
How to set JQuery .show / .hide without repeating Div selectors
I want to pass this function a True or a False and have the elements listed show (true) or hide (false) on this input.
I am currently using this function...
function ...
1
vote
1answer
91 views
C# lambda contents won't happen until it's called, right? Also, code cleanup
I have the following methods:
protected static void updateExistingSection(XmlDocument doc,
XmlNode rootNode, string sectionTag, CreateSection createSection,
Func<XmlNode[]> ...
0
votes
2answers
87 views
How to refactor this Ruby on Rails code?
I want to fetch posts based on their status, so I have this code inside my PostsController index action. It seems to be cluttering the index action, though, and I'm not sure it belongs here.
How ...
2
votes
2answers
543 views
ASP.NET: Reusing the same Repeater ItemTemplate
I'm currently using a certain ItemTemplate for three repeaters that are all on the same page, but they are all bound to different data sources. Is there any way to refactor my web form without using a ...
21
votes
14answers
2k views
How much duplicated code do you tolerate? [closed]
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 ...
1
vote
3answers
387 views
help me “dry” out this .net XML serialization code
I have a base collection class and a child collection class, each of which are serializable. In a test, I discovered that simply having the child class's ReadXml method call base.ReadXml resulted in ...
2
votes
2answers
383 views
i violated D.R.Y. help me please?
I'm making a blackjack sim and I want to deal the cards how it would be in a casino,
i.e. all players get dealt a card, dealer gets one face down, players get another card, dealer gets one face up
...
2
votes
1answer
222 views
Using parameter to control Rails validations
I have an Event model with a finish_time field and a form checkbox called whenever. When whenever is checked I want to set finish_time to nil regardless of its value in parameters, when whenever is ...
4
votes
4answers
208 views
How can I extract the code repetition here?
I am trying to extract out the common code pattern here in an extract method, but am having trouble finding the proper type for the type of Presenter. Any help?
public bool CanGotoHome
{
...
0
votes
6answers
334 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 FormDataDTO();
...
4
votes
3answers
511 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];
results[0] = gA;
...
1
vote
3answers
93 views
Asp.net - Refactor action
I have this "problem" that i have code like this in many of my controller actions:
var users = new List<SelectListItem>();
foreach(var user in userRepository.GetAll())
{
var item = new ...
5
votes
1answer
644 views
DRY unique objects in Django
I want to ensure an object is unique, and to throw an error when a user tries to save it (e.g. via the admin) if not? By unique, I mean that some of the object's attributes might hold the same values ...
12
votes
7answers
734 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 ...
2
votes
3answers
1k views
Rails Best Practices for Refactoring Dynamic Behavior
I have developed contingent country-state select dropdowns, and I'd like to factor out this behavior to an Address model so that I don't have to copy the dynamic behavior (more or less split between ...
5
votes
3answers
7k views
How to write a Rails mixin that spans across model, controller, and view
In an effort to reduce code duplication in my little Rails app, I've been working on getting common code between my models into it's own separate module, so far so good.
The model stuff is fairly ...

