vote up 67 vote down star
66

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

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

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

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

link|flag
vote up 0 vote down

Creativity Independence Free thought

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

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

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

link|flag
vote up 0 vote down

How to learn effectively (based on cognitive science).

link|flag
vote up 3 vote down

How important is backup.

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

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

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

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

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

The most important thing:

Moxie.

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

Write neat code.

link|flag
vote up 0 vote down

Starting from nothing when creating a program - professors always had scaffolding and starter code for us. In a real project I often start from scratch and that opens the possibilities and that makes me realize that school should have been explaining the different possible starting points.

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

Your Answer

Get an OpenID
or

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