C’est la Z: Anyone can cook

Mike Zamansky on the recent spate of online programming education offerings, specifically the more “vocational” ones such as Codecademy:

‘The premise seems to be that anyone can code and that everyone should code. I’ve been thinking about this for a while and I keep coming back to the question, “what’s the endgame?”‘

This post articulates the fear I’ve been having about trying to make programming more accessible to everyone: to what end? For users, is there any value in this knowledge? (Conversely, though, what’s the value in learning basic science and humanities for “users”, i.e. people existing in the physical world and society?)

Drawings with Paper

Quite pleased with the app–much lighter than ArtStudio, with 1/5 as many tools and no layers, which means less time pondering _how to draw_ and more time _actually drawing_. I’m posting them to my [Tumblr](http://yjsoon.tumblr.com) account regularly, but I’ll bring show some over here every now and then:

Drawing

Drawing

Drawing

An argument for teaching Computer Science over basic Math

An interesting argument: that calculating devices are now ubiquitous, and math should focus on computational problem-solving instead of drilling and memorisation. An example the author cites:

Computer languages allow students to transform ideas into action. Here is a simple rule that a math teacher might describe to her students:
If the number is greater than 9, carry the 10’s place; otherwise add the number to the bottom row.

The solution for this can be expressed as an if/else statement:

if number > 9:
carry += number / 10
else:
bottom += number

There are, as expected, plenty of opposing views in the comments, but it’s good food for thought. Also noteworthy: the comments aren’t completely stupid. Not-completely-stupid comments! On the Internet! WHAT IS THIS WORLD WE’RE LIVING IN

Nobody Wants to Learn How to Program

From the blog behind the “Invent Your Own Computer Games with Python” book:

“[For] the casually interested or schoolchildren with several activities competing for their attention, programming concepts like variables and loops and data types aren’t interesting in themselves. They don’t want to learn how to program just for the sake of programming. They don’t want to learn about algorithm complexity or implicit casting. They want to make Super Mario or Twitter or Angry Birds.”

We’ve actually found that our students are usually quite happy to spend lots of time making silly console-output programs, like printing a pyramid of asterisks. However, the intro programming courses we’ve conducted have been for a fairly self-selected bunch.

The book is available [online](http://inventwithpython.com/chapters/) for free, and it certainly looks like a great instructional resource.

Re-enabling J/K keyboard navigation on Google search

Google runs a series of [Experimental Search](http://www.google.com/experimental) trials which any user can join — “new features aimed at improving the search experience”. A short while ago, they had one called “keyboard navigation”, which allowed users to navigate results using the keys J (down), K (up), and O (open). I _loved_ this to bits, and used it all the time… until it went away, replaced by an enhanced “accessibility” feature which makes search results look hideous:

Omg ugly  Google Search

So I went and tried [DuckDuckGo](http://duckduckgo.com) as my primary search engine for a while. It looks great, is highly customisable, and has my beloved keyboard shortcuts… but I can’t quite get behind it because: (a) it’s a bit slow, especially compared to Google, (b) there isn’t native Safari support for it (I have to go through a [GlimmerBlocker](http://glimmerblocker.org) script), and (c) I just can’t shake the feeling that Google’s search results _might_ be better, so I end up switching to another browser and checking on Google, _just in case_. This, naturally, was a recipe for madness, so I started looking into how to get back my beloved keyboard shortcuts in Google.

Thankfully, I wasn’t alone in my tribulations: the [Google Experimental Search forum](https://groups.google.com/forum/?fromgroups#!forum/google-experimental-search) had quite a few others sharing my pain of having to use their mice while searching. One thread led me to [this post](http://blog.nqzero.com/2011/12/googles-experimental-page-used-to-list.html) on a blog called “Not Quite Zero”, where the author found Google’s original JavaScript for keyboard shortcuts, and re-injected it into the webpage using a [user script](http://en.wikipedia.org/wiki/Greasemonkey), hence re-enabling the plugin. Yesss!

If you’re on Firefox or Chrome, the script linked in that post is all you need, but I did edit it to fix a couple of things for myself:

* Re-aligned the search arrow to get it in line with the searched item; and
* Packaged it as a Safari extension.

Here are my new versions. Once again, all credit goes to the [original author](http://blog.nqzero.com/2011/12/googles-experimental-page-used-to-list.html); all I did were some minor styling fixes and packaging. MIT/X licensed.

* [Script for Chrome or Firefox](http://dl.dropbox.com/u/90126/GoogleJK/GoogleJK.user.js): the latter requires the [Greasemonkey](http://greasemonkey.org) plugin installed before clicking on the link; tested on Chrome 18 and Firefox 10 on Mac.
* [Safari extension](http://dl.dropbox.com/u/90126/GoogleJK/GoogleJK.safariextz): tested on 5.1.3 on Mac.

__Important__: For these to work, you do need to disable Google Instant, first at Google’s [search preferences](https://www.google.com/preferences?hl=en) and, if you’re using Chrome, in [its browser preferences](chrome://chrome/settings). Otherwise, Instant’s search bar will grab focus when the page loads.

Note that Google’s original extension JavaScript is still hosted on their servers, so if they remove it, these extensions will do nothing! [Let me know](http://yjsoon.com/contact) if that happens, and I’ll fix it ASAP. (As I was finishing this post, the author replied to say he put up his extensions [on Github](https://github.com/nqzero/knogs) — might want to take a look there instead, if you’re interested in the original JS version. I’ll probably fork it with the styling changes.)

__Update__, July 2012: I’ve [updated the extension for Safari 6](http://yjsoon.com/2012/07/knogs-google-jk-keyboard-shortcut-extension-updated-for-safari-6). The above download links should point to the new version, but this link explains the differences.

C’est la Z: a computer science teacher’s blog

Mike Zamansky is a very experienced and highly-regarded computer science teacher in New York, and founder (I think?) of the upcoming New York City Academy of Software Engineering (here’s [Joel Spolsky](http://www.joelonsoftware.com/items/2012/01/13.html) on the topic). Imagine, then, my delight at discovering that he’d recently started blogging again.

I love his [latest post](http://cestlaz.blogspot.com/2011/12/my-favorite-student.html) on teaching:

I’ve been thinking a lot about my career as a teacher recently. I decided to leave industry over twenty years ago. As teachers, particularly teachers with technical backgrounds we leave a financially lucrative field to enter one with very few financial rewards. It’s also a field very much under attack, particularly in recent years. […]

So, what do I get out of the deal? Well, when I hear form my graduates, I know that I’ve made a difference. Also, the friendships I’ve developed over the years.

His other pieces are great, too — [thoughts](http://cestlaz.blogspot.com/2012/01/pretty-sneaky-sis.html) (with starter code!) on a software engineering class project that teaches design through implementation, some [reflections](http://cestlaz.blogspot.com/2011/12/ml-and-ai-courses-how-they-were-taught.html) and [suggestions](http://cestlaz.blogspot.com/2011/12/stanford-classes-what-id-do-next.html) on the Stanford profs’ CS classes, and some details of a [lesson module](http://cestlaz.blogspot.com/2011/12/wheres-waldo-text-style.html) he developed to teach 2-D arrays (again, with code). Fantastic.

“Computer Science is not Digital Literacy”

Jodie Fraser:

Digital literacy means the the skills and confidence to take an active role in engaging in networks, and in shaping and creating opportunities – social, political, cultural, civic, and economic, and we shouldn’t be collapsing these broader rights into the relatively narrow concerns of computing science as a curriculum area.

Article via [Fraser Speirs](http://fraserspeirs.com) (that’s a lot of Frasers). Mildly surprising, to me at least, is his strong support for the argument raised in the link article, given that he’s a programmer and Computer Science teacher. This [piece of his](http://speirs.org/blog/2011/12/29/three-mantras-from-the-first-two-years.html) on “technology for subjects not traditionally well-served by technology” may serve to explain why, but I’m still trying to digest all of this.

BBC: ICT to be replaced by CS in schools

From September, England’s schools will offer computer science classes instead of ICT (a.k.a. IT ‘skills’ such as PowerPoint and Excel):

The current programme of information and communications technology (ICT) study in England’s schools will be scrapped from September, the education secretary will announce later.

The subject will be replaced by compulsory lessons in more rigorous computer science and programming.

Not sure how they’ll start this up so quickly, given this glaring problem:

“There are, of course, significant challenges to overcome, specifically with the immediate shortage of computer science teachers.”

See also [this Guardian article](http://www.guardian.co.uk/education/2012/jan/09/computer-studies-in-schools): “Out of 28,000 teachers who qualified in 2010, just three individuals had a computer-related degree.” Similarly the case here, although the return of A-level Computing should imply that [NIE](http://www.nie.edu.sg) will be doing something about training CS teachers.

I’m still on the fence about whether CS absolutely needs to be taught at a pre-tertiary level. There was some interesting discussion on this recently between a couple of Mac developers — see [this blog post by Guy English](http://kickingbear.com/blog/archives/272) on “Scripting is the New Literacy”, a response to [this piece by Daniel Jalkut](http://www.red-sweater.com/blog/2298/learn-to-code) encouraging everyone to “Learn to Code”.

(News via [Matt Johnston](https://twitter.com/cimota).)