Tagged Questions
The code-cleanup tag has no wiki summary.
53
votes
8answers
10k views
Tool to identify unused css definitions
Are there any good tools to help identify unused css definitions in project? A bunch of css files were pulled in and now I'm trying to clean things up a bit.
14
votes
3answers
384 views
Is there any way to find unused css in a website?
Is there any way to find unused CSS in a website? I'm trying to clean up a project I just inherited.
12
votes
11answers
355 views
Clear and readable SQL code
I'm writing some SQL code with several subqueries and lots of joins everywhere, both inside the subquery and the resulting table from the subquery. We're not using views so that's out of the question.
...
7
votes
8answers
2k views
How to remove System.out.println's from codebase
We have a huge (old legacy java) code-base, where many files (around 5k) have System.out.println's. We are planning to remove them for cleanup/performance reasons. How can we write a script that will ...
6
votes
6answers
237 views
How to prevent null check before equals
I find stuff like this rather annoying and ugly in equals methods:
if (field == null)
{
if (other.field != null)
return false;
}
else if ( ! field.equals(other.field))
return false;
...
6
votes
3answers
85 views
Avoiding messiness with debug stuff in code
When I write something, half the effort tends to go into adding clear and concise debug output, or functionality that can be enabled/disabled when that something needs debugging.
An example of debug ...
6
votes
2answers
445 views
git - trim whitespace
I've accidentally put some whitespace in my initial commit - it shows up red in git diff --color. What's the best way to get rid of the existing whitespace and how can I avoid this happening again?
I ...
6
votes
4answers
176 views
What is a good HTMLcleanup tool?
I am working on a HTML file that is a total mess right now and wanted to clean it up.
What good tool is there out there to clean up HTML files making them nice and readable with good formatting? I ...
5
votes
2answers
62 views
What R# setting is reformatting this line?
VS2010 / R#5.1
I have this "line" of code:
With.Mocks(_mocks).Expecting(() => {
_fooServiceMock.Expect(x => x.FooMethod()).Return(fooMockData);
}).Verify(() => {
});
I perform a R# ...
4
votes
2answers
216 views
Get rid of Hungarian notation in C# code in automated manner?
Ladies and sirs,
I have a large codebase that uses Systems Hungarian for most variable names, which basically means I have lots of objQueue's, objCommon's, dtDataSet's et cetera.
Is there any way ...
4
votes
7answers
427 views
How to make this C++ code more DRY?
I have these two methods on a class that differ only in one method call. Obviously, this is very un-DRY, especially as both use the same formula.
int PlayerCharacter::getAttack() {
int attack;
...
4
votes
4answers
110 views
How to recognize that short code blocks can be refactored into something cleaner?
i have a bit of code that i wrote a few weeks ago (the code's purpose isn't so much important as its structure):
if (_image.Empty)
{
//Use the true image size if they haven't specified a custom ...
3
votes
2answers
65 views
Managing config files and code constants in a big project
I'm working on a huge C# codebase (~300 KLOC). The components of the system use config files scattered across the folder hierarchy. Values that are read from config in one place are stored in a ...
3
votes
2answers
128 views
How to clean up android project?
I used source code of an android app that we created in the past as a basis for another app (a lot of the functionality is similar, however about 1/3 of the functionality of the original app is ...
3
votes
2answers
82 views
Organizing code files/XML files for Android SDK
Can someone provide some strategies as to organizing my project so that it is clean? Say I have a bunch of activities; is it good to place them all into a separate package, while putting other classes ...
3
votes
6answers
141 views
Avoid null reference using c# possibilities
I'm trying to clean up a big handler method that show or not a the label on view.
The actual structure is something like:
if (Moo.Foo != null) {
Show(TrType, LabelType, Moo.Foo.DangerousNullRef ...
3
votes
2answers
229 views
What is the best way to remove dead code from your application?
I often feel that after iterating over my code for a number of times I am left with functions or classes or other lines of code in general which made sense in the previous revision but are not very ...
3
votes
3answers
181 views
Tool that lists all deprecated classes/methods that are no longer used anywhere?
I need to cleanup a some legacy code. Removing unused code is an important step.
Is there a tool that finds all deprecated code, removes all items which are still used somewhere and gives me a list ...
2
votes
6answers
78 views
How would you go about optimizing(no code repetition) Java code which has many functions of this type
Code I inherited has many transaction code methods of this form:
public void addCourseToCourses(String values)
{
try
{
conn.setAutoCommit(false);
}
catch (SQLException e)
...
2
votes
2answers
93 views
How to remove duplicate code (in general)? [closed]
In an OO language (e.g. but not limited to Java) how do you in fix duplicate code depending on the scope of it's occurrence? It's obvious that it depends on the very detail, but in general I would ...
2
votes
2answers
129 views
How can I better structure this code?
I have an lxml.objectify data structure I get from a RESTful web service. I need to change a setting if it exists and create it if it doesn't. Right now I have something along the lines of the ...
2
votes
1answer
271 views
Resharper Tip/Trick… is this possible?
How can I have Resharper convert code file like
using Stuff;
using Stuff.MoreStuff;
using Stuff.MoreStuff.EvenMoreStuff;
namespace CoolStuff
{
// src code
}
To
namespace CoolStuff
{
#region ...
2
votes
3answers
715 views
How to bulk cleanup imports in Java with eclipse?
On a generated project i 100s of warnings caused by unused imports and the like. Can i bulk cleanup those imports for all files?
1
vote
3answers
60 views
Using Partial Classes to manage code, good solution?
Books usually say that if the classes get too big to manage, rethink the implementation because it is quite possible that the design needs correction since classes have not been defined properly.
But ...
1
vote
1answer
56 views
Is there an automated way of fixing one line ifs in PHP?
I don't know if it's just me or not, but I am allergic to one line ifs in any c like language, I always like to see curly brackets after an if, so instead of
if($a==1)
$b = 2;
or
if($a==1) $b = ...
1
vote
1answer
24 views
jQuery Removing Duplicate Code - Easier Solution?
I am working on somethign where I have two input fields, one for a primary color and one for a secondary color. I am using JSColor so when you click on the input box a color picker comes up, and when ...
1
vote
1answer
86 views
Cleaning/Compacting multiple states represented by boolean variables
In an implementation, i have a lot of states, represented by boolean variables, in such a way that when a state is true, variable against that state is true, and many or all of the others are false. ...
1
vote
2answers
73 views
How do I create a new branch cleaning up the commits from another branch?
I have two branches, master and feature.
I finished working on feature, so this branch have a lot of commits, but I don't want to publish it as is. I want to create a branch called feature_clean ...
1
vote
1answer
38 views
How do I adjust the left margin on parameters in ReSharper/VS2010?
This is silly, but when I have something like this
SomethingStupid.Whatever(string a, string b, string c);
And then I break them off like this:
SomethingStupid.Whatever(string a,
string b,
...
1
vote
1answer
216 views
Is there a tool that can track unused code automatically
I currently have 6 different flex applications (widgets) that run on a main page.
They all depend on one common library project.
I am currently cleaning up the codebase quite dramatically and it is ...
1
vote
2answers
83 views
How to automatically remove private fields and methods in Java classes
I have a code generator which generates classes with a lot of private code like:
class A {
private void meth1() { ... }
private int var1;
private class SubA { private void meth2() {...} }
}
...
1
vote
2answers
228 views
How to customize Resharper's “code clean up” to change the documentation header rules in C#
I would like to use code clean up to automatically create the documentation headers in the following way:
/// <summary>
/// **Some summary.**
/// </summary>
/// <param ...
1
vote
1answer
91 views
Jquery: code works, but is ugly
var ProdWidth = Math.abs(parseInt(Product.css('width')))
+ Math.abs(parseInt(Product.css('marginLeft')))
+ Math.abs(parseInt(Product.css('marginRight')))
+ ...
1
vote
2answers
75 views
Method (e.g. via bash script) to turn php array indexes currently using constants into array indexes using single quoted strings?
I have a huge pile of php scripts with lots of constants being used in place of proper single-quoted array strings.
For example:
$row_rsCatalogsItems[Name]
(bad)
instead of
...
1
vote
1answer
230 views
Java Code Cleaner
Anyone recommend a good code cleaner for Java. If it had a Netbeans plugin, that would be awesome. Just looking for something simple.
Put variables and functions in order based off scope.
Format the ...
1
vote
3answers
220 views
Is it possible to sort code via Resharper?
CodeRush has this nifty plugin called cr_ClassCleaner that allows me to sort the elements in the class (e.g. methods, private variables, etc...).
Can Resharper 5.x do this, either via the product ...
1
vote
1answer
107 views
Efficient way to copy a collection of Nodes, treat them, and then serialize?
I initially thought a regex to remove YUI3 classNames (or whole class attributes) and id attributes from a serialized DOM string was a sound enough approach - but now I'm not sure, given various ...
1
vote
4answers
93 views
Does anyone know how to write this SQL If statement better?
I have this IF statement in my Stored Procedure:
if ((@someParam = 'C') OR (@someParam = 'I' AND @SomeOtherParam <> 2 AND @SomeOtherParam <> 4 AND @SomeOtherParam <> 5))
My ...
1
vote
2answers
1k views
What are VSSVER.SCC files, and can I delete them?
I've inherited a ASP.Net 2.0 (File System) Web Project from a client, where a few different companies have worked on this project in recent years. The project has been handed from one company to the ...
1
vote
3answers
160 views
Cleanup Perl code: my $export = $doc; $export =~ s:\.odt:\.pdf:;
Perl code fragment:
my $export = $doc;
$export =~ s:\.odt:\.pdf:;
How would this be written cleaner? Not simply what are 900 other ways to write it, TMTOWTDI.
1
vote
3answers
117 views
Determining which PHP source files are not used
I have a large web app, and I think there are a bunch of old files that are no longer being used, is there an app which can tell me what these files are?
1
vote
3answers
1k views
Code Formatter: cleaning up horribly formatted jsp code
So I am working on a jsp/servlet that came to me and I'm looking at the jsp file and it is just a jungle of jstl tags, java code and html thrown together. At first it looked like someone ran the ...
1
vote
5answers
151 views
Tool to remove hanging code
This question is in continuation to http://stackoverflow.com/questions/979129/. It would be great if there is some tool that would allow to remove the hanging code (code not being used). Examples ...
0
votes
4answers
30 views
creating a table in jQuery
I need to create a table from an array recieved with an ajax call. I am creating a 4 column table and currently using...which works but looks awful and wrong. Is there a cleaner, easier to read way to ...
0
votes
1answer
24 views
App / script for cleaning up SVG files?
I'm looking for an app or a script (web service) that can clean up SVG files, by that I mean removing possible copious data such as metadata. When creating the SVG file I've used standard settings in ...
0
votes
0answers
89 views
Rewrite code for MVC 3 tabs more efficiently?
I need help rewriting this code efficiently, code in the tab are very similar. I want to create a generic tab to reuse? here's my code:
This is the view (calling partial views in between jquery ...
0
votes
3answers
56 views
Avoiding same key error in dictionary with a suffix
I can't have the same key. But a simple (and effective) solution is put a suffix after key.
But as I'm in a foreach, I was wondering a fast and clean way to add a number suffix to duplicated keys.
...
0
votes
1answer
43 views
How do I clean up my sub menu code?
I am trying to slide down a sub menu when hovering over a#about and keep the sub menu visible until hovering over another option.
I also want to hide the sub menu if not hovering over a#about or ...
0
votes
2answers
73 views
Sort “usings” directive by ReSharper Clean-up
How to setup ReSharper to call "Sort usings" in class?
0
votes
2answers
38 views
Is there a way to remove assemblies and namespaces declaration in asp.net mvc web.config file?
i'm trying to make an empty asp.net mvc 3 application with razor engine(as much empty as possible)
The one that VS2010 creates doesn't suit me, because there's too much mess in web.config files(+ ...