vote up 67 vote down star
67

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

prev 1 2 3 4
vote up 48 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 4 vote down

The skills to keep on learning.

link|flag
vote up 0 vote down

You'll be working with real people. Correct code and command-line switches ain't good enough in the real world.

link|flag
vote up 51 vote down

TDD/Unit testing.

link|flag
show 3 more comments
vote up 31 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 5 vote down

Just how important being able to effectively communicate really is.

link|flag
show 2 more comments
vote up 77 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 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 28 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
4  
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
12  
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 0 vote down

Whether you think you can, or think you can't, you are right.

link|flag
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 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

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 18 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 96 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
2  
"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 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 10 vote down

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

link|flag
vote up 121 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
11  
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 22 vote down

How to resolve a technical disagreement.

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

How to teach others effectively.

link|flag
prev 1 2 3 4

Your Answer

Get an OpenID
or

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