vote up 347 vote down star
422

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
233  
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 3 4 5 6 7 14 next
vote up 9 vote down

My controversial opinion? Java doesn't suck but Java API's do. Why do java libraries insist on making it hard to do simple tasks? And why, instead of fixing the APIs, do they create frameworks to help manage the boilerplate code? This opinion can apply to any language that requires 10 or more lines of code to read a line from a file.

link|flag
vote up 9 vote down

coding is not typing

It takes time to write the code. Most of the time in the editor window, you are just looking at the code, not actually typing. Not as often, but quite frequently, you are deleting what you have written. Or moving from one place to another. Or renaming.

If you are banging away at the keyboard for a long time you are doing something wrong.

Corollary: Number of lines of code written per day is not a linear measurement of a programmers productivity, as programmer that writes 100 lines in a day is quite likely a better programmer then the one that writes 20, but one that writes 5000 is certainly a bad programmer

link|flag
1  
Very much agree with this. Did you see that recent thread where the consensus seemed to be that if you can't touch type at 80wpm you aren't a real programmer? Complete nonsense, although people seem to like that sort of testosterone-driven "productivity". – ChrisA Jan 7 at 17:53
show 2 more comments
vote up 9 vote down

Code Generation is bad

I hate languages that require you to make use of code generation (or copy&paste) for simple things, like JavaBeans with all their Getters and Setters.

C#'s AutoProperties are a step in the right direction, but for nice DTOs with Fields, Properties and Constructor parameters you still need a lot of redundancy.

link|flag
1  
Code Generation is bad... so do you hate compilers also? (Hint: code generation is a broad subject, don't be deceived by crappy languages/frameworks). – MaD70 Nov 5 at 23:45
vote up 9 vote down

A programming task is only fun while it's impossible, that is up til the point where you've convinced yourself you'll be able to solve it successfully.

This, I suppose, is why so many of my projects end up halfway finished in a folder called "to_be_continued".

link|flag
vote up 9 vote down

If you want to write good software then step away from your computer

Go and hang out with the end users and the people who want and need the software. Only from them will you understand what your software needs to accomplish and how it needs to do that.

  • Ask them what the love & hate about the existing processes.
  • Ask them about the future of their processes, where it is headed.
  • Hang out and see what they use now and figure out their usage patterns. You need to meet and match their usage expectations. See what else they use a lot, particularly if they like it and can use it efficiently. Match that.

The end user doesn't give a rat's how elegant your code is or what language it's in. If it works for them and they like using it, you win. If it doesn't make their lives easier and better - they hate it, you lose.

Walk a mile in their shoes - then go write your code.

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

Greater-than operators (>, >=) should be deprecated

I tried coding with a preference for less-than over greater-than for awhile and it stuck! I don't want to go back, and indeed I feel that everyone should do it my way in this case.

Consider common mathematical 'range' notation: 0 <= i < 10

That's easy to approximate in code now and you get used to seeing the idiom where the variable is repeated in the middle joined by &&:

if (0 <= i && i < 10)
    return true;
else
    return false;

Once you get used to that pattern, you'll never look at silliness like

if ( ! (i < 0 || i >= 9))
    return true;

the same way again.

Long sequences of relations become a bit easier to work with because the operands tend towards nondecreasing order.

Furthermore, a preference for operator< is enshrined in the C++ standards. In some cases operator= is defined in terms of it! (as !(a<b || b<a))

link|flag
1  
if (30 < text.Length) throw .... is another option Actually, I prefer (!(text.Length <= 30)) because it nicely matches assert(text.Length <= 30). Think about when multiple conditions get compounded. Keeping the error checking logic in that 'positive assertion' sense helps reduce logic bugs. I know it looks a little strange the first time. It's controversial and I don't push it on others. But try it with an open mind and you might grow to like it better. Or you might not. :-) – Marsh Ray Jul 29 at 16:57
show 3 more comments
vote up 9 vote down

I generally hold pretty controversial, strong and loud opinions, so here's just a couple of them:

"Because we're a Microsoft outfit/partner/specialist" is never a valid argument.

The company I'm working in now identifies itself, first and foremost, as a Microsoft specialist. So the aforementioned argument gets thrown around quite a bit, and I've yet to see a context where it's valid.

I can't see why it's a reason to promote Microsoft's technology and products in every applicable corner, overriding customer and employee satisfaction, and general pragmatics.

This just a cornerstone of my deep hatred towards politics in software business.

MOSS (Microsoft Office Sharepoint Server) is a piece of shit.

Kinda echoes the first opinion, but I honestly think MOSS, as it is, should be shot out of the market. It costs gazillions to license and set up, pukes on web standards and makes developers generally pretty unhappy. I have yet to see a MOSS project that has an overall positive outcome.

Yet time after time, a customer approaches us and asks for a MOSS solution.

link|flag
show 2 more comments
vote up 8 vote down

Debuggers should be forbidden. This would force people to write code that is testable through unit tests, and in the end would lead to much better code quality.

Remove Copy & Paste from ALL programming IDEs. Copy & pasted code is very bad, this option should be completely removed. Then the programmer will hopefully be too lazy to retype all the code so he makes a function and reuses the code.

Whenever you use a Singleton, slap yourself. Singletons are almost never necessary, and are most of the time just a fancy name for a global variable.

link|flag
1  
I have noticed a definite inverse relationship between design/coding skill and skill in using a debugger (which is not the same as having debugging skills). – Ferruccio Jan 2 '09 at 13:46
1  
I agree, all the code you see in stackoverflow should not be tested code because if it is tested it is copied from an IDE and copying from an IDE should be impossible:) So please post only untested code on SO! – tuinstoel Jan 2 '09 at 14:08
3  
There is no way testing can replace the usefulness of debuggers and debugging. – tim Jan 2 '09 at 14:21
3  
Right.. Get rid of debuggers - so that you can't see the results of your code until then end, rather than step your way through to see exactly WHERE the problem crops up. I'll take debuggers over dozens of "temporary, interim display statements" ANY day. – David Jan 2 '09 at 14:44
4  
I agree with getting rid of copy-paste as long as you can still cut-paste. Cutting and pasting code is essential to refactoring and keeping the code in a clean state. – Sergio Acosta Mar 11 at 8:57
show 37 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 '09 at 13:41
show 5 more comments
vote up 8 vote down

The ability to create UML diagrams similar to pretzels with mad cow disease is not actually a useful software development skill.

The whole point of diagramming code is to visualise connections, to see the shape of a design. But once you pass a certain rather low level of complexity, the visualisation is too much to process mentally. Making connections pictorially is only simple if you stick to straight lines, which typically makes the diagram much harder to read than if the connections were cleverly grouped and routed along the cardinal directions.

Use diagrams only for broad communication purposes, and only when they're understood to be lies.

link|flag
vote up 8 vote down

Web applications suck

My Internet connection is veeery slow. My experience with almost every Web site that is not Google is, at least, frustrating. Why doesn't anybody write desktop apps anymore? Oh, I see. Nobody wants to be bothered with learning how operating systems work. At least, not Windows. The last time you had to handle WM_PAINT, your head exploded. Creating a worker thread to perform a long task (I mean, doing it the Windows way) was totally beyond you. What the hell was a callback? Oh, my God!


Garbage collection sucks

No, it actually doesn't. But it makes the programmers suck like nothing else. In college, the first language they taught us was Visual Basic (the original one). After that, there was another course where the teachers pretended they taught us C++. But the damage was done. Nobody actually knew how to use this esoteric keyword delete did. After testing our programs, we either got invalid address exceptions or memory leaks. Sometimes, we got both. Among the 1% of my faculty who can actually program, only one who can manage his memory by himself (at least, he pretends) and he's writing this rant. The rest write their programs in VB.NET, which, by definition, is a bad language.


Dynamic typing suck

Unless you're using assembler, of course (that's the kind of dynamic typing that actually deserves praise). What I meant is the overhead imposed by dynamic, interpreted languages makes them suck. And don't come with that silly argument that different tools are good for different jobs. C is the right language for almost everything (it's fast, powerful and portable), and, when it isn't (it's not fast enough), there's always inline assembly.


I might come up with more rants, but that will be later, not now.

link|flag
1  
C may be fast to execute, but dynamic, interpreted languages are faster to develop in. I think you're being a little close-minded here. – Kiv Jan 3 '09 at 2:23
1  
Sure, dynamic languages should be burned. From now on I shall always compile my shell scripts to machine code. – Rene Saarsoo Jan 3 '09 at 20:11
1  
That's 3 opinions in one answer, and they're all dupes – finnw Jan 17 at 17:55
show 4 more comments
vote up 8 vote down

Preconditions for arguments to methods/functions should be part of the language rather than programmers checking it always.

link|flag
1  
I like it, but it is controversial? – erikkallen Jan 3 '09 at 22:53
vote up 8 vote down

The best programmers trace all their code in the debugger and test all paths.

Well... the OP said controversial!

link|flag
show 2 more comments
vote up 8 vote down

Requirements analysis, specification, design, and documentation will almost never fit into a "template." You are 100% of the time better off by starting with a blank document and beginning to type with a view of "I will explain this in such a way that if I were dead and someone else read this document, they would know everything that I know and see and understand now" and then organizing from there, letting section headings and such develop naturally and fit the task you are specifying, rather than being constrained to some business or school's idea of what your document should look like. If you have to do a diagram, rather than using somebody's formal and incomprehensible system, you're often better off just drawing a diagram that makes sense, with a clear legend, which actually specifies the system you are trying to specify and communicates the information that the developer on the other end (often you, after a few years) needs to receive.

[If you have to, once you've written the real documentation, you can often shoehorn it into whatever template straightjacket your organization is imposing on you. You'll probably find yourself having to add section headings and duplicate material, though.]

The only time templates for these kinds of documents make sense is when you have a large number of tasks which are very similar in nature, differing only in details. "Write a program to allow single-use remote login access through this modem bank, driving the terminal connection nexus with C-Kermit," "Produce a historical trend and forecast report for capacity usage," "Use this library to give all reports the ability to be faxed," "Fix this code for the year 2000 problem," and "Add database triggers to this table to populate a software product provided for us by a third-party vendor" can not all be described by the same template, no matter what people may think. And for the record, the requirements and design diagramming techniques that my college classes attempted to teach me and my classmates could not be used to specify a simple calculator program (and everyone knew it).

link|flag
vote up 8 vote down

For a good programmer language is not a problem.

It may be not very controvertial but I hear a lot o whining from other programmers like "why don't they all use delphi?", "C# sucks", "i would change company if they forced me to use java" and so on.
What i think is that a good programmer is flexible and is able to write good programms in any programming language that he might have to learn in his life

link|flag
1  
I can agree with this. The real truth here is that there is a tool for every job. Sometimes that tool may be Perl. Sometimes it may be vbScript, sometimes Java, sometimes C#, and sometime even C++... The good developer knows WHICH tool is right for the job. – LarryF Jan 14 at 23:57
show 7 more comments
vote up 8 vote down

The worst thing about recursion is recursion.

link|flag
1  
Before you understand recursion, you must first understand recursion. – Chadworthington May 24 at 5:43
show 2 more comments
vote up 8 vote down

The vast majority of software being developed does not involve the end-user when gathering requirements.

Usually it's just some managers who are providing 'requirements'.

link|flag
vote up 8 vote down

Any sufficiently capable library is too complicated to be useable and any library simple enough to be usable lacks that capabilities needed to be a good general solution.

I run in to this constantly. Exhaustive libraries that are so complicated to use I tear my hair out and simple easy to use libraries that don't quite do what I need them to do.

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

VB 6 could be used for good as well as evil. It was a Rapid Application Development environment in a time of over complicated coding.

I have hated VB vehemently in the past, and still mock VB.NET (probably in jest) as a Fisher Price language due to my dislike of classical VB, but in its day, nothing could beat it for getting the job done.

link|flag
vote up 8 vote down

I don't know if it's really controversial, but how about this: Method and function names are the best kind of commentary your code can have; if you find yourself writing a comment, turn the the piece of of code you're commenting into a function/method.

Doing this has the pleasant side-effect of forcing you to decompose your program well, avoids having comments that can quickly become out of sync with reality, gives you something you can grep the codebase for, and leaves your code with a fresh lemon odour.

link|flag
show 2 more comments
vote up 8 vote down

A Good Programmer Hates Coding

Similar to "A Good Programmer is a Lazy Programmer" and "Less Code is Better." But by following this philosophy, I have managed to write applications which might otherwise use several times as much code (and take several times as much development time). In short: think before you code. Most of the parts of my own programs which end up causing problems later were parts that I actually enjoyed coding, and thus had too much code, and thus were poorly written. Just like this paragraph.

A Good Programmer is a Designer

I've found that programming uses the same concepts as design (as in, the same design concepts used in art). I'm not sure most other programmers find the same thing to be true; maybe it is a right brain/left brain thing. Too many programs out there are ugly, from their code to their command line user interface to their graphical user interface, and it is clear that the designers of these programs were not, in fact, designers.

Although correlation may not, in this case, imply causation, I've noticed that as I've become better at design, I've become better at coding. The same process of making things fit and feel right can and should be used in both places. If code doesn't feel right, it will cause problems because either a) it is not right, or b) you'll assume it works in a way that "feels right" later, and it will then again be not right.

Art and code are not on opposite ends of the spectrum; code can be used in art, and can itself be a form of art.

Disclaimer: Not all of my code is pretty or "right," unfortunately.

link|flag
vote up 8 vote down

My controversial opinion: Object Oriented Programming is absolutely the worst thing that's ever happened to the field of software engineering.

The primary problem with OOP is the total lack of a rigorous definition that everyone can agree on. This easily leads to implementations that have logical holes in them, or language like Java that adhere to this bizarre religious dogma about what OOP means, while forcing the programmer into doing all these contortions and "design patterns" just to work around the limitations of a particular OOP system.

So, OOP tricks the programmer into thinking they're making these huge productivity gains, that OOP is somehow a "natural" way to think, while forcing the programmer to type boatloads of unnecessary boilerplate.

Then since nobody knows what OOP actually means, we get vast amounts of time wasted on petty arguments about whether language X or Y is "truly OOP" or not, what bizarre cargo cultish language features are absolutely "essential" for a language to be considered "truly OOP".

Instead of demanding that this language or that language be "truly oop", we should be looking at what language features are shown by experiment, to actually increase productivity, instead of trying to force it into being some imagined ideal language, or indeed forcing our programs to conform to some platonic ideal of a "truly object oriented program".

Instead of insisting that our programs conform to some platonic ideal of "Truly object oriented", how about we focus on adhering to good engineering principles, making our code easy to read and understand, and using the features of a language that are productive and helpful, regardless of whether they are "OOP" enough or not.

link|flag
1  
Incorrect. There's nothing wrong with OOP, it's just a strategy. What the problem is, is the attitude that I should have "embraced" it, or the only alternative is I'm some backwards beginner. It is not the end all be all, it is not a religion, and I don't have to be crucified in order to expunge me from the pool of programmers so that all "right" thinking programmers can live free of sin. I posted my answer to this question because it is the most controversial opinion I have. That was the question. – Breton May 26 at 2:22
1  
the reason it's the worst thing to happen to programming is that it prevents programmers from looking at other solutions that may actually be better suited to the problem, and it prevents us from looking ot or accepting new paradigms that might be better suited to most problems. – Breton May 26 at 2:25
1  
I hate when newcomers lecture me about the greatness of OOP when I program in OO languages from mid '80s. They are totally blind to OOP shortcomings, they don't know that "OOP" is an ill-defined concept and, worst of all, they ignore a whole world of options w.r.t. programming paradigms. – MaD70 Nov 6 at 0:55
show 7 more comments
vote up 8 vote down

Copy/Paste IS the root of all evil

link|flag
show 2 more comments
vote up 7 vote down

I firmly believe that unmanaged code isn't worth the trouble. The extra maintainability expenses associated with hunting down memory leaks which even the best programmers introduce occasionally far outweigh the performance to be gained from a language like C++. If Java, C#, etc. can't get the performance you need, buy more machines.

link|flag
2  
if you can't track memory leaks, you're not worth to use high-powered tools. – Javier Jan 2 '09 at 14:16
1  
Sometimes raw performance matters. – David Thornley Jan 2 '09 at 14:52
2  
Not to mention that not all programs run exclusively on a recent version of Windows. – David Thornley Jan 2 '09 at 14:54
2  
I firmly believe that we don't need airplanes, we can always use cars, right...? And if we need to cross the open sea, we could just use a boat, right...? – Thomas Hansen Jan 10 at 20:54
4  
Right tool, right job. Go try and code that kernel or NIC driver in C# and get back to us. Yes, there are plenty of folks who stick with the language they know, but your unqualified answer is overly broad. (And that from a Java developer!) – Stu Thompson Apr 28 at 20:44
show 13 more comments
vote up 7 vote down

We do a lot of development here using a Model-View-Controller framework we built. I'm often telling my developers that we need to violate the rules of the MVC design pattern to make the site run faster. This is a hard sell for developers, who are usually unwilling to sacrifice well-designed code for anything. But performance is our top priority in building web applications, so sometimes we have to make concessions in the framework.

For example, the view layer should never talk directly to the database, right? But if you are generating large reports, the app will use a lot of memory to pass that data up through the model and controller layers. If you have a database that supports cursors, it can make the app a lot faster to hit the database directly from the view layer.

Performance trumps development standards, that's my controversial view.

link|flag
1  
Performance trumps development standards -- if it is too poor to stand. As long as performance is not a problem, there is no need to fix it. – Aaron Digulla Feb 27 at 14:53
show 2 more comments
vote up 7 vote down

VB sucks
While not terribly controversial in general, when you work in a VB house it is

link|flag
1  
That this is not generally controversial shows how generally up themselves so many programmers are. Have a preference - fine. But when it comes down to whether you have a word (that you don't even have to type) or a '}' to terminate a block, it's just a style choice... – ChrisA Jan 7 at 14:15
show 4 more comments
vote up 7 vote down

Relational databases are awful for web applications.

For example:

  • threaded comments
  • tag clouds
  • user search
  • maintaining record view counts
  • providing undo / revision tracking
  • multi-step wizards
link|flag
1  
kendall, that's just trash. the biggest databases in the world have traditionally been oodbs. they handle all kinds of workload. – Niko Apr 12 at 10:02
show 3 more comments
vote up 7 vote down

Sometimes jumping on the bandwagon is ok

I get tired of people exhibiting "grandpa syndrome" ("You kids and your newfangled Test Driven Development. Every big technology that's come out in the last decade has sucked. Back in my day, we wrote real code!"... you get the idea).

Sometimes things that are popular are popular for a reason.

link|flag
show 2 more comments
vote up 7 vote down

Assembly is the best first programming language.

link|flag
show 2 more comments
vote up 7 vote down

The code is the design

link|flag
prev 1 3 4 5 6 7 14 next

Your Answer

Get an OpenID
or

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