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

1 2 3 4 next
vote up 118 vote down

We weren't taught about source control. Luckily, I had a good mentor who taught me before I finished school and embarrassed myself.

link|flag
3  
Actually, that's a good way to detect cheating. If the student has to do their assignments using source control, you can look at the list of changes, and stop people from just copying assignments of others. You could still pay someone to do your work, but it's a little harder to game the system. – Kibbee Nov 3 '08 at 14:08
1  
We were taught to use source control but they told us to Use RCS... – Omar Kooheji Nov 3 '08 at 15:25
10  
Source control? You had SOURCE CONTROL? We had rubber bands for the card deck and an pencil to number them with, and we were happy to have them! Geez... – Ken Gentle Nov 3 '08 at 21:13
2  
@Taylor: Java isn't insanely hard to figure out either, but a lot of schools are teaching it. Version control should be taught and used at universities, IMHO. – Bill the Lizard Nov 4 '08 at 18:52
show 18 more comments
vote up 94 vote down

Often, good enough is better than perfect.

link|flag
2  
I prefer the step above "good enough" but a few steps below "perfect" myself, but yes, you do need to know when to stop "perfecting" component X. – Thomas Owens Nov 3 '08 at 13:19
1  
"too often, 'perfect' gets in the way of 'good enough'" – warren Nov 3 '08 at 13:28
1  
I heard it as "the perfect is the enemy of the good." Close enough! – Walter Mitty Nov 3 '08 at 16:20
2  
"If a thing is worth doing it is worth doing badly" as my old man used to say! – Aidan Nov 19 '08 at 11:57
1  
I hate to admit that this is true, I like perfect better :( – the_drow Aug 31 at 8:18
show 1 more comment
vote up 74 vote down

It is ok to be wrong, it is ok to make a mistake, it is ok to say "I don't know"

link|flag
21  
I love deadlines. I like the whooshing sound they make as they fly by. - Douglas Adams – Rorschach Nov 3 '08 at 20:15
5  
But it is not OK to make the same mistake over and over again. – sneg Nov 3 '08 at 20:28
2  
That is actually one of my confidence tests. If someone can admit when they don't know then I don't have to worry as much about them guessing at the "right" answer. – Oorang Jun 11 at 6:52
show 3 more comments
vote up 50 vote down

TDD/Unit testing.

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

Critical thinking.

I wish more kids were taught how to analyze a problem, how to avoid fallacious thinking etc. etc. I can't tell you how many times I've got caught in the error of "all or nothing" thinking--for example, if we can't fix all the problems with some software we shouldn't bother to fix any of them. I'm sure there is a name for that logical fallacy--I'm sure some bright commenter will tell me what it is. :-) My point is that learning to think critically is a skill that serves any developer well and it isn't taught in any schools that I know of.

link|flag
2  
This might be what you mean (via Google): BIFURCATION: (either-or, black or white, all or nothing fallacy) assumes that two categories are mutually exclusive and exhaustive, that is, something is either a member of one or the other, but not both or some third category. tinyurl.com/SO-fallacy – AgentConundrum Nov 3 '08 at 20:53
1  
Similar concept is the "Sucker's Choice": I can either keep quiet about an issue that's really a problem or tell the truth and lose my best friend. We tend not to think, "How can I resolve the problem AND keep my friend? – kajaco Dec 23 '08 at 16:24
show 5 more comments
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
vote up 29 vote down

How to communicate effectively.

Getting people to understand you and taking the effort to understand others is critical in all endeavors.

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

Working with large codebases and pre-existing code.

link|flag
vote up 25 vote down

That the real world is unfair.

link|flag
1  
I think they generally stack those lessons under the 'Philosophy' label ;) – tloach Nov 3 '08 at 13:54
3  
Heard from a friend: "You'll never get what you deserve, but what you are able to negotiate" (And he said he was told that at school) – Null303 Nov 3 '08 at 18:01
10  
That is a really great point. And to illustrate it, I will vote you down. – TrickyNixon Nov 3 '08 at 18:28
1  
Every time I get my grades I´m taught this one. – Seiti Nov 3 '08 at 18:32
show 1 more comment
vote up 23 vote down

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

link|flag
vote up 22 vote down

How to resolve a technical disagreement.

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

You can't help learning when you teach. And explaining something to others is an excellent way to find out exactly how well you know it.

link|flag
1  
Or... how much more you can learn about it – Brad Bruce Nov 19 '08 at 16:15
show 1 more comment
vote up 17 vote down

How to read code on a large scale.

In the "real world", there is a lot of code that you have to read, understand, build upon, and refactor.

Sadly, most university projects are "start from scratch" type things, which are more the exception than the rule in industry.

link|flag
vote up 16 vote down

You never know when you'll meet someone again ... or where. It's always worthwhile to treat people with respect and kindness.

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

Choose your employers wisely.

Bad employers = bad references, which can follow you around forever.

link|flag
2  
And then you can sue them for blacklisting you. :) – Sam Schutte Nov 3 '08 at 18:13
show 1 more comment
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 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 10 vote down

Paul Graham summed this up well, I think: What You'll Wish You'd Known

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

How to teach others effectively.

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

The fact that you're often doing more harm than good by over-commenting your code.

int count = 0;  // variable to store the counter

should NEVER be taught as good programming practice.

link|flag
1  
@Aaron: From a teaching perspective, this can be counterproductive. Over-commenting can be quite helpful to graders when the code is heavily broken. E.g. consider the code, {string i = "0"; // variable to store the counter}. – Brian Jun 12 at 13:48
show 1 more comment
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 8 vote down

Debugging. Real debugging.

If you made it through school you know how to debug your own stuff. But now you a new frontier awaits you when you meet legacy code. Unless you are working in a startup writing all your own stuff, you will come across this problem someday, and when it's bad, it's REALLY bad.

This is because sometimes you will have code that is 5 years old, has major flaws, and has 5 years worth of hacks/workarounds/aborted-attempts/semi-completed-attempts piled on top of it, masking the real problem.

And this is what real debugging skill comes down to... figuring out where the real problem lies, and then figuring out if you are actually have enough time and are competent enough to fix it properly, or at least leave things in a better state than you found it (sometimes leaving comments is the best you can do)

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
1 2 3 4 next

Your Answer

Get an OpenID
or

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