Tagged Questions
The convention tag has no wiki summary.
248
votes
44answers
9k views
How do you handle poor quality code from team members? [closed]
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 fellow members ...
19
votes
24answers
2k 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 meaningless variable ...
17
votes
9answers
2k views
How long should SQL email fields be?
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 what the "standard" is? ...
10
votes
11answers
3k 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 frowned upon in the ...
8
votes
4answers
195 views
Why does Objective-C use YES/NO macro convention instead of true/false?
Most languages use the true/false keywords for boolean values. I found that even Smalltalk is using true/false. I know Objective-C is just borrowing concepts from Smalltalk, not the language itself, ...
7
votes
2answers
626 views
rails boolean fields: `is_foo` or just `foo`?
What is the rails convention regarding names of boolean fields?
For example, if I have a User model that needs a flag for its "activeness", should I call the db field is_active or active ?
Note: ...
7
votes
4answers
2k views
Fluent Nhibernate Automap convention for not-null field
Could some one help, how would I instruct automap to have not-null for
a column?
public class Paper : Entity
{
public Paper() { }
[DomainSignature]
[NotNull, NotEmpty]
...
6
votes
4answers
134 views
Where to 'locate' C# structs? / how to organize structs within a project
I'm trying to understand what the convention is for placement of C# and/or C++ structs within a project. In it's own source file? If yes, are there any conventions that I should make a habit of ...
6
votes
2answers
162 views
What's the rationale/history for the # convention of identifying methods in Ruby?
For example, I've always seen methods referred to as String#split, but never String.split, which seems slightly more logical. Or maybe even String::split, because you could consider #split to be in ...
6
votes
8answers
228 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 just properly name ...
5
votes
3answers
238 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 ThreadPool being a static ...
4
votes
2answers
47 views
Compact Convention
In the case that each method and variable will only be used once, which is the more correct convention?
Creating as many variables as necessary:
var x = GmailApp.getInboxUnreadCount();
var email = ...
4
votes
2answers
197 views
ruby coding convention for single or double quoting your strings
I had a good look around but I couldn't find the convention on how to use quotes for strings, I know the difference between the two, but everywhere I see good code with double quotes where the singles ...
4
votes
11answers
6k views
Java Coding standard / best practices - labeled break/continue
Sometimes a labeled break or continue can make code a lot more readable.
OUTERLOOP: for ( ;/*stuff*/; ) {
//...lots of code
if ( isEnough() ) break OUTERLOOP;
//...more code
}
I was ...
3
votes
2answers
61 views
What is the convention for a package's main script?
I am coding a new python package to be used by others. To demonstrate how it should be used, I am writing a demo script that executes the main parts of the new package.
What is the convention for ...
3
votes
2answers
235 views
Unable to find view for viewmodel?
I'm trying to make a composition UI for a small website.
My building tree looks like this:
Shell (Conductor.Collection.AllActive)
Contains multiple IPod's (you can view them as small widgets)
1 ...
3
votes
1answer
110 views
Is the proper Rails inflection of underscore 'underscoreize'?
It seems that with Rails/AR and the Inflector methods added to String by ActiveSupport, I would expect that by default,
Nested::ClassDerived::FromAR.name.tableize == ...
3
votes
2answers
101 views
historical origin of some shortcut combination question
yesterday a non programmer friend of mine, asked me about shortcuts. He wants to know why certain actions are binded to some typical shortcut combination.
I know that every program has it's own ...
3
votes
4answers
803 views
hashbang slash or no slash? [closed]
Should we do site.com/#!/blog or site.com/#!blog?
I understand there's no actual difference, however as a community of webdevelopers there should still be a conventional standard so that users can ...
3
votes
2answers
307 views
Table naming convention with Doctrine ORM
Is there a convention for naming tables when using Doctrine ORM? I like to name tables with the plural but if there's a convention I want to stick to it.
So the table 'users' would be related to ...
3
votes
2answers
374 views
nasm/yasm arguments, linkage to C++
I've got a question concerning nasm and its linkage to C++. I declare a litte test function as
extern "C" void __cdecl myTest( byte i1, byte i2, int stride, int *width );
and I call it like this:
...
3
votes
5answers
66 views
Should XML elements have grouping parents?
Which convention would be preferred and why (include some pros and cons of one over the other)?
This:
<company>
<employees>
<employee />
<employee />
...
3
votes
9answers
420 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 I can think of is ...
3
votes
3answers
471 views
Is it a bad idea to expose inheritance hierarchy in namespace structure?
I've got a group of inter-related classes that are all overridden together to create a particular implementation. I'm wondering if it is a good idea to enclose the interrelated subclasses in a ...
2
votes
2answers
53 views
Finding a list of all double-underscore variables?
Related: Python: What is the common header format?
Where can I find a list of all double-underscore variables/keywords that are commonly used in Python?
For example:
In python, variables starting ...
2
votes
4answers
169 views
What is better android.R or cutom R?
When I started developping android applications, I had a tendency to define custom R values wherever I need, in particular in layout files. For instance:
...
2
votes
2answers
291 views
Multi-column unique constraint FluentNHibernate automap via convention
Does FluentNHibernate's automap support creating a multi-column unique constraint via convention?
I can easily create a single column unique constraint:
public void Apply(IPropertyInstance instance)
...
2
votes
5answers
561 views
how lisp implemented in assembly language? [closed]
many (may be all?) programming language consist of assembly language
how lisp implemented in assembly language?
is there any good reference, manual, tutorial, or keyword for google?
any official ...
2
votes
2answers
184 views
Android back-button-overriding etiquette / guidelines
I have an app in which the user logs in from a main activity, and then can browse through a heirarchy of entities using listviews. So, the Activity stack would look something like this:
A -> B -> B ...
2
votes
1answer
119 views
Replacing :id from routes without breaking the convention
I just replaced the :id on the resource routes in rails 3 for a hash generated. I'm annoyed by the fact that I'm writing less conventional code (e.g. a link_to edit_user_path(@user) is now written as ...
2
votes
4answers
372 views
Tool to format code with Java Sun coding conventions
Does anyone know a free tool to format Java source code using Sun“s conventions?
2
votes
2answers
429 views
Why does Fluent NHibernate create ALWAYS a Text field from a C# String property as DEFAULT?
I run this sample here: https://github.com/jagregory/fluent-nhibernate/blob/master/src/Examples.FirstProject/Program.cs
All C# Properties of type String are mapped into TEXT sql fields and not
...
2
votes
3answers
85 views
conditionally setting and conditionally using a variable python
I know it is bad convention/design to conditionally declare a variable. i.e.:
if some_boolean:
x = 1
where x is not declared anywhere else. But is it bad to conditionally declare a variable if ...
2
votes
3answers
323 views
database, table and column naming conventions
Do you know how to use the naming conventions in mysql database? I've downloaded a mysql sample database.
Here it is:
CREATE DATABASE IF NOT EXISTS classicmodels DEFAULT CHARACTER SET latin1;
USE ...
2
votes
1answer
383 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.Organization ...
2
votes
3answers
172 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 'Index' view. I then ...
1
vote
2answers
20 views
in Rails where do you put your Sweepers?
Is there a convention in Rails to put Sweeper classes in a particular directory location?
UPDATE: Since observers are put into app/models, I'm assuming sweepers are no different, as long as the name ...
1
vote
0answers
17 views
Database Naming Convention Tool
So, like most places, reach a certain critical mass where you have so many databases, tables, columns that nothing is consistent like it should be.
Establishing a policy/data dictionary is one thing, ...
1
vote
1answer
51 views
FluentNHibernate: Automapping OneToMany relation
via fluent nhibernate, I cant use automapping with conventions because it adds extra foreign key to the table for relation. The problem was explained in detail at ...
1
vote
4answers
70 views
Checking for 'null'
Does C# has some rule of thumb or a coding convention contract, which handles the possible null argument?
As an example, I'm writing a custom method, which retrieves a byte[] data parameter.
public ...
1
vote
6answers
142 views
What's the point of String[] args in Java?
Whenever you declare the main method in a class, you always have to do a String array called "args". What's the point? Unless I live under a rock, command line agruments in Java are barely used ...
1
vote
2answers
49 views
Correct “base path” terminology
Consider a website installed in the 'mysite' directory:
/var/www/html/mysite/index.php
document root = /var/www/html
url = www.mysite.com/mysite/index.php
What would you call the following:
...
1
vote
2answers
64 views
Naming Conventions or Directory Strucure
I'm PHP programmer, but what I want to discuss is influenced by Java.
After read some articles about Hungarian Notation and Naming Conventions of several Languages, I proved how clear are the Java's ...
1
vote
2answers
98 views
Gcc x64 function calling
As far as I know, there are two possible calling conventions for the x64 code - Microsoft x64 and AMD64.
Now, gcc can be launched with the -mregparm=0 parameter, which doesn't work if we are working ...
1
vote
2answers
51 views
Python convention for variables that won't be used, but are reuturned from a function nonetheless
If I have a function like the following:
def foo():
return 1, 2
I would normally call the function like:
g, f = foo()
But if I never plan on using the second value returned, is there a way ...
1
vote
4answers
84 views
What is the best approach to write a data access object (DAO)?
I was trying to write a user authentication system in Java. So I wrote some DAO class. First I did write a class named Persistence which is abstract. It is responsible for holding some common ...
1
vote
3answers
121 views
Jackson and that dreaded IOException
Jackson's ObjectMapper#readValue member throws three checked exceptions:
IOException
JsonParseException
JsonMappingException
JsonParseException and JsonMappingException extend IOException. I ...
1
vote
1answer
45 views
On which system user my simple daemon on Linux should run as default for best compatibility?
I'm developing a simple Linux network daemon that runs as root, chroot() to the data files directory and drop root privileges. I like the "convention over configuration" approach, and even that my ...
1
vote
4answers
63 views
What is a set of sensible requirements on passwords?
What is a set of sensible requirements on passwords?
For example, Chase.com requires
Must contain 7-32 characters
Must include at least one number and one letter
Cannot include special characters ...
1
vote
2answers
55 views
Coding convention for .Net [closed]
What's for you the best convention for writing code in .net ?
I mean the name of your variable, the case, etc...