Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
11answers
1k views

Programming style: should you return early if a guard condition is not satisfied?

One thing I've sometimes wondered is which is the better style out of the two shown below (if any)? Is it better to return immediately if a guard condition hasn't been satisfied, or should you only do ...
11
votes
8answers
315 views

Code “internationalization”

I worked on different projects in different countries and remarked that sometimes the code became internationalized, like SetLargeurEtHauteur() ...
10
votes
2answers
266 views

Learning Elisp - what are the highest quality libraries to read source code?

When learning a new programming language, "read source code" is a common advice received by the experts. However, with such a huge system like emacs, build over decades by many people, it is not so ...
9
votes
7answers
172 views

When should I prefer regex over built-in string functions?

Some say I should use regex whenever possible, others say I should use it at least as possible. Is there something like a "Perl Etiquette" about that matter or just TIMTOWTDI?
9
votes
4answers
192 views

Is it advisable to declare pointer to heap memory as `const` ALWAYS?

T *p = new T(); For the pointer on heap, there can be disastrous operations such as, p++; // (1) scope missed p = new T(); // (2) re-assignment Which would result in memory leaks or crashes due ...
8
votes
9answers
483 views

As our favorite imperative languages gain functional constructs, should loops be considered a code smell?

In allusion to Dare Obasanjo's impressions on Map, Reduce, Filter (Functional Programming in C# 3.0: How Map/Reduce/Filter can Rock your World) "With these three building blocks, you could replace the ...
7
votes
5answers
196 views

Using a private auto property instead of a simple variable for a programming standard

In a discussion with a peer, it was brought up that we should consider using auto properties for all class level variables... including private ones. So in addition to a public property like so: ...
5
votes
8answers
232 views

When should a .c file not have an associated .h file?

Most of the time in C programming it seems that there will be one header file (.h) per code file (.c), for the function prototypes at least. When would it be appropriate to not have a header file for ...
2
votes
5answers
132 views

Is it a good practice in Perl when instance methods call each other over a “$self” reference?

Should instance methods in Perl call each other like this: package BlaBla; sub foo { my($self) = @_; #do something awesome; } sub bar { my($self) = @_; foo(); } Or like this: ...
1
vote
2answers
64 views

Good programming practices: referencing arrays

This question specifically relates to my experience with PHP, but there's no reason why it shouldn't apply to other languages. Having set ERROR_REPORTING(E_ALL); during testing, I noticed that I had ...
1
vote
5answers
117 views

where to keep typedef's, should i have repeated typedef's

Say i have three files //first.h typedef typename std::map<Vertex_t*,Vd_t> MapVertexVd_t; //the graph class and ... //other useful things related to a graph class //second.h #include ...
1
vote
5answers
271 views

Design patterns, how do they differ from other programming styles?

Design patterns aren't necessarily a programming style but rather a template for solving a problem in a number of different situations. But how do they differ from other programming styles? Thanks ...
0
votes
3answers
60 views

should i create complex nested structures with Linq or traditional loops?

so out of the following 3 examples that do the same thing i really lean towards the first but is it really overkill and an abuse of linq to do things that way where you can create it all as an ...
0
votes
1answer
46 views

Should I fetch all objects initially or when each view controller is loaded?

thanks right away. This is my first question and am excited to join the iOS developer community. I have one core data entity (say, a car). I have a tab view controller with two tabs - one displaying ...
0
votes
2answers
46 views

Trouble with adding C++ objects to Objective C collections (NSSet)

I'm busy implementing ZXing with a QRCodeReader into my project. QRCodeReader is mainly C++ and my project objective-C. I have managed to implement it properly so I can use the QRCodeReader objects ...
0
votes
1answer
47 views

Is this kind of programming style too much?

I know it is bad to hard code anything. Usually we do most of the environment variable by config file. For example, database property, project config, log4j, input, output. But today I seen someone ...
0
votes
3answers
352 views

Modular Programming and Structured Programming

I was asked to design a asp.net website with modular programming, yet I have no clue what that actually means, does he mean structured programming?, everything Ive found on modular programming has no ...
0
votes
5answers
345 views

C# - Bad Practices [closed]

What are some of the bad practices you have seen in C# or .NET in general, there are plenty of posts on "good" practices, but I have not seen one on bad practices. If this is OT then please delete.
0
votes
6answers
175 views

Using static variable in function vs passing variable from caller

I have a function which spawns various types of threads, one of the thread types needs to be spawned every x seconds. I currently have it like this: bool isTime( Time t ) { return t >= now(); ...