Questions about teaching programming and software development for educational purposes.

learn more… | top users | synonyms

2
votes
0answers
90 views

In training a neural network, must you include a bias?

I'm actually working on answering this question (from an examination): Show in tabular form the first five epochs of the training of a perceptron to perform the Boolean OR operation; using ...
0
votes
1answer
38 views

How should I have figured out that Groovy's each() does not change the list's elements?

Example This test fails because each does not modify the list's elements. void test_each_DoesNotModifyListElements() { List<String> list = ["a", "b", "c"] list.each { it = it + "z" } ...
5
votes
4answers
163 views

Get the second largest number in a list in linear time

I'm learning Python and the simple ways to handle lists is presented as an advantage. Sometimes it is, but look at this: >>> numbers = [20,67,3,2.6,7,74,2.8,90.8,52.8,4,3,2,5,7] >>> ...
7
votes
3answers
196 views

Teaching OOP (C++) outside-in vs inside-out approach [closed]

I am running a programming club at a high-school, and I have introduced my students to OOP using simplistic classes in C++. I believe at least theoretically they get the idea. I would like to be able ...
3
votes
1answer
52 views

GUI for running graph algorithms on Mac OS X

Is there a graphical user interface/program which can be used to show graph algorithms being executed for Mac OS X Mountain Lion? I've asked a lot o people and googled a lot, to no avail. I'm sorry if ...
0
votes
1answer
209 views

JavaScript game engine/library for the purpose of teaching JavaScript

I'm looking for a JavaScript game engine/library that will help make games. The whole purpose is for students to understand better the JavaScript concepts and code I've been teaching. So the game ...
0
votes
6answers
105 views

learning recursion in java. self taught and need help. thanks.

This is NOT a homework question. Teaching myself Java. I have reached the recursion stage. don't quite understand it all that well. This is an example for the textbook. I'm just wondering exactly how ...
7
votes
2answers
135 views

Non-Toy Software Transactional Memory for C or Java

I'm thinking about the possibility of teaching the use of Software Transactional Memory through 1 or 2 guided laboratories for a university course. I only know about Haskell's STM, but the students of ...
3
votes
4answers
306 views

Normalisation and multi-valued fields

I'm having a problem with my students using multi-valued fields in access and getting confused about normalisation as a result. Here is what I can make out. Given a 1-to-many relationship, e.g. ...
1
vote
1answer
115 views

Time needed to learn programming language [closed]

Are there available somewhere numbers of how much time is needed to learn programming languages? I do understand that this does, very much, depend on the person/learning-method. But I'm more ...
0
votes
0answers
88 views

Hex view of whole memory map of a computer (for teaching programming to children)? [closed]

Sorry if this is a strange question. I grew up using a memory hex-editor program that had unrestricted access to the whole 64kb RAM of the computer. It was fantastic to learn with, since you could see ...
2
votes
3answers
156 views

Displaying Pretty Python Code in Python (or Other) GUI

I'm starting a simple little GUI for grading my student's python source code. Is there an easy way to automatically format display of the python code within a GUI? For example, pulling the color ...
0
votes
1answer
92 views

Why is the self join syntax so strange?

I repeat a student question here. I've given some sort of explanation, but hoping you have better, clearer ones. A self-join is done with two aliases for the table: SELECT parent.Name, child.Name ...
-2
votes
1answer
77 views

How to find a PHP mentor/teacher? [closed]

I've been coding PHP for 2 years. I'm at the stage now where I would like to find an experienced mentor/coach that can help me improve my skills, do coding revisions etc. so that I can continue my ...
5
votes
2answers
540 views

What's the best language/IDE to use for teaching kids programming in an after-school group setting? [closed]

What's the best language/IDE to use for teaching kids programming in an after-school group setting? I'm looking for a programming language/development environment that has the following ...
1
vote
3answers
475 views

Examples of good in-game tutorials [closed]

I am thinking about how users can learn to perform complex tasks in programs and wonder if I can learn something from computer games. What games do you think have good in-game tutorials to teach the ...
4
votes
4answers
699 views

Looking for an easy game development platform, suggestions? [closed]

I'm a 12 grade student and I'm planning to organize a little workshop to teach some students at my school to develop simple games. I'll probably be dealing with 14-18 year olds with no programming ...
2
votes
6answers
469 views

Girlfriend wants to write a game, but has no experience programming. What's a fun way for her to learn? [closed]

My girlfriend has shown an interest in learning a bit of programming. I'm not entirely sure yet if she will actually go through with it, but I want to do all I can to make it so. She wants to create ...
0
votes
1answer
64 views

where to publish code tutorials

I am working on developing a series of short code tutorials for web-dev in a LAMP environment. Each one will: Pose a question or a goal and give an example solution via a series of short snippets ...
3
votes
2answers
291 views

Resources for programming/software engineering didactics [closed]

Six months ago I started teaching at a university of applied science. The students are aged 17-24. The education program is Software Engineering and most of the courses I teach are programming ...
3
votes
4answers
295 views

teaching OO with numerical algorithm

I'm helping a professor for some lectures in OO and numerical algorithm in particular problem like to find the root of a function, minimization, interpolation, ... the problem is that he wants to ...
5
votes
4answers
603 views

How did you experience the transition from SPSS to R?

The discussion in this question is the direct cause for me asking this question. The more general reason is the fact that I often have to explain R use to people that are only familiar with SPSS. I ...
0
votes
1answer
24 views

open forums for trainers (professional IT courses fro developers)

I googled. I asked in forums but I could not find any forum, newsgroup or discussion boards for "trainers" (teachers, coachers) and supporters (writers of courses, sysadmins of labs, et al) of ...
0
votes
11answers
435 views

How to teach a programmer how to code in C++? [closed]

So here i am trying to teach my friend the art of C++. He is no newbie to programming, but his area of expertise is somewhat further away from C++. He knows html, php and java fairly well, but it ...
1
vote
7answers
310 views

Do you have any experience teaching C to undergraduate students with the K&R book?

Has anyone had any experience in teaching programming in C to undergraduate students, who can be presumed never to have seen an editor before in their lives? I might soon face that predicament, and ...
6
votes
7answers
321 views

Python 2 or Python 3 as the student's first language [closed]

Which is more suited as the platform for a first course in computing: Python 2 or Python 3? Reason for asking your opinion: Python 2 is used in the vast majority of installations worlwide, but Python ...
32
votes
19answers
2k views

Top 3 Software Engineering Principles [closed]

I know what I was taught in my Software Engineering Courses at school, I know what i was taught in my first year of being a software engineer, and years later I now can understand what is important in ...
10
votes
7answers
570 views

Any good C++0x overviews? [closed]

I teach C and C++ and I was just wondering if there are good overview of the C++0x features. I am going to read the standard, but that will take time and I'm definitely going to make it for this ...
6
votes
2answers
2k views

I need some simple logic/programming exercises for a junior programmer

I'm currently teaching an employee ECMA script as it is needed in maintaining a workflow system we use and i need some challenges to use as exercises. We have covered most of the language and he is ...
49
votes
26answers
4k views

Explaining Interfaces to Students

For a few years I was a teaching assistant for an introduction to programming module - Java for first year undergraduates. Mostly it went well and we managed to get object-oriented programming across ...
1
vote
4answers
382 views

What are good criteria for grading programming assignments? [closed]

I'm going to be teaching a scripting and tool development class to a group of 3D animators. In amongst teaching them coding fundamentals, I plan to have them pick a repetitive task they must perform ...
2
votes
1answer
207 views

Visual presentation of threading versus message passing and actor models

I'm looking for a good slideshow/pdf/video explaining the differences in approach and thinking from hand-written threading of applications compared to the more abstracted and easier to use message ...
0
votes
2answers
65 views

Diverse resource of problems to show merits of different languages

I'd like to learn a few more languages to "expand my mind" a bit, and I find working through problems the best way to learn. I have been doing most of my programming in C, sometimes C++, and perl. ...
4
votes
8answers
1k views

A good Object-Oriented analogy [closed]

I'm looking for a good way to describe OO to beginners, though an analogy. Currently I'm likening a Class to a shopping list, and a shopping trolley full of items to an object. But I feel it's a bit ...
2
votes
5answers
716 views

Best style for Python programs: what do you suggest?

A friend of mine wanted help learning to program, so he gave me all the programs that he wrote for his previous classes. The last program that he wrote was an encryption program, and after rewriting ...
3
votes
7answers
418 views

Experiences teaching or learning map/reduce/etc before recursion?

As far as I can see, the usual (and best in my opinion) order for teaching iterting constructs in functional programming with Scheme is to first teach recursion and maybe later get into things like ...
4
votes
8answers
476 views

What is a good metaphor for c memory management?

I'm trying to find a good metaphor to explain memory allocation, initialization and freeing in c to a non technical audience. I've heard pass-by-reference/value talked about quite well with postal ...
12
votes
10answers
650 views

Teaching coworkers LINQ [closed]

I have set myself upon a journey to educate my coworkers (all have accepted my mission, even the boss). Every day I seem to find a piece of code that could have been less error prone if my coworkers ...
22
votes
7answers
657 views

Explaining NULL and Empty to your 6-year old? [closed]

I'm thinking in terms of Objects here. I think it's important to simplify ideas. If you can explain this to a 6-year old, you can teach new programmers the difference. I'm thinking that a cookie ...
15
votes
11answers
1k views

How can I help fellow students struggling in programming classes? [closed]

I'm a computer science student finishing up my second semester of programming classes. I've enjoyed them quite a bit, and learned a lot, but it seems other students are struggling with the concepts ...
8
votes
3answers
213 views

How to make a fun effective programming meetup that benefits both beginners and advanced coders [closed]

If you could organise your own programming meetup how would you organise the session so that people had fun learnt lots were able to participate despite their level. what kinds of topics, ...
5
votes
5answers
362 views

Approaches to a week long camp programming course (tips & projects)

I will be teaching a week long programming course to kids between the ages of 12-17. Most of the kids have no programming experience. The program is 5 days from 8:30 till 5:00. I think the class ...
3
votes
3answers
2k views

Illustration of buffer overflows for students (linux, C)

My friend is teacher of first-year CS students. We want to show them buffer overflow exploitation. But modern distribs are protected from simples buffer overflows: HOME=`perl -e "print 'A'x269"` ...
0
votes
2answers
148 views

Writing SDK documentation, need useful beginner tutorials

I'm currently writing SDK documentation for one of our products, but for obvious reasons I don't want to talk about the essentials of OOP. Does anyone know any good online teaching material that ...
4
votes
3answers
536 views

Which LOGO implementation? [closed]

I want to show my young cousin (12) programming. I think that LOGO is a good start. Which implementation should I use? (windows)
10
votes
4answers
532 views

Learning programming language concepts [closed]

As a student teacher I am very interested in how effective "mini languages" such as Scratch, Logo, Alice and Lego mindstorms are in teaching the pupil the core concepts of programming such as ...
8
votes
14answers
543 views

What features are important in a programming language for young beginners? [closed]

I was talking with some of the mentors in a local robotics competition for 7th and 8th level kids. The robot was using PBASIC and the parallax Basic Stamp. One of the major issues was this was short ...
1
vote
6answers
163 views

Step-by-step help and guidance

Is there such a thing as a paid (or free would be GREAT, but unlikely I'm thinking) resource that could help a newbie with guidance and help as I create my first app (C# with SQLite db)? ...
0
votes
2answers
1k views

Open-source implementation of Mersenne Twister in Python?

Is there any good open-source implementation of Mersenne Twister and other good random number generators in Python available? I would like to use in for teaching math and comp sci majors? I am also ...
4
votes
14answers
393 views

Decisions in teaching someone else to program: language selection

My friend would like for me to guide her into learning programming. She's already proven enormous aptitude for thinking like a programmer but is scared of the idea of programming since in her mind ...

1 2 3 4