vote up 67 vote down star
66

What is the most important thing you weren't taught in school?

What topics are missing from the CS/IS education?

Posted so far

  • How to sell an idea

Principles:

  • Often, good enough is better than perfect.
  • Making mistakes is actually a Good Thing™ -- as long as they're new mistakes.
  • If a user can break your code they will.
  • In the Real World™ they're all open-book exams
  • Self confidence is way more important in getting ahead than intelligence.
  • Always prefer simplicity over complexity. The best code is the code that you don't write.
  • You never know when you'll meet someone again ... or where. It's always worthwhile to treat people with respect and kindness.
  • Be aware of what you don't know and don't be afraid to ask questions when you need to

Missing knowledge:

  • How to communicate effectively.
  • Lack of source control
  • Lack of Softskills experience
  • How to productize code
  • How to write secure code
  • How to formulate problems
  • How to self-measurement. To evaluate ones true competences and market worth.
  • How to debug code
  • How important is backup
  • How to read code on a large scale (being able to adapt and build upon existing projects)
  • Good Regular expressions comprehention
  • How to teach others effectively
  • TDD/Unit testing
  • Critical thinking
  • How to integrate different skills and languages in a single project
flag
6  
CIS and CS teachers take notice! – Will Nov 3 '08 at 17:08
3  
How about teaching people that a degree isn't everything? – Matthew Whited Aug 21 at 13:29
show 3 more comments

110 Answers

vote up 10 vote down
  1. Source code control
  2. Unit Testing (testing in general)
  3. Agile Development
  4. Code Commenting
  5. Code Review
  6. Standards compliance
  7. Proper architecture compliance
link|flag
1  
I don't really see how most of this has to do with Computer Science. CS != SE. You aren't being trained like a person out of a tech school for a specific job, you are learning a set of core theories about the field which you will apply in more specific ways after you graduate. – Simucal Nov 4 '08 at 8:44
1  
@Simucal I believe you're missing the point entirely. Maybe the fact that CS != SE is a huge tipoff that a CS degree is the wrong education for a software engineer (even though that is the industry norm). – Wedge Nov 4 '08 at 10:02
show 4 more comments
vote up 10 vote down

To tell hype from substance.

In school/uni I was taught, how great Object Oriented Programming is, and how to normalize data into normal forms for storage in RDMBses, and the value of high-level abstraction which will make Java the last language ever, and how XML will replace all network protocols and configuration files, ...

What I had to learn for myself is how every one of those technologies have their respective place but that none of them is the Silver Bullet.

Non-programmers always know about the next big thing and how it will once and for all magically make complexity go away. You constantly need to remind them, that what looks good in Powerpoint, doesn't necessarilly do so in a source code editor.

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

How to survive and succeed in the ever changing technological landscape?

link|flag
2  
@Duncan but only if you leverage enterprise solutions to empower synergy in the marketplace of ideas – Wedge Nov 4 '08 at 3:07
show 2 more comments
vote up 2 vote down

The majority of people are idiots and liars

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

Real world is dirty. Problems are hard to define and understanding them thorougly is a big part of a solution. Tech knowledge is usually not enough, solving real-world problems requires a lot of communication and improvisation skills.

link|flag
vote up 2 vote down

Curiosity is a Good Thing . . . no one really likes cats anyway.

link|flag
2  
+1 for curiosity being a good thing... but -1 for not liking cats – codeinthehole Nov 3 '08 at 17:13
show 1 more comment
vote up 0 vote down
  • A deeper understanding of things I thought I knew everything about.
  • Several new and insightful ways to think.
  • networking with people of like mind.
  • Actualized things I could theoretically do.
link|flag
vote up 0 vote down

This is a programming site, so I'll talk about my CS education- I wish someone had said: "Hey, all this academic maths stuff like big-O notation that you think is nothing to do with the real world will actually turn out to be very useful if you pay attention to it. Except for your Formal Methods Of System Specification course, that really is the waste of time it seems like."

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

How to conduct myself in a job interview

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

That good colleagues is a 90% guarantee that you will enjoy your work, no matter what you do or how you are supposed to do it.

link|flag
vote up 29 vote down

Working with large codebases and pre-existing code.

link|flag
vote up 5 vote down

Not enough emphasis on technical writing.

link|flag
vote up 4 vote down

They never told me that once you build a good application that users love to use you can never escape it.

They also never taught me that the success of fixing a bug after struggling with it for hours on end is much sweeter than getting it right at first. It is also addictive.

link|flag
1  
That explains why C is so much more popular than Ada. :-) – T.E.D. Nov 19 '08 at 14:39
1  
Thats why we do what we do :) – Egg Aug 21 at 14:54
vote up 2 vote down

Confidence. You can be white-hot at what you do but if you come across as a bumbler then you won't get far. There are plenty out there with lesser talent who sell themselves more confidently so they get the gong.

Not to be confused with arrogance.

link|flag
vote up 9 vote down

How to fight fires. In school you always have time to complete your assignments - there is never a time when you have to get something working immediately that is critical to the business. Especially something that you either didn't write yourself or had little input on. The biggest thing about fighting fires is keeping a level head so you can quickly debug without losing it.

link|flag
1  
Try being on a programming contest team. A number of school CS departments have them, and they compete. You have to code under the gun, which can be a little like fighting fires. – pearcewg Nov 4 '08 at 2:24
vote up 0 vote down

This may seem picky and trite, but a very overlooked skill that would have come in SO much handy was a solid teaching on how to properly construct Makefiles, including and certainly not limited to setting the include and link paths. I cannot begin to describe just how painful an iterated HTTP server development was in C without solid Makefile knowledge. Same for C++, same for Java Ant files, and so on.

link|flag
vote up 3 vote down

Regular expressions.

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

That no matter how much fun I had programming as a hobby, it really sucks being a professional software engineer. Then again, being a professional anything probably sucks.

I'm not kidding. Univ. graduate (w/ honors) and 2 years exp in industry... and I still can't figure out what I want to do with my life.

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

How to write a debugger or at least how does it work

link|flag
vote up 11 vote down

In the Real World™ they're all open-book exams, and it's ok to copy from your neighbor. It's more important to know where to look, or whom to ask, than to have all the answers in your head.

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

People skills. Organising teams. All my greatest headaches are nearly always problems of 'soft' skills.

Estimating delivery times (especially delivery as opposed to just feature-complete code), handling difficult customers, organising & motivating teams, methodological questions, estimating process duration, understanding the importance of tests, did I mention ESTIMATION, agile methodology, estimation for agile methodology, considering the unestimatable quality of bug fixing VS the estimatable quality of writing comprehensive unit and acceptance tests before writing the code, understanding when something can be unit-tested or requires integration or functional tests, understanding that ANY technology that makes unit-tests difficult to program is therefore inherently bad (BPEL I'm looking at you!) ... the list goes on.

As a senior developer these are the things that take up my day. Not the purely-technological problems.

link|flag
vote up 2 vote down
  • How to work as a team
  • How to maintain old code
  • How to debug
  • How to productize code
  • How to write secure code
  • How to write portable code
link|flag
vote up 1 vote down

How to speak, discuss and correct or be corrected by my boss.

I have been stressed out because I don't know how to talk to my boss (specially when I think I'm right, and he thinks he's right)

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

Starting from nothing when creating a program - professors always had scaffolding and starter code for us. In a real project I often start from scratch and that opens the possibilities and that makes me realize that school should have been explaining the different possible starting points.

link|flag
vote up 0 vote down

Write neat code.

link|flag
vote up 10 vote down

How to formulate problems in the form of a problem, rather than in the form of an unimplemented solution.

Compare:

  • "I need to be able to place my online photos into different directories to organize them."

vs.

  • "I need to be able to categorize and organize my online photos."

Only one possible solution which may be difficult to implement depending on design vs. many possible solutions which may be easier to implement or even superior in solving the underlying problem (such as Flickr's tags+sets+search system).

Another example: "I need firewood." (Solution: more firewood.) vs. "My house is too cold." (Solutions: better insulation, electric/oil/gas/geothermal heating, wear a sweater, etc.)

link|flag
vote up 2 vote down

if a user can break your code they will. Users of your applications will break it if you leave a hole. Users of your code will use it wrong if you let them.

Make sure what you write works, because if it doesn't then you'll pay for it.

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

At school plagiarism is bad, at work plagiarism is good.

link|flag
2  
Know what you are stealing. Many folks I know who "plagerize" in the professional world also have no idea what they stealing. This can often introduce many unwanted problems. – James Schek May 20 at 22:56
show 2 more comments
vote up 4 vote down

refactoring, and build only functionality that has a use, don't build more than that for some abstract completeness concept. Every line of code has a corresponding percentage chance it will contain or introduce a bug.

link|flag
vote up 0 vote down

The most important thing:

Moxie.

link|flag
show 1 more comment

Your Answer

Get an OpenID
or

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