Tagged Questions

8
votes
13answers
497 views

Refactor Mercilessly or Build One To Throw Away?

Where a new system concept or new technology is used, one has to build a system to throw away, for even the best planning is not so omniscient as to get it right the first time. Hence plan to …
1
vote
1answer
16 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 …
1
vote
5answers
132 views

How can I check that I didn’t break anything when refactoring?

I'm about to embark on a bout of refactoring of some functions in my code. I have a nice amount of unit tests that will ensure I didn't break anything, but I'm not sure about the coverage they give …
0
votes
2answers
59 views

How do I refactor three database operations that only differ by the method call?

I have three database operations like so: public void Add<T>(T entity) { using (var transaction = Session.BeginTransaction()) { if (entity is IEnumerable) { …
3
votes
4answers
190 views

best way to refactor my form (procedural to oop?)

(Note: this is related to this question, but I think it could have been written more clearly, so I'm trying again -- my update only helped to a limited extent.) I've inherited some code that creates …
2
votes
6answers
111 views

strategies for managing long class files in php

I've got a bunch of functions that I want to move into a class. They're currently split into a couple of fairly long files. I'd prefer not to have one 2500 line file, but as far as I can tell, you …
0
votes
2answers
46 views

Why does my http response body suddenly contain a load of gibberish?

I'm trying to refactor an existing asp.net-mvc web application and introduce mvc-turbine. The application works as is, but I want to make it more pluggable and maintainable so future maintenance will …
2
votes
1answer
31 views

Is the Eclipse CDT Refactoring Project Dead?

I've been over to the site lately and nothing much seems to work (aside from the main page)
2
votes
5answers
167 views

writing more efficient code in javascript

Hi all, I'm trying to write more readable and more efficient code, I've always hated if if if chains .. is it possible to write the following statement in some other more "elegant" way like maybe …
2
votes
9answers
167 views

What name should I give my function? And who can I ask next time?

Background: There are a few threads on SO about how to choose names for variables and functions. It dawned up on me that there might be a use for a site where you could go and ask random people what …
0
votes
2answers
64 views

Simple codeigniter refactoring question — best practice

Hi all, I have a quick question about refactoring php code. Below are three functions. The first two appear quite similar, and only differ with one if statement. The third combines the first two …
0
votes
5answers
92 views

.Net Refactoring application to use Dependency Injection

I am currently into the testing stage of a project I am working on and am having trouble bringing the main service under test in anything other than the most basic default test cases. The Service is …
0
votes
1answer
45 views

refactoring best practices for both PHP and Ruby on Rails

Hi, Wondering if someone can suggest a refactoring 'best practice' or more ideally a "check-list" that we can go through and refactor against common issues. Some of these ideas were pretty good: …
8
votes
15answers
284 views

Should you wrap 3rd party libraries that you adopt into your project?

A discussion I had with a colleague today. He claims whenever you use a 3rd party library, you should always write for it a wrapper. So you can always change things later and accomodate things for …
3
votes
5answers
168 views

Can a test class become a “God object”?

I'm working on a backend for an open source Python ORM. The library includes a set of 450 test cases for each backend, all lumped into one giant test class. To me, that sounds like a lot for one …

1 2 3 4 5 49 next
15 30 50 per page