Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:Soap Box time! (Score 1) 271

If I follow your logic, your hang-up is on the fact that "annual" implies 1 year, and raising something to the power of 1 is not raising it at all, and thus non exponential. But you're wrong. Lemme give you an example: e=mc^2. ARGH: Einstein was wrong! If you measure c in "light years per year", then c becomes 1 and 1^2 is still 1 therefore the formula is misleading! Nonsense, right? Unfortunately, so is your argument.

You're confusing something which is exponential across a number of time periods, versus the size of each time period when measured in years. Stop getting so outraged that t=1 because it doesn't. T is the number of intervals. 1 is the size of the interval when measured in years.

Primary school stuff.

Comment Computational Thinking (Score 4, Interesting) 212

This is a man standing too close to the forest to see the trees. He's right, but also completely wrong.

What is being taught is "computational thinking", not coding. Coding is just the conduit.

I've seen the stark difference in my work with primary and junior high kids (Scratch, Python, Javascript), where some kids learn sufficient language to enable them to do a bunch of neat things, but *still can't do it*. They're not making the neural connections between "here's a bunch of capabilities I have at my fingertips", and "here's how I put my capabilities together into a structure of my own creation to achieve my goal".

It's a skill that has application far beyond the keyboard. It's not about learning the syntax of a for-loop, it's about the epiphany that follows. Seeing a kids face when they (all too rarely) get it that they've become wizards and the sky is the limit, is priceless. They are visibly empowered and their view of their relationship with the world around them alters.

*That's* what it's about.

Comment Re:Modula-3 FTW! (Score 2) 492

Agreed the verboseness argument is bogus, otherwise the whole debate would consist of COBOL people on one side, and APL people on the other. They are at opposite ends of the spectrum of verboseness, and both languages largely suck, but for different reasons.

Comment Re:Modula-3 FTW! (Score 3, Informative) 492

+1 to parent. Strong typing raises compile-time errors that otherwise would end up as pernicious run-time bugs. That means less time debugging and more reliable software. It's the total opposite of the sort of hippie "oh man, just grow the data structure however you feel at the time" approach of Python.

Comment Re:youmail (Score 1) 237

After a few back and fourth texts .... the F&I guy would come to my house

Mmmm... couple of things here: 1) learn how to spell; it will do wonders for your credibility, especially if you live by text, and 2) learn not to finance things unless you have an ethical imperative for financing companies to profit at your expense. Yes, I know everyone does it, but everyone are stoopid.

Comment Re:Hard to beat MIT's Scratch. Free and graphical. (Score 2) 107

Scratch is awesome, and I've worked with many dozens of kids on it.

The huge conundrum has always been where to go "after Scratch". Python isn't it, because you can't easily share graphical games unless the recipient also has pyGame installed. Javascript hasn't been it for a lack of appropriate on-ramp.

But there's now a free online tutorial system aimed at "Scratch kids" who want to take the next step. http://s2js.com/ It tutors them through the bits of Javascript they need to know in order to write graphical games that'll run on their smartdevices. It's tutorial, simple development tool, private image storage, and deployment facility.

It's "Javascript as told to Scratchers".

Comment Learn assembler (Score 1) 637

Doesn't matter much which one, just learn to so some even trivial things in assembler. Then understand *this* is reality, and everything else is an abstraction.

For bonus points, then do it in hex without the benefit of an assembler to translate mnemonics into opcodes and calculate your relative addresses.

Slashdot Top Deals

So you think that money is the root of all evil. Have you ever asked what is the root of money? -- Ayn Rand

Working...