Tagged Questions
The conventions tag has no wiki summary.
106
votes
16answers
29k views
When to Use Double or Single Quotes in JavaScript
console.log("double"); vs console.log('single');
I see more and more JavaScript libraries out there using single quotes when handling strings. What are the reasons to use one over the other? I ...
75
votes
14answers
2k views
Should programmers use boolean variables to “document” their code?
I'm reading McConell's Code Complete, and he discusses using boolean variables to document your code. For example, instead of:
if((elementIndex < 0) || (MAX_ELEMENTS < elementIndex) ||
...
75
votes
40answers
9k views
Should one use < or <= in a for loop
If you had to iterate through a loop 7 times, would you use:
for (int i = 0; i < 7; i++)
or:
for (int i = 0; i <= 6; i++)
There are two considerations:
performance
readability
For ...
62
votes
11answers
65k views
What is trunk, branch and tag in subversion?
What is a trunk, branch and tag in subversion and what are the best practices to use them.
What tools I can use for subversion in Visual Studio 2008?
61
votes
13answers
4k views
How do I pronounce “=>” as used in lambda expressions in .Net
I very rarely meet any other programmers!
My thought when I first saw the token was "implies that" since that's what it would read it as in a mathematical proof but that clearly isn't its sense.
So ...
53
votes
18answers
17k views
Tabs versus spaces in Python programming
I have always used tabs for indentation when I do Python programming. But then I came across a question here on SO where someone pointed out that most Python programmers use spaces instead of tabs to ...
32
votes
4answers
2k views
Good Haskell coding standards
Could someone provide a link to a good coding standard for Haskell? I've found this and this, but they are far from comprehensive. Not to mention that the HaskellWiki one includes such "gems" as "use ...
24
votes
3answers
4k views
Python __str__ versus __unicode__
Is there a python convention for when you should implement __str__() versus __unicode__(). I've seen classes override __unicode__() more frequently than __str__() but it doesn't appear to be ...
20
votes
2answers
1k views
What are common conventions for using namespaces in Clojure?
I'm having trouble finding good advice and common practices for the use of namespaces in Clojure. I realize that namespaces are not the same as Java packages so I'm trying to tease out the ...
16
votes
12answers
3k views
Typedef pointers a good idea?
I looked through some code and noticed that the convention was to turn pointer types like
SomeStruct*
into
typedef SomeStruct* pSomeStruct;
Is there any merit to this?
16
votes
29answers
1k views
Do you think a software company should impose developers a coding-style? [closed]
If you think it shouldn't, explain why.
If yes, how deep should the guidelines be in your opinion? For example, indentation of code should be included?
16
votes
20answers
2k views
Do people use the Hungarian Naming Conventions in the real world?
Is it worth learning the convention or is it a bane to readability and maintainability?
15
votes
7answers
3k views
When to use ellipsis after menu items
In pretty much all applications that have a menu bar, some of the items have an ellipsis (...) after them, and some don't. Is there a well known convention on when to put that ellipsis there and when ...
14
votes
8answers
442 views
Is it okay to use functions to stay organized in C?
I'm a relatively new C programmer, and I've noticed that many conventions from other higher-level OOP languages don't exactly hold true on C.
Is it okay to use short functions to have your coding ...
14
votes
16answers
2k views
Do many Python libraries have relatively low code quality?
Edit: Since this question was asked a lot of improvement has happened in the standard Python scientific libraries (which was the targeted area). For example the numpy project has made a big effort to ...
13
votes
4answers
246 views
Best practice for documenting javascript library dependencies
So you're creating a bunch of code in an external .js file that requires jQuery and a few of its plugins, or MooTools, or perhaps some more esoteric libraries. Obviously the actual "include" is done ...
13
votes
3answers
176 views
Function commenting conventions in R
I'm fairly new to R, and I have been defining some of my own functions in script files. I'm intending for others to re-use them later, and I can't find any guides on R function commenting conventions. ...
13
votes
6answers
663 views
Is it pythonic to import inside functions?
PEP 8 says:
Imports are always put at the top of the file, just after any module
comments and docstrings, and before module globals and constants.
On occation, I violate PEP 8. Some ...
13
votes
3answers
4k views
Standard File Naming Conventions in Ruby
For a file containing the given class, SomeCoolClass, what would be the proper or standard filename?
1. somecoolclass.rb
2. some_cool_class.rb
3. some-cool-class.rb
4. SomeCoolClass.rb
or some ...
12
votes
7answers
3k views
CSS Conventions / Code Layout Models
Has there been any attempt and creating a formalized method for organizing CSS code? Before I go and make up my own strategy for keeping things readable, I'm wondering what else is out there. Google ...
11
votes
10answers
510 views
Why is it thought of 'T *name' to be the C way and 'T* name' to be the C++ way?
Note: This question is about the position of the asterisk (*).
In most C code I see (e.g., in Beej's guide to network programming), all variable declarations / definitions use the T *name format, ...
11
votes
3answers
2k views
Objective-C: Assertion vs. Exception vs. Error
In Cocoa, when should I use NSAssert, NSException, NSError?
Here's what I've been thinking:
NSAssert - When creating any client program used for the programmers own benefit to double check rules, ...
11
votes
7answers
198 views
Where should the line between property and method be? [closed]
Possible Duplicate:
Properties vs Methods
For many situations it is obvious whether something should be a property or a method however there are items that might be considered ambiguous.
...
11
votes
8answers
513 views
Is there any technical reason to use or not to use var in C# when the type is known?
It seems that more and more C# code I read uses the var type identifier:
foreach (var itemChange in ItemChanges)
{
//...
}
instead of explicitly stating the type:
foreach (ItemChange ...
10
votes
4answers
552 views
When should a Python script be split into multiple files/modules?
In Java, this question is easy (if a little tedious) - every class requires its own file. So the number of .java files in a project is the number of classes (not counting anonymous/nested classes).
...
10
votes
6answers
400 views
Python readability hints for a Java programmer
I'm a java programmer, but now entering the "realm of python" for some stuff for which Python works better. I'm quite sure a good portion of my code would look weird for a Python programmer (e.g. ...
10
votes
3answers
2k views
Large Django application layout
I am in a team developing a web-based university portal, which will be based on Django. We are still in the exploratory stages, and I am trying to find the best way to lay the project/development ...
10
votes
1answer
516 views
Fluent NHibernate Default Conventions
I'm trying to find a resource that shows what default conventions Fluent NHibernate uses with no custom (user) conventions applied.
Thanks!
10
votes
12answers
547 views
Which style of return should I use?
This is related to conventions used in C#.
I've got a method that has two parameters (X and Y coordinates). These coordinates represent the position at which a "tile" may reside. If a tile resides ...
9
votes
4answers
326 views
Are there conventions for Python module comments?
It is my understanding that a module docstring should just provide a general description of what a module does and details such as author and version should only be contained in the module's comments.
...
9
votes
8answers
248 views
Is there any benefit to declaring a private property with a getter and setter?
I am reviewing another developer's code and he has written a lot of code for class level variables that is similar to the following:
/// <summary>
/// how often to check for messages
...
9
votes
4answers
984 views
How do you resolve the discrepancy between “StyleCop C# style” and “Framework Design Guidelines C# style”?
After going through the Appendix A, "C# Coding Style Conventions" of the great book "Framework Design Guidelines" (2nd edition from November 2008), I am quite confused as to what coding style is ...
8
votes
3answers
239 views
Why are C names shortened? [closed]
Why there is a function called strcat and not a function called stringConcatenation, or stringConcat or string_concat or something like that? Why there is a clrscr function and not clearScreen or ...
8
votes
4answers
211 views
Lisp commenting convention
What is the Lisp convention about how many semicolons to use for different kinds of comments (and what the level of indentation for various numbers of semicolons should be)? Also, is there any ...
8
votes
3answers
975 views
An Ideal Folder Structure for .NET MVC
When I started in .NET Webforms I didn't have much trouble finding a folder structure to follow since VS offered you application folders like "App_Code" and most app examples put "BLL", "DAL" inside ...
8
votes
2answers
548 views
End Java command line application properly
I am just wondering. Do I need to call System.exit(0); right before main method of a Java command line application ends? If so, why? What is the difference from letting it exit on its own, if I would ...
8
votes
8answers
299 views
In 0-based indexing system, do people call the element at index 0 the “first” or the “zeroth” element?
In Java/C++, for example, do you casually say that 'a' is the first character of "abc", or the zeroth?
Do people say both and it's always going to be ambiguous, or is there an actual convention?
A ...
8
votes
6answers
303 views
2nd or 3rd person comments?
Do you write comments in 2nd or 3rd person?
// go somewhere and do something (2nd person comment)
or
// goes somewhere and does something (3rd person comment)
8
votes
2answers
527 views
Should I Use self Keyword (Properties) In The Implementation?
Hey guys. I believe I understand properties for the most part. My question is, if I have a property for an instance variable, and I am setting or retrieving it from within a method in my ...
7
votes
4answers
151 views
Can I force the use of 'this' keyword in c# .NET?
Is there a way to force the use of the this keyword in Visual Studio when referencing current instance members?
Example with a bug in the constructor:
class MyClass
{
public object Foo { get; ...
7
votes
2answers
756 views
Where to define custom error types in Ruby and/or Rails?
Is there a best practice for defining custom error types in a Ruby library (gem) or Ruby on Rails application? Specifically:
Where do they belong structurally in the project? A separate file, ...
7
votes
7answers
157 views
When I define functions, in what order should I put the parameters?
I often find it hard to decide and am inconsistent. Are there some rules I could follow?
For example:
def remove_except(haystack, needle, exclude_value):
for key in hackstack:
if key in ...
7
votes
7answers
313 views
Python: how to add contents of iterable to set?
In Python, what is the "one [...] obvious way" to add all items of an iterable to an extant set?
7
votes
6answers
337 views
Scala naming convention for “setters” on immutable objets
I do not know what to call my "setters" on immutable objects?
For a mutable object Person, setters work like this:
class Person(private var _name: String) {
def name = "Mr " + _name
def ...
7
votes
5answers
372 views
What is the advantage of the 'src/main/java'' convention?
I've noticed that a lot of projects have the following structure:
Project-A
bin
lib
src
main
java
RootLevelPackageClass.java
I currently use the following convention (as my projects are ...
7
votes
3answers
542 views
Python proper use of __str__ and __repr__
My current project requires extensive use of bit fields. I found a simple, functional recipe for bit a field class but it was lacking a few features I needed, so I decided to extend it. I've just got ...
7
votes
4answers
8k views
How do you USE Fortran 90 module data
Let's say you have a Fortran 90 module containing lots of variables, functions and subroutines. In your USE statement, which convention do you follow:
explicitly declare which ...
6
votes
3answers
185 views
“using” statement locations within namespace declarations [closed]
Possible Duplicate:
Should Usings be inside or outside the namespace
I'm supporting some code that, unusually, has all its using statements contained within the namespace declaration. It ...
6
votes
1answer
211 views
Summary of Ruby on Rails fundamental concepts
Being new to Rails, I am having a difficult time finding a website or reference that gives a run down summary of Ruby on Rails. I understand MVC, ActiveRecord, and that sort of stuff on a basic ...
6
votes
5answers
95 views
Which array element is the first?
A few times during discussion about programming, I reached a misunderstanding, caused by different views on how consecutive zero-based array elements are referred to using ordinal numerals. There seem ...