vote up 18 vote down star
10

What programming 'religious' position or argument bothers you the most?

flag
1  
Forgive me if I've missed something obvious, but what is the problem with OpenID? I don't see how a home-cooked solution (yet another login to remember) would be better. – JesperE Oct 5 '08 at 18:00
1  
Down vote for masquerading a rant as a legitimate question. – toast Oct 5 '08 at 18:48
show 5 more comments

55 Answers

1 2 next
vote up 19 vote down

I would say programming paradigms are it for me. Most of it's centered around OOP. Some will say that OOP is the worst thing that's ever happened and that anyone who uses an an object oriented language is a terrible programmer (bonus points if they say we should all go back to writing C). Then of course, you have the people who say that OOP is the best thing since sliced bread and that OOP is the panacea to all of life's problems (although these types are becoming less common).

Both of these points interfere with the best way to do things: choosing the best tool for the job.

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

I would have to say the position that bothers me most is the almost venemous rejection of open source I am greeted with in some circles.

The same goes for the open source believers that attack proprietary software based on nothing but the fact that is not open source.

link|flag
12  
I think we should bring the two sides together, and agree to hold all software in contempt regardless of where it comes from. – MusiGenesis Oct 5 '08 at 17:51
6  
+1 zeelots are bad however side they are on. – Keltia Dec 20 '08 at 18:21
3  
I prefer all my tools to fit well into a creationist mold. Your talk of evolution-like processes disgusts me. – TheTXI Mar 27 at 17:18
13  
Wow. Those people who are saying "love the second part" and "specially the second paart" are totally not getting the point. – Brian Campbell Mar 29 at 2:47
3  
Totally agree, specially about the first and second part – Sam Saffron Jul 12 at 23:08
show 4 more comments
vote up 2 vote down

Yikes, just because a belief is "religious" does NOT mean that it is without reason. I think that a religious belief in terms of programming is more along the lines of making a technical decision because of a not too technical reason. Like for OpenID: the idea that having a single secure login is convenient and is the correct method. The belief doesn't have a technical reasoning behind it, just a belief. But with your take on religious belief,I would have to agree and say that, that is always a wrong way to find a solution.

Oh, and I hate C++ programmers who denounce Java because of its speed and "verbose" syntax.

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

Whether a language is really object-oriented. (For instance Javascript or Objective-C.) Who cares? If it works for me, it works for me.

link|flag
vote up 12 vote down

There is already mentioned holy war between open source and proprietary software. I'd like to stress one of its fronts that bothers me the most. It is holy war between *nix systems and windows. I've heard hundreds of times about Windows' instability, security holes, slowness etc from people that are considered to be good developers or administrators. And they really are. But when they speak about Windows they completely lose their objectivity and become crusaders of *nix. I am not really big fan of Windows systems but I had to use it as well as *nix systems and I see both pros and cons in both worlds.

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

All religious arguments really boil down to the false notion that one particular solution is the best for all circumstances. I think that people who make religious arguments (and I USED to be one of them) really haven't learned a basic fact. Any one language, OS, DBMS CAN be used to solve ANY problem. However, that doesn't mean that you won't be fighting your favorite religious package to shoe horn it into your solution.

Being anti-religious with regards to software is just a matter of accepting that in order to make the best solution, at the best price, you need to have a breadth of languages and systems under your belt. Some things are just better designed to handle some things than others.

link|flag
vote up 24 vote down

Emacs vs Vi.

link|flag
17  
all arguments about EMACS vs Vi are pointless. VI is clearly the better editor. – MikeJ Oct 5 '08 at 23:58
1  
MikeJ is an excellent example of a brainless Vim advocate. Things might have been different 20 years ago, but now it's always a Vim user dishing out the hate. (I like both editors) – abababa22 Mar 27 at 17:20
7  
Why anyone cares what text editor other programmers use is beyond me. – Daniel Straight Jul 12 at 22:34
show 8 more comments
vote up 2 vote down

When people claim open-source software is better than proprietary software.

I'm not denouncing open source as being harder to build/maintain, nor complaining that it's free, nor comparing it with communism (Not here, at least)... But I trust software alot more when peoples' livelihoods rely on it working.

link|flag
1  
I see the exact opposite. I don't trust proprietary software to be better than open source because it has no reason to be. There's no incentive to write beautiful code if no one can see it. Besides, there are many more people writing open source than proprietary software these days. – Just Some Guy Oct 5 '08 at 17:23
1  
@tslib - While I agree that FOSS isn't always as good as proprietary software, I'm confused as to where you get the notion that peoples' livelihoods don't depend on open source software. Just because they don't sell it doesn't mean they don't make money off of it. – Jason Baker Oct 5 '08 at 18:36
3  
For me it boils down to "built for love" versus "built for money". – Brent.Longborough Oct 5 '08 at 21:12
show 6 more comments
vote up 1 vote down

Constructive arguments that aren't, and instead a rant ensues. The worst variants drip with Computer -Science/-Technology Priesthood pretense;

I'm not exempting myself from, at times, being guilty as charged. But here's where I'll eat my own dogfood and attempt to be constructive:

Let us both uphold correctness (in the mathematical sense) AND recognize that there is an ecosystem of software/hardware developers that, by analogy to natural ecologies, has a range of sophistication among its members—this is not a weakness, but a strength.

link|flag
vote up 17 vote down

3-tiered (or n-tiered) design. It's like a chef decreeing that all food must be layered - this works great for lasagna, not so much for a steak.

"Many-teared" is another term for it.

link|flag
2  
I like my steak with onion and mushroom layers on top. :-) – Sherm Pendley Nov 20 '08 at 18:53
show 6 more comments
vote up 15 vote down

When people get upset about source code formatting and related coding standards.

I have no problem with formatting rules that have practical effects (i.e. "putting the paren there makes it easier to grep for function calls"). But huge arguments over whether an opening brace should be on the same line or on the next line? Haven't we evolved past that?

Now, I see the value in having a large body of source code look consistent. I'm just talking about getting emotional about particular individual rules like mandating the spacing around parentheses or getting anal about indentation.

link|flag
show 7 more comments
vote up 44 vote down

I don't like it when Knuths quote: "Premature optimization is the root of all evil" is used like a mantra.

Throwing a slow O(n²) bouble-sort into an application and mumbling that "Premature optimization"-mantra is way to often used as an excuse to deliver shitty code. I think it's always well worth the few minutes to pick an algorithm or data-structure that is more suitable to the problem.

That way you safe the time for refactoring and optimizations in the long run because once a program is exposed to real world data brute force algorithms tend to become a major problem. And it will take longer to replace a piece of code than to do a good choice at the first place.

Imho that quote has been written in the context of code that is already free of brute force algorithms. It applies to needless, premature optimizations like cache-aligning writes in general purpose code.

link|flag
4  
I wouldn't call ensuring reasonable time/space complexity of an algorithm 'optimization'. – smo Oct 6 '08 at 3:32
2  
It is not Knuth, it is Hoare. shreevatsa.wordpress.com/2008/05/… – bortzmeyer Oct 6 '08 at 7:46
1  
It is Knuth's quote indeed. Also, it worth reading the paper [pplab.snu.ac.kr/courses/adv_pl05/… Structured Programming with GOTO statements] the quote is from, for context: by "optimisation" he means minute things like unrolling loops and so on, and he also says: – ShreevatsaR Oct 27 '08 at 23:20
5  
"[...] worrying about the speed of noncritical parts of their programs [...] We should forget about small efficiencies, say about 97% of the time: [POITROAE] Yet we should not pass up our opportunities in that critical 3%. A good programmer will be wise to look carefully at the critical code..." – ShreevatsaR Oct 27 '08 at 23:23
1  
+1 ShreevatsaR. I hate it when people try to optimise the saying, esp when as it says that sometimes you really do want to optimise in advance. – Alister Bulman Mar 29 at 0:15
show 5 more comments
vote up 22 vote down

Spaces vs. Tabs

link|flag
8  
TABS TABS TABS! What use do tabs have? How about "I like my 2 space indentation and you like yours at 4?" – Andrew Arnott Mar 29 at 3:46
4  
Mark: any competent editor will make it possible to indent and unindent with single keystrokes, regardless of whether the spacing is composed of tabs or spaces. And since there's no unambiguous way to automatically adjust spacing of code without the risk of ruining some special case, then why pretend that there is by using tab characters? – unknown (google) Jul 12 at 23:41
show 7 more comments
vote up 2 vote down

As you might guess, the answer for me would be: Mandatory OpenId

To clarify: my problem is with making OpenId mandatory in order to force people to convert to a technology. If everyone decided tomorrow that it was the way to do it, I am all for that. But I have a problem with making it mandatory simply to get people to convert and see the light.

My concerns about OpenId are spelled out:

What are the benefits of making OpenId mandatory question

I moved this from the question body to keep the question and my mandatory OpenId rant separate.

link|flag
vote up 35 vote down

Script languages aren't real programming languages.

link|flag
1  
Why is that supposed to be a religious argument? Script languages aren't real programming languages afte all. Just kidding ;-) – EricSchaefer Oct 6 '08 at 8:05
show 4 more comments
vote up 1 vote down

Religious arguments are good. I have my experiences that have worked well for me, and others have had different experiences that worked well for them.

The religious argument kicks in when two people with different experiences are trying to solve the same problem based on what has worked well for them in the past.

The only time any of this bothers me is when both sides are so closed minded that they refuse to see value in the others solution - and ideally, come up with something better than what either has created before.

link|flag
vote up 2 vote down

I don't know if it's really a religious argument, but it really bugs me when people do premature optimizations for things that they should know don't matter... like avoiding throwing exceptions for what should be an exception... or even more minor things like ++i versus i++.

When you blindly optimize things like that, it can become a real danger. More often than not, this sort of micro optimizations creates code that might be micro or nanoseconds faster, but at the cost of being hugely less readable.

I think it is much better to evaluate performance based on actual statistics of the code's actual performance, and then improve bottlenecks based on these facts. Thus, write your code so that it is the most readable, and only then refactor for performance.

This of course does not mean you should never do optimizations ahead of time, it just means you should think about what the performance gain you will actually get with realistic data versus the maintainability hit you might get as a result (copying a java array of a small amount of items to an ArrayList for huge readability gains should not be converted to an array just for performance reasons... but if it is likely to be an array of 1,000,000 items... then it might be worth rethinking the approach ahead of time).

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

I'm a Baptist. I love religious arguments.

Oh, but in context, the one that annoys me most is "Don't reinvent the wheel". I've seen organizations time and time again spend three months searching for an "off the shelf" solution and six more months customizing it to their needs, when we could have written it from scratch in a month.

link|flag
1  
Indeed. See also Joel Spolsky's article about this: [joelonsoftware.com/articles/fog0000000007.html/… In Defense of Not-Invented-Here Syndrome] – ShreevatsaR Oct 27 '08 at 23:27
1  
Religious anti-argument for this one is: "All dependencies are evil". :) – abababa22 Mar 27 at 17:10
1  
+1. Sometimes you're given a square wheel and told to make it round. It's those times when I wish I could just write the correct functionality from scratch, instead of trying to get a COTS product that 'sorta kinda' does what we need to do play nice with our product. – Mike Spross Mar 29 at 0:55
show 6 more comments
vote up 2 vote down

I dislike the religious arguments over use of the C preprocessor. There's some strange idea that the preprocessor is inherently evil, when in reality its proper use can lead to far more maintainable and readable code. This can often be better than functions, because in some cases you have a "function" which, if made into an actual function, would need a dozen or more arguments, peppering the code with long, ugly function calls. If the "function" is simple, a macro might be more applicable.

Much like GOTO, few things are "inherently evil"; what is evil is overuse of anything, regardless of what it is.

link|flag
vote up 9 vote down

There isn't really one religious argument that bothers me the most - all of them bother me because they all take time away from the important task of delivering great software.

Some arguments like Hungarian notation, the use of var in C#, and whether your brackets are on the same line or the next line, are at least fairly harmless. It doesn't matter which way you go as long as everybody on the team agrees to stick to the convention (note that I didn't say agrees with the convention, as that's fairly unlikely in any sizeable team).

However other arguments are more problematic as they make it less likely that you'll deliver great software, or that you'll deliver at all.

One of the worst groups for this are the TDD zealots who believe it is the only way to code, which it simply isn't in many circumstances, particularly in extremely fast moving and changeable organisations [so actually I'm probably lying - this is the one that bothers me the most]. Other arguments that cause problems are a strict adherence to an architectural style in the face of alternate requirements (e.g. using object-orientation when distributed performance is more important than ease of programming).

But essentially all religious arguments are detrimental on one way or another, and all bother me because their presence is an indication that you're working with cargo cult programmers. Just choose one way or another for the trivial ones, and make sure you have someone who understands the complex ones that can make the right choice based on experience and reason rather than beliefs or blog entries.

link|flag
2  
I can sorta see the TDD advocates' point of view, but they do get way to fanatical about it. They almost seem to deny that a lot of great software was indeed written before the TDD days. – Cybis Nov 20 '08 at 19:11
show 1 more comment
vote up 2 vote down

open vs. closed source

and its sister...

Linux vs. things not Linux...

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

I can't stand the "PHP IS BAD" people, I usually want to shove their foot up their own..........

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

I just had enterprise versus opensource in mind (where enterprise=good because opensourse=bad), but now, this question bothers me the most:

"What programming religious argument bothers you the most?"

link|flag
vote up 0 vote down

Source Control:

Branch and Release Vs Branch Develop & Merge

link|flag
vote up 21 vote down

Mac vs PC, especially from people who don't know how to use either one well

name-brand vs clone, especially when the hardware is all made by the same offshore manufacturer

scrum vs xp, especially when this is an excuse for not getting things done

microsoft vs not-microsoft, especially when this is fueled by programmers who aren't very good in the first place

but my favorite is still the-only-language-i-know vs the-only-language-you-know

link|flag
3  
+1 for recognizing that a lot of language arguments are based on ignorance. – Doug McClean Jul 12 at 23:32
vote up 1 vote down

The "not invented here" argument is really tiring. Especially when it results in someone deciding to reinvent some complex concept and you know that there is no way it is going to be better than using existing implementations.
If it's not a core business and there is an existing implementation that is free or reasonably priced don't invent your own!

link|flag
vote up 8 vote down

Saying that a language is better/worse because it uses semicolons/indentation. (i.e. Python vs. C-like languages).

link|flag
vote up 3 vote down

Curly brackets on the same line as method declaration (or if /try/catch/etc) or next line.

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

Using huge Enterpris-y logging / auditing frameworks for even the most simple tracing task.

The configuration complexity of some of these frameworks boggles the mind, and if you need to do something slightly different than the framework provides (for example, DB logging and the provided formatter/listener/whatever has a horrible implementation) - I now have to write a CUSTOM bit ontop of a gangly framework for what? So that we can say we use log4whatever and pat ourselves on the back?

They certainly have their place, but like most religious arguemnts my point is that their place isn't everywhere.

link|flag
vote up 6 vote down

What I don't like is someone who opens with the "I don't want to start a religious war here, but, ..." gambit followed by something they know is inflammatory.

Often, they'll layer in the evasions with other moves like "I'm just curious why you feel..." or "It seems contradictory to both ... and ..." or "Why does ... work so poorly?"

All of these are usually revisions of "I prefer [X]; you have no compelling evidence to the contrary, neener-neener-neener."

How about just present the technical merits (whatever they are) and the all-important personal biases, and leave off the opening gambit?

The few people that are actually curious never seem to play the "religious argument" card. They just ask.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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