active questions tagged teaching - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:39:18Z http://stackoverflow.com/feeds/tag/teaching http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/868301/how-can-i-teach-a-know-it-all-beginner-programmer 68 How can I teach a know-it-all beginner programmer? Liran Orevi 2009-05-15T12:08:28Z 2009-11-29T17:04:03Z <p>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".</p> <p>What's the best way to tackle this?</p> <p>Just to be clear what I'm talking about:</p> <ul> <li>Constantly changing between tools/IDEs/libraries when it's tough.</li> <li>Blind certainty that really bad designs are really very good.</li> <li>Copying and pasting from the Internet, without understanding the code, and "marking" it as a project.</li> </ul> http://stackoverflow.com/questions/1814647/new-to-qt-where-to-start 0 New to Qt, where to start? [closed] Nathan Adams 2009-11-29T04:23:28Z 2009-11-29T04:41:13Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1161672/qt-programming-tutorials-c">Qt programming tutorials (C++)?</a> </p> </blockquote> <p>I am going to be start programming using Qt, any recommended books and/or tutorials?</p> <p>I would say I am fluent in C++ and programming concepts, so I don't need a "Learn C++ in a weekend" book, just something that teaches me the Qt API.</p> http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir 146 What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners! Tom Ritter 2009-05-01T11:45:47Z 2009-11-27T18:52:03Z <p>I'm looking for the coolest thing you can do in a few lines of simple code. I'm sure you can write a <a href="http://mcfunley.com/cs/blogs/dan/archive/2007/12/25/1532.aspx" rel="nofollow">Mandelbrot set in Haskell in 15 lines</a> but it's difficult to follow. </p> <p><strong>My goal is to inspire students that programming is cool</strong>. </p> <p>We <em>know</em> that programming is cool because you can create anything you imagine - it's the ultimate creative outlet. I want to inspire these beginners and get them over as many early-learning humps as I can.</p> <p>Now, my reasons are selfish. I'm teaching an <em>Intro to Computing</em> course to a group of 60 half-engineering, half business majors; all freshmen. They are the students who came from underprivileged High schools. From my past experience, the group is generally split as follows: a few <a href="http://www.google.com/#hl=en&amp;safe=off&amp;q=Rockstar%2BProgrammers&amp;fp=WnpED7D%5FIvM" rel="nofollow">rock-stars</a>, some who try very hard and <em>kind of</em> get it, the few who try very hard and <em>barely</em> get it, and the few who don't care. I want to reach as many of these groups as effectively as I can. Here's an example of how I'd use a computer program to teach:</p> <blockquote> <p>Here's an example of what I'm looking for: a 1-line VBS script to get your computer to talk to you:</p> <pre><code>CreateObject("sapi.spvoice").Speak InputBox("Enter your text","Talk it") </code></pre> <p>I could use this to demonstrate order of operations. I'd show the code, let them play with it, then explain that There's a lot going on in that line, but the computer can make sense of it, because it knows the rules. Then I'd show them something like this:</p> <pre><code>4(5*5) / 10 + 9(.25 + .75) </code></pre> <p>And you can see that first I need to do is (5*5). Then I can multiply for 4. And now I've created the Object. Dividing by 10 is the same as calling Speak - I can't Speak before I have an object, and I can't divide before I have 100. Then on the other side I first create an InputBox with some instructions for how to display it. When I hit enter on the input box it evaluates or "returns" whatever I entered. (Hint: 'oooooo' makes a funny sound) So when I say Speak, the right side is what to Speak. And I get that from the InputBox.</p> <p>So when you do several things on a line, like:</p> <pre><code>x = 14 + y; </code></pre> <p>You need to be aware of the order of things. First we add 14 and y. Then we put the result (what it evaluates to, or returns) into x.</p> </blockquote> <p>That's my goal, to have a bunch of these cool examples to demonstrate and teach the class while they have fun. I tried this example on my roommate and while I may not use this as the first lesson, she liked it and learned something.</p> <p>Some cool <a href="http://reference.wolfram.com/legacy/v5/Tour/WritingProgramsInMathematica.html" rel="nofollow">mathematica programs that make beautiful graphs or shapes</a> that are easy to understand would be good ideas and I'm going to look into those. Here are some <a href="http://www.25lines.com/" rel="nofollow">complicated actionscript examples</a> but that's a bit too advanced and I can't teach flash. What other ideas do you have?</p> http://stackoverflow.com/questions/1783254/r-text-editors-for-introductory-statistics-courses 2 R text editors for introductory statistics courses [closed] Colin Gillespie 2009-11-23T13:54:56Z 2009-11-24T10:12:50Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/1439059/best-ide-texteditor-for-r">Best IDE / TextEditor for R</a><br> <a href="http://stackoverflow.com/questions/1173463/recommendations-for-windows-text-editor-for-r">Recommendations for Windows text editor for R</a> </p> </blockquote> <p>Dear All,</p> <p>I teach a large introductory R course (about 100 students), and would like to recommend suitable text editors for R. The students who attend this course are first year mathematics undergraduates doing their very first course in R. They have never programmed in any language before. </p> <p>For the vast majority of them, it wouldn't beneficial for them to learn to use a 'complex editor' - by this I mean <em>emacs</em> and <em>vi</em>. </p> <p>What I would like to do is recommend simple text editors that are </p> <ul> <li>free</li> <li>can be easily installed on their laptops by users with little computer knowledge</li> <li>have R syntax highlighting.</li> <li>available for Windows or Mac.</li> </ul> <p>For windows I've found:</p> <ul> <li><a href="http://www.sciviews.org/Tinn-R/" rel="nofollow">TINN-R</a></li> <li><a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad ++</a> with the <a href="http://sourceforge.net/projects/npptor/files/" rel="nofollow">R plugin</a></li> </ul> <p>Are there any others that I've missed for Windows?</p> <p>There are a few threads that deal with R text editors:</p> <ul> <li><a href="http://stackoverflow.com/questions/1439059/best-ide-texteditor-for-r">Best IDE / TextEditor for R</a></li> <li><a href="http://stackoverflow.com/questions/1173463/recommendations-for-windows-text-editor-for-r">Recommendations for Windows text editor for R</a> </li> <li><a href="http://stackoverflow.com/questions/1097367/which-ide-for-r-in-linux">Which IDE for R in Linux?</a></li> </ul> <p>but these are a bit too complicated for my purpose.</p> <h1>Edits</h1> <p>Following comments from Shane and others I've reworded the question.</p> http://stackoverflow.com/questions/1778815/how-should-tertiary-institutions-teach-programming 1 How should tertiary institutions teach programming ? [closed] whatnick 2009-11-22T14:16:50Z 2009-11-22T18:20:29Z <p>Tertiary institutions (universities/ technical colleges) offer a lot of CS and programming degrees. I interview some of the graduates but I can't get them to become productive within 6 months without serious mentoring. There must be a major flaw in the education system on how programming is taught and assessed. They have little or no skills in version control, unit testing or even understanding of the difference between a jsp and a servlet or interpreted vs compiled.</p> <p>The best of the programmers are self-learners like anyone who is good in their chosen field. How should institutions formulate and better their courses in order produce productive programmers ? Languages, technologies etc are constantly evolving and courses fall out of date very very fast - what is the best way to ensure upto date courses ? Most of the programming excercises are small once-off toy projects, which are solved with badly designed code and these bad habits carry over to the work place, what's the best way to mentor away these bad habits and prevent them from developing in the first place ?</p> <p>I am not looking for a complete course outline but best-practices which we should look for in a course a fresh graduate went through. New graduates are cheap to recruit but not very productive, getting decent new recruits will be a plus.</p> http://stackoverflow.com/questions/847935/how-do-you-teach-junior-programmers-mvc 4 How do you teach junior programmers MVC? drikoda 2009-05-11T12:45:07Z 2009-11-20T10:47:36Z <p>How do you teach junior programmers to use MVC? This is assuming they never had any experience.</p> http://stackoverflow.com/questions/255442/which-parser-generator-to-teach-my-students 11 Which parser generator to teach my students? Uri 2008-11-01T02:55:32Z 2009-11-18T19:17:42Z <p>I am teaching (with others) a relatively introductory course in computer science for IT professionals without a background in CS. Since I developed the course materials on automata and grammars, I am also responsible for teaching about compilers and compiler construction.</p> <p>Years ago, when I studied compilation in college, all our examples came from Lex and Yacc. Are these still in widespread use? Is there something that is more commonly used for Java? The students are proficient in C and Java but have never used parser generators.</p> <p>Any tips on what to teach would be appreciated</p> http://stackoverflow.com/questions/326429/what-version-control-system-is-most-trivial-to-set-up-and-use-for-toy-projects 23 What version-control system is most trivial to set up and use for toy projects? Norman Ramsey 2008-11-28T18:52:25Z 2009-11-18T05:43:50Z <p>I teach the third required intro course in a CS department. One of my homework assignments asks students to speed up code they have written for a previous assignment. Factor-of-ten speedups are routine; factors of 100 or 1000 are not unheard of. (For a factor of 1000 speedup you have to have made rookie mistakes with malloc().)</p> <p>Programs are improved by a sequence is small changes. I ask students to record and describe each change and the resulting improvement.</p> <p>While you're improving a program it is also possible to break it. Wouldn't it be nice to back out?</p> <p>You can see where I'm going with this: my students would benefit enormously from version control. But there are some caveats:</p> <ul> <li>Our computing environment is locked down. Anything that depends on a central repository is suspect.</li> <li>Our students are incredibly overloaded. Not just classes but jobs, sports, music, you name it. For them to use a new tool it has to be incredibly easy and have obvious benefits.</li> <li>Our students do most work in pairs. Getting bits back and forth between accounts is problematic. Could this problem also be solved by distributed version control?</li> <li>Complexity is the enemy. I know setting up a CVS repository is too baffling---I myself still have trouble because I only do it once a year. I'm told SVN is even harder.</li> </ul> <p>Here are my comments on existing systems:</p> <ul> <li>I think central version control (CVS or SVN) is ruled out because our students don't have the administrative privileges needed to make a repository that they can share with one other student. (We are stuck with Unix file permissions.) Also, setup on CVS or SVN is too hard.</li> <li>darcs is way easy to set up, but it's not obvious how you share things. darcs send (to send patches by email) seems promising but it's not clear how to set it up.</li> <li>The introductory documentation for git is not for beginners. Like CVS setup, it's something I myself have trouble with.</li> </ul> <p>I'm soliciting suggestions for what source-control to use with beginning students. I suspect we can find resources to put a thin veneer over an existing system and to simplify existing documentation. We probably don't have resources to write new documentation. </p> <p>So, what's really easy to <strong>setup</strong>, <strong>commit</strong>, <strong>revert</strong>, and <strong>share changes with a partner</strong> but does not have to be easy to merge or to work at scale? </p> <p>A key constraint is that <strong>programming pairs have to be able to share work with each other and only each other</strong>, and <strong>pairs change every week</strong>. Our infrastructure is Linux, Solaris, and Windows with a netapp filer. I doubt my IT staff wants to create a Unix group for each pair of students. Is there an easier solution I've overlooked?</p> <p>(Thanks for the accepted answer, which beats the others on account of its excellent reference to <a href="http://www-cs-students.stanford.edu/~blynn/gitmagic/" rel="nofollow">Git Magic</a> as well as the helpful comments.)</p> http://stackoverflow.com/questions/1749263/which-handset-for-university-android-programming-classes 0 Which handset for university Android programming classes? tomash 2009-11-17T14:27:55Z 2009-11-17T18:29:39Z <p>Next year there will be Android programming classes on Wroclaw University (Poland) but handsets for excersises needs to be choosen now. I was thinking about HTC Hero because:</p> <ul> <li>as HTC device it is a reference model for Android ecosystem;</li> <li>it will run system version 2.0;</li> <li>it has fair features/price ratio.</li> </ul> <p>Are there any arguments against Hero? Or maybe there is another handset more suitable for programming classes? </p> http://stackoverflow.com/questions/5651/why-are-professors-or-schools-picking-java-over-c-to-teach-to-students 30 Why are professors or schools picking Java over C++ to teach to students? Bryan Denny 2008-08-08T04:26:14Z 2009-11-17T12:29:22Z <p>Is it just me or are most colleges teaching Java instead of C++ these days? I feel like I've been missing out with having zero classes teach or use C++ at all.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with 44 What is the easiest language to start with? Teifion 2008-08-07T14:31:55Z 2009-11-16T03:03:51Z <p>What is the language with the lowest barriers to entry, simplest syntax, easiest setup. I'm aware that there's not a best language but I am sure that there will be one that's got a good score in all three areas.</p> <p>It's for teaching friends how to program, I like PHP and Python but I don't want to be narrow minded and limit myself when there is a better option out there.</p> <p><strong>Common suggestions</strong></p> <ol> <li>Ruby</li> <li>Python</li> <li>Basic</li> <li>C</li> <li>Java</li> <li>C#</li> </ol> <p><br> <strong>Useful links</strong></p> <ol> <li><a href="http://beta.stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program" rel="nofollow">Best Ways To Teach A Beginner to Program</a></li> <li><a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's (Poignant) Guide to Ruby</a></li> <li><a href="http://www.greenteapress.com/thinkpython/" rel="nofollow">Think Python</a></li> </ol> http://stackoverflow.com/questions/1418001/recommended-programming-computer-book-publishers 0 Recommended programming/computer book publishers CrazyJugglerDrummer 2009-09-13T15:30:55Z 2009-11-15T06:44:31Z <p>Any of us who have looked at dozens of programming books start to notice the differences. One of the first things I do when choosing a book is look at the publisher. So what are our favorite computer book publishers and why? Share your experiences of the books you've read.</p> <p>Please post only one publisher per answer so they can be voted on separately. :D</p> <p>also see <a href="http://stackoverflow.com/questions/6520/is-the-quality-of-programming-books-between-publishers-noticeably-different">Is the quality of programming books between publishers noticeably different?</a></p> <p>There a many good publishers so going wrong can be hard. But one fact I've rarely seen disputed is that Sam's "teach yourself X in 24 hours" books are terrible.</p> http://stackoverflow.com/questions/1732556/how-would-you-plan-a-learn-programming-curriculum-for-beginners 4 How would you plan a "learn programming" curriculum for beginners? CrazyJugglerDrummer 2009-11-13T23:32:04Z 2009-11-15T02:16:10Z <p>So you've got someone who hasn't done any programming at all in their life. They want to try out programming. How would you suggest they learn? (the method used might vary with beginner's age) </p> <p><strong>Please state the logic behind your choices</strong></p> http://stackoverflow.com/questions/1208205/project-ideas-for-discrete-mathematics-course-using-matlab 7 Project ideas for discrete mathematics course using MATLAB? Daniel Moura 2009-07-30T17:49:34Z 2009-11-13T10:34:36Z <p>A professor asked me to help making a specification for a college project. By the time the students should know the basics of programming.</p> <p>The professor is a mathematician and has little experience in other programming languages, so it should really be in MATLAB.</p> <p>I would like some projects ideas. The project should</p> <ol> <li>last about 1 to 2 months</li> <li>be done individually</li> <li>have web interface would be great</li> <li>doesn't necessary have to go deep in maths, but some would be great</li> <li>use a database (or store data in files)</li> </ol> <p>What kind of project would make the students excited? </p> <p>If you have any other tips I'll appreciate.</p> <p><strong>UPDATE:</strong> The students are sophomores and have already studied vector calculus. This project is for an one year Discrete Mathematics course.</p> <p><strong>UPDATE 2:</strong> The topics covered in the course are</p> <ol> <li>Formal Logic</li> <li>Proofs, Recursion, and Analysis of Algorithms</li> <li>Sets and Combinatorics</li> <li>Relations, Functions, and Matrices</li> <li>Graphs and Trees</li> <li>Graph Algorithms</li> <li>Boolean Algebra and Computer Logic</li> <li>Modeling Arithmetic, Computation, and Languages</li> </ol> <p>And it'll be based on this book <a href="http://rads.stackoverflow.com/amzn/click/071676864X" rel="nofollow">Mathematical Structures for Computer Science: A Modern Approach to Discrete Mathematics by Judith L. Gersting</a></p> http://stackoverflow.com/questions/347994/how-to-keep-a-programming-course-interesting 9 How to keep a programming course interesting? Black 2008-12-07T19:59:43Z 2009-11-12T16:22:22Z <p>I guess, the following is a standard problem on every school or university:</p> <p>It is Your job to teach programming. Unfortunately, some of the students are semi-professionals and have years of experience while others do not even know the basic concepts, e.g. the concept "typed variable".</p> <p>As far as I know, this leads to one of the following situations:</p> <ol> <li>Programming is tought from its very basics. The experienced students get bored and discontinue to visit the lectures. As a consequence, they will miss even the stuff they do not already know.</li> <li>Teachers and professors claim that they require basic knowledge (whatever that means). Inexperienced students cannot follow the lectures and a lot of them will focus on unimportant stuff (e.g. understanding every detail of a complex example while not getting the concept behind the example). Some of them will give up.</li> <li>Universities invent an artificial programming language to give experienced programmers and newbies "equal chances". Most students will get frustrated about the "useless language".</li> </ol> <p>Is there a fourth solution, which is better than those above?</p> http://stackoverflow.com/questions/1617947/what-modern-version-of-logo-should-i-use-to-teach-a-child-programming 5 What modern version of LOGO should I use to teach a child programming Michael Dillon 2009-10-24T12:58:24Z 2009-11-10T18:44:34Z <p>I remember way back when that the programming language LOGO was widely used for teaching about computers in primary schools, back before PC's arrived on the scene and turned the computer lessons into "how to write a word document".</p> <p>I would like to know what kinds of LOGO implementations are out there, for either of the main 3 operating systems (Windows, MAC OSX, UNIXlike) that support both the GUI interface but also allow for some real programming, not just turtle moves.</p> <p>As I remember it, LOGO originated as LISP without the parentheses, so I'm looking for a LOGO implementation that can be used for simulations, AI stuff, and has some modern features like the ability to use the network for communication.</p> <p>Commercial or non-commercial implementations, but remember, the focus is on teaching a young child how to write computer programs.</p> http://stackoverflow.com/questions/1709820/games-helps-to-encourage-students-to-learn 0 Games helps to encourage students to learn? [closed] Agusti-N 2009-11-10T17:43:06Z 2009-11-10T17:48:30Z <p>Hi, this week i try to explain to some students the importance to learn some algorithms and other stuff that help me in my career, but i don't know how to demostrate the real importance of this things. Then i think in games, IMO every teen love to play games, and then i think... how about teach this algorithms in games like wargames or something like this. The question it's very simple, do you think that games helps to encourage students to learn?</p> http://stackoverflow.com/questions/128047/motivations-for-choosing-a-career-in-programming 9 Motivations for choosing a career in programming Juan Manuel 2008-09-24T16:01:44Z 2009-11-09T17:22:20Z <p>I've been teaching for a couple of years now a course for high school students (not always computing-oriented schools) using some gaming framework.</p> <p>This has been very useful for trying to get them to pursue a career in the field (which is one of the goals), showing them that programming is not only making bussiness, boring applications.</p> <p>What other aspects of programming can I show them? Besides gaming and bussiness programming?</p> <p>Or to put it other way: What other applications of programming are there in the world besides those two fields?</p> http://stackoverflow.com/questions/1697095/where-do-you-submit-your-programming-articles-tutorials 5 where do you submit your programming articles/tutorials? CrazyJugglerDrummer 2009-11-08T16:44:02Z 2009-11-08T18:49:21Z <p>So you've finished your tutorial/article, now where do you submit it? You can usually find one site, but it can be helpful to submit them multiple places to further spread your knowledge. Lets keep a list of some other spots you can submit your articles to. Preferably general sites, not specific languages or platforms. Leave answers with new submissions to the list and/or comments on any of the sites. :D</p> <p><a href="http://www.codeproject.com/" rel="nofollow">codeproject.com</a> one of the biggest</p> <p><a href="http://www.devarticles.com/" rel="nofollow">devarticles.com</a> goes along with devshed.com</p> <p><a href="http://www.codeguru.com/" rel="nofollow">codeguru.com</a></p> <p><strong>please post one site per answer so they can be voted on separately</strong></p> <p>also see <a href="http://stackoverflow.com/questions/387797/good-programming-website-like-so/907126#907126">my running list of programming websites</a></p> http://stackoverflow.com/questions/1318770/impressive-examples-in-java 8 Impressive examples in Java? Roman 2009-08-23T15:03:26Z 2009-11-05T23:51:53Z <p>I'm going to teach a Java course, and I want to show some interesting and impressive examples of simple Java programs at the first lecture to awaken student interest. </p> <p>Except for the default examples which come with the JDK, what can you advise?</p> <p>What possibilities of Java were you impressed by?</p> <p>One more thing - students admittedly know C++ or C or (maybe even) <a href="http://en.wikipedia.org/wiki/Pascal%5F%28programming%5Flanguage%29" rel="nofollow">Pascal</a>.</p> http://stackoverflow.com/questions/1137255/should-i-include-f-as-a-part-of-our-programming-curriculum 0 Should I include F# as a part of our programming curriculum? LantisGaius 2009-07-16T12:33:44Z 2009-10-31T08:24:43Z <p>I'm a professor, and I was thinking about introducing a new language to the curriculum, and I was intrigued when my Visual Studio 10 (beta) came with F#...</p> <p>After reading <a href="http://stackoverflow.com/questions/928042">How will F# (sharp) be used?</a> and <a href="http://stackoverflow.com/questions/952318/whats-the-benefits-of-using-c-vs-f-or-f-vs-c">What&rsquo;s the benefits of using C# vs F# or F# vs c#?</a> I feel that I possess the beginnings of an understanding as to what the purpose of F# is, and why it might be used over, say, C# or VB. But I'm still not convinced that it would be a good idea to try teaching it...</p> <p>Can someone provide me with a good rundown of potential pros and cons for using F# as a teaching language?</p> http://stackoverflow.com/questions/1620135/how-to-use-money-to-become-a-better-programmer 1 How to use money to become a better programmer? ulver 2009-10-25T05:58:36Z 2009-10-29T07:41:17Z <p>I want to be improving as a programmer. I take time outside of work or university to achieve that goal. Time alloted for that goal is limited though because I want to do other important things too. Naturally, I want to know how to make this time more effective.</p> <p>How can I use money at the problem of becoming a better programmer? Buying and reading books so far is not effective because there's too much of a gap between reading books and actually writing code. There's improvement, but not much. Watching screencasts and talks takes too long. Period. Working on pet projects seems most effective, except big portion of time is spent writing code I already know how to write, and when I encounter something I don't know how to do, it takes long to achieve the right solution. (kinda) Plus there's no way to know if what I wrote is actually a good way to do it.</p> <p>What other ways are there? Is it common to seek a programming teacher? Just like paying piano teachers and martial arts trainers. </p> <p>What's the best way to use money to help solve this problem?</p> http://stackoverflow.com/questions/521015/is-alice-a-good-way-to-teach-programming 7 Is Alice a good way to teach programming? Ɓukasz Lew 2009-02-06T16:34:22Z 2009-10-26T23:54:18Z <p>"<a href="http://www.alice.org/" rel="nofollow">Alice</a> is an innovative 3D programming environment that makes it easy to create an animation for telling a story, playing an interactive game, or a video to share on the web ..."</p> <p>Is it addictive enough to have a good chance that a pupil will remain interested. Is it motivating enough to start learning "normal" programming. </p> <p>... or is it better to start with Logo?</p> http://stackoverflow.com/questions/1617353/how-can-we-convince-the-administration-of-our-university-that-computer-science-is 2 How can we convince the administration of our university that computer science is important enough to retain it as a discipline? RD1 2009-10-24T08:23:37Z 2009-10-24T10:16:54Z <p>The university where I teach is currently restructuring in a major way. Alas, we have been told that we have one week to respond to a current plan which includes discontinuing computer science as a teaching discipline, and breaking the current computer science department between mathematics and electrical engineering. </p> <p>Merging the whole school into either Maths or EE is apparently considered inappropriate because the resulting school would be too large. Staying as a separate discipline is also considered inappropriate because we are too small. But, everyone in CS feels that breaking us up will destroy CS as a discipline at our university.</p> <p>This is at a quite highly regarded institution that places high value on science, the arts, law, medicine and engineering. It is in a major city that is somewhat isolated so generally it provides the only serious choice for those that want a more academic focus to their studies. But computer science is somehow is considered vocational and not academic enough - something better taught at a technical school.</p> <p>What is the best way to convince our administrators that computer science is an important discipline, within the next week?</p> http://stackoverflow.com/questions/1417998/best-resources-on-how-to-teach-computing 1 Best resources on how to teach computing ? e-satis 2009-09-13T15:29:54Z 2009-10-22T01:03:30Z <p>I always saw myself as a great pedagogue. Before being a freelance trainer, I used to teach my colleagues, and before that, I used to set up courses for my classmate to help them before the exams.</p> <p>But I know that you can not improve with the attitude of thinking you are great. I already ask my students to give me feedback (after the course / exam / bill, and before going to the pub with them...). </p> <p>I'd like to find books, blogs or articles about teaching computing. There is plenty of resources one "how to teach", but nothing specific about programming.</p> <p>For now, I try to analyze the best learning resources I found, and mimic them, like "How to think like a computer scientists", "Java Programming For Kids" or some great pieces of speech on Google Video.</p> <p>Funnily, the best resource I got is SO :</p> <ul> <li><a href="http://stackoverflow.com/questions/48496/how-to-teach-a-crash-course-on-c">http://stackoverflow.com/questions/48496/how-to-teach-a-crash-course-on-c</a></li> <li><a href="http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program">http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program</a></li> <li><a href="http://stackoverflow.com/questions/24384/teaching-someone-to-program">http://stackoverflow.com/questions/24384/teaching-someone-to-program</a></li> <li><a href="http://stackoverflow.com/questions/79231/why-dont-they-teach-these-things-in-school">http://stackoverflow.com/questions/79231/why-dont-they-teach-these-things-in-school</a></li> <li><a href="http://stackoverflow.com/questions/209477/how-is-programming-taught-in-different-institutions">http://stackoverflow.com/questions/209477/how-is-programming-taught-in-different-institutions</a></li> <li><a href="http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python">http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python</a></li> <li><a href="http://stackoverflow.com/questions/255976/whats-a-good-way-to-teach-my-son-to-program-java">http://stackoverflow.com/questions/255976/whats-a-good-way-to-teach-my-son-to-program-java</a></li> <li><a href="http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program">http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program</a></li> </ul> <p>I am going to teach in the third World soon, and I want to be as sharp as a machete :-)</p> <p>Etc.</p> http://stackoverflow.com/questions/1255223/what-are-the-important-notions-in-c-that-you-did-not-learn-from-your-teachers 21 What are the important notions in C that you did not learn from your teachers ThibThib 2009-08-10T14:28:35Z 2009-10-21T18:46:32Z <p>Hi</p> <p>In September, I will give my first lectures on C to students in engineering school (usually I teach math and signal processing, but I have also done a lot of practical work in C, without giving the lectures). Computer science is not their main topic (they are more studying electronics and signal processing), but they need to have a good background in programming (some of them will maybe become software developers)</p> <p>This year will be their 2nd year of learning C (they are supposed to know what a pointer is and how to use it, but of course, this notion is not yet assimilated)</p> <p>In addition to the classical stuff (data structures, classical algorithms, ...), I will probably focus some of my lectures on: - design the algorithm (and write it in pseudo-code) <em>before</em> coding it in C (think before coding) - make your code readable (comments, variable names, ...) and - pointers, pointers, pointers ! (what is it, how and when to use it, memory allocation, etc...)</p> <p><strong>According to your experience, what are the most important notions in C that your teachers never taught you ? On which particular point should I focus ?</strong></p> <p>For example, should I introduce them to some tools (<code>lint</code>, ...) ?</p> http://stackoverflow.com/questions/197481/is-it-possible-to-teach-several-languages-paradigms-at-once 5 Is it possible to teach several languages/paradigms at once? EnderMB 2008-10-13T12:49:52Z 2009-10-18T16:58:18Z <p>If you had the opportunity to teach new students how to program for a year, what would you teach? I've always found that a multi-paradigm approach to teaching programming works best, but is it too much for first-year students? Is it better for a student to be great at one or good at 3-5?</p> <p>At the moment I am looking to help tutor students on the following:</p> <ul> <li>x86 Assembly Language</li> <li>C</li> <li>Haskell</li> <li>Java</li> <li>Perl</li> <li>C++</li> <li>Prolog</li> </ul> <p>At the moment these students are only exposed to some very basic Java, so my theory is that these students would be able to expand further from here far better than they would with a basic understanding of just one language.</p> <p>Please note that the question is not whether students can handle it, because a simple look at the programmes at the top universities show that <em>they</em> can, but whether it is advisable to those not at the top universities to focus on knowing as much as possible. It's not necessarily about knowing a language well, but giving students the ability to pick up and choose the right language for the job, and to become proficient in it as their studies continue.</p> http://stackoverflow.com/questions/670353/when-teaching-c-is-it-better-to-teach-arrays-before-or-after-pointers 12 When teaching C, is it better to teach arrays before or after pointers? Uri 2009-03-22T00:50:59Z 2009-10-15T20:50:29Z <p>For those of you with curriculum development experience: what is the best strategy regarding arrays?</p> <p>I have seen some schools that teach arrays after variables and control structures, often before even teaching functions. This allows teaching of some rudimentary algorithms, etc. However, it then brings the problem of how to pass arrays to functions, so it is necessary to go back to arrays pointers are taught and patch things up.</p> <p>Another option is to go from variables and control structures to functions, and then teach pointers, and once you have pointers, teach arrays from scratch, and then use that to get to dynamic memory allocation.</p> <p>To me the second option makes more sense, because unlike simple variables, with arrays it is easy to "go out of bounds", but students who did not yet learn about memory and pointers may not understand what lies outside these bounds.</p> <p>However, I'm interested to know what others think.</p> http://stackoverflow.com/questions/693139/what-are-convincing-examples-where-pointer-arithmetic-is-preferable-to-array-subs 3 What are convincing examples where pointer arithmetic is preferable to array subscripting? Uri 2009-03-28T17:19:37Z 2009-10-15T15:44:38Z <p>I'm preparing some slides for an introductory C class, and I'm trying to present good examples (and motivation) for using pointer arithmetic over array subscripting.</p> <p>A lot of the examples I see in books are fairly equivalent. For example, many books show how to reverse the case of all values in a string, but with the exception of replacing an a[i] with a *p the code is identical.</p> <p>I am looking for a good (and short) example with single-dimensional arrays where pointer arithmetic can produce significantly more elegant code. Any ideas?</p> http://stackoverflow.com/questions/1523241/teaching-a-layperson-to-write-a-website 1 Teaching a layperson to write a website Dave Jarvis 2009-10-06T01:50:49Z 2009-10-07T03:34:13Z <p><strong>Background.</strong> An intelligent marine ecologist student would like help with her University-hosted project website.</p> <p><strong>Proposed Solution.</strong> I installed an open source website authoring tool (<a href="http://www.w3.org/Amaya/" rel="nofollow">Amaya</a>) on her Windows-based laptop and began to teach her to craft websites.</p> <p><strong>Result.</strong> Amaya is too complicated, too buggy. CSS and HTML are too complicated and time consuming to learn.</p> <p><strong>Discussion.</strong> If it were my site, I would use server-side includes for common items (header, footer, and menu). I would use CSS exclusively for the look and feel, and XHTML for the content. This is out of the question for her. It is a simple site (8 pages) and I want her to be able to edit, and publish, the content on her own, as I do not have time to take on yet another project.</p> <p><strong>Revised Solution.</strong> Drop CSS, use a table-based layout, and create pages using copy of a template HTML file.</p> <p>Update #1: She does not want advertising, and has a host in place through the University. She does not want a blog.</p> <p>Update #2: I have no control over the hosting servers.</p> <p>Update #3: I have since created the template. Thanks for all the ideas, folks, but nothing looks like a good fit.</p> <p>What other solutions would you propose?</p>