vote up 363 vote down star
437

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
241  
won't the answer with the fewest votes be the most controversial :)? – Doug T. Jan 2 '09 at 14:09
104  
The controversial ones have the most comments, not upvotes. – Bill the Lizard Jan 7 '09 at 3:35
22  
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
19  
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

411 Answers

prev 1 10 11 12 13 14
vote up 126 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 '09 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 '09 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 '09 at 21:14
show 2 more comments
vote up 353 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
9  
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 '09 at 14:22
35  
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 '09 at 14:25
10  
Regarding (3), you sound like my echo. – Mike Dunlavey Jan 2 '09 at 20:11
3  
The number 1 deserves more than one vote..., well said! – Alex. S. Jan 5 '09 at 22:14
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 246 vote down

The use of hungarian notation should be punished with death.

That should be controversial enough ;)

link|flag
41  
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 '09 at 13:55
23  
eh i dunno, i like it for some objects, like textbox = txtFirstName, etc – Shawn Simon Jan 2 '09 at 16:45
23  
joelonsoftware.com/articles/Wrong.html – Ikke Jan 2 '09 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 '09 at 21:39
13  
+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 '09 at 23:13
show 29 more comments
vote up 537 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
304  
The code should tell you how...the comments should tell you why... – Richard E Jan 2 '09 at 14:59
15  
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 '09 at 21:39
19  
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 '09 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 '09 at 22:31
28  
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 '09 at 12:48
show 27 more comments
vote up 151 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 '09 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 '09 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 '09 at 12:59
show 17 more comments
vote up 314 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
22  
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 '09 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 '09 at 14:33
12  
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 '09 at 15:04
10  
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
7  
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 194 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
28  
Agree, but not too controversial? – edg Jan 2 '09 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 '09 at 15:24
4  
AKA: Your method should only do one thing, and only one. – thenonhacker Jan 6 '09 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
3  
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 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
2  
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 223 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 '09 at 13:48
3  
Amen. One more damage done by Smalltalkers, together with "extreme programming" – Nemanja Trifunovic Jan 2 '09 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 '09 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 '09 at 16:59
32  
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 -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 '09 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 '09 at 11:19
show 10 more comments
vote up 43 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 '09 at 14:18
2  
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 '09 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 '09 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 '09 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 '09 at 14:54
show 22 more comments
vote up 447 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
112  
Counter proposal - C++ is the WORST first language to teach, IMO. – Huntrods Jan 2 '09 at 19:21
61  
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 '09 at 14:00
22  
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
35  
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
21  
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 38 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 '09 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 '09 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 11 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 '09 at 20:54
5  
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 600 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
3  
It doesn't sound controversial, but the amount of times I get a "WTF?" face from people when I question the use of a particular tech/method/whatever in a meeting is quite alarming :) – Steven Robbins Jan 2 '09 at 13:38
91  
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
43  
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
13  
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 '09 at 6:41
show 29 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 38 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 '09 at 13:57
15  
At first I thought you said John Skeet isn't impotent. – John D. Cook Jan 11 '09 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 54 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 7 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
4  
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
6  
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
16  
+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 '09 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.