vote up 346 vote down star
420

This is definitely subjective, but I'd like to try to avoid it becoming argumentative. I think it could be an interesting question if people treat it appropriately.

The idea for this question came from the comment thread from my answer to the "What are five things you hate about your favorite language?" question. I contended that classes in C# should be sealed by default - I won't put my reasoning in the question, but I might write a fuller explanation as an answer to this question. I was surprised at the heat of the discussion in the comments (25 comments currently).

So, what contentious opinions do you hold? I'd rather avoid the kind of thing which ends up being pretty religious with relatively little basis (e.g. brace placing) but examples might include things like "unit testing isn't actually terribly helpful" or "public fields are okay really". The important thing (to me, anyway) is that you've got reasons behind your opinions.

Please present your opinion and reasoning - I would encourage people to vote for opinions which are well-argued and interesting, whether or not you happen to agree with them.

flag
230  
won't the answer with the fewest votes be the most controversial :)? – Doug T. Jan 2 at 14:09
97  
The controversial ones have the most comments, not upvotes. – Bill the Lizard Jan 7 at 3:35
20  
Awesome! 249 answers and newcomers aren't reading every other answer to avoid duplicates - in fact there are answers on here that have been posted many, many times. There is no possible way that leaving this open for new answers is contributory - closing still allows votes. PLEASE CLOSE. – Adam Davis Feb 10 at 21:35
8  
think the community wiki component needs to be stripped out of the Q/A system. It's fine to have a community wiki, but it shouldn't be a means for justifying the endless series of non-sense questions like this one. Please close. – Mark Rogers Feb 10 at 22:00
17  
This is a great question to farm badges. A guy with 11 rep has a gold badge. Hilarious. – Robert S. May 1 at 20:46
show 27 more comments

398 Answers

prev 1 2 3 4 5 14 next
vote up 51 vote down

Code layout does matter

Maybe specifics of brace position should remain purely religious arguments - but it doesn't mean that all layout styles are equal, or that there are no objective factors at all!

The trouble is that the uber-rule for layout, namely: "be consistent", sound as it is, is used as a crutch by many to never try to see if their default style can be improved on - and that, furthermore, it doesn't even matter.

A few years ago I was studying Speed Reading techniques, and some of the things I learned about how the eye takes in information in "fixations", can most optimally scan pages, and the role of subconsciously picking up context, got me thinking about how this applied to code - and writing code with it in mind especially.

It led me to a style that tended to be columnar in nature, with identifiers logically grouped and aligned where possible (in particular I became strict about having each method argument on its own line). However, rather than long columns of unchanging structure it's actually beneficial to vary the structure in blocks so that you end up with rectangular islands that the eye can take in in a single fixture - even if you don't consciously read every character.

The net result is that, once you get used to it (which typically takes 1-3 days) it becomes pleasing to the eye, easier and faster to comprehend, and is less taxing on the eyes and brain because it's laid out in a way that makes it easier to take in.

Almost without exception, everyone I have asked to try this style (including myself) initially said, "ugh I hate it!", but after a day or two said, "I love it - I'm finding it hard not to go back and rewrite all my old stuff this way!".

I've been hoping to find the time to do more controlled experiments to collect together enough evidence to write a paper on, but as ever have been too busy with other things. However this seemed like a good opportunity to mention it to people interested in controversial techniques :-)

[Edit]

I finally got around to blogging about this (after many years parked in the "meaning to" phase). Part one is available now on levelofindirection. I'll put the rest up in the next week or so.

link|flag
show 9 more comments
vote up 8 vote down

The ability to create UML diagrams similar to pretzels with mad cow disease is not actually a useful software development skill.

The whole point of diagramming code is to visualise connections, to see the shape of a design. But once you pass a certain rather low level of complexity, the visualisation is too much to process mentally. Making connections pictorially is only simple if you stick to straight lines, which typically makes the diagram much harder to read than if the connections were cleverly grouped and routed along the cardinal directions.

Use diagrams only for broad communication purposes, and only when they're understood to be lies.

link|flag
vote up 6 vote down

How about this one:

Garbage collectors actually hurt programmers' productivity and make resource leaks harder to find and fix

Note that I am talking about resouces in general, and not only memory.

link|flag
1  
+1 to that. Before GC, programmers took care of leaks before deployment. These days, applications are deployed and then when a 100 users are using the application, we discover that we've run out of database connections. – Agnel Kurian Jan 7 at 10:58
1  
I'd give a +1 if you had said: "GC because it's not available for all resoures; only memory. So you can leak DB connections." GC has solved 100 issues and introduced 20 new ones, so it's still an advantage. – Aaron Digulla Feb 27 at 15:56
show 7 more comments
vote up 11 vote down

SQL could and should have been done better. Because its original spec was limited, various venders have been extending the language in different directions for years. SQL that is written for MS-SQL is different than SQL for Oracle, IBM, MySQL, Sybase, etc. Other serious languages (take C++ for example) were carefully standardized so that C++ written under one compiler will generally compile unmodified under another. Why couldn't SQL have been designed and standardized better?

HTML was a seriously broken choice as a browser display language. We've spent years extending it through CSS, XHTML, Javascript, Ajax, Flash, etc. in order to make a useable UI, and the result is still not as good as your basic thick-client windows app. Plus, a competent web programmer now needs to know three or four languages in order to make a decent UI.

Oh yeah. Hungarian notation is an abomination.

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

Globals and/or Singletons are not inherently evil

I come from more of a sysadmin, shell, Perl (and my "real" programming), PHP type background; last year I was thrown into a Java development gig.

Singletons are evil. Globals are so evil they are not even allowed. Yet, Java has things like AOP, and now various "Dependency Injection" frameworks (we used Google Guice). AOP less so, but DI things for sure give you what? Globals. Uhh, thanks.

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

The class library guidelines for implementing IDisposable are wrong.

I don't share this too often, but I believe that the guidance for the default implementation for IDisposable is completely wrong.

My issue isn't with the overload of Dispose and then removing the item from finalization, but rather, I despise how there is a call to release the managed resources in the finalizer. I personally believe that an exception should be thrown (and yes, with all the nastiness that comes from throwing it on the finalizer thread).

The reasoning behind it is that if you are a client or server of IDisposable, there is an understanding that you can't simply leave the object lying around to be finalized. If you do, this is a design/implementation flaw (depending on how it is left lying around and/or how it is exposed), as you are not aware of the lifetime of instances that you should be aware of.

I think that this type of bug/error is on the level of race conditions/synchronization to resources. Unfortunately, with calling the overload of Dispose, that error is never materialized.

Edit: I've written a blog post on the subject if anyone is interested:

http://www.caspershouse.com/post/A-Better-Implementation-Pattern-for-IDisposable.aspx

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

SESE* Is not law

*Single Entry Single Exit

example:

public int foo() {
   if( someCondition ) {
      return 0;
   }

   return -1;
}

vs:

public int foo() {
   int returnValue = -1;

   if( someCondition ) {
      returnValue = 0;
   }

   return returnValue;
}

]]

My team and I have found that abiding by this all the time is actually counter-productive in many cases.

link|flag
2  
Moreover, an exception is just another exit point. When functions are short and error-safe (-> finally, RAII), there is no need to follow SESE. – Luc Hermitte Jan 7 at 14:01
3  
Agreed. I cringe at the 100+ loc methods I've seen that carry a return value from the first line all the way to the bottom just to adhere to SESE. There is something to be said for exiting when you find the answer. – Rontologist Jan 9 at 19:14
1  
wow .. whoever came up with SESE must be a world class idiot – hasen j Jan 14 at 5:44
1  
Wait people actually do this? Why can't you just search for "return"? – unknown (google) May 31 at 1:54
1  
I think SESE is a great example of a solution in search of a problem – Kevin Laity Oct 22 at 0:24
show 8 more comments
vote up 29 vote down

Null references should be removed from OO languages

Coming from a Java and C# background, where its normal to return null from a method to indicate a failure, I've come to conclude that nulls cause a lot of avoidable problems. Language designers can remove a whole class of errors relate to NullRefernceExceptions if they simply eliminate null references from code.

Additionally, when I call a method, I have no way of knowing whether that method can return null references unless I actually dig in the implementation. I'd like to see more languages follow F#'s model for handling nulls: F# doesn't allow programmers to return null references (at least for classes compiled in F#), instead it requires programmers to represent empty objects using option types. The nice thing about this design is how useful information, such as whether a function can return null references, is propagated through the type system: functions which return a type 'a have a different return type than functions which return 'a option.

link|flag
10  
I would rather have "non-nullable reference types" (with compiler checking) than completely remove null. – Jon Skeet Jan 2 at 18:26
1  
I have to agree with Jon; "null" is frequently a valid state and indicates something completely different from zero or empty. Eliminating it would be a mistake IMO; but for those cases where it's not appropriate, a non-nullable object type would be nice. – Mike Hofer Jan 2 at 19:33
1  
This is like prohibiting zero to prevent divide-by-zero errors. Nulls happen in real-world situations and forbidding them would force everyone to hand roll their own ad hoc implementations. – Dour High Arch Jan 2 at 21:24
show 8 more comments
vote up 5 vote down

Opinion: Data driven design puts the cart before the horse. It should be eliminated from our thinking forthwith.

The vast majority of software isn't about the data, it's about the business problem we're trying to solve for our customers. It's about a problem domain, which involves objects, rules, flows, cases, and relationships.

When we start our design with the data, and model the rest of the system after the data and the relationships between the data (tables, foreign keys, and x-to-x relationships), we constrain the entire application to how the data is stored in and retrieved from the database. Further, we expose the database architecture to the software.

The database schema is an implementation detail. We should be free to change it without having to significantly alter the design of our software at all. The business layer should never have to know how the tables are set up, or if it's pulling from a view or a table, or getting the table from dynamic SQL or a stored procedure. And that type of code should never appear in the presentation layer.

Software is about solving business problems. We deal with users, cars, accounts, balances, averages, summaries, transfers, animals, messsages, packages, carts, orders, and all sorts of other real tangible objects, and the actions we can perform on them. We need to save, load, update, find, and delete those items as needed. Sometimes, we have to do those things in special ways.

But there's no real compelling reason that we should take the work that should be done in the database and move it away from the data and put it in the source code, potentially on a separate machine (introducing network traffic and degrading performance). Doing so means turning our backs on the decades of work that has already been done to improve the performance of stored procedures and functions built into databases. The argument that stored procedures introduce "yet another API" to be manged is specious: of course it does; that API is a facade that shields you from the database schema, including the intricate details of primary and foreign keys, transactions, cursors, and so on, and it prevents you from having to splice SQL together in your source code.

Put the horse back in front of the cart. Think about the problem domain, and design the solution around it. Then, derive the data from the problem domain.

link|flag
1  
I agree with the principal, but the problem is in real world IT development you often have existing data stores that you must make use of - while total constraint to existing code might be bad you can save a ton of development effort if you conform to data standards that exist when you can. – Kendall Helmstetter Gelner Jan 5 at 5:28
2  
Hmmm. Take the data out of a system and what do you have? A system that computes nothing. Put bad data into your system and what happens? Crash. Analogy: Bake your bricks (create strong data types) and mix your cement (enforce the constraints), then design/build your system with perfect blocks. – Triynko Apr 17 at 2:53
show 1 more comment
vote up 174 vote down

PHP sucks ;-)

The proof is in the pudding.

link|flag
6  
php sucks! justification? just use it for a while. it SUCKS!!!!1111 +10 (I wish hehe) – hasen j Jan 3 at 2:00
6  
Justification? How about the complete inability to find out that you typoed a variable name at compile time (well, syntax-check time, with PHP) instead of runtime? Even Perl has 'use strict', and Perl catches so much flak it's barely funny. – chaos Jan 5 at 0:15
66  
I thought these opinions were supposed to be controversial? PHP sucks seems more like a statement of fact :-). – Travis Apr 9 at 0:10
10  
PHP sucks, but it's still a good language. If you don't understand that statement, or don't agree with it, you haven't been writing PHP long enough. – notJim May 8 at 1:31
7  
I use PHP! You can be as productive as you want and write great code in PHP. Its possible. Really. However, it lacks cohesiveness and elegance for a language that I would enjoy on day to day use. So to generalize, I use it every day, and IT SUCKS! – Nick May 8 at 2:18
show 28 more comments
vote up 23 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
2  
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
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 320 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 at 1:50
6  
Yes, thus there are logging frameworks that make this process more organized. – thenonhacker Jan 6 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 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 20 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 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 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 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 at 21:24
1  
I remember when it was called DHTML :P – Kronikarz Jan 9 at 18:21
show 1 more comment
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 76 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 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 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 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 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 at 13:43
show 12 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 at 20:11
show 2 more comments
vote up 450 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
64  
Google will provide knowledge, but it cannot provide skill. Poor developers will not be aware of the difference. – Tom Jan 5 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 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
8  
>"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
10  
@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 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 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 532 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
33  
@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 -1 vote down

Exceptions considered harmful.

link|flag
1  
Checked exceptions. Unchecked exceptions are fantastic and do a great job of stabilizing your app. – Bill K Jan 9 at 17:55
vote up 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 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 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 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 42 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 -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
2  
Or you could make your entire program one (reaaaly long) line of code. That's always fun. – Kiv Jan 3 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 at 18:48
3  
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 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
12  
It's not controversial - it's inane. – Software Monkey Feb 19 at 0:45
show 8 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 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 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
prev 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.