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

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

...that you have to learn most stuff yourself if you really want to be good at something.

link|flag
vote up 0 vote down

Herms posted this comment earlier and I completely agree with this: origin post

I find that generally these things are only OK when you actually own up to them/admit them. If you make a mistake but refuse to admit it then it's not OK. If you're wrong but don't learn from it it's not OK.

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

Working, straining myself to achieve something. I got through school without ever doing my homework or learning for a test (outside of class), and still got acceptable grades.

link|flag
vote up 0 vote down

How to make software to sell.

We were taught all about how to write great software in the context of an existing business. However, it's quite another animal when you're starting a business with your software.

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

Self confidence is way more important in getting ahead than intelligence.

I felt kinda ripped off when I figured that one out. All that effort lavished into learning things...

link|flag
vote up 3 vote down

How important is backup.

link|flag
vote up 0 vote down

How to learn effectively (based on cognitive science).

link|flag
vote up 0 vote down

How to deal with bosses. My last boss micro-managed me to insanity.

link|flag
vote up 0 vote down

Oh, and, most people have a very fuzzy definition of the truth, which is annoying for techie types who prefer a more binary worldview.

link|flag
vote up 0 vote down

Self-measurement. Specifically, how to identify my weaknesses, my strengths, and my market worth.

You can easily tell if your haircut looks bad. Unfortunately, there's no mirror for our personality or work patterns.

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

How to debug code. From my first year as a professional programmer, I keep marveling why they did not teach us this in school.

This could have fit nicely into a course on software quality assurance or engineering (SQA/SQE) as a big chunk of it.

Beyond "putting print statements" in our code, instructors taught my fellow students and I nothing about debugging code.

They taught us how to do anti-bugging but not debugging.

The debugger is a vital tool in both fixing problems and inspecting code to understand it and look for problems.

These days, with continuous integration practices/mechanisms, widely available free tools for doing static code analysis to check for errors and compute complexity/instability, help automate unit and even functional testing - and all sorts of other things that drive quality out and bugs up - a one semester course on these things would be powerfully useful for coursework and future professional work.

link|flag
vote up 0 vote down

Creativity Independence Free thought

link|flag
vote up 0 vote down

That a lot of what you just spent four years learning became obsolete eight years ago.

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

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

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

The developers (people?) who claim to know the most tend to understand the least.

link|flag
vote up 0 vote down

Life is fucking hard.

link|flag
vote up 0 vote down

how to sell an idea

link|flag
vote up 1 vote down

Be aware of what you don't know and don't be afraid to ask questions when you need to.

link|flag
vote up 0 vote down

salary negotiation

link|flag
vote up 0 vote down

That unlike school and if you played sports, there is no such thing as good sportsmanship. Two people going for the same job, there will be blood. The person sitting in the cube next to you WILL throw you under the bus at review time, and when projects come late your boss will sacrifice you up to their boss in order to save their own arses.

It's nice that we teach little kids that all is fair, and that we can't keep score and that despite the fact that the other team kicked your ass 10-0 you still have to smile and shake their hands and all go get ice cream... Reality is a cruel wakeup call and kids are shown a great injustice by not being prepared to be kicked in the gut now and then.

link|flag
vote up 1 vote down

Here are the most important wrong things I was taught in high school + college:

  • I was taught that my efforts were mine alone. My successes were mine. My failures were mine. The same applied to others. Being an intelligent island was what was important. Cooperating and networking with others was irrelevant and even potentially detrimental.

  • I was taught that it was ok to be shy and not want to speak in front of others.

  • I was taught that my interpersonal skills were of far less importance than my mental abilities.

  • I was taught that I would be doing interesting and mentally taxing tasks all day.

  • I was taught that being smart and having "potential" would get you into a good school even if your parents didn't have much money. And it would especially be enough to get you a good job that you're able to do, even if you don't yet have the experience.

  • I was taught that proper grammar was important. If you don't know exactly how to avoid sentence fragments and comma errors, you will be looked down on because everyone else knows this and follows it closely.

  • I was taught that higher math was highly valued and that you'd use at least some of it after high school.

  • I was taught that learning the arts adds little value to life since you can't turn it into income.

  • I was taught that the quadratic formula was worth studying for a month or two but compounding interest was only a formula worth memorizing for a few days.

  • I was taught that the most competent person would be in any given position in business. The unqualified would be kept out of a position.

  • I was taught that every smart woman must pursue a BA and a career. What confident self-assured woman could possibly want to be a stay at home mom? At best, it's weak and ambitionless. At worst, it's squandering the gains made by hard-fighting sacrifice-making previous generations.

  • I was taught that a textbook any older than 2 years is obsolete and must be replaced.

  • I was taught that Lotus was the future that I positively must learn if I am to have any competitive edge in business.

  • I was taught that writing lengthy papers was a valuable skill. The more advance courses had longer paper requirements so it only stands to reason that longer = better.

  • I was taught that there were no long term effects to any of my actions. If I failed a class or simply lost interest, I would only take a small hit on my GPA and in many cases, I could take it again without consequence.

  • I was taught that choosing to take Calculus is more important to your life than choosing a "marriage and family" course.

  • I was taught that all projects could be completed in 5 months or less and would never have to be maintained -- by myself or by others.

  • I was taught that school taught the important things. By corollary, the items never even mentioned in school must be trivial: writing a resume, establishing good credit, how to dress and act on an interview, balancing a checkbook, determining the long-term impact of purchasing something on credit, taking initiative in a group, negotiation, diplomacy.

  • When science and religion disagree, if you are in my urban highschool, if you take science's side then you are objectively right and everyone will come to agree with you. And if they don't, their feelings aren't worth considering. Moreover, if you ostracize them, there's no real-world harm that can come back to you if you attack their views. It's not like someone else can affect your island.

  • When science and religion disagree, if you are in my rural university in the southeast, if you take religion's side then you are objectively right and everyone will come to agree with you. And if they don't, their feelings aren't worth considering. Moreover, if you ostracize them, there's no real-world harm that can come back to you if you attack their views. It's not like someone else can affect your island.

link|flag
vote up 0 vote down

How to integrate different skills and languages in a single project.

link|flag
vote up 0 vote down

One university professor had something like this in his sig (not from my university, and I was never taught this there):

"If you get 90% correct on my assignment, you pass the course. If you get 90% correct at work, you get sacked."

link|flag
vote up 0 vote down

How to program - I learnt it by myself.

link|flag

Your Answer

Get an OpenID
or

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