vote up 344 vote down star
418

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
227  
won't the answer with the fewest votes be the most controversial :)? – Doug T. Jan 2 at 14:09
93  
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

395 Answers

1 2 3 4 5 14 next
vote up 73 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 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 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 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
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 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 at 13:23
1  
Agree, but not very controversial? – edg Jan 2 at 14:06
show 6 more comments
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 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 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 577 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
88  
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 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 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 at 14:15
2  
@beepcake and @seanyboy - I think you are heatedly agreeing with each other :) – edg Jan 2 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 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 at 14:16
1  
Sometimes raw performance matters. – David Thornley Jan 2 at 14:52
2  
Not to mention that not all programs run exclusively on a recent version of Windows. – David Thornley Jan 2 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 10 vote down

I really dislike when people tell me to use getters and setters instead of making the variable public when you should be able to both get and set the class variable.

I totally agree on it if it's to change a variable in an object in your object, so you don't get things like: a.b.c.d.e = something; but I would rather use: a.x = something; then a.setX(something); I think a.x = something; actually are both easier to read, and prettier then set/get in the same example.

I don't see the reason by making:

void setX(T x) { this->x = x; }

T getX() { return x; }

which is more code, more time when you do it over and over again, and just makes the code harder to read.

link|flag
6  
There's actually a good reason to use setters: You can do some checking on constraints before assigning the new value to your variable. Even if your current code doesn't require it, it will be much easier to add such checks when there's a setter. – Jorn Jan 2 at 13:43
3  
I was very glad there was a setter on a variable once when I had to make sure some processing was done when it changed. – David Thornley Jan 2 at 14:51
3  
And you set a breakpoint on a public field how, exactly? Setters are brilliant for exactly this reason - you can easily see what code is influencing a value. – Mark Jul 7 at 13:52
show 10 more comments
vote up 427 vote down

I fail to understand why people think that Java is absolutely the best "first" programming language to be taught in universities.

For one, I believe that first programming language should be such that it highlights the need to learn control flow and variables, not objects and syntax

For another, I believe that people who have not had experience in debugging memory leaks in C / C++ cannot fully appreciate what Java brings to the table.

Also the natural progression should be from "how can I do this" to "how can I find the library which does that" and not the other way round.

link|flag
97  
Counter proposal - C++ is the WORST first language to teach, IMO. – Huntrods Jan 2 at 19:21
58  
I think C should be the first language taught, because it makes you need to understand more of "what's under the hood"... Once you can code C well, then have the second language be something very OO. Then something very functional. After that everything is easy. – GordonG Jan 4 at 14:00
21  
I teach at University-level and I think a object-oriented language is a good first language and Java was one of my favorites. But now-days I actually prefer Python, because it is a real script-language, fantastic syntax, multi-paradigm and Java have become harder to handle for beginners. – P-A Feb 23 at 17:07
34  
Everyone should learn [pet language] first, because of [pet feature(s)]. Personally I don't think what first language you choose is very important, it's far more important that it's not the only one you ever learn. Having a broader outlook leads to better developers. – Richard Nichols Apr 16 at 2:44
19  
When I started my first programming job 20 years ago, I was the only one of my group who had never coded with punchcards. Everybody thought that C coders were coddled with CRTs and magnetic media. Just because something is old does not mean that it is the best choice for a first language. I think it's reasonable to pick an environment with fewer barriers to entry. – David Chappelle May 29 at 19:22
show 36 more comments
vote up 42 vote down

Okay, I said I'd give a bit more detail on my "sealed classes" opinion. I guess one way to show the kind of answer I'm interested in is to give one myself :)

Opinion: Classes should be sealed by default in C#

Reasoning:

There's no doubt that inheritance is powerful. However, it has to be somewhat guided. If someone derives from a base class in a way which is completely unexpected, this can break the assumptions in the base implementation. Consider two methods in the base class, where one calls another - if these methods are both virtual, then that implementation detail has to be documented, otherwise someone could quite reasonably override the second method and expect a call to the first one to work. And of course, as soon as the implementation is documented, it can't be changed... so you lose flexibility.

C# took a step in the right direction (relative to Java) by making methods sealed by default. However, I believe a further step - making classes sealed by default - would have been even better. In particular, it's easy to override methods (or not explicitly seal existing virtual methods which you don't override) so that you end up with unexpected behaviour. This wouldn't actually stop you from doing anything you can currently do - it's just changing a default, not changing the available options. It would be a "safer" default though, just like the default access in C# is always "the most private visibility available at that point."

By making people explicitly state that they wanted people to be able to derive from their classes, we'd be encouraging them to think about it a bit more. It would also help me with my laziness problem - while I know I should be sealing almost all of my classes, I rarely actually remember to do so :(

Counter-argument:

I can see an argument that says that a class which has no virtual methods can be derived from relatively safely without the extra inflexibility and documentation usually required. I'm not sure how to counter this one at the moment, other than to say that I believe the harm of accidentally-unsealed classes is greater than that of accidentally-sealed ones.

link|flag
2  
+1 from me. I very rarely have to remove a sealed modifier (and I make everything sealed by default, unless it is immediately clear that it cannot be sealed). – Andreas Huber Jan 2 at 14:18
1  
i think this is an anti-pattern. Classes without inheritance are just modules. Please don't pretend to know what all future programmers will need to do with your code. – Steven A. Lowe Jan 2 at 18:39
1  
Given your reasoning, it's difficult to disagree. However - if I wished to use your class for a purpose which you didn't intend, but through some clever overriding/application of your base methods/properties it will suit my purpose, isn't that my prerogative rather than yours? – BenAlabaster Jan 2 at 22:57
1  
Even so, I should understand the risks in deriving from a non-frozen class. Any changes you make in an unsealed class carry the same penalty, so all you're doing by making everything default-sealed is making it harder to use your code in my own way. – Jeff Hubbard Jan 3 at 21:10
1  
I vastly prefer mocking of interfaces instead of classes anyway, so it's never been an issue for me. – Jon Skeet Jan 7 at 14:54
show 22 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 218 vote down

Design patterns are hurting good design more than they're helping it.

IMO software design, especially good software design is far too varied to be meaningfully captured in patterns, especially in the small number of patterns people can actually remember - and they're far too abstract for people to really remember more than a handful. So they're not helping much.

And on the other hand, far too many people become enamoured with the concept and try to apply patterns everywhere - usually, in the resulting code you can't find the actual design between all the (completely meaningless) Singletons and Abstract Factories.

link|flag
1  
Absolutely agreed. – Max Jan 2 at 13:48
3  
Amen. One more damage done by Smalltalkers, together with "extreme programming" – Nemanja Trifunovic Jan 2 at 17:43
12  
Design Patterns fail not because they are meaningless or far too varied. Design patterns fail because people make the arrogant mistake of equating idioms in their insular little language fiefdoms with grand ontologies that describe and explain the Universe. – dreftymac Jan 3 at 5:07
3  
+100. I've had many co-workers, when asked "how are you going to do X", reply with "Oh, I'm going to use the Visitor pattern" or whatever, as if that was an actual answer to my question. – MusiGenesis Jan 13 at 16:59
28  
Disagree: Patterns are all about communication of intent. The exact implementation detail isn't why you use a pattern; telling maintenance programmers the intent of your thinking in a concise manner is. – Scott Stanchfield Mar 9 at 11:42
show 25 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 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 at 14:08
3  
There is no way testing can replace the usefulness of debuggers and debugging. – tim Jan 2 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 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 186 vote down

Write small methods. It seems that programmers love to write loooong methods where they do multiple different things.

I think that a method should be created wherever you can name one.

link|flag
25  
Agree, but not too controversial? – edg Jan 2 at 14:07
3  
I had an office-mate who practice this and his code used to drive me nuts. Nothing ever got done where I expected it: it was its own form of "spaghetti code." Also, research has shown that longer methods do not produce more bugs. With that said, each method should do 1 task: longer isn't better. – Mark Brittingham Jan 2 at 15:24
4  
AKA: Your method should only do one thing, and only one. – thenonhacker Jan 6 at 7:06
2  
When you've got a sequential set of tasks in a function. Break them up into paragraphs by wrapping them in some scopes { }. This at least maintains the order of the function. – Scott Langham Jan 29 at 15:32
2  
Not sure about this one. I've seen long, well-documented methods that really do a lot in a clean way. I'd rather just follow line-by-line than jump all over the place trying to understand why the developer made 30 methods to do a task with a single path. However, a method should never repeat itself, that's where a loop or a private method should make an appearance. – User1 Sep 15 at 20:51
show 14 more comments
vote up 302 vote down

Getters and Setters are Highly Overused

I've seen millions of people claiming that public fields are evil, so they make them private and provide getters and setters for all of them. I believe this is almost identical to making the fields public, maybe a bit different if you're using threads (but generally is not the case) or if your accessors have business/presentation logic (something 'strange' at least).

I'm not in favor of public fields, but against making a getter/setter (or Property) for everyone of them, and then claiming that doing that is encapsulation or information hiding... ha!

UPDATE:

This answer has raised some controversy in it's comments, so I'll try to clarify it a bit (I'll leave the original untouched since that is what many people upvoted).

First of all: anyone who uses public fields deserves jail time

Now, creating private fields and then using the IDE to automatically generate getters and setters for every one of them is nearly as bad as using public fields.

Many people think:

private fields + public accessors == encapsulation

I say (automatic or not) generation of getter/setter pair for your fields effectively goes against the so called encapsulation you are trying to achieve.

Lastly, let me quote Uncle Bob in this topic (taken from chapter 6 of "Clean Code"):

There is a reason that we keep our variables private. We don't want anyone else to depend on them. We want the freedom to change their type or implementation on a whim or an impulse. Why, then, do so many programmers automatically add getters and setters to their objects, exposing their private fields as if they were public?

link|flag
20  
I wouldn't say it's encapsulation on its own - I'd say it's a first step on the road towards encapsulation. – Jon Skeet Jan 2 at 13:43
10  
This could be restated as "mindless getter/setters." I've found that most of the time you only need a getter. – Leonardo Herrera Jan 2 at 14:33
11  
getters and setters define the interface of your class. It allows you to add logic to the get/set later on, if required. Therefore preferable to public fields. – Richard E Jan 2 at 15:04
9  
This is plane and simply wrong. The idea behind encapsulation is that it provides the ability for the implementation of a class to evolve with affecting client code. That is precisely why you would want to hide a field behind a property. – Seventh Element Jan 26 at 7:43
6  
I'd give this two "up" votes if I could. It gives me screaming fits when I see people doing this - or even, as I saw recently, have their IDE do this AUTOMATICALLY for every data member... – DevSolar Feb 15 at 12:27
show 51 more comments
vote up 146 vote down

I also think there's nothing wrong with having binaries in source control.. if there is a good reason for it. If I have an assembly I don't have the source for, and might not necessarily be in the same place on each devs machine, then I will usually stick it in a "binaries" directory and reference it in a project using a relative path.

Quite a lot of people seem to think I should be burned at the stake for even mentioning "source control" and "binary" in the same sentence. I even know of places that have strict rules saying you can't add them.

link|flag
20  
I think it's more common to have "no generated binaries" - i.e. build X should build its in-house dependencies, rather than relying on the results of a previous build being checked in. There are pros and cons here. – Jon Skeet Jan 2 at 14:32
2  
Sure, I agree that generated binaries are pretty much a nono, and I think that's where people get the seed of the idea from that unfortunately mutates into "no binaries in source control". – Steven Robbins Jan 2 at 14:34
4  
Another good solid idea which got corrupted through thoughtless application. When people spout rules without being able to explain the justification you know it's a bad time for everyone. – duncan Jan 3 at 12:59
show 17 more comments
vote up 510 vote down

Most comments in code are in fact a pernicious form of code duplication.

We spend most of our time maintaining code written by others (or ourselves) and poor, incorrect, outdated, misleading comments must be near the top of the list of most annoying artifacts in code.

I think eventually many people just blank them out, especially those flowerbox monstrosities.

Much better to concentrate on making the code readable, refactoring as necessary, and minimising idioms and quirkiness.

On the other hand, many courses teach that comments are very nearly more important than the code itself, leading to the this next line adds one to invoiceTotal style of commenting.

link|flag
279  
The code should tell you how...the comments should tell you why... – Richard E Jan 2 at 14:59
13  
This seems to be people misunderstanding the differences between school and work. Teachers want pupils to explain what they were trying to do so they can correct the code to match the intent. Once one is writing code that will be read by peers the purpose and content of comments is different. – duncan Jan 2 at 21:39
16  
If you can't understand my code without comments, there's something wrong with my code. Adding comments may mitigate the problem, but doesn't fix it. – Jay Bazuzi Jan 2 at 22:18
12  
The book "Refactoring" (by Martin Fowler) identifies comments as one of the "code smells": if the code needs comments, it isn't clear enough and needs to be refactored. – ShreevatsaR Jan 2 at 22:31
26  
Simple rule I use when commenting: Don't comment what you did, comment why you did it. I can see what you did; the question is typically why in the world you would want do it that way (and there are often non-obvious reasons) – LKM Jan 10 at 12:48
show 27 more comments
vote up 233 vote down

The use of hungarian notation should be punished with death.

That should be controversial enough ;)

link|flag
37  
Nope, not controversial enough. Let them rewrite the complete works of shakespear in hungarian notation: a verb prefixed with v, a noun prefixed with n etc. – Gamecat Jan 2 at 13:55
20  
eh i dunno, i like it for some objects, like textbox = txtFirstName, etc – Shawn Jan 2 at 16:45
19  
joelonsoftware.com/articles/Wrong.html – Ikke Jan 2 at 17:01
12  
I simply disagree. You clearly can go overboard board with it, but in C for example, the lack of a using a preceding "p" on a pointer should in and of itself be punishable by death. – InSciTek Jeff Jan 3 at 21:39
11  
+1, although with reservations: IMHO full blown Hungarian obscures code readability but use of some basic rules - such as p for pointers, does quite the reverse. It's a question of balance – Cruachan Jan 3 at 23:13
show 27 more comments
vote up 334 vote down

1) The Business Apps farce:

I think that the whole "Enterprise" frameworks thing is smoke and mirrors. J2EE, .NET, the majority of the Apache frameworks and most abstractions to manage such things create far more complexity than they solve.

Take any regular Java or .NET ORM, or any supposedly modern MVC framework for either which does "magic" to solve tedious, simple tasks. You end up writing huge amounts of ugly XML boilerplate that is difficult to validate and write quickly. You have massive APIs where half of those are just to integrate the work of the other APIs, interfaces that are impossible to recycle, and abstract classes that are needed only to overcome the inflexibility of Java and C#. We simply don't need most of that.

How about all the different application servers with their own darned descriptor syntax, the overly complex database and groupware products?

The point of this is not that complexity==bad, it's that unnecessary complexity==bad. I've worked in massive enterprise installations where some of it was necessary, but even in most cases a few home-grown scripts and a simple web frontend is all that's needed to solve most use cases.

I'd try to replace all of these enterprisey apps with simple web frameworks, open source DBs, and trivial programming constructs.

2) The n-years-of-experience-required:

Unless you need a consultant or a technician to handle a specific issue related to an application, API or framework, then you don't really need someone with 5 years of experience in that application. What you need is a developer/admin who can read documentation, who has domain knowledge in whatever it is you're doing, and who can learn quickly. If you need to develop in some kind of language, a decent developer will pick it up in less than 2 months. If you need an administrator for X web server, in two days he should have read the man pages and newsgroups and be up to speed. Anything less and that person is not worth what he is paid.

3) The common "computer science" degree curriculum:

The majority of computer science and software engineering degrees are bull. If your first programming language is Java or C#, then you're doing something wrong. If you don't get several courses full of algebra and math, it's wrong. If you don't delve into functional programming, it's incomplete. If you can't apply loop invariants to a trivial for loop, you're not worth your salt as a supposed computer scientist. If you come out with experience in x and y languages and object orientation, it's full of s***. A real computer scientist sees a language in terms of the concepts and syntaxes it uses, and sees programming methodologies as one among many, and has such a good understanding of the underlying philosophies of both that picking new languages, design methods, or specification languages should be trivial.

link|flag
8  
1) I used to work for a big multinational that rhymed with Dunisys. Anyway we used to use the word "Enterprisy" to mean any solution that wasn't complex enough. Like, "asking the user for a password isn't enterprisy enough". – Cameron MacFarland Jan 2 at 14:22
30  
2) Back in 2002 I once saw a job add asking for 2-3 years of C# experience. This basically restricted the job to those who worked on the original C# design team. – Cameron MacFarland Jan 2 at 14:25
10  
Regarding (3), you sound like my echo. – Mike Dunlavey Jan 2 at 20:11
2  
I beleive in abstraction layers. I think the application should be abstracted from the OS in most scenarios. Finally .net/java decouple the app from the OS! Besides when a programmer can concentrate on the usability of an app over low level code, you always get a nicer application. – Jeremy Jan 3 at 20:50
5  
As far as #1, I think there is a tradeoff. Enterprise frameworks add a lot of structure that helps mediocre developers think about the problem in a more organized way. As a PHP developer, I've seen a lot of code that was the result of a developer just thinking of a page as a long list of commands to be executed sequentially. Applications built in this manner are incredibly difficult to debug and keep working, let alone build on top of. – notJim May 8 at 1:26
show 22 more comments
vote up 118 vote down

Every developer should be familiar with the basic architecture of modern computers. This also applies to developers who target a virtual machine (maybe even more so, because they have been told time and time again that they don't need to worry themselves with memory management etc.)

link|flag
1  
agree, and add a real, solid low-level language; just to get some 'feeling' about that architecture. C is good for this – Javier Jan 2 at 14:18
13  
As soon as you say "every" that should be a hint that something is wrong with a statement. – PhoenixRedeemer Jan 2 at 15:02
2  
I'd change this to say every developer should understand, at a basic level, how any platform they utilize should work, wether it's the hardware, or the software. I've seen too many using tools like ajax, ado.net, asp.net and not really understand what's happening under the hood. – Jeremy Jan 3 at 21:14
show 2 more comments
vote up 0 vote down

Once i saw the following from a co-worker:

equal = a.CompareTo(b) == 0;

I stated that he cannot assume that in a general case, but he just laughed.

link|flag
2  
I'd argue that if things don't have a natural equality/ordering relationship, it's better to have a separate IComparer implementation, which can express this explicitly. There are certainly tricky edge cases - is 1.000m equal to 1.0m for example? – Jon Skeet Jan 2 at 14:14
show 11 more comments
vote up 497 vote down

Not all programmers are created equal

Quite often managers think that DeveloperA == DeveloperB simply because they have same level of experience and so on. In actual fact, the performance of one developer can be 10x or even 100x that of another.

It's politically risky to talk about it, but sometimes I feel like pointing out that, even though several team members may appear to be of equal skill, it's not always the case. I have even seen cases where lead developers were 'beyond hope' and junior devs did all the actual work - I made sure they got the credit, though. :)

link|flag
13  
Funny thing is... it's usually the worst devs that think they are 10x or 100x better than the others – John Kraft Jan 2 at 15:00
3  
I wasn't convinced about this being "controversial" until your point about the politics of recognizing it. Good point, there. – Adam Bellaire Jan 2 at 16:42
10  
Yeah, good luck explaining to your boss that In Your Humble Opinion, Joe is 10 times better programmer than Jack when your boss pays them equal wage for identical positions. Dangerous! – Dmitri Nesteruk Jan 2 at 16:53
26  
Another point to make is that prolific != skillful. – Marcin Jan 2 at 19:06
2  
+1 because I recognize myself in the "lead developers were 'beyond hope' and junior devs did all the actual work" part. (me being the lead developer) :-) – jao Jul 1 at 20:11
show 14 more comments
vote up 378 vote down

If you only know one language, no matter how well you know it, you're not a great programmer.

There seems to be an attitude that says once you're really good at C# or Java or whatever other language you started out learning then that's all you need. I don't believe it- every language I have ever learned has taught me something new about programming that I have been able to bring back into my work with all the others. I think that anyone who restricts themselves to one language will never be as good as they could be.

It also indicates to me a certain lack of inquistiveness and willingness to experiment that doesn't necessarily tally with the qualities I would expect to find in a really good programmer.

link|flag
82  
Would you go as far as to say if you only know one kind of language you're not a great programmer? For instance, knowing Java and C# isn't that much better than knowing just one or the other - but knowing Java and Haskell will give much more of an open mind, IMO. – Jon Skeet Jan 2 at 14:02
19  
completely reasonable and uncontroversial opinion - you fail, sir – annakata Jan 2 at 14:49
1  
In fact, I think everyone should learn an Imperative OO language (Java, C++, Python whatever), a functional language (haskell, erlang, OCaml whatever), a concatenative language (Factor, Forth, Cat, Joy etc), a logic programming language (Prolog, Mercury etc) and a dataflow language (labview, estereel, Lustre, verilog, pure data, MAX/MSP etc). This combination will show you that a) there are many radically different paradigms out there, b) some languages really are different and c) you cannot learn them all from a reference. – Dan Jul 7 at 15:02
2  
I would argue that a person is not a master of their field until they are sufficiently well versed in their options such that they both have the knowledge to pick the right tool for the job, and understanding to be flexible enough to do so. For a programmer on a single platform, this might mean a deep knowledge of the language's tools and libraries, but for someone designing a solution, this also means a deep knowledge of programming language paradigms. – T.R. Jul 9 at 3:34
show 25 more comments
vote up 23 vote down

I often get shouted down when I claim that the code is merely an expression of my design. I quite dislike the way I see so many developers design their system "on the fly" while coding it.

The amount of time and effort waisted when one of these cowboys falls off his horse is amazing - and 9 times out of 10 the problem they hit would have been uncovered with just a little upfront design work.

I feel that modern methodologies do not emphasize the importance of design in the overall software development process. Eg, the importance placed on code reviews when you haven't even reviewed your design! It's madness.

link|flag
1  
I don't know, I've seen an upfront design be a very good guide to development. I've never seen it work out such that the upfront design is followed exactly. It seems in my experience that when the rubber hits the road, designs have to be reworked. – Doug T. Jan 2 at 14:11
show 9 more comments
vote up 370 vote down

Performance does matter.

link|flag
4  
I think this is a counter to the widely held opinion that performance doesn't matter since "you can always buy more CPU, hard disk, RAM etc". – edg Jan 2 at 14:11
6  
And I thought the simplicity of the comment was it's main appeal. Ok, for example, many developers do not think about the time complexity of the algorithms that they use. Lesser developers reading this comment just ran off to wikipedia to find out what time complexity is. – Daniel Paull Jan 2 at 14:15
48  
If there weren't so many programmers who think that "you can always buy more RAM", we could nowadays run a complete office suite, a graphical web browser with flash, java etc. plugins, several messaging and online game clients concurrently on a 1 GHz, 256 MB RAM machine without any swap. – Svante Jan 12 at 16:33
11  
Clearly this is the first "controversial" opinion in this question that was really controversial – 1800 INFORMATION Jan 18 at 9:45
16  
To state the obvious, Performance doesn't always matter, it only matters when it matters. The trick is being able to predict when that is before you start coding... Easier is figuring it out after you're done coding... – Charles Bretana Jan 21 at 23:45
show 40 more comments
vote up 31 vote down

You don't have to program everything

I'm getting tired that everything, but then everything needs to be stuffed in a program, like that is always faster. everything needs to be webbased, evrything needs to be done via a computer. Please, just use your pen and paper. it's faster and less maintenance.

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

Code == Design

I'm no fan of sophisticated UML diagrams and endless code documentation. In a high level language, your code should be readable and understandable as is. Complex documentation and diagrams aren't really any more user friendly.


Here's an article on the topic of Code as Design.

link|flag
4  
There's a difference between "hey, check out this UML, see any issues with the architecture?" and "hey, check out my code, see any issues with the architecture?" Humans aren't particularly good at parsing code; they're good at parsing images, though. – LKM Jan 10 at 13:01
4  
UML is always insufficient to describe in detail the problem at hand - if it wasn't, we wouldn't have programming languages. It is at best a formalized sort of handwaving. – nuttycom Mar 30 at 17:07
6  
UML and code are meant for different purposes, and it is not really reasonable to use one in lieu of the other. – Kwang Mark Eleven Jun 11 at 23:32
1  
Show me your flowcharts and conceal your tables, and I shall continue to be mystified. Show me your tables, and I won’t usually need your flowcharts; they’ll be obvious. ― Frederick Brooks, in The Mythical Man‐Month, p. 102. – Teddy Oct 18 at 6:32
show 9 more comments
vote up 47 vote down

Opinion: Unit tests don't need to be written up front, and sometimes not at all.

Reasoning: Developers suck at testing their own code. We do. That's why we generally have test teams or QA groups.

Most of the time the code we write is to intertwined with other code to be tested separately, so we end up jumping through patterned hoops to provide testability. Not that those patterns are bad, but they can sometimes add unnecessary complexity, all for the sake of unit testing...

... which often doesn't work anyway. To write a comprehensive unit test requires alot of time. Often more time than we're willing to give. And the more comprehensive the test, the more brittle it becomes if the interface of the thing it's testing changes, forcing a rewrite of a test that no longer compiles.

link|flag
2  
Yeah, unit tests up front don't really make sense. If I wrote it down, I thought about the possibility. If I thought about the possibility, unless I'm a complete moron it'll at least work the first time around where the test would apply. Testing needs to catch what I DIDN'T think about! – PhoenixRedeemer Jan 2 at 15:00
2  
Unit tests are also about managing change. It's not the code that you are writing right now that needs the tests, but the code after the next iteration of change that will need it. How can you re-factor code if you have no way to prove that what it did before the change is still what it does after? – Greg Jan 6 at 2:39
show 12 more comments
vote up 181 vote down

It's ok to write garbage code once in a while

Sometimes a quick and dirty piece of garbage code is all that is needed to fulfill a particular task. Patterns, ORMs, SRP, whatever... Throw up a Console or Web App, write some inline sql ( feels good ), and blast out the requirement.

link|flag
1  
i've seen advice on SO before stating that you should never code for "throw-away" apps because one day they may become business critical. but generally, that doesn't happen overnight. once you start extending it & depending on it, obviously refactor it, but until then, just make sure it works – brad.lane Jan 2 at 16:56
5  
I would add that if you're adding "garbage code" to a non-garbage app, do it in a way that won't pollute the rest of the app. Encapsulation is especially important for hackish code. – JW Jan 2 at 17:57
3  
I usually work from home and when my kids were a little younger they would look at the screen and say "Dad's doing his garbage writing best keep quiet" The name stuck so when coding I'm still referred to as doing "Garbage writing". Always made me laugh! – Despatcher Jun 19 at 10:22
show 13 more comments
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.