vote up 346 vote down star
420

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
229  
won't the answer with the fewest votes be the most controversial :)? – Doug T. Jan 2 at 14:09
97  
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 next
vote up 0 vote down

Not everything needs to be encapsulated into its own method. Some times it is ok to have a method do more then one thing.

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

Don't worry too much about what language to learn, use the industry heavy weights like c# or python. Languages like Ruby are fun in the bedroom, but don't do squat in workplace scenarios. Languages like c# and Java can handle small to the very large software projects. If anyone says otherwise, then your talking about a scripting language. Period!

Before starting a project, consider how much support and code samples are available on the net. Again, choosing a language like Ruby which has very few code samples on the web compared to Java for example, will only cause you grief further down the road when your stuck on a problem.

You can't post a message on a forum and expect an answer back while your boss is asking you how your coding is going. What are you going to say? "I'm waiting for someone to help me out on this forum"

Learn one language and learn it good. Learning multiple languages may carry over skills and practices, but you'll only even be OK at all of them. Be good at one. There are entire books dedicated to Threading in Java which, when you think about it, is only one namespace out of over 100.

Master one or be ok at lots.

link|flag
vote up 0 vote down

USE of Desgin patterns and documentation

in web devlopment whats use of these things never felt any use of it

link|flag
vote up 0 vote down

Controversial to self, because some things are better be left unsaid, so you won't be painted by others as too egotist. However, here it is:

If it is to be, it begins with me

link|flag
vote up 0 vote down

"Don't call virtual methods from constructors". This is only sometimes a PITA, but is only so because in C# I cannot decide at which point in a constructor to call my base class's constructor. Why not? The .NET framework allows it, so what good reason is there for C# to not allow it?

Damn!

link|flag
vote up 0 vote down

Apparently mine is that Haskell has variables. This is both "trivial" (according to at least eight SO users) (though nobody can seem to agree on which trivial answer is correct), and a bad question even to ask (according to at least five downvoters and four who voted to close it). Oh, and I (and computing scientests and mathematicians) am wrong, though nobody can provide me a detailed explanation of why.

link|flag
1  
"double x = x * 2" makes no sense in no language. Not even C. – luiscubal Jul 17 at 17:44
show 3 more comments
vote up 0 vote down

Jon Bentley's 'Programming Pearls' is no longer a useful tome.

http://tinyurl.com/nom56r

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

Never change what is not broken.

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

If you haven't read a man page, you're not a real programmer.

link|flag
vote up 0 vote down

Copy/Pasting is not an antipattern, it fact it helps with not making more bugs

My rule of thumb - typing only something that cannot be copy/pasted. If creating similar method, class, or file - copy existing one and change what's needed. (I am not talking about duplicating a code that should have been put into a single method).

I usually never even type variable names - either copy pasting them or using IDE autocompletion. If need some DAO method - copying similar one and changing what's needed (even if 90% will be changed). May look like extreme laziness or lack of knowledge to some, but I almost never have to deal with problems caused my misspelling something trivial, and they are usually tough to catch (if not detected on a compile level).

Whenever I step away from my copy-pasting rule and start typing stuff I always misspelling something (it's just a statistics, nobody can write perfect text off the bat) and then spending more time trying to figure out where.

link|flag
vote up 0 vote down

"XML and HTML are the "assembly language" of the web. Why still hack it?

It seems fairly obvious that very few developers these days learn/code in assembly language for reason that it's primitive and takes you far away from the problem you have to solve at high-level. So we invented high-level languages to encapsulates those level entities to boost our productivity thru the language elements that we can relate to more at higher level. Just like we can do more with a computer than just its constituent motherboard or CPU.

With the Web, it seems to me developers still are reading/writing and hacking HTML,CSS,XMl,schemas, etc.

I see these as the equivalent of "assembly language" of the Web or its substrates. Should we be done with it?. Sure, we need to hack it sometimes when things go wrong. But surely, that's an exception. I assert that we are replacing lower-level assembly language at machine level with its equivalent at Web-level.

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

Human brain is the master key to all locks.

There is nothing in this world that can move faster your brain. Trust me this is not philosophical but practical. Well as far as opinions are concerned , they are as under


1) Never go outside the boundry specified in the programming language, A simple example would be pointers in C and C++. Dont misuse them as you are likely to get the DAMN SEGMENTATION FAULT.

2) Always follow the coding standards, yes what you are reading is correct, Coding standards do alot to your program, After all your program is written to be executed by machine but to be understood by some other brain :)

link|flag
vote up 0 vote down

Neither Visual Basic or C# trumps the other. They are pretty much the same, save some syntax and formatting.

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

Macros, Preprocessor instructions and Annotations are evil.

One syntax and language per file please!

// does not apply to Make files, or editor macros that insert real code.

link|flag
vote up 0 vote down

It's fine if you don't know. But you're fired if you can't even google it.

Internet is a tool. It's not making you stupider if you're learning from it.

link|flag
vote up 0 vote down

Don't be shy, throw an exception. Exceptions are a perfectly valid way to signal failure, and are much clearer than any return-code system. "Exceptional" has nothing to do with how often this can happen, and everything to do with what the class considers normal execution conditions. Throwing an exception when a division by zero occurs is just fine, regardless of how often the case can happen. If the problem is likely, guard your code so that the method doesn't get called with incorrect arguments.

link|flag
vote up -1 vote down

Exceptions considered harmful.

link|flag
1  
Checked exceptions. Unchecked exceptions are fantastic and do a great job of stabilizing your app. – Bill K Jan 9 at 17:55
vote up -1 vote down

Higher level lanugages should be one based instead of zero based. This would eliminate "off by one" errors when dealing with arrays/collections.

link|flag
1  
@tuinstoel, that's what lists are for. Sometimes you need random access to elements. For that, you need an index. By the way, I don't agree that arrays should be one based. Zero is more convenient most of the time IMHO. – Matthew Crumley Jan 3 at 2:07
1  
Wrong. Zero-based arrays are the most natural ones. When you use zero-based arrays, the array's length is the set of valid indices, according to Peano arithmetic. – Eduardo León Jan 3 at 3:47
1  
I find one-based leads to even more off by one erros. – Matthias Wandel Jan 3 at 15:56
show 7 more comments
vote up -1 vote down

"Good Coders Code and Great Coders Reuse It" This is happening right now But "Good Coder" is the only ONE who enjoy that code. and "Great Coders" are for only to find out the bug in to that because they don't have the time to think and code. But they have time for find the bug in that code.

so don't criticize!!!!!!!!

Create your own code how YOU want.

link|flag
show 2 more comments
vote up -1 vote down

Managers know everything

It's been my experience that managers didn't get there by knowing code usually. No matter what you tell them it's too long, not right or too expensive.

And another that follows on from the first:

There's never time to do it right but there's always time to do it again

A good engineer friend once said that in anger to describe a situation where management halved his estimates, got a half-assed version out of him then gave him twice as much time to rework it because it failed. It's a fairly regular thing in the commercial software world.

And one that came to mind today while trying to configure a router with only a web interface:

Web interfaces are for suckers

The CLI on the previous version of the firmware was oh so nice. This version has a web interface, which attempts to hide all of the complexity of networking from clueless IT droids, and can't even get VLANs correct.

link|flag
vote up -1 vote down

Logger configs are a waste of time. Why have them if it means learning a new syntax, especially one that fails silently? Don't get me wrong, I love good logging. I love logger inheritance and adding formatters to handlers to loggers. But why do it in a config file?

Do you want to make changes to logging code without recompiling? Why? If you put your logging code in a separate class, file, whatever, what difference will it make?

Do you want to distribute a configurable log with your product to clients? Doesn't this just give too much information anyway?

The most frustrating thing about it is that popular utilities written in a popular language tend to write good APIs in the format that language specifies. Write a Java logging utility and I know you've generated the javadocs, which I know how to navigate. Write a domain specific language for your logger config and what do we have? Maybe there's documentation, but where the heck is it? You decide on a way to organize it, and I'm just not interested in following your line of thought.

link|flag
1  
"Do you want to make changes to logging code without recompiling?Why?" All the time. I have a deployed server that has no reason to log the finest detail when it's serving production traffic, but I have to be able to turn logging on when something goes wrong. Perhaps you just don't work on the type of applications for which this is necessary, but it's not a superfluous feature. – Kai Apr 25 at 21:48
show 1 more comment
vote up -1 vote down

Size matters.    

link|flag
vote up -2 vote down

Developers should be able to modify production code without getting permission from anyone as long as they document their changes and notify the appropriate parties.

link|flag
2  
@Eric Mills: Go work for a bank, or qualify your answer. Maybe you are unaware or underestimating the impact erroneous (or even malicious) code changes can have on a company. Hours of work lost, bazillions of space credits blown. Careers have been destroyed over these kinds of things, people fired on the spot. Probably not something you'll understand until you are personally responsible for an insanely important system...and some cowboy wants to tweak it at will. – Stu Thompson Apr 28 at 19:59
show 6 more comments
vote up -2 vote down

It Works, It's compatible, It'll be released soon

link|flag
vote up -2 vote down

The C++ STL library is so general purpose that it is optimal for no one.

link|flag
vote up -3 vote down

You must know C to be able to call yoursel a programmer!

link|flag
1  
Completely disagree. C isn't the be-all-and-end-all of programming. There were many languages before it, and there are many languages after it that will suit different situations better than C will. Also, programming is about the analytical problem solving, and not just writing code in a particular language. – Jasarien Oct 13 at 21:36
show 3 more comments
vote up -4 vote down

My controversial view is that the "While" construct should be removed from all programming languages.

You can easily replicate While using "Repeat" and a boolean flag, and I just don't believe that it's useful to have the two structures. In fact, I think that having both "Repeat...Until" and "While..EndWhile" in a language confuses new programmers.

Update - Extra Notes

One common mistake new programmers make with While is they assume that the code will break as soon as the tested condition flags false. So - If the While test flags false half way through the code, they assume a break out of the While Loop. This mistake isn't made as much with Repeat.

I'm actually not that bothered which of the two loops types is kept, as long as there's only one loop type. Another reason I have for choosing Repeat over While is that "While" functionality makes more sense written using "repeat" than the other way around.

Second Update: I'm guessing that the fact I'm the only person currently running with a negative score here means this actually is a controversial opinion. (Unlike the rest of you. Ha!)

link|flag
1  
This is nonsense. Neither repeat nor while will break in the middle so your argument is absurd. Basically the developers need to be instructed in the use of break/exit/goto to exit a loop early. As for testing condition at the beginning/end both have their uses. – Cervo Jan 2 at 18:20
1  
"One common ... flags false" - How common is this? In what language? Perhaps the answer for those who have this idea when it's false is "RTFM!". This is just a bad solution looking for a problem it can't find. – duncan Jan 4 at 11:19
show 10 more comments
vote up -4 vote down

Software sucks due to a lack of diversity. No offense to any race but things work pretty when a profession is made up of different races and both genders. Just look at overusing non-renewable energy. It is going great because everyone is contributing, not just the "stereotypical guy"

link|flag
4  
...........WTF? – Damien Oct 13 at 20:59
show 2 more comments
vote up -4 vote down

C must die.

Voluntarily programming in C when another language (say, D) is available should be punishable for neglect.

link|flag
3  
Disagree. If C is the language you are more comfortable in, and is suitable for the task, then C is the language that would make most sense for you to develop in. If you're already proficient in C, then why waste the time learning D (as you put it) if you could complete the task to an acceptable standard using C? – Jasarien Oct 13 at 21:38
show 2 more comments
prev 1 10 11 12 13 14 next

Your Answer

Get an OpenID
or

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