Maintainability refers to the nature, methods, theory and art of maximizing the ease with which an asset may be sustained, modified or enhanced throughout the duration of its expected useful life.
0
votes
1answer
28 views
returning from multiple points in a function
This is more or less a readability, maintainability and/or best practice type question.
I wanted to get the SO opinion on something. Is it bad practice to return from multiple points in a function? ...
2
votes
0answers
44 views
Is switching within a log wrapper evil?
This is one of those questions that really wouldn't be worth anyone's time under normal circumstances but...
The built in Android logging framework uses seperate methods for log messages of different ...
0
votes
2answers
52 views
How to make your PHP code more concise? [closed]
I found PHP to be quite hard to maintain because its syntax is quite lengthy. However sometimes there happens to be a more concise way of coding something which makes the code more readable. Therefore ...
-1
votes
2answers
49 views
jQuery - Improving code and eliminating repetition [closed]
I have a series of calls to various jQuery methods and I was just wondering if there was a way to clean this code up, turn it into a function that I pass the selectors into, or anything else that ...
1
vote
2answers
55 views
How can I maintainably determine sizeof(struct …)s?
Say I have a structure:
struct myStruct
{
int a;
short b;
char c;
};
In Windows, MSDN states that int takes 4 bytes, short takes 2 bytes and char takes 1 byte. This totals up to 7 ...
1
vote
3answers
57 views
C#: Implement Abstract Base of An Interface With Minimal Duplication?
I often find I need the following:
public interface IMyThing
{
void Function1();
void Function2();
void Function3();
void Function4();
void Function5();
}
public abstract class ...
0
votes
1answer
34 views
Adjust colors in vimrc or rather in the color scheme itself
In my case I do use the solarized color scheme. Until now I used to override certain color properties in my vimrc. But the number of adjustments seems to grow over time. Especially I tend to adjust ...
0
votes
0answers
13 views
“Handles” and global variable avoidance
I've got this program where I'll need to be able to serialize large, complex structures which may contain pointers to different objects (it's a game, where you need to save and load the game). But ...
2
votes
1answer
98 views
Maintenace Tasks - Simple PHP files, microframework or Symfony2
I have several maintenance tasks which I need to update / rewrite and I'm unsure of the best approach to take.
Current the maintenance tasks are flat PHP or Perl scripts and I could use the same ...
5
votes
2answers
648 views
Using Named Immediately-Invoked Function Expression (IIFE) instead of comments
What are the pros and cons of utilizing Named IIFEs within JS code to describe and group related code?
I've been using this "pattern" to lend structure to my more procedural code that gets executed ...
-2
votes
1answer
293 views
black screen when turning my samsung laptop on and no boot options…please help i'm tired
my laptopb is samsung notebook np300e5x
cpu : core i3
main memory : 4G
hard drive : 500GB;
GPU : Nivida GT 620M
i bought that laptop and it was fine, high capapility and high performace, i'm ...
2
votes
2answers
37 views
Maintainable mocks
Mock objects introduce a good approach to do deep behavior testing of some program unit.
You just should pass mocked dependency to the tested unit and check if it works with dependency as it should ...
0
votes
3answers
54 views
CSS - styles for unused elements? [closed]
Should I include 'default' styles in my stylesheet for elements, that aren't even used on my page?
For example, when I only use h1, h2, h3 and h4, do I really need to add styles for h5and h6? Or when ...
2
votes
1answer
51 views
Should we always eliminate calculated attributes, even when it is a critical and complicated calculation?
The "third normal form" of database design asks you to remove functional dependencies. It seeks to eliminate redundancy, removing from a table any attributes (fields) that can be calculated from the ...
1
vote
2answers
114 views
Python loops vs comprehension lists vs map for side effects (i.e. not using return values)
TL;DR Which is the best?
1.- [r.update(r.pop('some_key')) for r in res if r.get('some_key')]
2.- map(lambda r: r.update(r.pop('some_key') if r.get('some_key') else []), res)
3.- map(lambda r: ...
1
vote
3answers
65 views
What is more performant, multiple Arrays or one Array containing multiple arrays?
What will be more performant and ressource friendlier?
To use
$array1=Array();
$array2=Array();
$array3=Array();
or:
$arr=Array();
$arr[] = Array();
$arr[] = Array();
$arr[] = Array();
And what ...
3
votes
2answers
175 views
APL readability
I have to code in APL. And since that code is going to be maintained for long time, I am wondering if there are some papers/books which contain heuristics/tips/samples to help in designing clean and ...
4
votes
4answers
176 views
Design pattern for parameter settings that is maintainable in decent size java project
I am looking for concrete ideas of how to manage a lot of different parameter settings for my java program. I know this question is a bit diffuse but I need some ideas about the big picture so that my ...
5
votes
5answers
159 views
Proper use vs. over use of *args in Python
I've been looking at the source code for an open source package that I'm using. Nearly every function uses *args instead of named arguments. I'm finding it hard to follow and use the code, because ...
0
votes
0answers
51 views
How to maintain incremental obfuscation?
We are using Zelix to obfuscate different components of a large Java software.
Until now we were excluding many parts from name obfuscation in order to avoid any type of incremental obfuscation ...
0
votes
0answers
44 views
Is there an updated Unmaintainable Code Mainifesto? [closed]
After reviewing How to Write Unmaintainable Code, I noticed that it is a bit outdated, and not some of the information is not applicable to newer languages and frameworks such as Ruby on Rails.
Is ...
3
votes
1answer
149 views
Some questions about CQRS
I am currently researching if CQRS can be applied when building a particular system and have some questions I cannot easily find answers for.
Command availability/validation
What user can do with ...
6
votes
5answers
253 views
How do I copy a list without using too much memory?
This came up in a code review and there was some disagreement on what to do. It involves a function that converts one type of array of objects to another.
The complaint was that you are doubling the ...
1
vote
1answer
41 views
Is it better to return values or to write them directly on a given output argument?
I was reading this pull request on dablooms
To top it off, Murmur doesn't return the hash value on the stack/registers but writes it directly to a provided buffer. This makes it exceedingly easy ...
0
votes
2answers
26 views
Store Redundant Info vs. Repeated Conversions
Is it preferable to store redundant information, (which can be otherwise generated from existing data,) or to instead convert the existing data each time you need access?
I've simplified my specific ...
1
vote
2answers
134 views
Unit Tests maintainability and factories
EDIT: I've decided to ditch the idea completely because while it's nice to use the same method to create my instances I'm giving up for other things and complicate the problem.
In my Unit Test ...
1
vote
4answers
169 views
Declaring variables and functions, in what order?
Context
I'm learning how to code in javascript consistently, readably and maintainably.
I found nothing about the order of declaration of variables and functions.
Example:
var example = {
A: ...
1
vote
1answer
85 views
What data structures can be used to enhance code maintainability?
The following python code works but the maintainability is quite poor.
However I'm failing to see a better way to implement the code to improve maintainability.
extraval = ""
if aline[0:1] == "-":
...
0
votes
1answer
39 views
How should I structure this data in my database?
So I've got this feature I'm building to allow users to save profile's to a list. Kind of along the lines of a playlist with a name of the list, the user's id and the unique profile data as an array ...
0
votes
4answers
357 views
store data in asp.net pages (Not Sessions)
I am creating 4 asp.net pages. first three pages have 'CONTINUE' button and last page has 'SUBMIT' button. I am not allowed to use Sessions to store first three pages data. and i need to use 'BACK' ...
4
votes
5answers
87 views
What is the best way to persist a users choice?
In my application I want to prompt a user about a new feature with some kind of a dialog the first time they visit the screen. And on a subsequent visit this dialog is not shown.
The obvious solution ...
2
votes
2answers
60 views
How to make life easier for the future coder
I'm writing documentation for a lot of code and after doing about a third I thought it would be a good idea to have a template for how to describe a function or a subroutine.
I'm doing this for the ...
1
vote
3answers
97 views
Regenerating Querying Database
The site that I own has a simple CQRS architecture that is working well. An event is published and picked up by various subscribers, one of which keeps the reporting database in sync [in RavenDb].
...
4
votes
2answers
255 views
Code Analysis AvoidExcessiveComplexity - Just Setting Commands
I have a WPF form with 16 buttons on it. When my view model initializes, I need to set all 16 as RelayCommand objects. This is all my Initialize() method does, yet that causes the code analysis error ...
3
votes
6answers
113 views
How to make this object more maintainable?
For example, I have something like this:
User
-FirstName
-SecondName
-Gender
and the VIPUser, which is the subclass of User
VIPUser extends User
-GiftNum
-Birthday
But suddenly the application ...
1
vote
3answers
97 views
How does relying on type inference affect code maintainability?
Although the examples in this question are in Visual Basic.NET and Java, it's possible that the topic may also apply to other languages that implement type inference.
Up until now, I've only used ...
7
votes
4answers
226 views
Is there a better design option?
Disclaimer: I would love to be using dependency injection on this
project and have a loosely coupled interface-based design across the board, but use of dependency-injection has been shot down in ...
4
votes
3answers
231 views
Code Quality - prefer quantitative measures over qualitative guidelines?
Over the years in many code reviews, I opted for the quantitative code quality measures over qualitative guidelines. For example, rewrite the code if Cyclomatic complexity cc is greater than 50 ...
4
votes
3answers
328 views
How to combine sets of Images, Strings, and Integers, in an easy to maintain format
So, I'm trying to figure out the best way to combine many data types together. Internal to my code, I'm creating a class. Externally, I want to have a single place to go to manage to following types ...
3
votes
3answers
2k views
Simplify Overriding Equals(), GetHashCode() in C# for Better Maintainability
I find my self overriding Equals() and GetHashCode() frequently to implement the semantic that business objects with identical property values are equal. That leads to code that is repetitive to ...
2
votes
1answer
117 views
What books/websites should i read to learn to write readable and maintainable C code? [duplicate]
Possible Duplicate:
The Definitive C Book Guide and List
Good open source code for C++
I started learning C++ over 2 years ago. Since then, i went back and learned C, among other ...
0
votes
1answer
50 views
What is the ideal way to call an overloaded method based on an object that may be of one of several different types?
For my WPF view, I have several objects that implement a single interface for display purposes. When one is selected, I want to call a certain method based on the type and options chosen on the view. ...
2
votes
4answers
80 views
How do people edit their websites later? [closed]
I'm making a website that needs to be maintained and have updates on things daily, but the people who are using the site and maintaining it can't code at all.
do web designers usually make some sort ...
1
vote
3answers
107 views
when (not) to store a part of a nested data structure into a temporary variable — pretty/ugly, faster/slower?
What's the best way to read multiple numbers/strings in one array/struct/union, which itself is nested in one or more parent arrays/structs/unions?
1st example without temporary variable:
printf("%d ...
0
votes
1answer
45 views
Program to scan to code files for diffrences?
Is there any program that will scan two code files, compare, and show you what is different between them. I need such a system as I am building a website using plugins that are regularly updated, ...
1
vote
1answer
707 views
Context Menu inheritance in WPF
I have TreeView which contains different item types. Item Styles are defined over a custom ItemContainerStyleSelector property.
My styles are all sharing a base style and only item specific stuff ...
1
vote
3answers
61 views
How do I make an easy-to-update makefile?
My makefile looks something like this:
FOO_OBJECT_FILES := $(OBJDIR)/Foo.cpp.o
BAR_OBJECT_FILES := $(OBJDIR)/Bar.cpp.o $(OBJDIR)Bar.c.o
ALL_OBJECT_FILES := $(FOO_OBJECT_FILES) $(BAR_OBJECT_FILES)
...
0
votes
2answers
94 views
WPF: Can styles be used to format a user control for two different scenarios?
I need to show a similar-looking dialog in two different places in my application, one place as a modal dialog box and one place embedded into another menu.
From my limited understanding of WPF, it ...
4
votes
4answers
168 views
How to avoid a switch block with 300 cases?
I am trying to add 300 Challenges into my program, but only display them if the CompletionValue.IsChecked = false;
If you were creating this program. How would you store the Challenges?
I am using ...
27
votes
9answers
712 views
managing document.ready event(s) on a large-scale website
NOTE: I have now created a jQuery plugin which is my attempt of a solution to this issue. I am sure that it could be improved and i've probably overlooked lots of use cases, so if anyone wants to give ...


