1
vote
4answers
151 views
How Can I Make This Python Code More Usable And Readable?
Beginner in python, but been programming for about 5 years now. I suspect I have a lot to learn about doing things the object oriented way, but I know the basics. I planned on prog …
14
votes
16answers
559 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 monge …
13
votes
21answers
1k 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
So …
28
votes
38answers
4k 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
re …
0
votes
3answers
68 views
Extension ‘Class’: Good use of extension methods and increase code readability… or bad smell?
So I've been dealing with several APIs recently provided by different software vendors for their products. Sometimes things are lacking, sometimes I just want to make the code more …
1
vote
7answers
168 views
What’s the cleanest way to write a multiline string in JavaScript?
It doesn't really have to add newlines, just something readable.
Anything better than this?
str = "line 1" +
"line 2" +
"line 3";
2
votes
8answers
148 views
In what order should I place properties, events, functions, function overrides, etc. in C# classes?
When creating a new C# class I am not certain of what the best logical order for declaring properties, event delegates, functions, function overrides, etc. are and what considerati …
6
votes
48answers
3k 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 …
3
votes
6answers
69 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 …
1
vote
2answers
37 views
Actionscript ‘Object’ labeled as a real datastructure for readability
So in actionscript 3, instances of the Object class can be used an as associative array:
var doNotHaveSexWith:Object = new Object();
doNotHaveSexWith['mum'] = new Person(...);
doN …
1
vote
3answers
83 views
What is the most readable use of String.Format for long strings with many parameters?
For instance:
String login = String.Format("computer={0}&ver={1}.{2}.{3}&from={4}&realcomputername={5}&type={6}&Channels={7}&Hotkeys={8}&ID={9}\r\n",
…
1
vote
2answers
105 views
Most readable way to assign a double quote to a string in C#
Does anyone else think that escaping characters in very short strings make them not very readable? I noticed I was using s = "\"" in my code to assign a double quote a string, but …
5
votes
2answers
324 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 vecto …
27
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 p …
22
votes
13answers
923 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 …
