vote up 346 vote down star
421

This is definitely subjective, but I'd like to try to avoid it becoming argumentative. I think it could be an interesting question if people treat it appropriately.

The idea for this question came from the comment thread from my answer to the "What are five things you hate about your favorite language?" question. I contended that classes in C# should be sealed by default - I won't put my reasoning in the question, but I might write a fuller explanation as an answer to this question. I was surprised at the heat of the discussion in the comments (25 comments currently).

So, what contentious opinions do you hold? I'd rather avoid the kind of thing which ends up being pretty religious with relatively little basis (e.g. brace placing) but examples might include things like "unit testing isn't actually terribly helpful" or "public fields are okay really". The important thing (to me, anyway) is that you've got reasons behind your opinions.

Please present your opinion and reasoning - I would encourage people to vote for opinions which are well-argued and interesting, whether or not you happen to agree with them.

flag
232  
won't the answer with the fewest votes be the most controversial :)? – Doug T. Jan 2 '09 at 14:09
98  
The controversial ones have the most comments, not upvotes. – Bill the Lizard Jan 7 at 3:35
21  
Awesome! 249 answers and newcomers aren't reading every other answer to avoid duplicates - in fact there are answers on here that have been posted many, many times. There is no possible way that leaving this open for new answers is contributory - closing still allows votes. PLEASE CLOSE. – Adam Davis Feb 10 at 21:35
8  
think the community wiki component needs to be stripped out of the Q/A system. It's fine to have a community wiki, but it shouldn't be a means for justifying the endless series of non-sense questions like this one. Please close. – Mark Rogers Feb 10 at 22:00
17  
This is a great question to farm badges. A guy with 11 rep has a gold badge. Hilarious. – Robert S. May 1 at 20:46
show 27 more comments

398 Answers

prev 1 2 3 4 5 14 next
vote up 5 vote down

Manually halting a program is an effective, proven way to find performance problems.

Believable? Not to most. True? Absolutely.

Programmers are far more judgemental than necessary.

Witness all the things considered "evil" or "horrible" in these posts.

Programmers are data-structure-happy.

Witness all the discussions of classes, inheritance, private-vs-public, memory management, etc., versus how to analyze requirements.

link|flag
show 6 more comments
vote up 115 vote down

There is no "one size fits all" approach to development

I'm surprised that this is a controversial opinion, because it seems to me like common sense. However, there are many entries on popular blogs promoting the "one size fits all" approach to development so I think I may actually be in the minority.

Things I've seen being touted as the correct approach for any project - before any information is known about it - are things like the use of Test Driven Development (TDD), Domain Driven Design (DDD), Object-Relational Mapping (ORM), Agile (capital A), Object Orientation (OO), etc. etc. encompassing everything from methodologies to architectures to components. All with nice marketable acronyms, of course.

People even seem to go as far as putting badges on their blogs such as "I'm Test Driven" or similar, as if their strict adherence to a single approach whatever the details of the project project is actually a good thing.

It isn't.

Choosing the correct methodologies and architectures and components, etc., is something that should be done on a per-project basis, and depends not only on the type of project you're working on and its unique requirements, but also the size and ability of the team you're working with.

link|flag
7  
Hurray for common sense! Having started life as an engineer, I'm often baffled by the "religious" tone of this field. – Mike Dunlavey Jan 2 '09 at 15:13
2  
There is no silver bullet! quoting F.Brooks – epatel Jan 2 '09 at 19:04
1  
Five worlds man. 1. Shrinkwrap 2. Internal 3. Embedded 4. Games 5. Throwaway www.joelonsoftware.com/articles/FiveWorlds.html – MarkJ Jan 27 at 11:29
show 4 more comments
vote up 30 vote down

Before January 1st 1970, true and false were the other way around...

link|flag
show 3 more comments
vote up 25 vote down

Regurgitating well known sayings by programming greats out of context with the zeal of a fanatic and the misplaced assumption that they are ironclad rules really gets my goat. For example 'premature optimization is the root of all evil' as covered by this thread.

IMO, many technical problems and solutions are very context sensitive and the notion of global best practices is a fallacy.

link|flag
2  
There are two types of optimisation, by architecture and by code. Architecural optimisation is clearly needed before you write code. However the term 'premature optimization' really applies to efforts to write code optimally instead of simply. This is evil. – AnthonyWJones Jan 2 '09 at 18:48
1  
I am often called in to straighten out big messes that were architected ostensibly with the objective of "performance". – Mike Dunlavey Jan 2 '09 at 19:06
1  
@Mike: There has to be some understanding of volumes and response requirements before the app is developed. Such things have to be considered in the inital archecture. Of course specific performance choices need to be justified. – AnthonyWJones Jan 2 '09 at 20:52
show 1 more comment
vote up 6 vote down

That most language proponents make a lot of noise.

link|flag
1  
Controversial, and simultaneously axiomatic. Nice. – ChrisA Jan 2 '09 at 19:37
show 1 more comment
vote up 16 vote down

Here's one which has seemed obvious to me for many years but is anathema to everyone else: it is almost always a mistake to switch off C (or C++) assertions with NDEBUG in 'release' builds. (The sole exceptions are where the time or space penalty is unacceptable).

Rationale: If an assertion fails, your program has entered a state which

  • has never been tested
  • the developer was unable to code a recovery strategy for
  • the developer has effectively documented as being inconceivable.

Yet somehow 'industry best practice' is that the thing should just muddle on and hope for the best when it comes to live runs with your customers' data.

link|flag
show 4 more comments
vote up 20 vote down

Opinion: That frameworks and third part components should be only used as a last resort.

I often see programmers immediately pick a framework to accomplish a task without learning the underlying approach it takes to work. Something will inevitably break, or we'll find a limition we didn't account for and we'll be immediately stuck and have to rethink major part of a system. Frameworks are fine to use as long it is carefully thought out.

link|flag
1  
+1 disagree completly :) – ykaganovich Jun 7 at 3:54
show 5 more comments
vote up 59 vote down

Opinion: Never ever have different code between "debug" and "release" builds

The main reason being that release code almost never gets tested. Better to have the same code running in test as it is in the wild.

link|flag
1  
@MarkJ: That's what I'm saying, you should be testing the code that goes out the door, and not have a difference between "Release" that is not tested, and "Debug" that is tested, but never released. – Cameron MacFarland Jan 27 at 13:50
3  
You just need to switch. Our QA uses debugging builds during development but switches to release towards the end. There are certain levels of sanity checking that you would like to be performed as much as possible before shipping, but cannot afford to ship due to performance reasons. – unknown (google) May 31 at 1:52
show 13 more comments
vote up 249 vote down

If you're a developer, you should be able to write code

I did quite a bit of interviewing last year, and for my part of the interview I was supposed to test the way people thought, and how they implemented simple-to-moderate algorithms on a white board. I'd initially started out with questions like:

Given that Pi can be estimated using the function 4 * (1 - 1/3 + 1/5 - 1/7 + ...) with more terms giving greater accuracy, write a function that calculates Pi to an accuracy of 5 decimal places.

It's a problem that should make you think, but shouldn't be out of reach to a seasoned developer (it can be answered in about 10 lines of C#). However, many of our (supposedly pre-screened by the agency) candidates couldn't even begin to answer it, or even explain how they might go about answering it. So after a while I started asking simpler questions like:

Given the area of a circle is given by Pi times the radius squared, write a function to calculate the area of a circle.

Amazingly, more than half the candidates couldn't write this function in any language (I can read most popular languages so I let them use any language of their choice, including pseudo-code). We had "C# developers" who could not write this function in C#.

I was surprised by this. I had always thought that developers should be able to write code. It seems that, nowadays, this is a controversial opinion. Certainly it is amongst interview candidates!


Edit:

There's a lot of discussion in the comments about whether the first question is a good or bad one, and whether you should ask questions as complex as this in an interview. I'm not going to delve into this here (that's a whole new question) apart from to say you're largely missing the point of the post.

Yes, I said people couldn't make any headway with this, but the second question is trivial and many people couldn't make any headway with that one either! Anybody who calls themselves a developer should be able to write the answer to the second one in a few seconds without even thinking. And many can't.

link|flag
19  
2 words: Fizz Buzz. – Kibbee Jan 2 '09 at 17:32
29  
Give them a real question not a mathematical question. Job interviews give nervous and stress to people. This kind of questions are a waste of time for all. Real questions for real Job. I like this questions but if someone hiring to me ask them, i don't want this job. The hirer is not professional. – FerranB Jan 2 '09 at 23:18
18  
@ PhoenixRedeemer: I don't think this is a math question at all. A programmer should be able to implement a simple formula like that. That doesn't test your math skills. Besides, a programmer is supposed to have some math background, so it shouldn't be so confusing even if you are nervous. – Marc Jan 3 '09 at 12:30
58  
I don't understand the purpose... Why do you need to calculate pi? PI is (essentially) constant. WTF. If anyone writes a function longer than: function() { return 3.14159 } They're wasting their time. – jason Jun 8 at 16:06
20  
@jason - It's to test your ability to think about a problem, break it down into its component parts, and write code that implements it. The subject matter is not important -- it's an interview question, not a real world requirement. – Greg Beech Jun 8 at 19:25
show 58 more comments
vote up 50 vote down

Opinion: explicit variable declaration is a great thing.

I'll never understand the "wisdom" of letting the developer waste costly time tracking down runtime errors caused by variable name typos instead of simply letting the compiler/interpreter catch them.

Nobody's ever given me an explanation better than "well it saves time since I don't have to write 'int i;'." Uhhhhh... yeah, sure, but how much time does it take to track down a runtime error?

link|flag
5  
Yup. ONE bug hunt involving an l (between k and m) becoming a 1 (between 0 and 2) wasted a lifetime of declaring variables. – Loren Pechtel Jan 3 '09 at 5:13
show 7 more comments
vote up 1 vote down

That (at least during initial design), every Database Table (well, almost every one) should be clearly defined to contain some clearly understanable business entity or system-level domain abstraction, and that whether or not you use it as a a primary key and as Foreign Keys in other dependant tables, some column (attribute) or subset of the table attributes should be clearly defined to represent a unique key for that table (entity/abstraction). This is the only way to ensure that the overall table structure represents a logically consistent representation of the complete system data structure, without overlap or misunbderstood flattening. I am a firm believeer in using non-meaningful surrogate keys for Pks and Fks and join functionality, (for performance, ease of use, and other reasons), but I beleive the tendency in this direction has taken the database community too far away from the original Cobb principles, and we jhave lost much of the benefits (of database consistency) that natural keys provided.

So why not use both?

link|flag
vote up 3 vote down

Whenever you expose a mutable class to the outside world, you should provide events to make it possible to observe its mutation. The extra effort may also convince you to make it immutable after all.

link|flag
vote up 288 vote down

Opinion: SQL is code. Treat it as such

That is, just like your C#, Java, or other favorite object/procedure language, develop a formatting style that is readable and maintainable.

I hate when I see sloppy free-formatted SQL code or code. If you scream when you see both styles of curly braces on a page, why or why don't you scream when you see free formatted SQL or SQL that obscures or obfuscates the JOIN condition?

link|flag
18  
And check it into source control – Cameron MacFarland Jan 2 '09 at 14:52
9  
sqlinform.com is your friend. – Christopher Mahan Jan 2 '09 at 15:22
3  
I've also heard "There's no code change required. We just need to tweak the SQL"! – LaJmOn Jan 14 at 14:53
show 11 more comments
vote up 3 vote down

MVC for the web should be far simpler than traditional MVC.

Traditional MVC involves code that "listens" for "events" so that the view can continually be updated to reflect the current state of the model. In the web paradigm however, the web server already does the listening, and the request is the event. Therefore MVC for the web need only be a specific instance of the mediator pattern: controllers mediating between views and the model. If a web framework is crafted properly, a re-usable core should probably not be more than 100 lines. That core need only implement the "page controller" paradigm but should be extensible so as to be able to support the "front controller" paradigm.

Below is a method that is the crux of my own framework, used successfully in an embedded consumer device manufactured by a Fortune 100 network hardware manufacturer, for a Fortune 50 media company. My approach has been likened to Smalltalk by a former Smalltalk programmer and author of an Oreilly book about the most prominent Java web framework ever; furthermore I have ported the same framework to mod_python/psp.

static function sendResponse(IBareBonesController $controller) {
  $controller->setMto($controller->applyInputToModel());
  $controller->mto->applyModelToView();
}
link|flag
show 1 more comment
vote up 47 vote down

Source Control: Anything But SourceSafe

Also: Exclusive locking is evil.

I once worked somewhere where they argued that exclusive locks meant that you were guaranteeing that people were not overwriting someone else's changes when you checked in. The problem was that in order to get any work done, if a file was locked devs would just change their local file to writable and merging (or overwriting) the source control with their version when they had the chance.

link|flag
5  
Not controversial. Nobody used SourceSafe by choice. – MusiGenesis Jan 13 at 17:13
1  
@MusiGenesis: Yes they do. They exist. – Cameron MacFarland Jan 14 at 9:33
3  
My company is still using SourceSafe. The main reasons are a) General inertia and b) The devs are scared of the idea of working without exclusive locks. – T.E.D. Jan 14 at 18:11
1  
My personal feeling is that the ability to merge code files should be a skill all programmers need, like all programmers need to know how to compile their code. It's part of what we do as a byproduct of using source control. – Cameron MacFarland Jan 15 at 0:52
show 9 more comments
vote up 6 vote down

Arrays should by default be 1-based rather than 0-based. This is not necessarily the case with system implementation languages, but languages like Java swallowed more C oddities than they should have. "Element 1" should be the first element, not the second, to avoid confusion.

Computer science is not software development. You wouldn't hire an engineer who studied only physics, after all.

Learn as much mathematics as is feasible. You won't use most of it, but you need to be able to think that way to be good at software.

The single best programming language yet standardized is Common Lisp, even if it is verbose and has zero-based arrays. That comes largely from being designed as a way to write computations, rather than as an abstraction of a von Neumann machine.

At least 90% of all comparative criticism of programming languages can be reduced to "Language A has feature C, and I don't know how to do C or something equivalent in Language B, so Language A is better."

"Best practices" is the most impressive way to spell "mediocrity" I've ever seen.

link|flag
1  
Can't agree with the 1-based arrays, either. Would make add/remove elements much more complex (because you'd have to rebase your indexes during the operation). I'd opt for -1 being the last element in an array, though :) – Aaron Digulla Feb 27 at 15:54
show 10 more comments
vote up 45 vote down

All variables/properties should be readonly/final by default.

The reasoning is a bit analogous to the sealed argument for classes, put forward by Jon. One entity in a program should have one job, and one job only. In particular, it makes absolutely no sense for most variables and properties to ever change value. There are basically two exceptions.

  1. Loop variables. But then, I argue that the variable actually doesn't change value at all. Rather, it goes out of scope at the end of the loop and is re-instantiated in the next turn. Therefore, immutability would work nicely with loop variables and everyone who tries to change a loop variable's value by hand should go straight to hell.

  2. Accumulators. For example, imagine the case of summing over the values in an array, or even a list/string that accumulates some information about something else.

    Today, there are better means to accomplish the same goal. Functional languages have higher-order functions, Python has list comprehension and .NET has LINQ. In all these cases, there is no need for a mutable accumulator / result holder.

    Consider the special case of string concatenation. In many environments (.NET, Java), strings are actually immutables. Why then allow an assignment to a string variable at all? Much better to use a builder class (i.e. a StringBuilder) all along.

I realize that most languages today just aren't built to acquiesce in my wish. In my opinion, all these languages are fundamentally flawed for this reason. They would lose nothing of their expressiveness, power, and ease of use if they would be changed to treat all variables as read-only by default and didn't allow any assignment to them after their initialization.

link|flag
4  
Disagree but made me think. Interesting. – Steve B. Jan 2 '09 at 17:31
1  
@Princess: immutable-by-default has a comprehension cost. It's much more difficult to think about (not reason about, think about) immutable-by-default objects/variables/what-have-you. – Jeff Hubbard Jan 3 '09 at 21:18
1  
@Jeff: I think this is at least debatable. Programming in general has a comprehension cost, any style of programming does. But I doubt that immutable-by-default incurs any additional comprehension cost at all, especially since it's much closer to the mathematical use of variables in equations. – Konrad Rudolph Jan 4 '09 at 21:25
3  
Yes, and we'll only access read-only databases, stored on read-only media. Maybe once our programs have no mutable state, and therefore accomplish nothing we can move on to truly pure functional programming where nothing happens and the compiler with the best optimization outputs nothing. – steveth45 Jan 7 at 8:46
show 21 more comments
vote up 180 vote down

Unit Testing won't help you write good code

The only reason to have Unit tests is to make sure that code that already works doesn't break. Writing tests first, or writing code to the tests is ridiculous. If you write to the tests before the code, you won't even know what the edge cases are. You could have code that passes the tests but still fails in unforeseen circumstances.

And furthermore, good developers will keep cohesion low, which will make the addition of new code unlikely to cause problems with existing stuff.

In fact, I'll generalize that even further,

Most "Best Practices" in Software Engineering are there to keep bad programmers from doing too much damage.

They're there to hand-hold bad developers and keep them from making dumbass mistakes. Of course, since most developers are bad, this is a good thing, but good developers should get a pass.

link|flag
16  
+1 - I think your further generalization sums up my opinion very well – Greg Beech Jan 2 '09 at 15:19
8  
Although I agree with your second statement ( the first I'm not sure about ) who judges who the good developers are? Many of the smartest programmers I know will often make dumb mistakes out of pure arrogance because they believe themselves to be such good developers. – glenatron Jan 2 '09 at 15:22
26  
I have to point out that NOT Unit Testing won't help you write good code, either. Writing the tests first does force you to think differently about your API, which can arguably make your code better. If you don't know what tests to write, then you don't know what code to write either. – Bill the Lizard Jan 3 '09 at 3:07
15  
unit tests are invaluable for regression testing - e.g. to make sure your refactoring change didn't break anything else – kpollock Jan 12 at 16:05
19  
I think you missed the point. Unit tests for libraries serve as the most concise and correct documentation for the library in existance. Treat it as documentation - cause that's what it is. – Thorbjørn Ravn Andersen Feb 2 at 10:33
show 25 more comments
vote up 8 vote down

My one:

Long switch statements are your friends. Really. At least in C#.

People tend to avoid and discourage others to use long switch statements beause they are "unmanagable" and "have bad performance characteristics".

Well, the thing is that in C#, switch statements are always compiled automagically to hash jump tables so actually using them is the Best Thing To Doâ„¢ in terms of performance if you need simple branching to multiple branches. Also, if the case statements are organized and grouped intelligently (for example in alphabetical order), they are not unmanageable at all.

link|flag
1  
Define long. I've seen a 13,000 line switch statement (admittedly it was C++ but still...) – Cameron MacFarland Jan 2 '09 at 15:14
1  
Of course, if it has 13K lines because there is loads of code in each "case" clause, that's totally different. It should be refactored then. – DrJokepu Jan 2 '09 at 15:21
1  
What I want a compiler to do is generate good assembly code for me, and switch is how I tell it I want a jump table. That said, it's easy to think you're doing things for "performance" reasons when in fact you'll never notice the difference. – Mike Dunlavey Jan 2 '09 at 16:49
1  
How can you have thousands of cases? I can't imagine it, do you have an example? – tuinstoel Jan 4 '09 at 21:16
2  
@tuinstoel: It's not that hard to imagine it if you try. Before the rise of floating point units, it was a common practice to keep trigonometric functions in lookup tables. I think that keeping the results of complex math functions in premade lookup tables still makes sense today. – DrJokepu Jan 5 at 13:41
show 5 more comments
vote up 130 vote down

Software development is just a job

Don't get me wrong, I enjoy software development a lot. I've written a blog for the last few years on the subject. I've spent enough time on here to have >5000 reputation points. And I work in a start-up doing typically 60 hour weeks for much less money than I could get as a contractor because the team is fantastic and the work is interesting.

But in the grand scheme of things, it is just a job.

It ranks in importance below many things such as family, my girlfriend, friends, happiness etc., and below other things I'd rather be doing if I had an unlimited supply of cash such as riding motorbikes, sailing yachts, or snowboarding.

I think sometimes a lot of developers forget that developing is just something that allows us to have the more important things in life (and to have them by doing something we enjoy) rather than being the end goal in itself.

link|flag
46  
Tell musicians their music is just a job. – icelava Jan 7 at 13:24
7  
@icelava: I know some musicians (classical music, bass and violin) to whom it is exactly that: Just a job. – Treb Jan 22 at 9:28
9  
Programmers who overvalue programming overvalue themselves. – Seventh Element Jan 26 at 8:03
5  
This is something that applies to you. You assume that it automatically applies to everyone. I consider friends and family very important indeed, but I consider doing what I was born to do just as important. I cannot under any circumstance neglect either of them. – Lucas Lindström May 5 at 20:54
9  
I didn't assume anything. It's my opinion. You're free to disagree. – Greg Beech May 5 at 22:20
show 16 more comments
vote up 31 vote down

Singletons are not evil

There is a place for singletons in the real world, and methods to get around them (i.e. monostate pattern) are simply singletons in disguise. For instance, a Logger is a perfect candidate for a singleton. Addtionally, so is a message pump. My current app uses distributed computing, and different objects need to be able to send appropriate messages. There should only be one message pump, and everyone should be able to access it. The alternative is passing an object to my message pump everywhere it might be needed and hoping that a new developer doesn't new one up without thinking and wonder why his messages are going nowhere. The uniqueness of the singleton is the most important part, not its availability. The singleton has its place in the world.

link|flag
2  
+1 because I disagree so strongly. Singletons (the design pattern) make testing such a nightmare they should never be used. Note that singletons (an object only instantiated once) are fine, but they should be passed in through dependency injection. – Motlin Jan 2 '09 at 18:35
2  
A logger is certainly not a perfect candidate for a singleton. You may want to have two loggers. I've been in that exact situation before. It may be a good candidate for being global, but certainly not for being forced into "one instance only". Very few things require that constraint. – jalf Jan 4 '09 at 0:59
1  
The way I figure it, I've used some singletons in one project, and I might well do so again before I retire. Not the most widely useable patterns, but valuable for some things. – David Thornley Jan 9 at 14:49
1  
I really recommend reading misko.hevery.com/2008/08/… to you. – codethief Feb 2 at 20:33
show 3 more comments
vote up 9 vote down

Rob Pike wrote: "Data dominates. If you've chosen the right data structures and organized things well, the algorithms will almost always be self-evident. Data structures, not algorithms, are central to programming."

And since these days any serious data is in the millions of records, I content that good data modeling is the most important programming skill (whether using a rdbms or something like sqlite or amazon simpleDB or google appengine data storage.)

Fancy search and sorting algorithms aren't needed any more when the data, all the data, is stored in such a data storage system.

link|flag
1  
It depends on the rawness of your original data. If the data is accumuleted by data entry in a UI it is true. But if you do something like Text Mining you need to process your data first, algos become more important. – tuinstoel Jan 2 '09 at 15:47
1  
+1 If I was speaking to an assembly of CS Freshmen my first advice would be to "Know Thou Data_Structures" Amen Brother. – WolfmanDragon May 23 at 18:22
1  
Brooks, in "The Mythical Man-Month", had a comment that he'd be confused if you hid your tables and showed him your flow charts, but if you showed him your tables he wouldn't need to see your flow charts. This should give you an idea of how old this idea is. – David Thornley Oct 13 at 21:39
show 2 more comments
vote up 12 vote down

Junior programmers should be assigned to doing object/ module design and design maintenance for several months before they are allowed to actually write or modify code.

Too many programmers/developers make it to the 5 and 10 year marks without understanding the elements of good design. It can be crippling later when they want to advance beyond just writing and maintaining code.

link|flag
2  
I will tell you from having dealt with entry-level and junior developers that they learn precisely nothing by performing "maintanence and bug fixes", they never develop any skills. Letting juniors build an app something from scratch teaches them an incredible amount in a short period of time. – Juliet Jan 2 '09 at 18:13
1  
I would say the exact opposite. Let them write implementations of existing interfaces, that must pass existing unit tests. They will pick up some design skills just by working with the senior developer's designs for a few months. – finnw Jan 17 at 17:38
show 5 more comments
vote up 1 vote down

(Unnamed) tuples are evil

  • If you're using tuples as a container for several objects with unique meanings, use a class instead.
  • If you're using them to hold several objects that should be accessible by index, use a list.
  • If you're using them to return multiple values from a method, use Out parameters instead (this does require that your language supports pass-by-reference)

  • If it's part of a code obfuscation strategy, keep using them!

I see people using tuples just because they're too lazy to bother giving NAMES to their objects. Users of the API are then forced to access items in the tuple based on a meaningless index instead of a useful name.

link|flag
show 1 more comment
vote up 5 vote down

Goto is OK! (is that controversial enough)
Sometimes... so give us the choice! For example, BASH doesn't have goto. Maybe there is some internal reason for this but still.
Also, goto is the building block of Assembly language. No if statements for you! :)

link|flag
2  
@Joshua, you mean interpreted languages? A language like Basic used to be a interpreted language and it certainly had the goto statement. How old are you? – tuinstoel Jan 4 '09 at 21:19
show 6 more comments
vote up 242 vote down

Readability is the most important aspect of your code.

Even more so than correctness. If it's readable, it's easy to fix. It's also easy to optimize, easy to change, easy to understand. And hopefully other developers can learn something from it too.

link|flag
5  
I would temper this statement by replacing "readability" with "modifiability". I've seen entirely too much code that was made "readable" just by puffing it up with whitespace so you could see less of it, and being wordy instead of precise. – Mike Dunlavey Jan 2 '09 at 17:00
2  
I would vote this up if I didn't suspect that you are thinking of some One True Brace Style. – Svante Jan 5 at 2:43
3  
Why do people associate readability so strongly with whitespace? It's a part of it, but a small part. – Motlin Jan 5 at 3:40
3  
Maintainability > Readability. I can auto-reformat code to make it readable anytime. – thenonhacker Jan 6 at 7:08
10  
again, readability is not white-space. readability includes level-of-nesting, function length, cyclomatic complexity, variable names, and a bunch of other things. – Jimmy Jan 8 at 20:59
show 9 more comments
vote up 0 vote down

System.Data.DataSet Rocks!

Strongly-typed DataSets are better, in my opinion, than custom DDD objects for most business applications.

Reasoning: We're bending over backwards to figure out Unit of Work on custom objects, LINQ to SQL, Entity Framework and it's adding complexity. Use a nice code generator from somewhere to generate the data layer and the Unit of Work sits on the object collections (DataTable and DataSet)--no mystery.

link|flag
show 3 more comments
vote up 10 vote down

Using Stored Procedures

Unless you are writing a large procedural function composed of non-reusable SQL queries, please move your stored procedures of the database and into version control.

link|flag
show 6 more comments
vote up 49 vote down

I've been burned for broadcasting these opinions in public before, but here goes:

Well-written code in dynamically typed languages follows static-typing conventions

Having used Python, PHP, Perl, and a few other dynamically typed languages, I find that well-written code in these languages follows static typing conventions, for example:

  • Its considered bad style to re-use a variable with different types (for example, its bad style to take a list variable and assign an int, then assign the variable a bool in the same method). Well-written code in dynamically typed languages doesn't mix types.

  • A type-error in a statically typed language is still a type-error in a dynamically typed language.

  • Functions are generally designed to operate on a single datatype at a time, so that a function which accepts a parameter of type T can only sensibly be used with objects of type T or subclasses of T.

  • Functions designed to operator on many different datatypes are written in a way that constrains parameters to a well-defined interface. In general terms, if two objects of types A and B perform a similar function, but aren't subclasses of one another, then they almost certainly implement the same interface.

While dynamically typed languages certainly provide more than one way to crack a nut, most well-written, idiomatic code in these languages pays close attention to types just as rigorously as code written in statically typed languages.

Dynamic typing does not reduce the amount of code programmers need to write

When I point out how peculiar it is that so many static-typing conventions cross over into dynamic typing world, I usually add "so why use dynamically typed languages to begin with?". The immediate response is something along the lines of being able to write more terse, expressive code, because dynamic typing allows programmers to omit type annotations and explicitly defined interfaces. However, I think the most popular statically typed languages, such as C#, Java, and Delphi, are bulky by design, not as a result of their type systems.

I like to use languages with a real type system like OCaml, which is not only statically typed, but its type inference and structural typing allow programmers to omit most type annotations and interface definitions.

The existence of the ML family of languages demostrates that we can enjoy the benefits of static typing with all the brevity of writing in a dynamically typed language. I actually use OCaml's REPL for ad hoc, throwaway scripts in exactly the same way everyone else uses Perl or Python as a scripting language.

link|flag
3  
100% right. If only the Python developers would finally acknowledge this and change their otherwise exceptional language accordingly. Thanks for posting this. – Konrad Rudolph Jan 9 at 19:50
1  
If anyone says dynamic typing is more terse, just point them to Haskell =). I agree with all but your 3rd bullet point. Dynamic code often accepts parameters that can be one of two types. For example, Prototype functions accept either HTMLElements, or strings which you can use $() to look up to get HTMLElements. A good static typing system will allow you to do this =). – Claudiu May 6 at 7:16
2  
#2 is only true if you follow #1, which in my opinion is unnecessary. If it's clear what the code does, then it is correct. I have a code I use a lot that reads in data from a tab delimited file, and parses that into an array of floats. Why do I need a different variable for each step of the process? The data(as the variable is called) is still the data in each step. – notJim May 8 at 1:38
show 2 more comments
prev 1 2 3 4 5 14 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.