Replied to a tweet by erin glass (Twitter)

for the launch of @ProjectReboot, i wrote about how edtech trains students to accept an exploitative, surveillant web, and how we might use it instead to cultivate critical digital citizens capable of shaping the tech they use https://thereboot.com/edtech-needs-recoding-to-transform-student-users-into-digital-citizens/

The linked article, Edtech Needs Recoding to Transform Student ‘Users’ Into Digital Citizens – The Reboot is interesting.

Institutions have chosen to submerge students in a culture of computing that normalizes surveillance, exploitation, and control as if these were the objective features of computing itself. Can technological practice within education look any different?

A part of the suggested solution

supporting students to collectively design and govern their educational tools. There’s no better way to show them how tools can affect their thinking and social interactions, and to prepare them to critically shape the technologies that in turn shape our world.

I wonder how this can be addresses in primary & secondary education. The normalisation of the culture begins, surely, in the home & early education. I wonder if many educators even start to consider this problem. In my own sector, primary, where would we start?

During the last lockdown I made a wee webpage to use instead of a whiteboard and magnetic letters for phonics. It might be useful to someone else: Word Makers. Made with iPads in mind. It presents a list of  words and you can drag letters around. Here is a 30 second screencast (silent).

The words are from NLC lists.

There is a table of contents:

and a general board:

Doubtless a few bugs but someone might find it useful.

Replied to https://twitter.com/MrMcEnaney/status/1346191952925122560?s=20 by James McEnaney (Twitter)

Some thoughts on the return to online learning, and what we can do to make the best of it https://www.thenational.scot/news/18986180.online-learning-learned-teaching-online-covid/?ref=twtrec

 First of all, I think it’s really important that we put kids first and don’t worry too much about “lost learning”. No matter what age they are, their schoolwork is not more important than their wellbeing.

Yup, it is a pity this needs to be said, but it does.

Replied to Re: Browser Bookmarklets for Giving Credit by Aaron DavisAaron Davis (collect.readwriterespond.com)
I am all in on this Chris, but I just can’t seem to get it to work. I created the bookmarklet, highlighted the name and clicked the bookmarklet, but there was no pop-up. I must admit, I do not use many bookmarklets, only Alan Levine’s really. I may therefore have to dig into this a bit further a...

Hi Aaron,

I am glad you posted this. I like bookmarklets. I run one a bit like this via AppleScript on my mac. This has an advantage of letting me add a keyboard to send straight to the clipboard.

I am going to add the indieweb mark up to that using Chris’s script for reference. Like you I couldn’t get it working at first I had to mess around with he single and double quotes. This works for me:


javascript:(function(){let text = "";if (window.getSelection() != '') {text = window.getSelection().toString() + '\n';}var tocopy = '<p><small><cite class="h-cite via"><abbr title="via">ᔥ</abbr> <span class="p-author h-card">"' + text + '"</span> in <a class="u-url p-name" href="' + location.href + '" target="_blank" rel="noopener noreferrer" >' + document.title + '</a> (<time class="dt-published">' + document.lastModified + '</time>)</cite></small></p>';;d=document;d.body.appendChild(Object.assign(d.createElement('textarea'),{value:tocopy})).select();d.execCommand('copy');})()

I’ve not got much of a handle on JavaScript so YMMV.