Tagged Questions

0
votes
5answers
142 views

Right way to style brackets? [closed]

Possible Duplicate: Formatting of if Statements Does convention state I should style my brackets like this... if(foo == bar) { //Do stuff } ...or is it fine to do them …
5
votes
3answers
82 views

is it acceptable to use ThreadPool in a library?

is it acceptable to use ThreadPool in a library? because that obviously might cause some unpleasant problems if the user of your library is using ThreadPool as well (due to Thread …
1
vote
2answers
102 views

Meaning of “@far int* @near IntegerPointer;”

I have the following definition. far int* near IntegerPointer; Does this mean, a pointer placed in 'near' memory pointing to a integer placed in far memory area. Can anyone ple …
162
votes
44answers
7k views

How do you handle poor quality code from team members?

I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my …
1
vote
7answers
149 views

C# Coding Standards Tool

Hi. Is there a Visual Studio plug-n or add-in which allows you to check code formats and conventions. This would include checking the indention, spacing,line spacing, casing of fun …
6
votes
7answers
227 views

How long should SQL email fields be?

Hi I recognize that an email address can basically be indefinitely long so any size I impose on my varchar email address field is going to be arbitrary. However, I was wondering w …
1
vote
9answers
159 views

Prefixing database table names

I have noticed a lot of companies use a prefix for their database tables. E.g. tables would be named MS_Order, MS_User, etc. Is there a good reason for doing this? The only reason …
5
votes
8answers
157 views

Variable naming and team members who speak another language

I work with several developers in India and one of our biggest difficulties is their naming of variables. At first I was very frustrated and couldn't understand why they wouldn't j …
1
vote
2answers
74 views

Graph taxonomy

Hey, Knowing an edge is defined by both initial and final vertices, How do you call edges coming from and to a vertex ? For now, I name those incoming and outgoing. Thanks.
0
votes
3answers
105 views

Username or User name and email or Email or e-mail: what should be used? Which is correct? [closed]

In login forms, what are the correct (or most common) words: Username or User name? And also: email, Email or e-mail?
1
vote
13answers
209 views

How would you symbolise ‘change’ ?

Because of a space-issue I have to make 'single-character-links' for crud actions: In characters I would symbolise: 'delete' with character x 'add' with + … How would you symbolis …
1
vote
1answer
178 views

Java naming clash between method variable and package names

I have some classes generated from WSDL files by the Axis Framework. In one of these classes, there is a generated method public com.initechsystems.www.initech7.initechbo.Organiz …
3
votes
10answers
1k views

Naming convention for VB.NET private fields

Is there an official convention for naming private fields in VB.NET? For example, if I have a property called 'Foo', I normally call the private field '_Foo'. This seems to be fr …
2
votes
3answers
110 views

Should I be calling each of my MVC views Index.aspx ?

If I'm not mistaken - the conventions of ASP.NET MVC seem to want me to do the following for a controller view. Thats to day I create 'Products' directory into which I place my 'I …
10
votes
24answers
1k views

How to name variables.

What rules do you use to name your variables? Where are single letter vars allows? How much info do you put in the name? how about for example code? what are your preferred meanin …

1 2 next
15 30 50 per page