3
votes
8answers
278 views
from X import a versus import X; X.a
This is one of those semi-religious Python questions that I suspect has well reasoned responses lurking in the community. I've seen some Python programmers use the following style …
6
votes
6answers
143 views
How to prove my stakeholder and manager my software works?
What do software engineers encounter after another stressfull release? Well, the first thing we encounter in our group are the bugs we have released out in the open. The biggest p …
1
vote
2answers
327 views
Maintainability Index
I have come across the recommended values for a Maintainability Index (MI) as follows:
85 and more: good maintainability
65-85: moderate maintainability
65 and below: difficult …
3
votes
6answers
82 views
When Refactoring a project to improve maintainability, what are some of the things to target?
I've got a project (about 80K LOC) that I'm working on, and I've got nearly a full month of luxury refactoring and feature adding time prior to release so long as I'm careful not t …
2
votes
7answers
691 views
CakePHP or CodeIgniter Longterm Upgrade / Maintainability?
Hi All,
I am deciding on a framework to try out for PHP and have narrowed it down to CakePHP and CodeIgniter.
I have a couple questions for any of you who have used or are famili …
14
votes
16answers
559 views
Design of an Alternative (Fluent?) Interface for Regular Expressions
I've just seen a huge regex for Java that made me think a little about maintainability of regular expressions in general. I believe that most people - except some badass perl monge …
5
votes
10answers
251 views
Should I use Resharper to tidy up other peoples code?
I use Resharper at work. Some of my colleagues do not.
When I open some code that has been written someone who doesn't, it is immediately obvious by the amount of orange on my sc …
1
vote
7answers
168 views
What’s the cleanest way to write a multiline string in JavaScript?
It doesn't really have to add newlines, just something readable.
Anything better than this?
str = "line 1" +
"line 2" +
"line 3";
1
vote
3answers
94 views
Are the MS MVC framework and jQuery suitable for a long-lived application?
I'm working on a web-based application that is intended to have at least a 6 year lifetime. Once the application is delivered, chances are that it won't be modified during that ti …
6
votes
5answers
181 views
Maintainability of Java annotations?
My project is slowly implementing Java annotations. Half of the developers - myself included - find that doing anything complex with annotations seems to add to our overall mainte …
4
votes
11answers
427 views
One database or many?
I am developing a website that will manage data for multiple entities. No data is shared between entities, but they may be owned by the same customer. A customer may want to mana …
27
votes
28answers
2k views
How to overcome the “Everyone else’s code sucks” attitude?
I'm the only programmer at work. A result of downsizing, I have to work on programs that have been created/maintained by many different past programmers. When I look at the code …
0
votes
7answers
120 views
For loop construction and code complexity
My group is having some discussion and strong feelings about for loop construction.
I have favored loops like:
size_t x;
for (x = 0; x < LIMIT; ++x) {
if (somethin …
0
votes
1answer
114 views
Drupal: updating with Drush doesn’t change update status
I've updated my drupal installation and drupal modules, but admin/reports/updates says that Drupal version is still 6.12.
To update drupal I ran
- drush updatecode
- drush updatedb …
2
votes
7answers
172 views
maintaining class library assemblies utilized by multiple projects.
Okay, so here's the scenario.
Project A has a class library developed for it (lets call it MyLib). I release project A (in house project) with version 1 of MyLib.
I begin develo …
