Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
45
votes
22answers
2k views

How do I make my code easier for the next developer to understand?

I've been at my very first programming job for about 8 months now and I've learned incredible amounts so far. Unfortunately, I'm the sole developer for a small startup company for internal ...
37
votes
34answers
2k views

Should a developer aim for readability or performance first?

Oftentimes a developer will be faced with a choice between two possible ways to solve a problem -- one that is idiomatic and readable, and another that is less intuitive, but may perform better. For ...
33
votes
21answers
1k views

How “self-documenting” can code be without being annoying?

I am not sure what the best practices are here, but I often see abbreviated variable names especially when the scope is small. So (to use simple Ruby examples) instead of def add_location(name, ...
32
votes
16answers
15k views

How to find good looking font color if background color is known?

There seem to be so many color wheel, color picker, and color matcher web apps out there, where you give one color and the they'll find a couple of other colors that will create a harmonic layout when ...
31
votes
13answers
2k views

How do I write more maintainable regular expressions?

I have started to feel that using regular expressions decreases code maintainability. There is something evil about the terseness and power of regular expressions. Perl compounds this with side ...
28
votes
21answers
3k views

Which code is more readable?

Suppose I have two methods bool Foo() and bool Bar(). Which of the following is more readable? if(Foo()) { SomeProperty = Bar(); } else { SomeProperty = false; } or SomeProperty = Foo() ...
21
votes
6answers
809 views

Why is the code in most STL implementations so convoluted?

The STL is a critical piece of the C++ world, most implementations derive from the initial efforts by Stepanov and Musser. My question is given the criticality of the code, and it being one of the ...
19
votes
7answers
945 views

Should java try blocks be scoped as tightly as possible?

I've been told that there is some overhead in using the Java try-catch mechanism. So, while it is necessary to put methods that throw checked exception within a try block to handle the possible ...
19
votes
16answers
4k views

Is “for(;;)” faster than “while (TRUE)”? If not, why do people use it?

for (;;) { //Something to be done repeatedly } I have seen this sort of thing used a lot, but I think it is rather strange... Wouldn't it be much clearer to say while(true), or something along ...
17
votes
17answers
1k views

Design of an Alternative (Fluent?) Interface for Regular Expressions

I've just seen a huge regex for Java that made me think a little about maintainability of regular expressions in general. I believe that most people - except some badass perl mongers - would agree ...
16
votes
3answers
1k views

Why STL implementation is so unreadable? How C++ could have been improved here?

For instance why does most members in STL implementation have _M_ or _ or __ prefix? Why there is so much boilerplate code ? What features C++ is lacking that would allow make vector (for instance) ...
15
votes
22answers
3k views

is while(true) bad programming practice?

I often use this code pattern: while(true) { //do something if(<some condition>) { break; } } Another programmer told me that this was bad practice and that I should ...
15
votes
53answers
6k views

What is the most unreadable programming language?

Excluding Whitespace, BrainF*ck (and all those other languages not designed for practical usage), and assembly, what do you think is the most difficult real programming language to write readable code ...
13
votes
5answers
699 views

Usage of ‘if’ versus ‘unless’ for Perl conditionals

What are some guidelines for the best use of if versus unless in Perl code? Are there strong reasons to prefer one or the other in some situations?
13
votes
6answers
8k views

Generic Exception Handling in Python the “Right Way”

Sometimes I find myself in the situation where I want to execute several sequential commands like such: try: foo(a, b) except Exception, e: baz(e) try: bar(c, d) except Exception, e: ...
12
votes
5answers
277 views

if-else structure

I have these long statements that I will refer to as x,y etc. here. My conditional statements' structure goes like this: if(x || y || z || q){ if(x) do someth else if (y) do ...
11
votes
6answers
389 views

Is wrapping STL idioms for readability a good idea?

I'm currently working on a C++ project that needs to have as few external dependencies as possible, and thus I'm pretty much sticking to STL and Boost. Until now, I've been almost exclusively living ...
11
votes
4answers
262 views

Proper commenting for functional programming

I've been learning scheme, and I just realized that I don't really know how to properly comment my functional scheme code. I know how to add a comment of course - you add a ; and put your comment ...
11
votes
9answers
492 views

Using true and false as the expressions in a conditional operation

I'm maintaining some code and have found the following pattern a lot: var isMale = (row["Gender"].ToString() == "M") ? true : false; instead of this: var isMale = (row["Gender"].ToString() == ...
11
votes
6answers
631 views

foreach(… in …) or .ForEach(); that is the question

This is a question about coding for readability. I have an XDocument and a List<string> of the names of the elements that contain sensitive information that I need to mask (replace with ...
10
votes
7answers
294 views

Heavy use of PHP's “<?php” tag

Some PHP code I look at is littered with "<?php" and "?>" tags depending on whether it's outputting HTML or not. Is there any performance benefit to this rather than using echo to write the ...
10
votes
6answers
380 views

C style casting and readability in C++

Yes I know you shouldn't use C style casts in C++, but in some cases I really think it's a lot more readable if you do, compare these two for example: d = ((double)i * 23.54) / (d + (double)j); d = ...
10
votes
9answers
500 views

How do I make this code more readable?

I wrote this today and I'm ashamed. What do I need to do to make this chaotic stuff more accurate and readable amongst others? switch ...
10
votes
6answers
402 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
16answers
3k views

Why should I capitalize my SQL keywords?

Duplicate of: http://stackoverflow.com/questions/292026/is-there-a-good-reason-to-use-upper-case-for-t-sql-keywords Simple question. I personally find a string of lowercase characters to be more ...
9
votes
5answers
184 views

Python: if not val, vs if val is None

I've always coded in the style of if not value, however, a few guides have brought to my attention that while this style works, it seems to have 2 potential problems: It's not completely readable; ...
9
votes
9answers
2k views

Java try/catch performance, is it recommended to keep what is inside the try clause to a minimum?

Considering you have code like this: doSomething() // this method may throw a checked a exception //do some assignements calculations doAnotherThing() //this method may also throw the same type of ...
9
votes
13answers
221 views

Formatting of dynamically generated HTML - does no one care?

I have very little experience in web development, so this may be a very basic question. It's just, from the limited experience I do have (a little PHP, and a little Ruby on Rails), it seems that the ...
9
votes
10answers
2k views

Improving Code Readability

When it comes to code documentation, it is usually accepted that code should explain itself, and inline code documentation (excluding public API documentation) should only explain meta-code issues ...
8
votes
2answers
113 views

Scientific Computing: Balancing Self-Contained-ness and Reuse?

I write scientific research code, specifically in bioinformatics. Of course, in science, results should be reproducible. People who are not involved in a project on a regular basis and don't ...
8
votes
9answers
216 views

How do you encourage fellow programmers to care about code readability? [closed]

I've noticed some programmers do not seem to have much desire to write clean, organized, and readable code. What are some good ways to encourage consistent indentation, good naming of variables and ...
8
votes
10answers
418 views

Does this feature exist? Defining my own curly brackets in C#

You'll appreciate the following two syntactic sugars: lock(obj) { //Code } same as: Monitor.Enter(obj) try { //Code } finally { Monitor.Exit(obj) } and using(var adapt = new adapter()){ //Code2 ...
8
votes
11answers
1k views

Would you use num%2 or num&1 to check if a number is even?

Well, there are at least two low-level ways of determining whether a given number is even or not: 1. if (num%2 == 0) { /* even */ } 2. if ((num&1) == 0) { /* even */ } I consider the second ...
7
votes
3answers
208 views

New (std::nothrow) vs. New within a try/catch block

I did some research after learning new, unlike malloc() which I am used to, does not return NULL for failed allocations, and found there are two distinct ways of checking whether new had succeeded or ...
7
votes
6answers
304 views

C# is there a nicer way of writing this?

int uploadsID; int pageNumber; int x; int y; int w; int h; bool isValidUploadID = int.TryParse(context.Request.QueryString["uploadID"], out uploadsID); bool isValidPage = ...
7
votes
9answers
788 views

Boolean method naming readability

Simple question, from a readability standpoint, which method name do you prefer for a boolean method: public boolean isUserExist(...) or: public boolean doesUserExist(...) or: public boolean ...
7
votes
11answers
9k views

What is the best color combination for readability, easy of use, and reduced eye strain?

I am trying to pick out the optimal set of colors for a new website project. I want to do a traditional black on white look and feel for the main content. However my partner on the project wants ...
7
votes
2answers
2k views

Implicit return values in Ruby

I am somewhat new to Ruby and although I find it to be a very intuitive language I am having some difficulty understanding how implicit return values behave. I am working on a small program to grep ...
7
votes
6answers
2k views

“public static” or “static public”?

A minor point about function declaration keywords in PHP: If you've got a class method that's static, should the static keyword come before or after the visibility keyword (public, protected, ...
7
votes
4answers
1k views

Reference equality performance difference? ((object)obj1 == (object)obj2) vs. object.ReferenceEquals( obj1, obj2 )

Is there extra overhead in using the object.ReferenceEquals method verses using ((object)obj1 == (object)obj2)? In the first case, there would be a static method call involved, and in both cases some ...
7
votes
9answers
8k views

Code to calculate “median of five” in C#

Note: Please don't interpret this as "homework question." This is just a thing I curious to know :) The median of five is sometimes used as an exercise in algorithm design and is known to be ...
6
votes
6answers
119 views

Independent function or method

I need to deal with a two objects of a class in a way that will return a third object of the same class, and I am trying to determine whether it is better to do this as an independent function that ...
6
votes
5answers
120 views

How to neatly match “x” and “[x]” with a regex without repeating?

I'm writing a Perl regex to match both the strings x bla and [x] bla. One alternative is /(?:x|\[x\]) bla/. This isn't desirable, because in the real world, x is more complicated, so I want to avoid ...
6
votes
6answers
211 views

typedef a template with all default arguments

I declare a templated class with all parameters having default arguments, for example: template<typename TYPE = int> class Foo {}; Then the following two are equivalent: Foo<int> one; ...
6
votes
3answers
703 views

StringBuilder/StringBuffer vs. “+” Operator

I'm reading "Better, Faster, Lighter Java" (by Bruce Tate and Justin Gehtland) and am familiar with the readability requirements in agile type teams, such as what Robert Martin discusses in his clean ...
6
votes
5answers
192 views

How does this sort function work?

As part of my job, I'm occasionally called upon to evaluate candidates for programming positions. A code snippet recently passed across my desk and my first thoughts were that I wasn't sure code like ...
6
votes
4answers
236 views

Immutability and Readability

So I've been reading Effective Java by Joshua Bloch and noticed two points which I actually have encountered in my work. Point 1: Making setter methods to make code more readable. In his example, we ...
6
votes
6answers
613 views

How to reduce the number of if-else statements in PHP?

I found that there are many if-else statements, especially nested if else statements, these statements make my code less readable. How to reduce the number of if else statements in PHP? My tips are ...
6
votes
13answers
2k views

Optimal tab size for code readability

Personal preferences aside, is there an optimal tab size (2 spaces? 3 spaces? 8 spaces?) for code readability? In the different projects I've worked on, people seem to have vastly different standards. ...

1 2 3 4 5