vote up 349 vote down star
423

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

400 Answers

prev 1 10 11 12 13 14 next
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 '09 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 '09 at 3:47
1  
I find one-based leads to even more off by one erros. – Matthias Wandel Jan 3 '09 at 15:56
show 7 more comments
vote up 75 vote down

C++ is one of the WORST programming languages - EVER.

It has all of the hallmarks of something designed by committee - it does not do any given job well, and does some jobs (like OO) terribly. It has a "kitchen sink" desperation to it that just won't go away.

It is a horrible "first language" to learn to program with. You get no elegance, no assistance (from the language). Instead you have bear traps and mine fields (memory management, templates, etc.).

It is not a good language to try and learn OO concepts. It behaves as "C with a class wrapper" instead of a proper OO language.

I could go on, but will leave it at that for now. I have never liked programming in C++, and although I "cut my teeth" on FORTRAN, I totally loved programming in C. I still think C was one of the great "classic" languages. Something that C++ is certainly NOT, in my opinion.

Cheers,

-R

EDIT: To respond to the comments on teaching C++. You can teach C++ in two ways - either teaching it as C "on steroids" (start with variables, conditions, loops, etc), or teaching it as a pure "OO" language (start with classes, methods, etc). You can find teaching texts that use one or other of these approaches. I prefer the latter approach (OO first) as it does emphasize the capabilities of C++ as an OO language (which was the original design emphasis of C++). If you want to teach C++ "as C", then I think you should teach C, not C++.

But the problem with C++ as a first language in my experience is that the language is simply too BIG to teach in one semester, plus most "intro" texts try and cover everything. It is simply not possible to cover all the topics in a "first language" course. You have to at least split it into 2 semesters, and then it's no longer "first language", IMO.

I do teach C++, but only as a "new language" - that is, you must be proficient in some prior "pure" language (not scripting or macros) before you can enroll in the course. C++ is a very fine "second language" to learn, IMO.

-R

'Nother Edit: (to Konrad)

I do not at all agree that C++ "is superior in every way" to C. I spent years coding C programs for microcontrollers and other embedded applications. The C compilers for these devices are highly optimized, often producing code as good as hand-coded assembler. When you move to C++, you gain a tremendous overhead imposed by the compiler in order to manage language features you may not use. In embedded applications, you gain little by adding classes and such, IMO. What you need is tight, clean code. You can write it in C++, but then you're really just writing C, and the C compilers are more optimized in these applications.

I wrote a MIDI engine, first in C, later in C++ (at the vendor's request) for an embedded controller (sound card). In the end, to meet the performance requirements (MIDI timings, etc) we had to revert to pure C for all of the core code. We were able to use C++ for the high-level code, and having classes was very sweet - but we needed C to get the performance at the lower level. The C code was an order of magnitude faster than the C++ code, but hand coded assembler was only slightly faster than the compiled C code. This was back in the early 1990s, just to place the events properly.

-R

link|flag
5  
I think C++ is a good example of "design by committee" done RIGHT. It's a mess in many ways, and for many purposes, it's a lousy languages. But if you bother to really learn it, there's a remarkably expressive and elegant language hidden within. It's just a shame that few people discover it. – jalf Jan 4 '09 at 1:01
17  
Yea - that "elegant language, hidden within" ... IS C!!! ;-) – Huntrods Jan 4 '09 at 19:57
3  
Okay, if C++ code was ten times slower than C code, what sort of Mickey Mouse compilers were you using? Or what idiotic code conventions were you required to use? Were you asked to do exception specifications, for example (almost always a bad idea)? – David Thornley Jan 9 '09 at 14:43
1  
"When you move to C++, you gain a tremendous overhead imposed by the compiler in order to manage language features you may not use. In embedded applications, you gain little by adding classes and such, IMO. What you need is tight, clean code." - who says you have to use classes, rtti and whatnot? – Johannes Schaub - litb Jan 21 at 5:03
2  
you don't have to use those features. if you only use the C subset, then C++ is equally fast as C. then, you can selectively pick those C++ features you like. some vector sugar here, some other stuff there. isn't that nice? – Johannes Schaub - litb Jan 21 at 5:05
show 18 more comments
vote up 1 vote down

Never make up your mind on an issue before thoroughly considering said issue. No programming standard EVER justifies approaching an issue in a poor manner. If the standard demands a class to be written, but after careful thought, you deem a static method to be more appropriate, always go with the static method. Your own discretion is always better than even the best forward thinking of whoever wrote the standard. Standards are great if you're working in a team, but rules are meant to be broken (in good taste, of course).

link|flag
vote up 8 vote down

Web applications suck

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


Garbage collection sucks

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


Dynamic typing suck

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


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

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

Opinion: developers should be testing their own code

I've seen too much crap handed off to test only to have it not actually fix the bug in question, incurring communication overhead and fostering irresponsible practices.

link|flag
1  
I think testing and developing are different skills, they should be done by those who are good at them. Isolating testers from developers and making it hard for testers to get ther bugs fixed: no excuse. – Benjamin Confino Feb 27 at 19:34
1  
+1 for controversy: I'm only going to test the things I think to test for, and if I design the particular method... I've already thought of everything that can go wrong (from my point of view). A good tester will see another point of view -> like your users. – SnOrfus Oct 14 at 19:21
show 4 more comments
vote up 2 vote down

Excessive HTML in PHP files: sometimes necessary

Excessive Javascript in PHP files: trigger the raptor attack

While I have a hard time figuring out all your switching between echoing and ?>< ?php 'ing html (after all, php is just a processor for html), lines and lines of javascript added in make it a completely unmaintainable mess.

People have to grasp this: They are two separate programming languages. Pick one to be your primary language. Then go on and find a quick, clean and easily maintainable way to make your primary include the secondary language.

The reason why you jump between PHP, Javascript and HTML all the time is because you are bad at all three of them.

Ok, maybe its not exactly controversial. I had the impression this was a general frustration venting topic :)

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

I believe the use of try/catch exception handling is worse than the use of simple return codes and associated common messaging structures to ferry useful error messages.

Littering code with try/catch blocks is not a solution.

Just passing exceptions up the stack hoping whats above you will do the right thing or generate an informative error is not a solution.

Thinking you have any chance of systematically verifying the proper exception handlers are avaliable to address anything that could go wrong in either transparent or opague objects is not realistic. (Think also in terms of late bindings/external libraries and unecessary dependancies between unrelated functions in a call stack as system evolves)

Use of return codes are simple, can be easily systematically verified for coverage and if handled properly forces developers to generate useful error messages rather than the all-too-common stack dumps and obscure I/O exceptions that are "exceptionally" meaningless to even the most clueful of end users.

--

My final objection is the use of garbage collected languages. Don't get me wrong.. I love them in some circumstances but in general for server/MC systems they have no place in my view.

GC is not infallable - even extremely well designed GC algorithms can hang on to objects too long or even forever based on non-obvious circular refrences in their dependancy graphs.

Non-GC systems following a few simple patterns and use of memory accounting tools don't have this problem but do require more work in design and test upfront than GC environments. The tradeoff here is that memory leaks are extremely easy to spot during testing in Non-GC while finding GC related problem conditions is a much more difficult proposition.

Memory is cheap but what happens when you leak expensive objects such as transaction handles, synchronization objects, socket connections...etc. In my environment the very thought that you can just sit back and let the language worry about this for you is unthinkable without significant fundental changes in software description.

link|flag
1  
My general advice is to follow a convention and don't fall into the trap of attempting to have them indiciate specific error conditions. At each level you should take steps to ensure meaning is normalized. (Which ususally isn't hard/necessary if you follow a convention) – Einstein Jan 5 '09 at 6:33
show 2 more comments
vote up 7 vote down

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

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

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

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

Primitive data types are premature optimization.

There are languages that get by with just one data type, the scalar, and they do just fine. Other languages are not so fortunate. Developers just throw "int" and "double" in because they have to write in something.

What's important is not how big the data types are, but what the data is used for. If you have a day of the month variable, it doesn't matter much if it's signed or unsigned, or whether it's char, short, int, long, long long, float, double, or long double. It does matter that it's a day of the month, and not a month, or day of week, or whatever. See Joel's column on making things that are wrong look wrong; Hungarian notation as originally proposed was a Good Idea. As used in practice, it's mostly useless, because it says the wrong thing.

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

Explicit self in Python's method declarations is poor design choice.

Method calls got syntactic sugar, but declarations didn't. It's a leaky abstraction (by design!) that causes annoying errors, including runtime errors with apparent off-by-one error in reported number of arguments.

link|flag
1  
It's actually due to an implementation problem early on in the language design -- apparently Guido and team could not figure out how to bind the implicit self parameter to its enclosing environment, short of just passing it explicitly. Hope I got that right, not a compiler/translator guru. – cygil Mar 16 at 3:45
show 5 more comments
vote up 11 vote down

Classes should fit on the screen.

If you have to use the scroll bar to see all of your class, your class is too big.

Code folding and miniature fonts are cheating.

link|flag
1  
You must have a really large screen then. Do you also think, that class can have no more than 3 or 4 methods, because no more clearly fits on the 41 lines that fit on my screen. Voting up, because this is really controversial. – Rene Saarsoo Jan 3 '09 at 19:40
1  
I have to disagree as well. I write a lot of Python classes and not many of them fit on my screen. Of course, I'm not counting my netbook's screen because that would just be unfair to me. =P – sli Jan 5 '09 at 11:12
5  
For some of my classes, I can barely fit the member list on the screen. If an obect is to represent something, it should do so in its entirety. Breaking it up into many smaller classes is just adding visual complexity (right click > go to definition - ad nauseum) where it need not exist. – SnOrfus Jan 23 at 22:31
1  
I think this is baiting. The implication is that a class should have a limit to the number of attributes it can have because their declaration eats into the space for method bodies. This sounds like a language troll as in, any language that can't fit a class onto one screen isn't fit to use. Try coding something complex like the contact details for a person which includes an international address including phone numbers, email, fax, etc. – Kelly French Jul 16 at 15:37
show 12 more comments
vote up -6 vote down

Two lines of code is too many.

If a method has a second line of code, it is a code smell. Refactor.

link|flag
3  
Or you could make your entire program one (reaaaly long) line of code. That's always fun. – Kiv Jan 3 '09 at 2:24
2  
I'm amused that this is currently the lowest-ranked answer; I think I've succeeded at the "controversial" part. – Jay Bazuzi Jan 3 '09 at 18:48
4  
I agree completely, when will people see the light? I use Perl so I don't know how to write a function with more than one line of code, also, what is this "Refactor" thing you speak of? :-O – Robert Gamble Jan 5 '09 at 4:41
2  
You must be a functional programmer... but one line per function is still a little extreme ;) – ceretullis Jan 14 at 3:10
13  
It's not controversial - it's inane. – Software Monkey Feb 19 at 0:45
show 8 more comments
vote up 43 vote down

"Java Sucks" - yeah, I know that opinion is definitely not held by all :)

I have that opinion because the majority of Java applications I've seen are memory hogs, run slowly, horrible user interface and so on.

G-Man

link|flag
4  
I think what you are trying to say is that the barrier for Java coding is so low that there are many sucky Java "programmers" out there writing complete crap. – Software Monkey Feb 19 at 0:44
show 6 more comments
vote up 3 vote down

Although I'm in full favor of Test-Driven Development (TDD), I think there's a vital step before developers even start the full development cycle of prototyping a solution to the problem.

We too often get caught up trying to follow our TDD practices for a solution that may be misdirected because we don't know the domain well enough. Simple prototypes can often elucidate these problems.

Prototypes are great because you can quickly churn through and throw away more code than when you're writing tests first (sometimes). You can then begin the development process with a blank slate but a better understanding.

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

Software Architects/Designers are Overrated

As a developer, I hate the idea of Software Architects. They are basically people that no longer code full time, read magazines and articles, and then tell you how to design software. Only people that actually write software full time for a living should be doing that. I don't care if you were the worlds best coder 5 years ago before you became an Architect, your opinion is useless to me.

How's that for controversial?

Edit (to clarify): I think most Software Architects make great Business Analysts (talking with customers, writing requirements, tests, etc), I simply think they have no place in designing software, high level or otherwise.

link|flag
1  
I think there's a big necessary difference between architecting software and coding. What you say might apply to simple applications but there are many scenarios involving multi components spread across several servers, that requires archtecting, THEN coding. – Jeremy Jan 5 '09 at 3:01
3  
@Jeremy I don't deny that things need designing, just that the design should be done by programmers, not Software Architects. – rustyshelf Jan 5 '09 at 7:46
3  
I think that software architecture is just one of the responsibilities of the Software Developer. If you want to have a person with the title 'Software Architect' fine. But he is just the software developer that happens to be officially accountable for the architecture quality. – Sergio Acosta Mar 11 at 8:44
10  
In agreement with many other comments here, I'll say this: to be a REAL Architect, you must be an excellent coder (among other things). – Charlie Flowers Mar 23 at 1:11
4  
If you ever have to spend a year rewriting an entire application that was written by programmers with no architecture, you'd likely change your tune. – ctacke Apr 13 at 14:46
show 12 more comments
vote up -1 vote down

Exceptions considered harmful.

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

Programmers who don't code in their spare time for fun, will never become as good as those that do

I think even the smartest and most talented people will never become truly good programmers unless they treat it as more than a job. Meaning that they do little projects on the side, or just mess with lots of different languages and ideas in their spare time.

link|flag
66  
1/ There is a difference between enthusiasm and ability. 2/ Imagine if they said that about doctors. Or demolition experts. Or soldiers, or.... – kpollock Jan 12 at 16:04
92  
Maybe they will never be as good as the ones who do it on their spare time, but they may have more fulfilling lives. I mean, come on, you spend at least 40 hours a week typing away at the stuff, do you really want to go home and do it some more? Play some tennis or something :P – Ace Jan 19 at 13:38
33  
People who's sole interest is programming, both on and of the job, may very well be execellent programmers. But I don't think I would want to "hang out" with this type of person. You don't need to become autistic about it. There is more to being a human being than writing code. – Seventh Element Jan 26 at 7:33
34  
@Diego: 'But I don't think I would want to "hang out" with this type of person. You don't need to become autistic about it.' I don't think I'd like to "hang out" with a judgemental 9-5'er troll either. Feel sorry for you that you can't understand having a real passion for something. Your loss. – kronoz Jan 27 at 10:06
28  
@kronoz: having a passion for something is great. But I feel sorry for those who have a passion for only one thing and nothing else. Their loss. – Treb Jan 28 at 13:26
show 28 more comments
vote up 4 vote down

QA should know the code (indirectly) better than development. QA gets paid to find things development didn't intend to happen, and they often do. :) (Btw, I'm a developer who just values good QA guys a whole bunch -- far to few of them... far to few).

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

If you have any idea how to program you are not fit to place a button on a form

Is that controversial enough? ;)

No matter how hard we try, it's almost impossible to have appropriate empathy with 53 year old Doris who has to use our order-entry software. We simply cannot grasp the mental model of what she imagines is going on inside the computer, because we don't need to imagine: we know whats going on, or have a very good idea.

Interaction Design should be done by non-programmers. Of course, this is never actually going to happen. Contradictorily I'm quite glad about that; I like UI design even though deep down I know I'm unsuited to it.

For further info, read the book The Inmates Are Running the Asylum. Be warned, I found this book upsetting and insulting; it's a difficult read if you are a developer that cares about the user's experience.

link|flag
4  
I disagree. I don't think they are mutually exclusive. To take the opposite, people who have never used a computer before are the best interface designers. – James McMahon Jan 13 at 19:47
1  
I'd say they're definitely not mutually exclusive. I would more likely say that management should never decide where to put the button. I've had some of the most complicated interfaces ever created that way. – Sam Erwin Apr 2 at 18:43
3  
Interaction Design by users is what gave MySpace its reputation for vomit-inducing pages. – Kelly French Jul 16 at 15:18
show 7 more comments
vote up 453 vote down

"Googling it" is okay!

Yes, I know it offends some people out there that their years of intense memorization and/or glorious stacks of programming books are starting to fall by the wayside to a resource that anyone can access within seconds, but you shouldn't hold that against people that use it.

Too often I hear googling answers to problems the result of criticism, and it really is without sense. First of all, it must be conceded that everyone needs materials to reference. You don't know everything and you will need to look things up. Conceding that, does it really matter where you got the information? Does it matter if you looked it up in a book, looked it up on Google, or heard it from a talking frog that you hallucinated? No. A right answer is a right answer.

What is important is that you understand the material, use it as the means to an end of a successful programming solution, and the client/your employer is happy with the results.

(although if you are getting answers from hallucinatory talking frogs, you should probably get some help all the same)

link|flag
65  
Google will provide knowledge, but it cannot provide skill. Poor developers will not be aware of the difference. – Tom Jan 5 '09 at 2:40
7  
@Tom - That's true, but I'm just saying I don't think that should be held against Google. If we're going to judge whether someone is a good or bad developer, Google usage isn't going to be the indicator. – PhoenixRedeemer Jan 5 '09 at 15:46
5  
The problem is not the people that Google as a reference; it's the subset of people that Google blocks of code, paste them into the project and then monkey with the variables/flow until it compiles. It compiles?! Ship it! – joshperry Feb 11 at 2:50
9  
>"does it really matter where you got the information?" - Yes it does. The proofreading and research that goes into most (reputable) books is worth it. I just can't say the same for joe schmoe's website. – SnOrfus Mar 15 at 3:26
11  
@snorfus: How does a new developer tell a good book from a bad one? Many books about PHP programming contain horrible practices, consistently repeated in every code example (for example, concatenating $_GET variables straight into a query). A person is better off with google in those cases, because at least they'll get a mix of good and bad code. If you're new to a field you should always look at a variety of sources, and google can be one. – Joeri Sebrechts Jul 19 at 8:06
show 19 more comments
vote up 11 vote down

Every developer should spend several weeks, or even months, developing paper-based systems before they start building electronic ones. They should also then be forced to use their systems.

Developing a good paper-based system is hard work. It forces you to take into account human nature (cumbersome processes get ignored, ones that are too complex tend to break down), and teaches you to appreciate the value of simplicity (new work goes in this tray, work for QA goes in this tray, archiving goes in this box).

Once you've worked out how to build a system on paper, it's often a lot easier to build an effective computer system - one that people will actually want to (and be able to) use.

The systems we develop are not manned by an army of perfectly-trained automata; real people use them, real people who are trained by managers who are also real people and have far too little time to waste training them how to jump through your hoops.

In fact, for my second point:

Every developer should be required to run an interactive training course to show users how to use their software.

link|flag
1  
Programming has a lot in common with cleaning your room. The same principles of organization apply. – GordonG Jan 4 '09 at 20:11
show 2 more comments
vote up 81 vote down

You must know how to type to be a programmer.

It's controversial among people who don't know how to type, but who insist that they can two-finger hunt-and-peck as fast as any typist, or that they don't really need to spend that much time typing, or that Intellisense relieves the need to type...

I've never met anyone who does know how to type, but insists that it doesn't make a difference.

See also: Programming's Dirtiest Little Secret

link|flag
1  
I know how to type (was an army teleprinterist) but I insist it makes no difference whatsoever. – Nemanja Trifunovic Jan 2 '09 at 21:17
3  
Nemanja->"no difference whatsoever"?! I just got 70wpm on an online test. I could see how someone could scrape by at 20-30wpm, but if they are using two fingers, plugging away at 5wpm (yes, I've worked with people like that), it's holding them back. – keysersoze Jan 2 '09 at 22:03
1  
No difference whatsoever. I don't even know what is my current wpm level, because i completely lost interest in it. Surely, it is useful to type quickly when you are writing documentation or ansering e-mails, but for coding? Nah. Thinking takes time, typing is insignificant. – Nemanja Trifunovic Jan 2 '09 at 22:12
1  
Well, if your typing is so bad that you are thinking about typing, that's time you could have spent thinking about the problem you are working on. And if your typing speed is a bottleneck in recording ideas, you may have to throttle your thinking until your output buffer is flushed. – keysersoze Jan 3 '09 at 1:01
1  
@Nemanja Trifunovic - I hear what you are saying but, respectfully, I think you are dead wrong. Being able to type makes a huge difference. – duncan Jan 3 '09 at 13:43
show 12 more comments
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 5 vote down

Not very controversial AFAIK but... AJAX was around way before the term was coined and everyone needs to 'let it go'. People were using it for all sorts of things. No one really cared about it though.

Then suddenly POW! Someone coined the term and everyone jumped on the AJAX bandwagon. Suddenly people are now experts in AJAX, as if 'experts' in dynamically loading data weren't around before. I think its one of the biggest contributing factors that is leading to the brutal destruction of the internet. That and "Web 2.0".

link|flag
1  
Couldn't agree with this more! It shows just how fashion conscious our industry really is. When I looked into what all the AJAX fuss was about I discovered I had already been doing it for 2 years. But it takes a marketing style buzzword to make stuff happen. – AnthonyWJones Jan 2 '09 at 21:24
1  
I remember when it was called DHTML :P – Kronikarz Jan 9 '09 at 18:21
show 1 more comment
vote up 2 vote down

To Be A Good Programmer really requires working in multiple aspects of the field: Application development, Systems (Kernel) work, User Interface Design, Database, and so on. There are certain approaches common to all, and certain approaches that are specific to one aspect of the job. You need to learn how to program Java like a Java coder, not like a C++ coder and vice versa. User Interface design is really hard, and uses a different part of your brain than coding, but implementing that UI in code is yet another skill as well. It is not just that there is no "one" approach to coding, but there is not just one type of coding.

link|flag
vote up 7 vote down

Relational databases are awful for web applications.

For example:

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

I think that using regions in C# is totally acceptable to collapse your code while in VS. Too many people try to say it hides your code and makes it hard to find things. But if you use them properly they can be very helpful to identify sections of code.

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

Print statements are a valid way to debug code

I believe it is perfectly fine to debug your code by littering it with System.out.println (or whatever print statement works for your language). Often, this can be quicker than debugging, and you can compare printed outputs against other runs of the app.

Just make sure to remove the print statements when you go to production (or better, turn them into logging statements)

link|flag
7  
Absolutely, Make them into logging statements to begin with, and make them output to screen during dev. – Christopher Mahan Jan 3 '09 at 1:50
6  
Yes, thus there are logging frameworks that make this process more organized. – thenonhacker Jan 6 '09 at 7:07
3  
Until you forget to delete a debug statement and it goes to production, or delete an actual statement with a debug statement, when you are tired. Logging, dedicated debug output routines, and debuggers are your friends. – Andrei Taranchenko Jan 10 '09 at 23:18
4  
SOMETIMES, it's the only way. Not all the time, but sometimes... – LarryF Jan 14 at 0:47
2  
Every time you consider writing a debug printout, consider writing a unit-test instead. I've found I use far less time that way. – Markus Koivisto Jul 30 at 10:19
show 22 more comments
vote up -7 vote down

I know everything there is to know about everything.

link|flag
1  
I know you don't get self-deprecating humour, for a start. I think I must have got lost... I could have sworn this was SO, not YouTube, but the commentary around here recently has got me wondering. Heads go on the top guys, where you've got 'em is bad for your neck. – jTresidder Feb 6 at 22:06
show 5 more comments
vote up 24 vote down

You need to watch out for Object-Obsessed Programmers.

e.g. if you write a class that models built-in types such as ints or floats, you may be an object-obsessed programmer.

link|flag
3  
Object orientation is a means to a goal and not a goal in and of itself. – Seventh Element Jan 26 at 10:11
show 3 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.