This is a list of books currently on my To Read shelf... literally. I do not suggest or anti-suggest any of them at this time as I haven't read them yet.
Current Efforts:
Blue Parabola, LLC
HubAustin
web2Project
PHP'ers:
Cal Evans
Eli White
Elizabeth Naramore
Joe LeBlanc
Matthew Turland
Matthew Weier O'Phinney
Planet PHP
Tony Bibbs
Business/mISV:
Bob Walsh
Eric Sink
Joel Spolsky
Micah Baldwin
Paul Graham
Past Projects:
CodeSnipers
HOBY
Judicial Watch
mobile FoxNews.com
NRTW
Great Tools I use:
Drupal
GitHub
NetBeans for PHP
phpUnit
Subversion
Zend Framework
This is not the home of dotProject or web2project. It is the home of CaseySoftware, LLC. Any dotProject support questions should be referred to their support forums.
An interesting discussion is going on over at Joel on Software forums.
It all stems from Joel's premise of Don't Rewrite the System from Scratch! He talks extensively about developers' need to develop and not just tweak. This seems accurate because it seems that half the time I look at a block of code, I think "man, this needs to be rewritten". In fact, I've never known a developer who didn't make significant modifications to a block of code the second they're in charge of it.
Why is this? It's quite simple. Developers think in terms of order and style with their personal style often being mistaken as order. Therefore, when most see a different style, they immediately assume that the code is out of order and work it to fit their order... which is actually just a style.
For example, one of CaseySoftware's current customers (name withheld due to NDA) requires implementing upgrades, support, and maintenance for a major asp-based site. Over the past two years, there have been at least four different developers of at least two different nationalities of at least three different skill levels hacking at a single codebase. Wow. My first impulse when looking at the system was "oh, this is crap. Time to start over."
Luckily since the site is mostly operational and can handle little downtime, I decided to start by refactoring. After a bit of digging, I found numerous include-files were duplicated verbatim upwards of four times. I found that information such as "Online Status" of users was stored in the database but no garbage collection ever cleared it. I found a network of includes that included other includes that included other includes. I found raw sql in the asp intermixed with obtuse stored procedures and even worse views.
My first step was to start minimizing the duplication between the includes and start breaking them into a simpler set: inc_core, inc_payment, inc_email, and inc_maint with inc_core handling all of the other includes.
Have I completely rewritten some of the code? Yes. Have I scrapped it all? Of course not. Am I done? No way.
So far, after approximately 30 hours of work:
* the codebase has been trimmed by 15%;
* the file count has been trimmed by 5%;
* the "include net" has been trimmed to a depth of 2 from a *known* depth of 5;
* and the database size has been trimmed by nearly 50%.
No profiling has been performed on the before/after response time of the system, but it seems faster.
Now the customer just needs to get their hosting straightened out...
I've encountered a similar si
I've encountered a similar situation here, working on a client web site. In my case though the client is change resistant, so i'm forced to actually add to the mess... just as an example, he has two css files, one 5k and the other 8k that contain myriad of classes and global style overrides (TD, BODY), so instead of defining in my section of the site just the styles that i use, i also have to override the changes from his styles...
Post new comment