Forgot your password?
typodupeerror

Comment Make sure there is learning within learning (Score 2) 140

I've done this several times and a key point in nurturing interest over disdain in students is to place some additional, personalized learning in the project. If the student has a mathematical bent, I usually assign a Monte Carlo simullation of pi. It is amazing to see random "dart throws" and an easy calculation converging to pi, and it lends itself to a quick drawing, followed by a quick outline, followed by pseudo code, followed by short coding -- and it usually requires simple debugging to work out whether you need to use "" or "=". If the student is a tactile learner, find a device project like a Mindstorm kit, so they end up with a physical object to touch and control. And who doesn't need a little self-driving dump truck to distribute handouts up and down the rows? If they are artistic, perhaps explore pixel edge detection to create a line drawing from a photo. They will come away with keen insight into how images are stored and displayed. The key is that they use coding to DO SOMETHING THAT THEY PERSONALLY FIND VALUABLE. If you don't do this, then it will be just like forcing them to memorize the multiplication tables or diagramming sentences. Most students aren't inspired to go back to those particular assignments on their own. Our goal is to build internal interest so they will become life-long learners. One more thing I have done in small classes is to do a team project. (I did one with TI calculators.) you can negotiate who gets what subroutine and do all the preliminary teaching and organizing on the whiteboard and then turn the subroutines over to the students. When they transfer all the subroutines between themselves and see it all run, they feel like they have really done something, since the teacher didn't GIVE it to them. They also have to learn to aggressively test individually and then to debug as a team.

Comment Re:Marine Band Radar, in my case (Score 1) 499

> ...I decided to try HomePlug-spec'd devices...

Thereby wiping out shortwave reception for miles around.

I was not aware before your post that HomePlug interfered in HF shortwave. Sorry about that. But from what I can read, "...miles around..." is a bit of hyperbole for my little condo all by itself. The issue seems to become important in places where there is a high degree of adoption or else when used in ACCESS mode -- that is, to deliver broadband over the main lines.

If I ever get the chance, I will of course look into the actual interference to HF in my neighborhood. But until then, if you notice me interfering with your HF CQ, I will be glad to switch to MoCA. But I doubt my neighbors will do the same, so the shortwave community is going to need a regulatory approach to solve this problem.

Comment Marine Band Radar, in my case (Score 1) 499

We live on the Ohio River and our 2.4GHz WiFi (all bands) was wiped out periodically just about every day for 10-15 minutes at a time. Neighbors all reported this, as well. I bought a WiSpy and patiently waited for a blackout to occur, then correlated them all to barge traffic on the river. Only then did I notice the big rotating antennae on the tugs. It is only a small leap of faith to determine that our problem is bleed-over from similar-spectrum Marine-band radar into the unlicensed 2.4GHz spectrum. Could have changed to 5GHz (where my phones operate unhindered) or coax-based MoCA, but I decided to try HomePlug-spec'd devices, which use AC house wiring to get encrypted 100Mbps throughput. My Linksys Powerline boxes can be plugged in wherever they are needed, have worked flawlessly, and I have a spare for when people come over to work with me. Still use WiFi around the place for maximum portability, but not for production-mode stuff.

Comment Several! (Score 1) 962

I have retired from teaching Math and Science in a small private school which discriminated against low IQ students (and teachers!). If your school is like mine, the diversity of the students will be the biggest challenge for you. Some will be really good verbally and some will be really good visually, etc.

In the larger world, adults are encouraged to "fit in" and they generally do this by figuring out how to use their strengths to smooth over their weaknesses so they present a fairly balanced image to the outside world. Children have not yet figured this out so they try to avoid things they are not good at.

This effect is really amplified in "gifted" children, so by middle school they often end up with enormous gaps in their knowledge base.

The only solution is to specialize your teaching for the individual students and engage them as much as possible. (Of course, this just defines good teaching in general.)

Warnings aside, there is a particular kind of professional satisfaction that comes from seeing a young child light up with an understanding that you yourself did not get until you were much older. I got that a lot.

My direct answer to your question is that you should use a variety of programming "languages" and that you should focus on the process. My logic here is that the students are liable to have a lot of different learning styles and some will respond to specific languages and thought processes better than others. You need to give them several opportunities to "get it." QuickBasic will appeal to very verbal students, Perl will appeal to more mathematical students, LOGO will appeal to very visual students, etc. I suggest you try teaching at least 2 languages, possibly in parallel.

I know this is probably sacrilege in this forum of zealots, but I believe that the dialect one programs in is irrelevant. The question du jour is: Should functional programming replace OO? But next week, someone may wake up and realize that Fortran compilers have been optimized for parallelization on big iron for decades. If that "news" gets traction on slashdot, we may all flock there. I say: "who cares?" Programming is mostly a thought process verified by thorough testing. The very hardest part of programming in any language is deciding what the program should do and creating a language-independent flow chart.

I would certainly NOT suggest that you use C or java as a first language. Your students are going to need more positive feedback than a hard-to-read language and a persnickety compiler will allow.

My own opinion is that "sloppy" programming is OK in the early years. For most, their programs will be like a poor piece of student art that they learned a lot from. When they get a programming job or take a college class, then they can learn to format properly or die.

Some ideas for you

With a group of really young students (9-12 years old), I created a large human calculator in the hall. Each person only has to consider the past and present state of their neighbor(s). They do not individually see the big picture until the calculations are done.

When I taught a combined Physics/Calculus class (mixed ages), I required a High-School-Standard TI calculator, assigned subroutines to various students and then assembled the routines into a single program for testing. I could tailor the complexity to the ability of the particular student and they were all doing something different which was pivotal to the success of the overall classroom effort. If someone got stuck, we could discuss the individual problem as a class. That was very effective.

Addressing your PS question, whenever I pick up a new language, the first program I write is a Monte-Carlo simulation of Pi: Create a Vector with 2 Random numbers 0-1. (a box) Increment an overall counter. Is the length of this vector less than 1? (an inscribed circle) If so, Increment a test counter. Compute Pi from the ratio of the 2 counters. Loop until desired resolution is reached (or timeout if the randomization routine is not very good). (Optional) Write and test additional randomization routines. (Optional) Display the results so far.

Another one that I really like is the Prime number sieve.

One that I never actually implemented, but thought about a lot was stitching images together. This would require reorienting and testing for a best match, then stretching and blending pixels. A lot of visual stuff.

Finally, I would offer up a random walk visualization for your consideration. (Simulates confined gas molecules.)

Something I suggest you include in your curriculum is recursion, which is not really very natural.

Hope this helped.

Slashdot Top Deals

Term, holidays, term, holidays, till we leave school, and then work, work, work till we die. -- C.S. Lewis

Working...