vote up 66 vote down star
65

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 5 vote down

Not enough emphasis on technical writing.

link|flag
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 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 5 vote down

Always prefer simplicity over complexity. The best code is the code that you don't write.

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

Social Skills

Closely related to communicating effectively are social skills in general. After you graduate, you’re not going to be dealing with your high school or frat buddies anymore.

You’ll be dealing with many people from different backgrounds, countries, and more importantly different age groups, so it would be wise to learn how to socialize outside your own group.

Cut the slang. Learn to respect customs from other countries. Learn how to listen – few people do. Learn when to speak and when NOT to.

Build rapport. Learn the art of networking – that’s key. Networking is a big skill that’s not taught enough in schools. Learn to compliment. Mingle. Make small talk.

Learn to approach people – that’s another big skill. Most people don’t have the guts to take the first initiative and introduce themselves. Be the big man. Take the first step.

I missed all these things. :-(

link|flag
vote up 4 vote down

The skills to keep on learning.

link|flag
vote up 4 vote down

We weren't taught that the consequences of poor quality go far beyond a bad grade!

link|flag
1  
There's actually no good reason why this couldn't be taught. Give students an chunk of ugly code and ask them to a: Explain what its purpose is, b: explain what its side effects are, and c: refactor it. – T.E.D. Nov 19 '08 at 14:38
show 2 more comments
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 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 4 vote down

"A problem well-defined is half-solved."

So focus on defining the problem, and clearly communicating the problem; convincing others and yourself that there is a problem and that you know what it is.

All this before you jump playfully into "solution space".

I've met people who aren't even aware that they're in solution space, when to them they think they're in problem space.

link|flag
vote up 3 vote down

Don't discard your mistakes -- they may be more valuable than your successes, even if only as bad examples ... or SO questions!

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

What people think you're capable of accomplishing is a good indicator of your success.

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

That most things you learn will be obsolete in 5 years. I haven't programmed in FORTRAN using a deck of punch cards since I left college.

link|flag
1  
I'd hope that a "good" CS curriculum would teach core concepts and techniques that transcend time, platform, and language. As an EE who writes software/firmware to make the hardware work--unattended for 10+ years--my philosophy is that programming is essentially the same task regardless of implementation specifics. Sure. there are plenty of differences (OO? Procedural? State machine? Client-server?), but all of the vital, eternal concepts of architecture, supportability, extensibility, efficiency, etc.apply regardless. Everything else is a question how how to talk to the compiler. :-) – Adam Liss Jun 21 at 2:16
show 1 more comment
vote up 3 vote down

Regular expressions.

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

How important is backup.

link|flag
vote up 3 vote down

"There most certainly is such a thing as a stupid question."

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

The most important thing I've learn is that knowledge need to be up-to-date in software and that I'll need to learn for the rest of my life :)

link|flag
vote up 2 vote down

Requirements gathering. If you show up at your first day of work expecting to be handed a program description that a TA could grade you on how well you followed, you're going to be in for a surprise. I know I was.

"Well, how do you want it to work? What do you mean 'I don't know'?!?"

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

All the nuances and issues that arise between 100% academically correct and 100% employer correct:

100% academically correct will get you a good grade. 100% employer correct will get you a good paycheck.

How to cover your ass when instructed by time constraints to do something that is not 100% academically correct.

link|flag
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 2 vote down

How to conduct myself in a job interview

link|flag
show 2 more comments
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 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 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 2 vote down

Nobody will tell you that as an adult you will have a choice on working at things that make a positive difference or just taking any opportunity that puts food in your mouth, and the ethics of the goals your workplace sets and the ethics of the people around you should be a fundamental criteria, because otherwise you will find your work put to ends you don't want to admit.

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

Time management.

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

Self learning.Educate yourself.

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

Your Answer

Get an OpenID
or

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