vote up 68 vote down star
30

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.
flag
13  
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 at 12:15
86  
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 at 12:28
5  
Albeit few, there are some who actively refuse to learn. These will only learn from experience, if ever. – romandas May 15 at 13:30
11  
Physical discipline, of course. Always works. – DrJokepu May 15 at 15:37
16  
Apply a rolled-up newspaper to the nose, repeatedly, until they stop piddling on the carpet. – Steven A. Lowe May 16 at 19:20
show 7 more comments

52 Answers

1 2 next
vote up 176 vote down

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

link|flag
28  
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 at 12:14
2  
If you don't have the reasoning skills to tell when your bugs are your own bugs (after serious inspection of course), you don't need to be a programmer ... (IMO) – C. Ross May 15 at 12:16
7  
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 at 12:20
4  
"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 at 13:22
94  
"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 at 14:51
show 11 more comments
vote up -2 vote down

First form a spiritual binding with her, then she will be more susceptible to your teachings.

Try first to initialize this teacher-pupil relationship on non-technical stuff.

link|flag
4  
uh... . – annakata May 15 at 12:13
2  
Let me see how could this go wrong – mquander May 15 at 12:15
4  
'Hey, I think we should develop more than code. How about a spiritual relationship. Its ok, shhhh, its ok' – Aiden Bell May 15 at 12:17
4  
lol, +1 for using "initialize" in this context, but is this "spiritual binding" process even legal in most places. ;) – Dana Holt May 15 at 12:28
17  
Wanted: Female Programming Students, must enjoy spiritual bonding. – Aiden Bell May 15 at 12:50
show 4 more comments
vote up 2 vote down

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

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

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

link|flag
1  
If not the only thing it's of course the most important. – VVS May 15 at 12:28
vote up 48 vote down

Unplug the internet connection.

link|flag
3  
If she can tackle the WPA2, she really might be a know-it-all :-) – Peter May 15 at 12:55
2  
"I just downloaded this code and it seemed to work. Don't really know what it does though,......" – Steve Claridge May 15 at 13:23
10  
@Steven Claridge - A great example of encapsulation! – CiscoIPPhone May 15 at 13:45
show 6 more comments
vote up 8 vote down

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|flag
vote up 4 vote down

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|flag
3  
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 at 12:33
2  
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 at 12:48
vote up 7 vote down

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|flag
show 1 more comment
vote up 6 vote down

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|flag
show 2 more comments
vote up 0 vote down

Give her a closed book exam, no books, no phone, no Internet access. Something simple, code written in notepad, compiled at the command line. Let her fail, see her make excuses when she has nothing to blame except herself.

Also, find something external to IT that she's interested in Sports, Musicians, fictional characters, and teach using their example

e.g. Do you think David Beckham would be proud if he played a game the way you did that assignment? or Spiderman has natural ability but even he has to study . . .

Bad examples, but you see where I'm going

link|flag
2  
We all need IDE's and to be able to look stuff up on line to be productive, but lots of us started off in this business before ide's and the internet existed, and we still managed to get the job done. At this stage for this pupil, it's not about "what's real life" it's about learning how to think and how to express those thoughts. – Binary Worrier May 15 at 12:50
1  
Without a computer in an interview, there are many interview questions that I can answer (including whiteboard things) ... but there are many programming questions that I couldn't, for example I don't remember exactly what parameters you pass to the CreateWindow function; I've always found it sufficient to remember only the name of the function, so that I can look it up ... and I was doing that (i.e. using the documentation and sample programs while I was programming) even before the WWW became available. – ChrisW May 15 at 13:00
1  
"or example I don't remember exactly what parameters you pass" which is why paper exams should be pseudo code, you really shouldn't be failed on not knowing the calling convention of some obscure api. But you should be marked down for not knowing the simple stuff (i.e. not using .equals for strings in java, or being un aware of pointer notation in C), and definetly marked down for not being able to solve a problem. e.g. 2 years ago I was asked to give pseudo code to convert an int to a string, he sort of apologised saying "everyone has to do it, for all tech positions". Cool, my kind of place. – Binary Worrier May 15 at 13:21
show 8 more comments
vote up 62 vote down

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: http://www.apa.org/journals/features/psp7761121.pdf

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 habbit 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|flag
1  
You actually explained what I "just knew" :) – VVS May 15 at 12:42
show 3 more comments
vote up 7 vote down

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|flag
show 1 more comment
vote up 42 vote down

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|flag
4  
"In my experience, there are no fools." - then you need to get out more :-) – paxdiablo May 30 at 14:47
7  
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 at 9:44
2  
"Everyone is a fool sometimes". Dunno who said that but I have my moments, too. – Aaron Digulla Oct 30 at 12:55
show 1 more comment
vote up 0 vote down

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|flag
vote up 2 vote down

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

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

As soon as projects exceed a certain size everybody feels that some discipline is needed to really keep being productive, which correlates at least a bit with having fun programming ;-)

So I would try to let them write stuff that can be modified and extended. This forces them to face their own crap again and again. This can then lead to introduction of refactoring, code quality, unit testing and so on.

In university I participated in a XP-style programming course. We were handed over a running traffic simulation. Then the product owner appeared and wanted us to fix certain issues and change some of the behavior. In order to simulate reality as good as possible he changed his opinions every week.

Maybe a running prototype might be a good starting point in your case, too.

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

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|flag
9  
This is a good response. I'm consistently humbled when I read the questions posted here. – JimDaniel May 15 at 15:33
1  
Look at the PHP questions, a lot of answers there are actively encouraging copying from the internet without understanding. – Jacco May 15 at 17:02
18  
Oh please don't destroy our community. – JavaRocky May 16 at 6:47
4  
@Jacco yeah, large proportions of PHP Users are unskilled and don't know it ;) – Kent Fredric May 18 at 17:22
show 2 more comments
vote up 2 vote down

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

I will give them a task where you know they will mess up. Maybe before you give them the task tell them what they MUST use to get the task working 100%. The when you see that they cant do the task tell them "SEE, i told you guys what you must use and still you dont LISTEN to me!!!!" Then show them how its done and tell them to pay attention from NOW ON!!

link|flag
vote up 7 vote down

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|flag
vote up 1 vote down

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|flag
vote up 2 vote down

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

I would have her implement a binary search algorithm. It is fundamental, looks easy, and it is surprisingly tricky to get right. Even "Programming Pearls" had a bug in the implementation.

link|flag
vote up 0 vote down

I think that I would start with Donald E. Knuth series and get them to work through them.

link|flag
vote up 2 vote down

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

Actually sounds like fun... =)

link|flag
vote up 3 vote down

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|flag
vote up 2 vote down

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

I'm assuming you've tried the "talking it through with them" route and not getting much feed back. So...

Take just one of their files that they are very happy with and ask them to wheel to one side then start hacking it up how you'd do it. Its easy to write bad code and hard to write good code. Talk as you do stuff, don't ask for an opinion this time, you are showing the way rather than getting them to think about it. They are clearly dead sure their way is best so no point asking this time around. Make it neat, make it clear, commented, well defended (try catches that are actually needed and do stuff if appropriate), declare all your variables that sort of stuff. Basically show them how its really done!

With luck you'll end up quietly humbling them into realising that maybe they are not such a hotshot and they have a long way to go. If not leave them to Google and go find another student :)

link|flag
vote up 1 vote down

Let them find out the hard way when they choose to not follow direction and attempt to do it their own way.

The greatest thing is to just keep at it. Eventually they will learn that what you are showing them is the best way and eventually they will start listening.

Good question by the way!

link|flag
1 2 next

Your Answer

Get an OpenID
or

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