0
votes
2answers
27 views
ASP.NET - Placement of @ Register directive
In the past I have always placed my <%@ Register ... %> directive(s) at the top of my .aspx pages just below the @ Page directive. I recently found out that I can place this register directive …
20
votes
16answers
707 views
Should I always/ever/never initialize object fields to default values?
Code styling question here.
I looked at this question which asks if the .NET CLR will really always initialize field values. (The answer is yes) But it strikes me that I'm not clear that it's a …
0
votes
3answers
41 views
CSS margins: aligning a list against a float-left image
Hi, The following is my first cut at coding-up a reddit-like comment in html+css. I have a few questions about css and the general structure:
How do I get the comment body ("The King took off his …
43
votes
30answers
2k views
Checking in of “commented out” code
Ok, here is something that has caused some friction at my current job and I really didn't expect it to. Organized in house software development is a new concept here and I have drawn up a first draft …
6
votes
7answers
127 views
Passing hashes instead of method parameters
I see that in Ruby (and dynamically typed languages, in general) a very common practice is to pass a hash, instead of declaring concrete method parameters. For example, instead of declaring a method …
-1
votes
6answers
159 views
0xDEADBEEF or 0xdeadbeef? Upper or lower case hex? [closed]
A slightly flippant but serious question. And probably important when dealing with a large code-base that does a lot of byte-level manipulation.
When writing hex do you go for 0xFF or 0xff? Is there …
55
votes
82answers
6k views
Most frustrating programming style you’ve encountered
When it comes to coding style I'm a pretty relaxed programmer. I'm not firmly dug into a particular coding style. I'd prefer a consistent overall style in a large code base but I'm not going to …
7
votes
8answers
296 views
What are good patterns / techniques to reduce verbosity of Java
One of the things that can be a little annoying about Java is the amount of code you need to express concepts. I am a believer in the "less code is better" philosophy, and I'd like to know how I can …
2
votes
9answers
167 views
What name should I give my function? And who can I ask next time?
Background:
There are a few threads on SO about how to choose names for variables and functions. It dawned up on me that there might be a use for a site where you could go and ask random people what …
4
votes
2answers
86 views
Python import mechanics
I have two related Python 'import' questions. They are easily testable, but I want answers that are language-defined and not implementation-specific, and I'm also interested in style/convention, so …
0
votes
6answers
128 views
Dealing with ugly SQL in Java
Here goes a SQL-Java coding style question...
How do others here deal with creating complex custom queries in Java cleanly?
I am speaking of the seemingly simple task of preparing a string which is …
0
votes
4answers
62 views
Get all elements in array besides the first one.. ? (php)
Is there a way to specify getting all but the first element in an array? I generally use foreach() to loop through my arrays.
say array(1,2,3,4,5), i would only want 2, 3, 4 ,5 to show and for it to …
3
votes
7answers
159 views
If we use the C prefix for classes, should we use it for struct also?
Assuming that a project has been using the C class prefix for a long time, and it would be a waste of time to change at a late stage, and that the person who originally wrote the style guide has been …
1
vote
6answers
149 views
Would VS2008 c++ compiler optimize the following if statement?
if (false == x) { ...}
as opposed to:
if (!x) { ... }
and
if (false == f1()) { ...}
as opposed to:
if (!f1()) { ... }
I think the if(false == ... version is more readable. Do you agree, or …
0
votes
6answers
111 views
What kind of grammar do you use for comments? [closed]
For example, for a comment describing
mq_open() {
}
Do you use the imperative
// open a message queue
or third person?
// opens a message queue
