3
votes
3answers
102 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 …
8
votes
15answers
259 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 …
2
votes
6answers
92 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 …
2
votes
9answers
161 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 …
2
votes
5answers
159 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 …
0
votes
2answers
42 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
27 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)
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: …
0
votes
5answers
88 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
2answers
61 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 …
1
vote
4answers
90 views
lisp-style style `let` syntax in Python list-comprehensions
Consider the following code:
>>> colprint([
(name, versions[name][0].summary or '')
for name in sorted(versions.keys())
])
What this code does is to print the elements …
0
votes
2answers
59 views
Architecture of player hand in JavaScript card game
So, i'm attempting simple card game. I have player "class" with draw function, and public members deck and hand, both are Arrays.
I need to draw a card from the deck, put it in hand and show it in …
0
votes
3answers
53 views
Good Non-Commerical (free) Refactoring Tool for Visual Studio 2005/Visual C++ 8.0?
We have a rather large codebase in C++ here that needs some refactoring; since it's generally bad to start from scratch, I was wondering if there were any good free code refactoring tools for Visual …
0
votes
2answers
45 views
Support for C++ refactoring in VS (auto-updating references and header/cpp)
In Visual C# I can rename an entity at its definition, and with two clicks all references to that entity get updated. How do I do this in Visual C++? If it's not supported, is there another IDE that …
3
votes
4answers
127 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
{
…
