vote up 138 vote down star
110

I am doing some research into common errors and poor assumptions made by junior (and perhaps senior) software engineers.

What was your longest-held poor assumption that was eventually corrected?

For example: I at one point failed to understand that the size of an integer was not a standard (depends on the language and target). A bit embarrassing to state, but there it is.

Be frank: what hard-held belief did you have, and roughly how long did you maintain the assumption? It can be about an algorithm, a language, a programming concept, testing, anything under the computer science domain.

flag
5  
Poll question = probably should be a wiki. – gnovice May 20 at 14:25
5  
@Demi: The question you linked to IS a community wiki. – R. Bemrose May 20 at 14:27
1  
You may be interested doi.acm.org/10.1145/1364782.1364795 doi.acm.org/10.1145/984458.984495 doi.acm.org/10.1145/1142031.1142053 – Simon Gibbs May 20 at 14:28
2  
Thanks for the information regarding community wiki - I have made the change. Can we reopen this now? – Demi May 20 at 14:40
21  
I think we've found a bug. When 1. a question is posted as non-wiki, 2. people answer as non-wiki, 3. the question is changed to wiki, and 4. the question gets > 30 answers, the non-wiki answers are not automatically changed to wiki. Is this a known bug already? – mmyers May 20 at 16:36
show 7 more comments

161 Answers

vote up 5 vote down

That the design of the NT operating system is flawed when compared to UNIX. It turned out that NT Kernel and design decisions are very similar to any modern UNIX like system and that most of the problems you get in the kernel is the result from third party buggy drivers written by buggy companies.

link|flag
1  
I protest. One fundamental thing deliniates windows whatever to unix. Memory management. Windows detects an attempt to break in. Unix detects an attempt to break out... so windows programs can and do use unallocated memory. Yeck! – corlettk May 23 at 8:24
show 2 more comments
vote up 5 vote down

don't use advanced implementation-specific features because you might want to switch implementations "sometime". i've done this time and again, and almost invariably the switch never happened.

link|flag
vote up 5 vote down

It's important to subscribe to many RSS feeds, read many blogs and participate in open source projects.

I realized that, what is really important is that I spend more time doing coding. I have had the habit of reading and following many blogs, and while they are a rich source of information its really impossible to assimilate everything. It's very important to have balanced reading, and put more emphasis on practice.

Reg. open source, I'm afraid I won't be popular. I have tried participating in open source, and most of them in .NET. I'm appalled to see that many open source projects don't even follow a proper architecture. I saw one system in .NET not using a layered architecture, and database connection code was there all over the place including code behind, and I gave up.

link|flag
vote up 5 vote down

That one day I'd have a realistic idea how long it would take to build some nontrivial code/system/whatever.

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

That I can understand my own code without comments!!!

link|flag
vote up 4 vote down

that after I finish CS school, I can start a job and use my knowledge that I learned in school for real world applications. (I actually wish i wouldn't waste 4 years of my life in learning operating systems and prolog)

link|flag
1  
agreed. It seems like most of us get stuck doing web applications and fairly simple database work after studying some hard core C/C++ development. – luvPlsQL May 21 at 15:03
1  
On the other hand, the reverse is just as true: "That I can build real world applications (well) without understanding the basics such as operating systems and prolog" - I find this very common amongst the bad programmers I meet... – AviD Aug 28 at 10:16
show 1 more comment
vote up 4 vote down

When at college (mid 90's) they only had Windows 3.11 machines in the computer lab (I know, weird college).

For a while I thought that only the Windows platform was relevant to me as a professional programmer and that all other platforms were only interesting from an historical academic point of view.

After graduating from school and learning about modern unixes and linux environments I couldn't help feeling angry and disappointed about my lame school.

I cannot yet believe I graduated with a computer engineering degree without ever seeing a bash shell or even hearing about emacs or vim.

link|flag
1  
Who uses Unix anyway? At least thats what I thought when I was FORCED to learn ONLY Unix in uni, basically treating non-Unix enivronments as either toys for home (windows) or nonexistent legacy (Mainframes etc). – AviD Aug 28 at 10:12
show 2 more comments
vote up 4 vote down

That ASCII was stored in a different way to binary

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

That everyone wants to produce the best\most sutiable code possible for a problem...

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

That C++ was the coolest language out there!

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

That IDEs would get faster.

link|flag
vote up 4 vote down

That object orientation is always the best way to design source code and will always be.

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

That I would ever become wealthy programming software for someone else

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

That more comments are better. I've always tried to make my code as readable as possible--mainly because I'm almost certainly the guy that's going to fix the bug that I let slip by. So in years past, I used to have paragraphs after paragraphs of comments.

Eventually it dawned on me that there's a point where more comments--no matter how neatly structured--add no value and actually becomes a hassle to maintain. These days, I take the table-of-contents + footnotes approach and everyone's happier for it.

link|flag
vote up 3 vote down

I could spend days trying to reduce the amount of memory my business layer used, just to later realize that the WinForms (GUI) of my project used 4 times more memory than the rest of the application.

link|flag
vote up 3 vote down

I just recently found out that over a million instructions are executed in a Hello World! c++ program I wrote. I never would have expected so much for anything as simple as a single cout statement

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

Bitwise comparisons on integers in SQL WHERE clauses are practically free in terms of query performance.

As it happens, this is somewhat true for the first half-million rows or so. After that it turns out to be extremely UN-free.

link|flag
1  
UN-free == expensive? Is this a hidden political statement about the United Nations? Awesomes. – Kieveli May 21 at 16:42
show 2 more comments
vote up 3 vote down

I used to think I was a pretty good programmer. Held that position for 2 years.

When you work in a vacuum, it's easy to fill the room :-D

link|flag
vote up 3 vote down

That the now popular $ sign was illegal as part of a java/javascript identifier.

link|flag
vote up 3 vote down

Thinking that I know everything about a certain language / topic in programming. Just not possible.

link|flag
vote up 3 vote down

That virtual-machine architectures like Java and .NET were essentially worthless for anything except toy projects because of performance issues.

(Well, to be fair, maybe that WAS true at some point.)

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

That goto's are harmful.

Now we us continue or break.

link|flag
1  
well its not true any more because we've stopped using them! – mike g May 20 at 22:07
2  
That's like saying that writing programs in machine code is good because all computers use machine code. Goto's are harmful because they encourage programmers to create code that is difficult to read and debug. – Zack May 21 at 15:00
1  
@Zack, So GOTOs aren't harmful - programmers are harmful. – U62 May 27 at 12:27
show 1 more comment
vote up 3 vote down

That, being the owner of the code I write, I'm the only person who should understand or touch it.

link|flag
vote up 3 vote down

That managers know what they talk about.

link|flag
vote up 3 vote down

I am a young fledgling developer hoping to do it professionally because it's what I love and this is a list of opinions i once held that I have learned through my brief experience are wrong

The horrible mess you end up with when you don't seperate user interface from logic at all is acceptable and is how everyone writes software

There's no such thing as too much complexity, or abstraction

One Class One Responsability - I never really had this concept, it's been very formitive for me

Testing is something I don't need to do when I'm coding in my bedroom

I don't need source control because it's overkill for the projects I do

Developers do everything, we're supposed to know how to design icons and make awesome looking layouts

Dispose doesn't always need a finaliser

An exception should be thrown whenever any type of error occurs

Exceptions are for error cases, and a lot of the time it's OK to just return a value indicating failure. I've come to understand this recently, I've been saying it and still throwing exceptions for much longer

I cam write an application that has no bugs at all

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

That software engineers are always honest about what they are doing now or done to your software in the past.

link|flag
vote up 2 vote down

That all OOP languages have the same concept of object orientation.

  • A Java interface != a method's interface.
  • A Java interface is a language-specific solution for the need to have multiple inheritance. Ruby's mixins attempt to solve the same problem.
  • Inheritance provided out of the box in Javascript is very different from how Java implements inheritance.
link|flag
vote up 2 vote down

If you can't read my code, you just don't know the language. I had a few code reviews where I tried to counter with that.

Took a couple more years to learn there's a time and place to be magical with your code and it is in the libraries, not the application. The app is for clarity and readability. Magic is best used when hidden behind extension methods and frameworks.

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

That I grok programming. By studying the SICP book I saw that I knew nothing. At least now I am delving into programming more.

link|flag
vote up 2 vote down

the assumption that i was to make the program 100% complete and bug free and report it as "completed". Sometimes the company wants to release the program when there are many bugs to get market share first.

link|flag

Your Answer

Get an OpenID
or

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