All Questions
Tagged with source-code coding-standards
7 questions
4
votes
4
answers
345
views
Measuring the success of coding dojos
I'm interested in starting coding dojos at the company I work at (during or after working hours). I think it will help to spread knowledge on how to write clean, concise and consistent code. I've been ...
0
votes
2
answers
1k
views
What to name a class that acts as a container for a collection but isn't a collection itself? [closed]
I have an object that acts as nothing more complicated than a data store for a collection of items. I do this because it lets me bind the data to a single object, which I can store in the Unity (game ...
1
vote
2
answers
249
views
Unit testing similar wrappers - or single unit test is enough?
I'm working on a service which has a lots of dependencies. The way how I call them is I'm wrapping each service client around an Adapter. Like this (I'm using Java):
public abstract class AdapterBase&...
12
votes
3
answers
9k
views
Why do we not prefix Enums, Abstract classes and Structs?
The C# community has so ubiquitously used the "I" prefix to denote an interface that even the most inexperienced programmers know to use it.
Why is it then that we do not prefix enums, abstract ...
12
votes
3
answers
8k
views
Should my source code be in UTF-8?
I feel that often you don't really choose what format your code is in. I mean most of my tools in the past have decided for me. Or I haven't really even thought about it. I was using TextPad on ...
6
votes
5
answers
7k
views
Why do programmers use one-based indexing for line numbers in source code? [duplicate]
Possible Duplicate:
Why isn't the line count in Visual Studio zero-based?
Why isn't the top line in a source code file labelled line number 0?
i.e. in a source file which was 10 lines long, ...
1
vote
7
answers
268
views
btnBack vs backButtonField [closed]
For blackberry GUI developement. I am using the name convention like backButtonField and some of my colleagues are using btnBack.
But sometimes I stuck with the names like loginVerticalFieldManager ...