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
20  
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 10 11 12 13 14
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 581 vote down

The only "best practice" you should be using all the time is "Use Your Brain".

Too many people jumping on too many bandwagons and trying to force methods, patterns, frameworks etc onto things that don't warrant them. Just because something is new, or because someone respected has an opinion, doesn't mean it fits all :)

EDIT: Just to clarify - I don't think people should ignore best practices, valued opinions etc. Just that people shouldn't just blindly jump on something without thinking about WHY this "thing" is so great, IS it applicable to what I'm doing, and WHAT benefits/drawbacks does it bring?

link|flag
89  
Not only is it not controversial, but it's not true. I'm happy to use my brain, but there's a lot to be gained from looking at people smarter than you and saying - This smart person does this thing this way and I'd be wise to listen. – seanyboy Jan 2 '09 at 14:12
4  
For example - every time I use someone elses library or implement a solution using a pattern - then I'm "jumping on a bandwagon." The most amazing thing about modern development is the fact that we can re-use the things other smarter people have created. – seanyboy Jan 2 '09 at 14:14
37  
I think you are missing the point entirely seanyboy.. the point is not to ignore any other opinions or technology, it's to evaluate them yourself and apply them where you feel they will be of value, rather than blindly implementing something because AN Other said it was the way to do it! – Steven Robbins Jan 2 '09 at 14:15
2  
@beepcake and @seanyboy - I think you are heatedly agreeing with each other :) – edg Jan 2 '09 at 14:19
10  
If it weren't against the rules I would create 10 more accounts to vote you up on this one. I see this all of the time and it's depressing. – Nelson LaQuet Jan 5 at 6:41
show 27 more comments
vote up 19 vote down

I work in ASP.NET / VB.NET a lot and find ViewState an absolute nightmare. It's enabled by default on the majority of fields and causes a large quantity of encoded data at the start of every web page. The bigger a page gets in terms of controls on a page, the larger the ViewState data will become. Most people don't turn an eye to it, but it creates a large set of data which is usually irrelevant to the tasks being carried on the page. You must manually disable this option on all ASP controls if they're not being used. It's either that or have custom controls for everything.

On some pages I work with, half of the page is made up of ViewState, which is a shame really as there's probably better ways of doing it.

That's just one small example I can think of in terms of language/technology opinions. It may be controversial.

By the way, you might want to edit voting on this thread, it could get quite heated by some ;)

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

In my workplace, I've been trying to introduce more Agile/XP development habits. Continuous Design is the one I've felt most resistance on so far. Maybe I shouldn't have phrased it as "let's round up all of the architecture team and shoot them"... ;)

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

If I were being controversial, I'd have to suggest that Jon Skeet isn't omnipotent..

link|flag
1  
I think you might want to bring yourself up to date on the Jon Skeet facts. Remember: "Can Jon Skeet ask a question he cannot answer? Yes. And he can answer it too." He is omnipotent! – Totophil Jan 7 at 13:57
15  
At first I thought you said John Skeet isn't impotent. – John D. Cook Jan 11 at 3:34
1  
@Totophil: Interesting comment when you consider: Jon Skeet asked this question (and he posted an answer...) – James Curran Feb 18 at 15:39
show 5 more comments
vote up 53 vote down

Respect the Single Responsibility Principle

At first glance you might not think this would be controversial, but in my experience when I mention to another developer that they shouldn't be doing everything in the page load method they often push back ... so for the children please quit building the "do everything" method we see all to often.

link|flag
3  
How is that controversial? – Vinko Vrsalovic Jan 2 '09 at 13:23
1  
Agree, but not very controversial? – edg Jan 2 '09 at 14:06
show 6 more comments
vote up 12 vote down

Stay away from Celko!!!!

http://www.dbdebunk.com/page/page/857309.htm

I think it makes a lot more sense to use surrogate primary keys then "natural" primary keys.


@ocdecio: Fabian Pascal gives (in chapter 3 of his book Practical issues in database management, cited in point 3 at the page that you link) as one of the criteria for choosing a key that of stability (it always exists and doesn't change). When a natural key does not possesses such property, than a surrogate key must be used, for evident reasons, to which you hint in comments.

You don't know what he wrote and you have not bothered to check, otherwise you could discover that you actually agree with him. Nothing controversial there: he was saying "don't be dogmatic, adapt general guidelines to circumstances, and, above all, think, use your brain instead of a dogmatic/cookbook/words-of-guru approach".

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

The world needs more GOTOs

GOTOs are avoided religiously often with no reasoning beyond "my professor told me GOTOs are bad." They have a purpose and would greatly simplify production code in many places.

That said, they aren't really necessary in 99% of the code you'll ever write.

link|flag
3  
I agree. Not necessarily that we need more gotos, but that sometimes programmers go to ridiculous lengths to avoid them: such as creating bizarre constructs like: do { ... break; ... } while (false); to simulate a goto while pretending not to use one. – Ferruccio Jan 2 '09 at 13:20
3  
I have seen only 1 example of a good usage for the last 5 years, so make it 99,999 percent. – Paco Jan 2 '09 at 13:51
5  
I've never had to use a goto for anything. Anytime when I actually thought goto might be a good idea, it was instead an indicator that things weren't flowing properly. – PhoenixRedeemer Jan 2 '09 at 15:06
14  
+1 for controversy :). Oh, I know what GOTO's are, I started with BASIC like many of you. We need more GOTO's like we need DOS 8.3 filenames, plain ASCII encoding, FAT 16 filesystems, and 5 1/4 inch floppies. – steveth45 Jan 7 at 8:26
8  
This thread considered harmful. Edsger Dijkstra is rolling in his grave. :) – Darcy Casselman Mar 23 at 14:07
show 26 more comments
prev 1 10 11 12 13 14

Your Answer

Get an OpenID
or

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