Refactoring is a disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior.
2
votes
1answer
19 views
best way to refactor hardcoded links in rails update methods?
Having some "complex" routing, what would be a good way to clean below hardcoded links up and make them named routes? I have these kind of constructions on several locations and want to get them out ...
0
votes
1answer
24 views
Comments from Interfaces to Implementations (resharper)
Is it possible to write all the comments from interface fields/methods to their implementations via resharper or another tool? I know this is working when implementing an interface to a fresh class, ...
6
votes
3answers
72 views
How to write a probability algorithm that can be maintained easily?
Supposed I want to create a game. At the start of the game, the player will pick a monster.
It's easy to picks the monster fairly.
// get all monsters with equal chance
public Monster ...
0
votes
2answers
33 views
Named function and anonymous function having different effects
My problem:
I'm refactoring some of my code, and giving names to some long anonymous function. Unfortunately, it breaks the app in ways I don't understand.
The code
Anonymous version works fine,
...
0
votes
1answer
25 views
Javascript application
I was developing an application for a liquor store. It has to calculate the total business done in that day by taking the OB(opening balance) SB(stock Balance) and SL(Sold bottles) as input and ...
2
votes
4answers
42 views
Iterating with IEnumerable vs List
I just found a couple of c# code refactoring examples on the internet, and stumbled upon this particular piece of code.
Can anyone explain to me, why Method2() would be better than Method1()?
Method ...
1
vote
1answer
56 views
What could you say about such DB working?
I'm reviewing some code of guy who have in his WCF Service:
[ServiceContract]
public interface IDBService
{
[OperationContract]
void DBUpdateInsert(string sql, params string[] parameters);
...
0
votes
1answer
30 views
how to dry up 2 almost identical methods that are used in almost every controller?
In most of my rails controllers I use 2 methods to set layout and sub_layout
Feels messy, lot of repeat == not dry ( methods in almost every controller).
Im looking for some constructive suggestions ...
0
votes
1answer
21 views
rails custom error exception implementation is bloated, suggestions for drying it up?
In application_controller.rb there is a method to render 404 errors with a custom layout and partial.
application_controller.rb:
unless Rails.application.config.consider_all_requests_local
...
1
vote
2answers
42 views
Store key,value pair in YAML and use to populate a Rails form :collection?
How would one store a list of languages with there language code into a yaml and popuplate a :collection in rails form with? I now have below example but fails, any suggestions on what would be best ...
0
votes
1answer
28 views
Rails, Is it possible to pass param from controller to a model method?
In my models I have several similar named methods to enable/disable certain features, like:
def invisible
self.update_attribute(:invisble, false)
end
def visible
...
0
votes
1answer
18 views
better way to refactor/ rewrite messy method that checks many params[:action]?
I have several methods inside my application_controller.rb because I need to be able to call them from anywhere in my app. Also I do lots of param checks to see if should allow/disallow the method.
...
0
votes
1answer
32 views
refactor rails if else statement with to a single line with return?
Im refactoring my older code parts, have lots of returns with multi line like:
if ...
return false
else
return true
end
How could one refactor to use a single line and return true or false?
2
votes
2answers
44 views
How to avoiding calling redundancy in context of variable assignment?
I offten (like at the moment) come to the point to write c# (or vb.net) code like this:
someObject.field_1 = doSomething(
anotherObject_1.propertyA,
...
2
votes
2answers
45 views
Ruby on Rails - RSpec - Refactoring a lambda style test
I'm pretty sure I can make this test cleaner, been searching all over but can't crack it. The test passes but I would like to refactor.
describe "as an authenticated user that made the offer" do
...
1
vote
2answers
248 views
Android Studio Rename Package
How to rename package in new IDE Android Studio, based on intelijj ?:|
Is there any automatic refactoring included?
I want to make bulk refactoring but I don't know how. I worked 2 years with ...
0
votes
0answers
14 views
Ancient ASP.NET custom control refactoring
I have here a custom control that is about 10 years old. It’s huge and complex. It takes as the data source list of fields and the sections (tabs). Fields could be different types (from simple input ...
0
votes
0answers
20 views
Steps to fix Fan-Out Complexity checkstyle
Is there some strategy (ordered steps) to fix Fan-Out Complexity checkstyle.
There are many refactoring method - which of them are quite appropriate for such problem?
Thanks!
2
votes
2answers
138 views
Refactoring into ReactiveCocoa
So I have just recently started with ReactiveCocoa, and I figured the best way to learn would be just to jump right in and start refactoring some existing code that I have. I was wanting to get some ...
0
votes
3answers
67 views
How to get rid of semantic duplication [closed]
I am breaking my head with how to get rid of semantic duplication(Code that is syntactically the same but does different things).
I can't find anywhere a post or something that mentions a bit how to ...
0
votes
2answers
32 views
is there any automated refactoring tool that produces a unique android application?
I have a project template , when i want to produce a unique application manually to update it to the market. I will follow these steps :
Right click in the package name
Refactor, then Rename
...
0
votes
1answer
25 views
Working with an unusable codebase
Even though this is not a real code question I still ask it here. Because I wonder: how do you guys work in a codebase that is SO BAD that every little change breaks multiple features and classes? ...
1
vote
1answer
38 views
How can I find unused symbols using cscope?
I am doing a little code refactoring. Usually, after I rewrite/reimplement everything, I do a clean-up first. This means, I remove unused libraries, unused functions etc.
My question is: How can I ...
0
votes
2answers
48 views
Highlighting all occurrences of a search string in Eclipse Java editor
If you search for a String in Netbeans Java editor, it automatically highlights all occurrences of that string.
But, how can I achieve this feature in Eclipse?
(I checked Preferences > Java > Editor ...
2
votes
1answer
90 views
What is this code doing and how can I write it more simply?
[:initial_amount, :rate_increase_amount].each do |method|
define_method method do
self["#{method}_in_cents".to_sym].to_f/100 if self["#{method}_in_cents".to_sym]
end
define_method ...
0
votes
1answer
24 views
How can I make this Ruby block extensible?
I need to adapt the following block to create montages based on @item.type. For this to happen, the block contents must be change on a per @item.type basis.
list = Magick::ImageList.new(@item.images)
...
2
votes
3answers
72 views
Can I have auto-properties in a COM Interface
I currently have an interface for a COM component that is something like this:
[ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("aa950e58-7c6e-4818-8fc9-adecbc7a8f14")]
...
4
votes
1answer
66 views
Is “Data class” really a code smell?
Fowler's book Refactoring lists "Data Class" as a code smell. Yet when unit testing a method, passing in value objects, e.g. data transfer objects, make testing much easier than trying to set up or ...
0
votes
1answer
33 views
Can Eclipse (or any IDE) introduce type parameters to an existing type
This is the exact opposite of how can I remove generic type from class using refactoring.
I want to introduce a type parameter to an interface. It is used quite extensively, so not very practical to ...
2
votes
2answers
41 views
Is it possible to change method signature in AspectJ
My question: is it possible to change method signature in AspectJ?
For example, given class:
Class Foo {
@Test
public void shouldReturnOne(){}
}
Change into:
Class Foo {
@Test
...
0
votes
3answers
49 views
how can i change the package name programmaticly in android?
I was thinking about accessing the Manifest file from activity ,and change the package name , is there any way to achieve that ? or any other way to refactor the package name programmaticly ?
...
1
vote
2answers
39 views
How to simplify if isset $var else $var = ' ';
If I want to repopulate a form with the $_POST values for example (there are other applications for this problem, but that's the easiest) I have to always check if the $_POST index is set, before I ...
1
vote
1answer
36 views
how can i make the project refactoring programmaticly in java?
I have a template project that generates a signed APK using ant script , each APK should be uploaded to the market with different package name which requires refactoring the packages for the whole ...
0
votes
1answer
31 views
Is there a way to log read/write access to a specific column in MySQL?
Is there any way in MySQL to log any query that accesses a certain column in a table?
Purpose:
I need to do this for refactoring purposes - I have to change the structure of the database but because ...
1
vote
0answers
92 views
How to remove redundant codes?
Am not sure I'm asking in the right place. I am using the Open Xml Productivity Tool 2.0 and after generating codes, I usually have so much redundant code like:
Bold bold1 = new Bold();
Bold bold2 = ...
1
vote
1answer
47 views
Does a code that combines single() with yield make any sense?
I came across a code which should return the single object expected in a list, this code has an iterator block which yields the found items, i have simplified the case in the following example:
...
-1
votes
0answers
46 views
i want to improve my program — what questions could/should i ask myself during the re-write? [closed]
tl;dr - i want to adopt good coding habits now. the below code was written under tight constraints. we don't do assignment post mortems in class to discuss "real world" best practices -- we just get ...
0
votes
4answers
97 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 ...
4
votes
1answer
49 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
1answer
40 views
Refactoring 3 functions [closed]
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
45 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
4answers
70 views
Avoid boolean flags as an attribute
First of all I wanna say I don't have much experience in refactoring and don't know if this is off-topic.
I'm working with given code where a lot of boolean attributes are used, which I would like ...
0
votes
0answers
28 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
39 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
2answers
64 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
35 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
37 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
82 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
13 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
41 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 ...




