Replied to 07/23/22 by joe jenettjoe jenett (pointers.dailywebthing.com)
podviaznikov.com (new) wyvy.net (new) ThoughtAsylum

Hi Joe,

Another trio of fascinating links. podviaznikov.com took me to montaigne.io which the site is made with. Montaigne is a simple tool that allows you to publish any type of website from Apple Notes , the docs are not yet complete but I certainly want to keep an eye on.

Thanks!

Frank & Aaron I did a little more digging. I could not see any kind info in the Rest API representation for a post. Then I saw:

Posting capability via custom REST API endpoint has been removed due improved Micropub support

from: dshanske/indieweb-post-kinds

At the moment I’d be more than happy to post as a draft and set the kind myself. I suspect that I’d reply using the WordPress editor, like now, rather than Drummer anyway.

Listened Microcast #087 — Back in the game! by Doug BelshawDoug Belshaw from Doug Belshaw's Thought Shrapnel
In this microcast, I go through three interesting links from my saved list on Pocket.

Nice to hear Doug again particularly in micro format. I do love a microcast. Lots of podcasts, especially 2 or 3 hosts chatting I find a bit long. I’d rather queueup a few shorter ones for a commute.

Liked a tweet by Sheri Edwards (Twitter)

Introduction to Web Stories (Storytime #1) https://youtu.be/MCcHkmzrIVY via @YouTube Open Source. Seems to put the creator in charge-- rather than the platform in charge of your content.

The open source and WordPress plugin make me prick up my ears. I Wonder if the open source means that the WordPress Plugin is self contained? Might be worth a test over the summer holidays.

Reposted a tweet by Banton Primary (Twitter)

The First Lego League https://dlvr.it/S20DWL pic.twitter.com/VtRSZawpGb

My class had a team in the South of Scotland heats of the First Lego League challenge on Thursday, very proud

#FIRSTLEGOLeague #FLL #RePLAY

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?

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.