vote up 63 vote down star
63

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

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

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

Regular expressions.

link|flag
show 1 more comment
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 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 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 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 5 vote down

Not enough emphasis on technical writing.

link|flag
vote up 29 vote down

Working with large codebases and pre-existing code.

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

How to conduct myself in a job interview

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

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

The majority of people are idiots and liars

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

Until you've been in the business for at least 10 years you really don't know anything.

link|flag
1  
This is very, very untrue. Experience is gained by active learning, it is not a counter that just ticks away as time goes by. And there are many, many great developers out there who have much less than 10 years of experience in the business. – Wedge Nov 4 '08 at 2:05
show 2 more comments
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 13 vote down

Marketing and sales. Not in the selling-sugar-water-to-tourists sense, but in the ability to effectively 'sell' your ideas to your peer, managers, and customers.

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

How to ask my own questions. Too often in university, you're simply asked to answer a canned question. Sometimes the key to succeeding at something is knowing what questions to ask.

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

The link between technology and business. i.e. Technology is driven by the business requirements.

link|flag
1  
I love this. I told a blackberry guy at a trade show that they should add an mp3 player. He maintained that they would never. Two years later. tada! What people want tech will prvide :) – baash05 Nov 4 '08 at 3:11
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 23 vote down

Making mistakes is actually a Good Thing™ -- as long as they're new mistakes.

link|flag
vote up 36 vote down

How to teach yourself.

Often in the real world you will not have the tools/skills/expereince to resolve a problem, that is one thing that the human brain can do that machine's cant. It can figure it out.

link|flag
3  
Surely the whole point of going to university is learnign to teach yourself. Thats one of the main things I learned... – Omar Kooheji Nov 3 '08 at 15:27
1  
@Omar: I agree, my university had a lot of "go figure it out on your own" type of things, in addition to the straightforward instruction. – TM Nov 4 '08 at 5:39
1  
School education seemed to encourage doing everything exactly like the teacher said, and I saw little benefit in just producing carbon copies. I was not fortunate enough to attend university, and guess you are right about university, just wish they did that since I was 5 – Rihan Meij Nov 4 '08 at 11:57
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.