Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
183 views

How to refactor these functions which have one line difference

I have 3 functions where the only difference in is the values I point out with comment //-- point of difference The majority of the function is the same across all three. The "DRY" factor is ...
8
votes
6answers
383 views

How do I change this to “idiomatic” Perl?

I am beginning to delve deeper into Perl, but am having trouble writing "Perl-ly" code instead of writing C in Perl. How can I change the following code to use more Perl idioms, and how should I go ...
5
votes
2answers
873 views

Linq - Order by number then letters

I have a list of strings, and these strings contain numbers and words. What I wanted to do is order it by the numbers (numeric order) followed by the words (alphabetical order) My list does not ...
5
votes
2answers
266 views

Returning array of objects via named_scope — has_many…belongs_to association; UNION ALL query

I'm looking for an answer that will return an array of user objects via (preferably) a named_scope or via a class method on the User model that does some manipulation. So without further ado... I ...
5
votes
3answers
683 views

How can I improve this jQuery Gmail-like interface?

EDIT 3: I've gotten this working by ignoring the advice given below and listening on the window, but only when an input, text field, or textarea is not focused. I'm not sure if this is the best way to ...
5
votes
2answers
112 views

What's the OO way of refactoring these two very similar classes in PHP?

I have a class like the following: class DreamsImagesStore { public $table = 'dreams_images'; public function insertNewDreamImage($dream_id, $pid) { try { $values = array($dream_id, ...
5
votes
3answers
624 views

Create a table from CSV columns in SQL Server without using a cursor

Given a table: |Name | Hobbies | ----------------------------------- |Joe | Eating,Running,Golf | |Dafydd | Swimming,Coding,Gaming | I would like to split these rows out ...
5
votes
10answers
1k views

String Benchmarks in C# - Refactoring for Speed/Maintainability

I've been tinkering with small functions on my own time, trying to find ways to refactor them (I recently read Martin Fowler's book Refactoring: Improving the Design of Existing Code). I found the ...
4
votes
4answers
94 views

Is this a good way to reuse / share a method?

I encountered this code wherein a method call, for example ClassA.search(a, b, flag) is being used by 3 Controllers. This is a simplified version of the method: public List<Result> ...
4
votes
2answers
149 views

Refactoring a list of objects to implement a business rule

I need to refactor the following class: public interface IEmployee { int VacationWeeks { get; } int YearsWithCompany { set; get; } double Salary { set; get; } } public class Employee : ...
4
votes
5answers
137 views

How can I refactor this Ruby and Rails code?

How can I refactor this code? if env["rack.request.form_hash"] && env["rack.request.form_hash"]["authenticity_token"] ...
4
votes
1answer
2k views

Entity Framework 4 - Where to put “ApplyCurrentValues” Logic?

I'm using the "stub technique" to update my POCO's (used in a detached context, ASP.NET MVC). This is the code i currently have in my controller (which works): [HttpPost] public ActionResult ...
4
votes
10answers
669 views

How can I make this Dictionary TryGetValue code more readable?

I'd like to test if an id was not yet known or, if it is known, if the associated value has changed. I'm currently using code similar to this, but it is hard to understand for those not familiar with ...
4
votes
5answers
296 views

Pimp my Perl code

I'm an experienced developer, but not in Perl. I usually learn Perl to hack a script, then I forget it again until the next time. Hence I'm looking for advice from the pros. This time around I'm ...
3
votes
5answers
172 views

How to refactor this?

I was trying to refactor this class AClass { string Property1 { get; set; } string Property2 { get; set; } string Property3 { get; set; } void AMethod(AClass other) { ...
3
votes
4answers
116 views

Is there a better way to build lists like this?

I'm new to Python and I am loving it, but was wondering if there was a better way to do a couple list manipulations. This one is relatively sane, but it seems like I might have missed a built-in ...
3
votes
3answers
157 views

Quick help refactoring Ruby Class

I've written this class that returns feed updates, but am thinking it can be further improved. It's not glitchy or anything, but as a new ruby developer, I reckon it's always good to improve :-) ...
3
votes
4answers
170 views

Can this Sql statement be refactored to NOT use RANK/PARTITION?

I have the following sql statement, which works perfectly fine. I was hoping to see how this could be refactored so it doesn't require the use of RANK/PARTITION ... if possible. SELECT LogEntryId, ...
3
votes
5answers
701 views

PDO in PHP, how to improve this PDO mysql code

Thanks for checking. All helpful answers/comments are up voted. I have the following code, which does the job, but imo is not efficient. The reason I think it's not efficient is because I'm using ...
3
votes
3answers
939 views

Count matching characters between two strings using LINQ

A friend asked me how to improve some code with LINQ. How would you do a character by character comparison between two strings to count the number of matches at an index? Here's the original code, ...
3
votes
5answers
330 views

Remove boilerplate from db code

It seems that every time I want to perform a db query, I have to write the following: Connection conn = null; Statement stmt = null; ResultSet rset = null; try { conn = ...
3
votes
2answers
215 views

Make it pretty: processing an array concurrently

I want to convert this linear loop into a concurrent one: for(Item item : ItemList) { processItem(item); } Is this really the shortest way to do this? class Worker implements Runnable { ...
3
votes
6answers
1k views

refactor this dictionary-to-xml converter in python

It's a small thing, really: I have this function that converts dict objects to xml. Here's the function: def dictToXml(d): from xml.sax.saxutils import escape def unicodify(o): if o ...
2
votes
2answers
57 views

How do I refactor this MySQL query?

I have following MySQL query: (SELECT c.Channel as name, count(*) as total_episode FROM ( SELECT a.aid, a.vid FROM videoItem v INNER JOIN aid2vid a USING(vid) GROUP BY a.aid ) a1 ...
2
votes
3answers
45 views

Remove Duplication From The Validate Method

What is a good way to remove the duplication in the validate method? public bool Validate() { string directoryErrorMessage = "Directory does not exist"; ...
2
votes
2answers
113 views

Refactor switch statement that assigns different variables depending on case?

How can I refactor a switch statement that is in multiple places in code that assigns a value to a variable depending on which case is thrown, for example: int a = 0; int b = 0; switch(c) { case ...
2
votes
5answers
97 views

Reducing responsibilities and Collaborators for Unit Testing

I have a class which has a well-defined responsibility - to "Enrich" an object with the information it needs. This information is gathered from a variety of sources (Services). Eg: public class ...
2
votes
2answers
132 views

Refactoring a Dictionary, changing key type

I am refactoring a C# library that uses a Dictionary<int, SomeInterface> all over the system. I need to change the key type from int to string, and use a Dictionary<string, SomeInterface> ...
2
votes
5answers
101 views

Best approach to call similar methods on c#

I have Business Objects classes that need to know what connection string have to use. I call/create those BO from my code passing the connection String to a connString property of the BO, and can be ...
2
votes
2answers
127 views

How to DRY using metaprogramming?

Seems like there should be a good way via MP to DRY this up: class Dashboard def self.num_registrations_past_day return User.recent_registrations(24.hours.ago).count end def ...
2
votes
3answers
101 views

Restructuring Suggestions to remove lots of generic constraints

I'm trying to figure out if there's a better way to structure some code. Although it currently works, it always gets at me due to the complexity and crazy nature that it feels to have with generics ...
2
votes
2answers
222 views

Refactor and Remove Duplication From this Memoization Code

I'm trying to remove some duplication from this code, and have it easily support functions with more parameters. How would you improve this code and allow for more complex functions? Also, I'm ...
2
votes
1answer
132 views

How can I refactor this Rails 3 code?

Can anybody figure a way to refactor this further? @hourly_pay = {} HourlyPay.all.each { |hp| @hourly_pay[t("hourly_pay.#{hp.amount}")] = hp.amount } Thanks! Edit: based on the answers I've ...
2
votes
5answers
173 views

Refactor my code: Conditions based on different variables

Given: internal void Configure(ButtonEventArgs args, IBroker broker, FunctionEntry entry) { int phase = broker.TradingPhase; if (args.Button == ...
2
votes
11answers
271 views

C# Refactoring: How would you refactor 2 methods that do the same except that they use a different Interface

Having 2 different interfaces is a must. How would you refactor this? Should I refactor this code at all? private void CreateInstanceForProviderA() { a = ...
2
votes
4answers
439 views

How can I refactor this jQuery code?

The code below is for a simple newsletter signup widget. I'm sure there's a way to make it more concise, any ideas? var email_form = $('.widget_subscribe form'); var email_submit = ...
2
votes
5answers
889 views

ASP C# How to program neat GUI code

For about a few months i'm programming ASP C#. I always program a lot code in the events and in the load event i check the querystring for valid data. This is some sample code i have in one of my ...
1
vote
1answer
40 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
1answer
84 views

C# Best way to convert dynamic to string

The following gets a field from a DataTable and converts it to string. Is there a cleaner way to convert dynamic to string? dynamic value = dataTable.Rows[i].Field<dynamic>(columnName); value ...
1
vote
2answers
128 views

How do i make this ruby view code more readable and DRY?

I've encountered a rather complex view in a sinatra app. How would you go about refactoring this mess? .central %ul %li - selected = is_sub ? "": "selected" %a{:href => '/' + ...
1
vote
6answers
171 views

How to refactor this simple code to avoid code duplication?

I am solving the following simple problem(on one of OnlineJugde sites which is in Russian, so I won't give a link here:). It is easier to state the problem via an example than definition. Input: 10 ...
1
vote
1answer
54 views

jQuery Defining Custom Functions

I'm trying to a define my own function in jQuery to condense my js file, but I seem to be unable to shorten these two lines. Below is: *My function *What it looks like with the function *What the ...
1
vote
4answers
76 views

Optimize jQuery code

What would be a better to state the following: var active = '-active'; if ($j('body').hasClass('faqs')) { $j('.faqs-support').toggleClass('faqs-support' + active); } if ...
1
vote
1answer
31 views

Is this the right way to refactor? Anything better I can do?

I've made an Impressions model, which keeps track of how many "views" a certain photo or event has. It tracks this by remote_url, remote_ip and user_agent. It works the way I want it. Photos ...
1
vote
3answers
54 views

Rails 3 - How to refactor this piece of code?

I would like to refactor this piece of code which is not DRY at all :) def my_method if session[:my_params].try(:include?, :answer) session[:my_params][:answer] elsif ...
1
vote
6answers
138 views

How could this Java method be improved?

I am parsing XML files and I have several methods similar to: public static Integer getInteger(Object integer) { if (integer == null) { return 0; } try { return ...
1
vote
1answer
59 views

Find condition needs refactoring/optimising on polymorphic association

I'm building a recommendation method for users in my project. Users generate interest records whenever they view, create, comment or interact with objects (weighted depending on the action). I've ...
1
vote
3answers
255 views

Smart way to check super-class

public boolean isUserControled(){ return action.getClass().getSuperclass().toString().equals("class logic.UserBehaviour"); } I think this piece of code is pretty self-explanatory. Is ...
1
vote
2answers
450 views

default selected radio_button in rails3

Is there a cleaner way of selecting a radio_button by default or if it was previously selected in one line of code? I first tried this: - if @job.new_record? = f.radio_button :environment_id, ...
1
vote
2answers
158 views

Tools for refactoring?

I use netbeans on my work and find that some things are hard to do refactoring. What tools do you recommend for me?

1 2 3