Refactoring is a disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior.
0
votes
2answers
53 views
C# - want to refactor - appropriate design pattern?
My application currently takes a string read by a barcode scanner, and performs a task depending on the format of the barcode string. Essentially, the barcode string is passed to a web service ...
1
vote
1answer
10 views
How to add an instance variable using Refactoring Browser?
I want to add an instance variable programatically to an existing class using Refactoring Browser:
| theClass className |
className := #MyClass.
theClass := (RBClass existingNamed: className)
...
0
votes
0answers
17 views
Java, git, IDE multiple code styles
I am collaborating on a git-sourced, maven-managed Java project with differing code styling preferences with users using multiple IDE's (note 1).
Is there a tool or IDE configuration that will ...
0
votes
1answer
27 views
Refactoring 3 functions
I am refactoring a simple Twitter application I wrote when I noticed what appeared to be three (3) major code smells in the form of the following three functions:
private function ...
2
votes
3answers
36 views
Refactoring exception handling
In one of my classes I have a call to a repository which has some error handling on it. I would like to refactor the error handling code because it is quite repetitive and the only thing that really ...
0
votes
3answers
25 views
Avoid boolean flags as an attribute
First of all I wanna say I dont have much experience in refactoring and dont know if this is off-topic.
Im working with given code where a lot of boolean attributes are used, which I would like to ...
0
votes
0answers
20 views
Refactoring service which uses reflection to build methods and then invoke them
I was attempting to cleaup my message dispatch service as it is doing Publishing events and building/invoking methods by reflection.
I am trying to split the reflection aspect of the class in to a ...
0
votes
2answers
28 views
How to refactor this array comparison with underscore.js?
Can this code be refactored in a more functional/underscore style, mainly the part that checks for the presence of addedEvents in actualEvents?
describe 'when removing', ->
it 'should remove ...
0
votes
1answer
51 views
Ruby: Refactoring conditional statements containing regular expressions
I have a single method mock_request that I'm overriding for unit test purposes. For each request I want to execute some code:
def mock_request(method, url, params={})
case "#{method} #{url}"
when ...
0
votes
1answer
24 views
coffeescript jQuery - how to refactor this (noob) approach?
after starting to learn some coding I did this (very ugly, non DRY) star rating switch with bootstrap in a rails4 app. I already did the codeschoool coffeescript tutorial, but it seems ruby is a ...
0
votes
1answer
32 views
How do I remove validation duplication from a model?
Short of extracting shipping and billing addresses into an Address model, how can I remove this validation duplication?
I only want to validate the billing address if it's not the same as the ...
3
votes
2answers
72 views
Java Data-Entity model: Constructing general types
I have had some trouble with using a general type in a static method.
All comments on the source code are welcome, especially ones that significantly improve the code. I am also currently not ...
0
votes
1answer
10 views
Confirming many duplicate files are the same (diff)
The previous person to work on the project I'm updating had a bad habit of just copying all of the files into a new directory when we got a new client. So now I have 10 directories with over 100 files ...
0
votes
0answers
39 views
How to get rid of singletons in PHP
I recently found out that singletons are bad.
I couldn't find answer how to recreate my current code to be without singleton.
What i have now:
class checker {
private static $inst;
public ...
0
votes
1answer
17 views
Refactor case/when using strings
I have a number of these in my controller:
def ups
@ups ||= Shipper::Ups.new(
ENV['UPS_ACCESS_KEY'],
ENV['UPS_PASSWORD'],
ENV['UPS_USERNAME'],
ENV['UPS_ACCOUNT']
)
end
And then ...
0
votes
1answer
28 views
Refactoring project structure in Visual Studio 2012
Say I have a class library project that I feel is getting too large and unwieldy and I want to break it out into smaller class library projects for easier distribution and deployment. Is there a way ...
0
votes
0answers
13 views
How can I undo a package rename in Pydev for Eclipse, or fix the import errors the rename caused?
The package was originally titled 'default', but I tried to change the name to 'Synthesizer'. However, this caused a problem because 'Synthesizer' was the name of a class in the package, so I changed ...
1
vote
0answers
34 views
titanium studio no refactoring in eclipse?
I started to learn titanium and I cannot find any options for refactoring. I'm used to pydev in eclipse with pretty good refactoring and to be honest I'm bit straggling without it. Is there some ...
1
vote
2answers
48 views
How to create a custom pattern to replace `as` cast with direct cast in Resharper?
I have a lot of code like this:
ml = this.CriteriaList.ItemByName(SC_STATIONS) as MultiList;
I'd like to replace it with
ml = (MultiList) this.CriteriaList.ItemByName(SC_STATIONS);
To that end, ...
1
vote
3answers
51 views
PHP code duplication. At what point is duplicating code the right way to go?
I am using CodeIgniter but this question applies in a general sense too.
I have a table of transactions with columns
item_name | type | date | price | document
I want to do the following in two ...
1
vote
1answer
36 views
Does Resharper contain a Convert to Direct Cast refactoring?
I have code like this all over the code base:
MultiList ml = this.CriteriaList.ItemByName(SC_SAM_CATEGORIES) as MultiList;
I want to convert it to direct cast:
MultiList ml = (MultiList) ...
0
votes
1answer
52 views
Extend Zepto.js so don't need jQuery anymore
I like the idea of cutting out 80% of jQuery by using Zepto.js. However, when making the switch, it is clear some of the jQuery plugins I'm using, for example jQueryUI draggable(), can't find in Zepto ...
0
votes
3answers
54 views
Refactor regular C++ code pattern
Summary: I'm trying to see if I can refactor some C++ code that has a regular pattern to make it easier to update and maintain.
Details:
I have some code that creates thread local counters to keep ...
0
votes
2answers
39 views
Removing part of a namespace across entire project
I know that I can rename a namespace using Visual Studio 2010, but I need to remove part of a namespace.
namespace Xyz.Common.Utils { ... }
Renamed to
namespace Common.Utils { ... }
I need to ...
0
votes
1answer
40 views
Why does this refactored ruby method return nil? [closed]
I wrote a method in class Float which takes a float (seconds) and converts it into a countdown timer. The code works fine when I write it like this:
class Float
def to_countdown
(self % 60) == ...
0
votes
2answers
53 views
How do I refactor this object to lessen dependency on callbacks?
I have an Order object that belongs_to a BillingAddress and a ShippingAddress. I want to present my user with only ShippingAddress fields and a checked checkbox indicating that the billing address ...
0
votes
1answer
25 views
LINQ select item from a list where string contains any of the search terms in a list -> refactor
I have list of Items, called Translations. I filter the translations based on a search term from a search box, currently it looks like this:
private static IList<Translation> ...
0
votes
0answers
31 views
.Net way to pick up common instances without passing them every time
I have a code base that my team is discussing refactoring. There are lots of different entities and all use a common IContext object that hold an open database connection and user details.
This means ...
1
vote
1answer
25 views
Connect negative isDirty with a disabled class
Is there a way to refactor the following code to make it cleaner or is a {{#if}} the cleanest way to solve this?
{{#if isDirty}}
<button {{action 'save' this}} class="btn">Save</button>
...
0
votes
0answers
31 views
Javascript - Refactoring old framework
i need an advice.
Let's say i got old javascript framework (some messy core with plugins) without any documentation. I have to learn , documentate and then make refactoring on it. It's more or less ...
0
votes
0answers
25 views
Use JDEvAn and Code-Imp for code refactoring in java
I am assigned a project in code refactoring in java using tools JDEvAn and Code-Imp. The actual paper given for the task is "Automated refactoring using design differencing" by Moghadam/Cinnéide ...
0
votes
0answers
39 views
Code completion for file names in eclipse [closed]
Is it possible to get code completion for file names in Eclipse like you can in e.g. NetBeans?
Eclipse:
Netbeans:
Also, I can refactor filenames with automatic code changes In NetBeans, is that ...
1
vote
2answers
55 views
Is there any way to refactor this code or re-write it in a compact form?
I'm working on an android app that produces image effects on an image.
Below is the snapshot of my app:
As you can see, on the bottom - there is a horizontal scrollbar, and as the user touches one ...
1
vote
3answers
60 views
How to properly structure functions?
let's say we have a class with some methods in it, of which at least one is of rather complex nature:
class Example {
public function Example()
{
}
private function ...
1
vote
1answer
32 views
Convert standalone Javascript to widget
We have an 8,300-line Javascript application, which implements an interactive diagram for a hand of bridge. It's currently written with about 250 top-level variables, 250 functions, about 130 lines of ...
0
votes
1answer
23 views
Replacing use of a library with a wrapper library
We have a C++ solution (VC++ 2005) which makes extensive use of of a 3rd-party mapping library. We are creating wrapper libraries so that we can use alternative mapping libraries in our solution ...
0
votes
0answers
20 views
Refactor to use different entity lists
I have a function I am attempting to refactor, as I have about five methods that looks exactly like this. In a radgrid edit form I have both listboxes and comboboxes that have checkboxes. Essentially ...
0
votes
1answer
58 views
How do I reduce the code duplicate here? Surely I can do this with reflection or generics?
I am working with WPF and MVVM, and so have a lot of properties in my view models that are bound to stuff in the view. The majority of these properties look like this...
private DateTime ...
0
votes
1answer
22 views
Refactor annotation but keep old annotation name for backward compatibility
So I have a problem that I'm not sure is solvable well.
I have a library that has a method annotation
@Retention(RetentionPolicy.RUNTIME)
public @interface CallbackHandler {...}
For the next ...
0
votes
1answer
43 views
Method refactor in Intellij Idea and/or Eclipse
I have many classes (45 at least), each one has its own method to validate something that is repeated in all the classes, so I have the code repeated in all those classes, I'd like to have one method ...
0
votes
2answers
49 views
Refactoring with jquery [closed]
I am a newbie student and I am having a real tough time trying to figure how to refactor the following block of code with jquery. Basically this block of code is for a basic form mobile app that I ...
0
votes
1answer
37 views
Best Practices for Organizing Android Code
I have been coding an Android app that has a lot of code dedicated to it. As you can imagine, there's lots of case-driven code in there. Because most of Android callback functionality is based on ...
0
votes
1answer
16 views
If a method takes a particular type of object as an argument, should it return a new instance of that object?
I'm trying to decide which of the two tests are structured the best to determine how Repository.SaveFoo(x) should be written.
//version 1
[TestMethod]
public void Saving_a_new_Foo_results_in_new_id()
...
0
votes
3answers
23 views
Combining jQuery text() methods [closed]
I have the following HTML snippet from my form. jQuery is checking to see which radio is checked, and then using the text() method to change the text in my element. I'm sure there is a better, cleaner ...
0
votes
2answers
46 views
How to streamline if else for inheriting defaults in Rails
This code works, but I feel like there is a cleaner way to do this without all of the repetition:
def check_out_time
...
1
vote
0answers
16 views
Optimizing a django template full of {% regroup %} tags
I have a Django template full of nested {% regroup %} tags, and I have the feeling that it is one of the reason why it is so slow. Moreover, it is very complex to maintain like this. Do you have any ...
3
votes
3answers
75 views
Complex refactoring
Are there any good Java refactoring tools that could handle large-scale refactoring projects such as the one below. Obviously I would prefer free if possible.
I am working with a legacy project, most ...
0
votes
1answer
43 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 ...
0
votes
1answer
30 views
How to select a good name for classes, methods and objects in projects [closed]
I have a problem with naming my classes, methods and every thing in my projects.
when you want to select a name for your methods or classes which aspect of your class
is considerable for you.
For ...
0
votes
0answers
27 views
What will it take to make this miner work with new pools?
This might fit better at bitcoin.stackexchange but since it's so involved with JS I'll post it here.
If found this pretty slick https://github.com/jwhitehorn/jsMiner. It appears that it's using 100% ...





