3
votes
18answers
857 views
Best way to get rid of hungarian notation?
Let's say you've inherited a C# codebase that uses one class with 200 static methods to provide core functionality (such as database lookups). Of the many nightmares in that class, …
8
votes
7answers
779 views
Best practices for refactoring classic ASP?
I've got to do some significant development in a large, old, spaghetti-ridden ASP system. I've been away from ASP for a long time, focusing my energies on Rails development.
One b …
16
votes
13answers
1k views
ASP.NET MVC reminds me of old Classic ASP spaghetti code…
I just went through some MVC tutorials after checking this site out for a while. Is it just me, or does MVC View pages brinig back HORRIBLE flashbacks of Classic ASP spaghetti cod …
3
votes
8answers
269 views
How to refactor rapidly evolving code?
I have some research code that's a real rat's nest, with code duplication everywhere, and clearly needs to be refactored. However, the code base is evolving as I come up with new …
8
votes
3answers
210 views
Tools to find included headers which are unused?
I know PC-Lint can tell you about headers which are included but not used. Are there any other tools that can do this, preferably on linux?
We have a large codebase that through …
0
votes
4answers
113 views
Inline Scripting in Asp.net
Hi,
I wanna learn advanced and basic things about Asp.net inline scripting like
<img src="<%= Page.ResolveUrl("~")%>Images/Logo.gif"/>
or
<asp:Label ID="lblDes …
11
votes
10answers
518 views
Unravelling Assembly Language Spaghetti Code
I've inherited a 10K-line program written in 8051 assembly language that requires some changes. Unfortunately it's written in the finest traditions of spaghetti code. The program-- …
1
vote
7answers
339 views
Definition of spaghetti php?
Hey,
I've seen "spaghetti" thrown about a lot and I just want a clear explanation on what is spaghetti code and what isn't. Just because I'd rather not be doing it.
References in …
21
votes
20answers
1k views
Is there a way to avoid spaghetti code over the years?
I've had several programming jobs. Each one with 20-50 developers, project going on for 3-5 years.
Every time it's the same. Some programmers are bright, some are average. Everyo …
1
vote
12answers
530 views
How bad is this code?
I have inherited an online quiz application written in C# with these lines of code all over the place.
So how bad is this code?
What are the potential issues I could run into?
…
1
vote
3answers
333 views
Eval scripts in server side control property
how do i implement an eval script in a sever side control?
eg. <a runat="server" href="?id=<%= Eval("Id") %>">hello world</a>
