up vote 140 down vote favorite
53
share [g+] share [fb]

I need to teach a teenage beginner programmer (private tutoring style). The problem is that despite their poor knowledge and skills, they are sure of their abilities, to the point where I find it hard to teach them "better ways".

What's the best way to tackle this?

Just to be clear what I'm talking about:

  • Constantly changing between tools/IDEs/libraries when it's tough.
  • Blind certainty that really bad designs are really very good.
  • Copying and pasting from the Internet, without understanding the code, and "marking" it as a project.
link|improve this question
26  
I was like that at 15 or 16. Full sure I knew eveything, and couldn't be told I didn't. It took a very humilating personal failure to snap me out of it. – Binary Worrier May 15 '09 at 12:15
132  
I have met people like this. There is always one day when they come and declare: I have found a bug in gcc. – mouviciel May 15 '09 at 12:28
22  
Physical discipline, of course. Always works. – DrJokepu May 15 '09 at 15:37
32  
Apply a rolled-up newspaper to the nose, repeatedly, until they stop piddling on the carpet. – Steven A. Lowe May 16 '09 at 19:20
9  
Actually, I did find a bug in GCC :-) – Matthew Farwell May 29 '09 at 7:08
show 11 more comments
feedback

51 Answers

1 2

Let them fail. Nothing proves your own mortality more than seeing bugs you never thought possible in your own code.

link|improve this answer
35  
If you're convinced you're an immortal coding god, you won't realize that the reason your code is failing is actually your own fault. There are numerous ways of solving problems in code, most of which have some hidden drawbacks or downright critical consequences that will never show up to a beginner. They won't know how to deal with this, unless taught the basics of common sense. – J. Steen May 15 '09 at 12:14
10  
I think the biggest problem is up to one point you might not aware of that you failed, because the project is working fine! But when it comes to maintaining or can't introduce a new feature because the initial design was ridiculous you might see that you failed. So "let them fail" might not work as quickly as expected. – dr. evil May 15 '09 at 12:20
5  
"Let them fail" can backfire spectacularly - some people are just not capable of assigning blame to themselves, they will convince themselves it must be something else. If you try this, it could be you they choose to form a conspiracy like theory around. – David May 15 '09 at 13:22
146  
"Let them fail"? Hell, MAKE them fail. Take a look at the crappy code the kid is producing, and then for the next assignment, have them expand the code in ways that require an understanding of the code they blindly copied and pasted, or that would be fairly simple with good design but are quite painful with the design actually used. And for the sake of contrast, do the same thing targeting functionality that the kid DOES understand, or sections of code that ARE designed well (assuming any exist). Don't tell them they're screwing up; SHOW them. – BlairHippo May 15 '09 at 14:51
4  
I agree with David that the "Let them fail" method could backfire. Too many kids have it way too easy b/c frankly, we keep programming things to make their lives easier! So easy in fact, that they never learned how to overcome challenges. Thats why your student switches IDEs/tools when it gets tough, they are giving up. Teach them small obstacles that they can overcome, progressively getting more difficult. Solving each challenge provides real self esteem, which will replace the fake stuff they use as a defense mechanism. – Charlie Brown Jul 9 '09 at 0:29
show 12 more comments
feedback

Ok here comes a rather philosophical, but nevertheless correct, idea:

A strange phenonemon is that regardless the skills people have or don't have, the skills they think they have are more or less constant.

This is because the skills you have are the only skills you can use to judge the skills you have....

This lead to the phenonemon that your pupil, and many others, suffer from: "unskilled and unaware of it"

See this very interesting text: Unskilled and unaware of it: How difficulties in recognizing one's own incompetence lead to inflated self-assessments.

Now, ask yourself, why you think you are skilled and your pupil is not? You know you shouldn't copy paste from the internet. But if you really know why, why is that? If you can phrase it for yourself, why not for her?

What I mean is, if you know something is bad, you should know it that well that you can explain it to others. If you want to tutor, make a habit of questioning your own certitudes. Explain them to yourself as if you had to persuade yourself.

And importantly, try to find examples. Examples are the alpha and the omega of teaching. That's how people tend to get something: by seeing an example of it.

If a design is bad, show her where it goes wrong with an example. If you cant find an example, produce one yourself. If you can't produce an example, ask yourself why that is.

I think if you can find counter-examples for every false certitude a beginner has, you will not find it that difficult to persuade them.

link|improve this answer
2  
You actually explained what I "just knew" :) – VVS May 15 '09 at 12:42
1  
cool answer.. appreciate it – rpr May 15 '09 at 13:20
show 3 more comments
feedback

Simply ask.

Let them do something. When you see they do it wrong, ask why they do it. Let them explain their reasoning. Nobody likes it to be pampered but everyone likes to boast -- to the point where they will talk themselves into a corner.

When they start to struggle with their answer, ask a "how about ..." question: "How about you encapsulate this into a class, so you can forget about the details?"

This makes them lead themselves, using your experience.

[EDIT] In my experience, there are no fools. When someone does something extremely foolish, that happens for two reasons: They didn't think about it at all ... or they thought about it and came to the conclusion that this course of action was the perfect one. Since you can't tell what it was by looking, you have to ask. This is the key to answer your question: How can I help?

link|improve this answer
12  
"In my experience, there are no fools." - then you need to get out more :-) – paxdiablo May 30 '09 at 14:47
22  
If one starts to think of someone else as a "fool", then that's prejudice. People can lack knowledge, insight or guidance. Just wrapping them in a label to let them rot in a back corner of ones consciousness will make one happy but it won't change anything. – Aaron Digulla Jun 2 '09 at 9:44
1  
+1 "In my experience, there are no fools": at work, you really do have to think that way. – Bob Cross Oct 30 '09 at 10:59
7  
"Everyone is a fool sometimes". Dunno who said that but I have my moments, too. – Aaron Digulla Oct 30 '09 at 12:55
feedback

Unplug the internet connection.

link|improve this answer
6  
If she can tackle the WPA2, she really might be a know-it-all :-) – Peter May 15 '09 at 12:55
4  
"I just downloaded this code and it seemed to work. Don't really know what it does though,......" – Steve Claridge May 15 '09 at 13:23
25  
@Steven Claridge - A great example of encapsulation! – CiscoIPPhone May 15 '09 at 13:45
1  
@Neil - Wonderful, wonderful answer, and in so few words. – karim79 Jun 9 '09 at 21:53
1  
@CiscolPPhone: more like information hiding – hasen j Nov 29 '09 at 17:25
show 3 more comments
feedback

I've done private tutoring for some years, and I think that the same approach can work with maths and programming. (After all we know that they're more than closely related).

  • Take away any help from them. Programming is done best in one's mind. No IDE, no google, heck no computer! Go pen & paper.
  • Make them explain why they think the solution is valid. Always!
  • Make them explain why, but do it before telling them if the solution it's right or wrong. This helps a lot with over/underconfident persons.
  • Ask questions. Theory questions, practical questions that can be solved without writing, any question. But don't be satisfied with approximate answers.
  • Give examples, of what works and what doesn't, and always explain why. Evidence is the key.
  • Make them fail. But be aware! This must not, for any reason, be a clash of egos. There's no point in proving someone wrong for the sake of it. The typical know-it-all reacts worse when he feels humiliated. The truth that has to become clear is not that they can't program, is the right way to do it.
  • Be a good example, and never accept compromises on the topics you think are crucial. This means never copy and paste if you told him to never copy and paste!
  • Always say why something's wrong, and incrementally ask for solutions to individual problems. Small things are tackled best, and a sense of direction is very important.
  • Systematic and logic errors are not abstract, we all know that they have heavy practical repercussions: make clear what will happen if they don't follow best practices.
  • Always make it fun, or at least interesting. Learning always has to.
  • Lastly... some people have no will to learn. Humility is key in learning more than in any aspect of life, and unless you're a close relative... there is very little to do about it. You can decide to invest your time in people with the right mindset.
link|improve this answer
1  
very nice answer – sstock May 16 '09 at 7:31
show 5 more comments
feedback

Point him/her at StackOverflow, and see how many questions they can answer.

The breadth of issues on here might give them some idea how big the programming problem space is.

link|improve this answer
18  
This is a good response. I'm consistently humbled when I read the questions posted here. – JimDaniel May 15 '09 at 15:33
2  
Look at the PHP questions, a lot of answers there are actively encouraging copying from the internet without understanding. – Jacco May 15 '09 at 17:02
25  
Oh please don't destroy our community. – JavaRocky May 16 '09 at 6:47
5  
@Jacco yeah, large proportions of PHP Users are unskilled and don't know it ;) – Kent Fredric May 18 '09 at 17:22
show 2 more comments
feedback

Teenagers almost always think they know everything. In some ways they're like two- or three-year-olds - their experiences haven't taught them (yet) that there's more to [insert your thing here].

Working with teenagers in my church youth group and as a Boy Scout leader (and Computers Merit Badge counselor) has taught me a few things:

  • be patient.
  • they are generally smarter than you think.
  • don't say "but" if you can avoid it. Exceptions to anything let them turn on their inner lawyer and they will try to split finer and finer hairs. It's unwinnable and takes you both off task.
  • their logic skills are ... undeveloped. That may be the hardest thing to overcome because they will see relationships where none exist, and will miss the elephant in the room.
  • practice being patient. For yourself and for them.
  • be a teacher, not a Charlie Brown-adult talking head. Don't be condescending. This can be tough with a know-it-all who's sure they are right.
  • give them solvable problems.
  • they'll want to do something that gives them near-instant feedback. Whiteboarding logic might be important but will turn them off and you may never get them back.
  • be patient.
  • let them fail.
  • be patient. They will get it. Eventually.
link|improve this answer
show 2 more comments
feedback

I was once that know it all, fresh out of college developer. It took about 2 weeks and 10 code reviews to show me that I was nothing.

When I started my current job out of college, I had to do a throw away program to learn the companies standards for 2 weeks. My code followed the companies SOP for development, meaning the code was code review. The two code reviewers I had tore it apart for 2 weeks. By the end of it, I realized that I and my code are no better then anyone else. That is the exact time that I started to grow as a developer and actually learn.

link|improve this answer
show 1 more comment
feedback

It's not enough to tell them they're wrong, you have to show them. There are limits to the coding style you describe. You're going to have to make your student reach those limits before they can go beyond them. Challenge them with interesting problems that they won't be able to solve the easy way. Work through them with the student the right way. I'd recommend Project Euler, but it's not for everyone, and I have a feeling you're going to need to find problems that are particularly interesting to this specific student.

link|improve this answer
1  
For example, if they don't think 200-line long methods are a problem, give them one to maintain. When they start to struggle, ask (don't tell) them "What's wrong with the way the code was written?" Them telling you that there are too many nested loops or local variables reused 5 times means you've won without a battle. – Kelly French Dec 15 '10 at 19:24
show 1 more comment
feedback

Give them a rather complex assignment. When they complete it, analyze the code failures (such as lack of extensibility, etc), and make them, for example, extend it. Make them do modifications that require changes in the copy-pasted code. As they run into difficulties, explain how these could be avoided, by better design, and understanding what they copy-paste.

Additionally, you might what to give them problems from http://projecteuler.net/, which require thinking and not just brute-force+copy-paste programing, though i may have diverted myself a bit.

link|improve this answer
feedback

Require her to grow a project: to start it and then, in your next assignments, add to it.

That should:

  • Require her to understand what she's provided in previous assignments
  • Explain the value of good design (which is maintainability)
  • Be like real life

I suggest too that you concentrate on verifying the correctness of program's output (because the extent to which the output meets requirements is an objective measure of goodness, whereas 'design' is subjective).

Something else is to teach by example ("that works; I would have done it this way though, because ...").

link|improve this answer
show 1 more comment
feedback

Confidence is a common and necessary attribute of programmers. We tackle problems that seem hard in their totality, and often are in their constituent parts. This confidence can be evident in strong ego, and even arrogance.

I remember being confident at pretty much every stage of my development career. The first time I wrote some code in assembly, I thought I could rule the world. That feeling is less strong now, because it is less important to me. I have been humbled so many times by other developers, and by the rapid, constant evolution of our field, that I assume anything I know to be a "truth" now, will be considered terrible practise in very short time (I exaggerate to make my case, but believe this to be true in spirit).

For me, the best way I have learned the "better way" is by using those tools and practices. Make the student work with, and modify good code, so they appreciate the elegance and ease that prior programmer has afforded them. Make them use design patterns and frameworks (e.g., MVC) that are generally agreed on to be a good thing at this point in history.

Ask them to do things THEIR way as well, and then discuss the differences. Why is A preferable to B? More maintainable? Less lines of code? Less layers of abstraction for a new developer to get oriented with? More loosely coupled? Better documented? Faster? More common standard? Feels better?

link|improve this answer
show 2 more comments
feedback

Give them a task that is very hard. Look through 'The Art of Computer Programming' as there are plenty of good ones there. Maybe issue an NP-Complete problem. Then when it runs in O(stupid) you can point out how bad there design way and show them why they were wrong. Or maybe ask them to write something in under-x-lines of code.

I tend to think I am right until I find out that I am wrong. The lessons best learned are the ones you find out yourself

link|improve this answer
9  
Sounds like a sure-fire way to frustrate them: People don't take it well when you give them an impossible problem and then come back with "told you so". That's at least insulting and taking the instable emotional state of teenagers into account, it's the wrong way to handle this. Defuse over aggression. – Aaron Digulla May 15 '09 at 12:33
4  
Not so much an impossible task, but one that is sure to highlight to them where there short-comings are. So they can go "oh, so that's why we abstract the OS API" or whatever. – Aiden Bell May 15 '09 at 12:48
feedback

What was it Obi-Wan said... "Was I any different when I was that age"?

Give them problems from TopCoder, and then compare and contrast the elegance and efficiency of their solution to the examples of contest winners.

link|improve this answer
feedback

One option might be to get them trying to contribute to an open source project. Pick a bug and try to fix it together. It might be a helpful way of showing them other peoples code and getting a wider response to their code when they try to submit it to the project.

link|improve this answer
feedback

Your problem is not new.

Here is some research on the subject, makes an interesting read. Unskilled and Unaware of It: How Difficulties in Recognizing One's Own Incompetence Lead to Inflated Self-Assessments

link|improve this answer
feedback

His fake omniscience is due to insecurity, not confidence. You must destroy him before he can be rebuilt.

Actually sounds like fun... =)

link|improve this answer
1  
This works in martial arts movies, but I think this is not a very nice approach to a student-teacher relationship... – Pranab Jan 7 '10 at 5:46
feedback

Introduce them to StackOverflow

I find that seeing the depth and breadth of knowledge available, especially dealing with somewhat foreign languages and concepts, is extremely humbling, even on my most egocentric days.

Tell him/her "Until you can out-wit Jon Skeet, you've got more to learn."

link|improve this answer
feedback

Maybe you can get them to shift their ego. Instead of being writing the best code around (as we are all :), maybe they can find some fun at saying WHY other's code SUCKS ? What if they where the buyers, would they pay for that ? Since they would be riches (after coding some killing app, of course), they would not have time to code all what they want - so they would have to hire - what kind of code would they want ? Is unmaintenable code ok ?

And what if they were Bill Gates with 100 000 developpers beneath them ? Would they accept that a wiz kid create a killing feature that nobody would understand ?

That's the beginning of code review. And the begining of great software development carriers, I think.

All the best :)

link|improve this answer
feedback

I personally feel the best way to teach is not to tell a kid how to think but to ask them what they think and then ask them to defend their ideas with facts. So if the kid says XYZ is the best method don't disagree say, "OK great answer and now why is it the best?"

Never use "but" with a kid, or anyone really, because it sounds like you are saying, "I heard you BUT you are wrong." Kids just shut off if they think you aren't listening to them. I try to go by the adage that you should never take away from what they say but instead you try to nudge them in the proper direction by showing them how to deduce and answer for themselves.

Though you should be careful that in the teaching you don't forget to keep you mind open and learn too; very often we learn from those we teach.

Oh, and make sure you are non-confrontational. You aren't there to force them to do things your way, you're there to teach them how to think for themselves and you're just providing the tools.

link|improve this answer
feedback

I'd try moving away from the tools/libraries and tackling on more theoretical topis, such as OO design, algorithms, etc.

link|improve this answer
show 1 more comment
feedback

The only thing that may help her is time and experience.

link|improve this answer
1  
If not the only thing it's of course the most important. – VVS May 15 '09 at 12:28
feedback

Don't let them fail by giving them something difficult. That leads to frustration which is not a fertile ground for a teacher/student relationship.

Give them a simple problem, but strive for elegance and clarity in the code. If you have multiple students, try making it into a little contest: Whoever can come up with the solution in fewest lines of code / fewest operations / fewest bugs.

Don't talk tech at first, judge code purely on its aesthetic merits.

And, yes, disable the internet. Or, better yet, switch off the computers. Let them do the coding on paper/whitebooard/blackboard/origami/spaghetti.

link|improve this answer
feedback

My initial answer is to always let them fail -- agreeing with the current solution. Even after I was made aware of my failures and my ridiculous software designs, I took it as a personal failure and not one of lack of experience or knowledge. Furthermore, it doesn't really help if you need to teach someone.

What helped me to gain perspective is work in the Enterprise consulting field. Looking at the APIs and designs of professional (and expensive) projects taught me a lot about where I was, and how far I had to go. I saw how much more complex these things are, and how people are made to work with them. It shocked me out of my bravado and made me listen and study.

link|improve this answer
feedback

Give them a good book to read. I had this problem with a co-worker and it was very hard to convince him with the basic concepts behind things like encapsulation and so. I threw at him a good book (that matches his level being experienced in the field not in programming) and it was miraculous how he changed his mind about many aspects of his work. Try books that serve as moral advisers for languages or general practice like "Code Craft" or "55 Effective C++" or "The Productive Programmer" and so on ..

link|improve this answer
feedback

Ask them lots of questions. Get them to explain their designs, their modelling and their implementation.

Then start picking apart the explanations. It may not sound pleasant, but it might be one of the few ways to get them really thinking about their designs and approaches.

Hopefully they'll realise that there is a lot more to programming than "just making it work".

Lastly, give whatever they build the "manual tester" treatment and start breaking their applications by doing things in a way that "real users would never do" (i.e. things they haven't considered).

link|improve this answer
feedback

This is coming from a teenager,

  • choose one platform, and stick to that platform (iphone, mac, windows, etc.) don't switch UNTIL he knows enough about that platform that he can pump out programs.

  • GO TO A USERS GROUP MEETING WITH
    HIM!!!! (eg cocoaheads) it'll get him excited about that platform.

  • When you teach him DO NOT USE THE
    INTERNET!!!! Use books.

  • When things get hard, help him figure it out, don't leave him in the dust

  • IMPORTANT! Create a new user account on the computer he uses, this is your "development account" on the desktop (if you're using windows) remove all the icons EXCEPT: my computer, the IDE, a folder that will contain all the projects, and an image editor (photoshop, gimp, etc.). On a mac just leave these in the dock: Finder, xcode, IB, and an image editor. On this account BLOCK ALL INTERNET ACCESS

  • Do "contests" with him. Come up with an application idea, it can be something simple, like a calculator. Just make sure you can easily do it. When you do it with him make sure he's using the "developer" account that I mentioned above, and you use a different computer. Chances are it'll be too hard for him and he'll steam off in a pissy mood, THAT'S OK!!! Once he cools down show him your finished app and go through the source code with him, line by line. He'll pick up little "tricks" that you used, if he starts to ignore you make something up, don't keep on going, stop, say something to him, and continue. After seeing this he SHOULD realize that he doesn't know everything and be more prepared to learn.

  • DON'T FORCE HIM TO SAY HE DOESN'T KNOW EVERYTHING, HE'LL REALIZE IT SOON OR LATER (and won't admit it)

  • Give hints you want him to learn a specific language, go to your local bookstore and pick a book out about that language/platform and first YOU USE the book (optional, you can fake it if you want, or just give it to him), then when you're all done put the book somewhere where he'll see it, if you want to put a note on the book saying "here you go!" but you don't have to. Eventually he'll look at it, it probably won't be right away, but he'll look at it.

  • IT TAKES TIME, BE PATIENT.

Oh yea, a biggy:

  • Make him realize his mistakes. Don't point them out. Have him figure it out when the app crashes.
link|improve this answer
feedback

I think we all started out as the invulnerable teenage programmer who knows everything that there is to know about programming and especially doesn't know when they're attacking the impossible. It takes a while to work out that the problem usually isn't the tools but sitting in front of the keyboard.

Realising that good practise is something that's useful to be adhered to comes wiht experience and that's usually best gained with trial, error and failures...

link|improve this answer
feedback

I'm not in the "destruct their beleave" thing, i think you could make an sample project with some mistyrious bugs or exeption that you've put in, and has an exercice or practice they have to debug it.

You learn alot by debuging code and they wont find the solution on the internet :) beside that case happens all the time at work, some tools is jamed and the programmer isn't here so you end up debuging someone elses code...

link|improve this answer
feedback

A teacher really cannot "teach". What happens is that the pupil learns, or learns not. Teacher's job is to create suitable conditions so that it's easier to learn effectively.

Give him more challenging tasks so that bad designs simply won't work. It's possible to solve easy problems with bad designs, but with challenging enough problems it becomes more difficult. Maybe he then will learn to appreciate better designs.

Nothing sucks more, especially from a teenager's point of view, than having to listen "don't to that way, do this way, even though your way works for now, just believe me.." kind of preaching. Things have to be experienced to be understood.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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