📺 Against Blogging | Zach Whalen | Domains 2019

Watched Against Blogging by Zach WhalenZach Whalen from Domains 2019 | YouTube

For the past 15 years, I’ve included blog assignments in my classes as a default, routine, and generally low-stakes assignment. It began with a simple journal where students kept track of their progress through a video game, and through the years, the assignment has ranged from similarly simple logs or progress reports to the more ornate and decorous “features articles” where students seek to emulate magazine writing and engage with a public audience. At times, like when having a platform online was still a novelty and the adrenaline rush of Web 2.0-fueled activism took flight in the optimism of Barack Obama’s first presidential campaign, blogging totally made sense. As a classroom experience, a blog assignment helped students find their digital identity through written expression. By finding their voice digitally, students found themselves.

But while this will still happen, and while I still see brilliant writing from my students, the era when the exigency of a blog assignment can be reliably vindicated by an authentic external audience has ended. It’s time for something else, which means it’s time to re-evaluate what blogs have been and what we have needed them for in order to find the best ways to meet those goals through other means. In this short presentation, I will offer several suggestions.

This is, however, an aspirational proposal. I’m writing this between semesters as I reflect on the Fall — where blog assignments didn’t always meet my goals or in some cases arguably undermined other goals for my class — and thinking ahead to the Spring — when I hope to implement some new assignments based on this recent conviction about the ineffectuality of blog assignments. Therefore, by June, my expectation is that I will have something new to report: either finding success with an entirely new set of assignments and corresponding tools, or returning to the familiar embrace of blog assignments with a renewed sense of their value.

Most likely, I’ll be somewhere in between, but my hunch is that different forms of discursive content creation will help students take control of their learning and find direction for their digital identities. Whatever I find in the coming semester, I’m confident that I’ll be ready to share some insight into the intents, purposes, and outcomes of inviting students to do intellectual work on the internet of 2019.

Notes as they occur to me while I’m watching this video:

To me blogging is a means of thinking out loud.

Of course having a site doesn’t mean one is blogging. In fact, in my case, I’m collecting bits and pieces on my site like a digital commonplace book, and out of those collections come some quick basic thoughts, and often some longer pieces, which could be called blog posts, but really are essays that help to shape my thinking. I really wish more people would eschew social media and use their own websites this way.

We need to remember that a website or domain is FAR, FAR more than just a simple blog. 

It kills me how many in the edtech/Domains space seem to love memes. It’s always cute and fun, but they feel so vapid and ineffectual. It’s like copying someone else’s work and trying to pass it off as our own. English teachers used to say, “Don’t be cliché,” but now through the use of digital memes they’re almost encouraging it. Why not find interesting images and create something new and dramatically different.  (I can’t help but think of the incredibly unique Terry Gilliam “cartoons” in Monty Python’s Flying Circus and the phrase “and now for something completely different…”.

Zach uses the phrase “personal learning journal” but doesn’t quite get to the idea of using domains as digital commonplace books.  He also looks at other social sites like Tik-Tok, Instagram stories, YouTube channels, and Twitter hashtags, but doesn’t consider that what those things are could easily be contained within one’s own personal site/domain. The IndieWeb has been hacking away at just this for several years now. What he’s getting at here, but isn’t quite saying is “Why can’t we expand the Domain beyond the restrained idea of “just a blog.” And isn’t that just the whole point of the IndieWeb movement? Your website can literally be anything you want it to be! Just go do it. Invent. Iterate. Have fun!

Zack should definitely take a look at what one can do with Webmention. See: Webmentions: Enabling Better Communication on the Internet. I suppose some of the restraint is that most people don’t know that it’s relatively easy now to get one domain to be able to talk to another domain the way social sites like Facebook and Twitter do @mentions. And once you’ve got that, there’s a whole lot more you can do!

Perhaps what we should do is go back to the early web and the idea of “small pieces, loosely joined“. What can we do with all the smaller, atomized pieces of the web? How can we use these building blocks in new and unexpected ways? To build new and exciting things? What happens when you combine Facebook, Twitter, Instagram, Snapchat, Blogger, Soundcloud, Foursquare, Flickr, Goodreads, Periscope, Lobsters, TikTok, Quora, Zotero, Flipboard, GitHub, Medium, Huffduffer, Plurk, etc., etc. altogether and mix them up in infinite ways? You get Domains! You may get something as cutting edge–but still relatively straight-laced–as Aaron Parecki’s website, which you might have to dig into to realize just how much he’s got going on there, or you might end up with something as quirky and cool as Kicks Condor’s site or his discovery/syndication channel Indieweb.xyz.

Want to be able to use your website to highlight and mark up what you read? Go ahead and do that! I have. You could keep a record of everything you watch or listen to. Make a food diary. Track where you’ve been. Want to keep collections of chicken related things so your site can have a chicken feed? Go crazy!! 

 

From Following Posts and Blogrolls (Following Pages) with OPML to Microsub Servers and Readers

I’m still tinkering away at pathways for following people (and websites) on the open web (in my case within WordPress). I’m doing it with an eye toward making some of the UI and infrastructure easier in light of the current fleet of Microsub servers and readers that will enable easier social reading without the centralized reliance on services like Facebook, Twitter, Instagram, Snapchat, Medium, LinkedIn, et al.

If you haven’t been following along, here are some relevant pieces for background:

Generally I’ve been adding data into my Following Page (aka blogroll on steroids) using the old WordPress Links Manager pseudo-manually. (There’s also a way to bulk import to it via OPML, using the WordPress Tools Menu or via /wp-admin/import.php?import=opml). The old Links Manager functionality in WordPress had a bookmarklet to add links to it quickly, though it currently only seems to add a minimal set–typically just the URL and the page title. Perhaps someone with stronger JavaScript skills than I possess could improve on it or integrate/leverage some of David Shanske’s Parse This work into such a bookmark to pull more data out of pages (via Microformats, Schema.org, Open Graph Protocol, or Dublin Core meta) to pre-fill the Links Manager with more metadata including page feeds, which I now understand Parse This does in the past month or so. (If more than one feed is found, they could be added in comma separated form to the “Notes” section and the user could cut/paste the appropriate one into the feed section.) Since I spent some significant time trying to find/dig up that old bookmarklet, I’ll mention that it can be found in the Restore Lost Functionality plugin (along with many other goodies) and a related version also exists in the Link Library plugin, though on a small test I found it only pulled in the URL.

Since it wasn’t completely intuitive to find, I’ll include the JavaScript snippet for the Links Manager bookmarklet below, though note that the URL hard coded into it is for example.com, so change that part if you’re modifying for your own use. (I haven’t tested it, but it may require the Press This plugin which replaces some of the functionality that was taken out of WordPress core in version 4.9. It will certainly require one to enable using the Links Manager either via code or via plugin.)

javascript:void(linkmanpopup=window.open('https://exanple.com/wp-admin/link-add.php?action=popup&linkurl='+escape(location.href)+'&name='+escape(document.title),'LinkManager','scrollbars=yes,width=750,height=550,left=15,top=15,status=yes,resizable=yes'));linkmanpopup.focus();window.focus();linkmanpopup.focus();

Since I’ve been digging around a bit, I’ll note that Yannick Lefebvre’s Link Library plugin seems to have a similar sort of functionality to Links Manager and adds in the ability to add a variety of additional data fields including tags, which Ton Zijlstra mentions he would like (and I wouldn’t mind either). Unfortunately I’m not seeing any OPML functionality in the plugin, so it wins at doing display (with a huge variety of settings) for a stand-alone blogroll, but it may fail at the data portability for doing the additional OPML portion we’ve been looking at. Of course I’m happy to be corrected, but I don’t see anything in the documentation or a cursory glance at the code.

In the most ideal world, I’d love to be able to use the Post Kinds Plugin to create follow posts (see my examples). This plugin is already able to generally use bookmarklet functionality to pull in a variety of meta data using the Parse This code which is also built into Post Kinds.

It would be nice if these follow posts would also copy their data into the Links Manager (to keep things DRY), so that the blogroll and the OPML files are automatically updated all at once. (Barring Post Kinds transferring the data, it would be nice to have an improved bookmarklet for pulling data into the Links Manager piece directly.)

Naturally having the ability for these OPML files be readable/usable by Jack Jamieson’s forthcoming Yarns Microsub Server for WordPress (for use with social readers) would be phenomenal. (I believe there are already one or two OPML to h-feed converters for Microsub in the wild.) All of this would be a nice end -to-end solution for quickly and easily following people (or sites) with a variety of feeds and feed types (RSS, Atom, JSONfeed, h-feed).

An additional refinement of the blogroll display portion would be to have that page display as an h-feed of h-entries each including properly marked up h-cards with appropriate microformats and discoverable RSS feeds to make it easier for other sites to find and use that data. (This may be a more IndieWeb-based method of displaying such a page compared with the OPML spec.) I’ll also note that the Links Manager uses v1 of the OPML spec and it would potentially be nice to have an update on that as well for newer discovery tools/methods like Dave Winer’s Share Your OPML Subscription list, which I’m noting seems to be down/not functioning at the moment.

Replied to a tweet by femedtechfemedtech (Twitter)
Five is far from enough. Here’s just a few (in no particular order):

Kathleen FitzpatrickCathie LeBlancRobin DeRosa, Amy Collier, Audrey Watters, Amy GuyKimberly Hirsh, Catherine Cronin, Martha Burtis, Autumn CainesChristina Hendricks, Maha Bali, Lee Skallerup Bessette, Meredith Broussard, Helen DeWaard, Devon Zuegel, Kate BowlesIrene Stewart, Rachel Cherry, Jess Reingold, Laura PasquiniLaura Gibbs, Lora Taub-Pervizpour, Hilary Mason, Miriam PosnerKay Oddone, Rayna Harris, Amber Case, Teodora Petkova, Anelise H. Shrout, Jean MacDonald, Natalie Lafferty, Lauren Brumfield, Meredith Fierro

And don’t just follow them on Twitter, fill your brain up by following their longer thoughts in the feeds from their own domains, which I’ve linked. This way you won’t miss anything truly important in the overwhelming flow of Twitter and other social media.

Replied to My Human Readable OPML Blogroll by Ton ZijlstraTon Zijlstra (zylstra.org)
After my recent posting where I asked people which RSS feeds they read, I received several responses. One of them is Peter’s. Like me he was publishing an OPML file of his feeds already. OPML is a machine readable format that most RSS readers will be able to import, so you can subscribe to blogs I...
Ton, this is great! Though perhaps you’re reinventing the wheel a bit more than you may have needed to?

I’ll see you your blogroll and add in images and descriptions as well! https://boffosocko.com/about/following/

A while back I did something similar to what you and Peter have done, I just did it with the old built in Link Manager feature of WordPress. The primary difference is that I’ve got some meta data about what the site/feed is about in addition to an image. I left out the feed in the human readable version as it’s less likely to be used, while it’s more valuable to the computer readable version. I’ve also figured out the a URL query parameter for breaking my blogroll up by category, so that folks can copy smaller subsections of it.

Another added bonus is that I’m using Inoreader which supports OPML subscriptions so that any time I update my OPML file, my feed reader auto-updates for me without needing to manually upload the new OPML file! This means I just add the follow in one place and everything else follows without any additional work.

Here are the details for how I did most of it:

Perhaps what we really need is to give some love to that Link Manager in core to update it to OPML v2 and add in the rel attributes from XFN microformats to the links? 

When you have a moment, be sure to add your example to the OPML and blogroll pages on the IndieWeb wiki, where you may find some additional inspiration.

Thanks for experimenting to bring back the blogroll! (And thanks for sharing, there are a few of your feeds I see that I ought to be following and I also recognize those we have in common of many educators I already do follow.)

Replied to Adding a Self Contained Site with File Manager by Alan Levine (Extend Activity Bank)
Screenshot of sample basic calling card web page featuring a background with a 6 year old with his mouth agape.

Many of the sites we create in our cpanel are installed via a cpanel tool because they have complex file structures and often require database set ups. But there are quite a few web site themes that are all self contained HTML/CSS/Javsscript files that we can upload directly to our domain with the File Manager.

This activity walks you through the steps to put a self-contained web site within a directory of your site.

I created a sub-folder on my sub-domain and uploaded a simple templated HTML5/CSS website to create a simple calling card page at http://sp.chrisaldrich.net/me/. I couldn’t bring myself to replace the picture of the little kid with the gaping mouth because it was just too cute.

While I occasionally do some small uploading tweaks like this, it seems like ages since I created webpages like this outside of more elaborate content management systems. Hooray for raw HTML and CSS! It’s also a bit refreshing to do it all manually in an interface instead of via FTP or other means.

Replied to a tweet by Greg McVerryGreg McVerry (Twitter)
Perhaps you were thinking of Tim Clarke (@FloatingTim) or Lora Taub (@ltaub)? That would give you 4 not counting their students that might be interested. That’s also more than enough to do a Homebrew Website Club on a regular basis too.

I know that some have set up remove viewing/remote attendance parties for Camps/Summit in the past–not a bad idea Greg!

IndieWeb Summit 2019 
What to expect (w/ some remote attendance tips)

Quickly making watch posts on my website

I was reading about how Cathie LeBlanc sometimes felt overwhelmed about logging the movies she’d recently seen:

I have to be better about posting my movie “reviews” more quickly. I get overwhelmed thinking that I need to write something about the movie when really the whole point of me doing these reviews is just to record what movies I’ve seen. So this month, I’m writing very little about each of these viewings.

I always had this problem too and finding quick and easy ways of posting them before I forgot became part of the solution. I’m not sure I’ve fully documented what I’ve been doing, but it’s slowly changed over time, so I thought I’d take a moment to write down some of the faster methods I use or have used.

One can always use the WordPress mobile posting app, bookmarklets in conjunction with Post Kinds, or even posting via email, but it usually takes a few minutes and can distract from conversations and family/friends when they’re around. Generally I’m looking to immediately capture the title of the film/tv show, the date/time stamp, and maybe the location. Later on, when I’ve got a few extra minutes, I’ll come back and optionally add details/context like poster art, cast, crew, etc. and a mini review with a rating. The method you use will depend on what kind of display you want and how much detail you’d like. At the end of the day, do what works best for you.

Checkin Method

I’m a relatively avid user of the Swarm app (fka Foursquare), so I’ll often take a photo of the movie poster, ticket, theater/other while I’m at the theater and then quickly checkin on my phone. Swarm typically has some interface to indicate which movie I’m seeing when I check into movie theaters. Otherwise it’s pretty easy to manually type things in while I’m waiting for the show to start. Once the movie is over I can discretely can go back to the checkin and add a few quick comments and a rating without disturbing the rest of the party, otherwise I’ll revisit it later.

To get this all on my website I’ve set up the Micropub plugin and configured OwnYourSwarm (for public/private posting–you choose), and the service takes care of posting all the data for me as a checkin so that I don’t forget. In the end it’s usually less than 10 seconds, and I’ve got the data I need as it happens.

Traditional PESOS watch method using IFTTT

This alternate PESOS method can be done using popular services like IMDb.com or Letterboxd.com and relies on using RSS feeds from them to pipe content to my site using IFTTT.com. (Other silo services may be able to do this as well.) Most often I send the URLs of movies/tv shows of what I watch from IMDb to my Reading.am account which has an RSS feed to trigger IFTTT.com that, in turn, creates a draft post on my website. (If only IMDB.com had a usable RSS feed, I could skip the Reading.am account. Typically I’ll search for the movie on IMDb, share that from my browser to may email client and email it to a custom Reading.am email address that autoposts it to my Reading.am account.) Later I can peek in on it, add a mini-review and rating if I like, and publish publicly or not. Letterboxd can be used similarly, but it has the added benefit of having a rating system built in so it can send that data as well.

Hopefully they’ll resolve with a logged in account, so here are the two IFTTT.com recipes I’m using as reference:

(If you can’t access the recipes to recreate your own, let me know, and I’ll manually delineate all the relevant settings.)

Both methods will work without it, but I’m also using the Post Kinds plugin to create explicit watch posts which have a nice contextual presentation which I kind of like. It also has the ability to parse URLs to create the context quickly, so if you put in an IMDb or Letterboxd URL, it will fetch artwork, cast, description, etc. automatically and there’s no need to cut/paste.

Examples

To get some idea, here are some interesting examples of these methods.

If others have better/faster methods, I’d love to hear them or see them documented. Perhaps one day someone (or maybe even IMDb or Letterboxd) will build a custom Micropub client specifically for watch posts (something akin to Teacup for food/drink or Indiebookclub for reading) that will automatically poll the data related to a film/television title and post it to one’s site?

If it helps Domains 2019 attendees, I’ve got a Twitter list of educators, researchers, technologists, and others who are using DoOO, IndieWeb, or other related ethical edTech technologies. The list includes people who attended in 2017, many of those tweeting during 2019, as well as those regularly tweeting about DoOO and closely related topics throughout the year or on the list of Educators in the IndieWeb.

I’ve also got a regularly updated OPML file for many of the same people if you prefer to subscribe to/follow their websites directly (this method is more Domains-friendly right!?!). If you use Inoreader or other services that support OPML subscription technology, this feed will auto-update for you as new people are added to the list, preventing you from needing to regularly refresh the OPML file manually. I’ll try to update this OPML file this evening for today’s/tomorrow’s attendees based on their websites in their Twitter profiles.

Don’t hesitate to ping me if you’d like to be added to the lists, or if I’m missing anyone. Be sure to include your most relevant RSS feed(s) for the OPML portion of that list. Feel free to copy/modify either of the lists to your heart’s content.

Lurking, Twitter, The Commons, and Private Posts

Lurking

Yesterday I was catching up on chat logs and ran across a stub for lurking on the IndieWeb wiki. I cleaned up the formatting a bit and added some additional material. Later Ton Zijlstra dropped a link to his excellent article from 2004 on the topic: Lurking and Social Networks (though honestly, I first came by the link courtesy of our good friend Jeremy Cherfas who added it to the wiki page).

Lurking is the quiet watching/listening that what many people of the web do in chat rooms in order to begin gauging culture, learning jargon or lingo, and other community norms or unspoken principles before diving in to interact on a more direct level with other participants.

While the word lurking can have a very negative connotation, online it often has a much more positive one, especially in regard to the health and civility of the commons. Rather than rehash what Ton has done an excellent job of doing, I won’t go into the heavy details and history of online lurking, but instead, let’s take a look at where it isn’t in today’s social media landscape.

Twitter

Since 2004, Twitter and a slew of other social media has popped up on the scene and changed many of our prior behaviors concerning lurking. In particular, Twitter’s interface has made it far easier to either like/favorite a post or retweet it.

In comparison the the preceding era of the blogosphere represented by Tons’ post, Twitter has allowed people to send simple notifications back and forth about each others’ posts indicating a lower bar of interaction than writing a thoughtful and measured comment. Now instead of not knowing about dozens, hundreds, or thousands of lurkers, a (micro)blogger would more quickly know who many more of their readers were because they were liking or resharing their content. Naturally there are still many more potential lurkers who don’t interact with one’s posts this way, but these interactions in some way are like adding fuel to the fire and prompt the writer to continue posting because they’re getting some feedback that indicates they’ve got an audience. Twitter has dramatically lowered the bar for lurkers and made it more socially acceptable for them to make themselves known.

A mid-century imagining of a Twitter company sign on the side of a commercial building, but aged to the point that the sign is rusted, broken, and decaying from neglect
Twitter image from the collection Social Decay by Andrei Lacatsu

Of course, not all is rosy and happy in Twitterland as a result of this lowering the social bar. Because it’s so easy to follow almost anyone and interact with them, naturally everyone does. This means that while before one may have lurked a blog for weeks or months before posting a response of any sort, people are now regularly replying to complete strangers without an resistance whatsoever. While this can be valuable and helpful in many instances, oftentimes it comes off as rudely as if one butted into the private conversation of strangers at a public gathering. At the farther end of the spectrum, it’s also much easier for trolls to tag and target unsuspecting victims. As a result, we have the dumpster fire that Twitter has become in the past several years for many of its users.

The problem for the continued health of the commons is how can we maintain a bar for online lurking, but still provide some feedback? How can we keep people from shouting and yelling at passer-by from their proverbial front porches or vice-versa? How might we encourage more positive lurking online before directly jumping into a conversation? 

Read Posts and Private Posts

For several years now, as a part of the IndieWeb movement, I’ve been more directly controlling my online identity and owning my content by using my own domain name and my own website (boffosocko.com). While I still use Twitter, I’m generally only reading content from it via a feed reader. When I post to or interact with it, I’m always publishing my content on my own website first and syndicating a copy to Twitter for those who don’t own their online identities or content and (sadly) rely on Twitter to do that for them. 

Within this setting, since roughly late 2016, I’ve been posting almost all of what I read online or in books, magazines, or newspapers on my own website. These read posts include some context and are often simply composed of the title of the article, the author, the outlet, a summary/synopsis/or first paragraph or two to remind me what the piece was about, and occasionally a comment or two or ten I had on the piece.

screencapture of a read post on my website
An example read post with context from my website at https://boffosocko.com/2019/06/02/lurking-and-social-networks-ton-zijlstra/

In tandem with these posts, I’m also sending webmentions to the websites of those pieces. These (experimental) read webmentions are simply notifications to the originating site that I’ve read their piece. In our prior framing of lurking or Twitter, I’m sending them the simplest notification I can think of to say, “I’m here lurking. I’m reading or looking at your work.”

I’m not saying that I liked it, favorited it, disliked it, bookmarked it, commented on it,  or anything else, but simply that I read it, I consumed it, I spent the time to interact with it. But in contrast with Ton’s older method of looking at server logs to see what kind of traffic his posts are getting, he can see exactly who I am and visit my website in return if he chooses. (Ton’s old method of sifting through those logs was certainly not a fun experience and the data was usually relatively anonymous and useless.) These newer read notifications could potentially give him a much richer idea of who his (lurking) audience actually is. Then when someone shows up with a comment or reply, it’s not completely from out of the dark: they’ve previously indicated that they’re at least somewhat aware of the context of a potentially broader conversation on his site.

These read notifications are semantically different from likes, favorites, or even bookmarks on other platforms. In fact many platforms like Twitter, which has moved from “stars” (with the semantic idea of a favorite) to “hearts” (with the semantic idea of a like), have so few indicators of reaction to a post that the actual meaning of them has been desperately blurred. Personally I’ll use Twitter’s like functionality variously to mean: “I’m bookmarking this (or the linked article within it) for reading later”, “I like this post”, “I’ve read this post”, or even “I’m acknowledging receipt of your reply to me”. That’s just too much meaning to pack into a silly little heart icon.

Because I’m using my own website over which I have complete control, I can make it do a better job of unpacking some of this semantic tom-foolery. I’ve written about it a bit in the past if you care to see some of the details: Thoughts on linkblogs, bookmarks, reads, likes, favorites, follows, and related links. See also: the read-posts tag on this site.

If they choose, some website owners display these read post notifications in one or more ways. Some sites like Aaron Parecki’s or Jeremy Keith’s will show my interactions as bookmarks. Others, primarily WordPress-based websites that support Webmention (via plugin), will actually show these interactions in their comment sections under the heading “Read” and display my photo/avatar as an indicator that I’ve interacted with that post. In the case of read posts on which I’ve written one or more comments, the receiving site also has the option of showing my interaction not as a read/bookmark intent, but could also show my comments as a reply to their post. I’ve written a bit about this and its potential for large news outlets before in Webmentions: Enabling Better Communication on the Internet for A List Apart. There are also some older legacy sites that might show my interactions as a trackback or pingback, but these seem few and far between these days, particularly as those systems are major targets for spam and the Webmention protocol has a richer interaction/display model.

screencaputure showing how Jeremy Keith displays my read post as a bookmark. The relevant section reads: "# Bookmarked by Chris Aldrich on Thursday, April 11th, 2019 at 1:31pm"
How Jeremy Keith displays shares, likes, and bookmarks (including my read post) in the comment section of his website.
Facepiled Likes, Reads, and Mentions in the comment section of the online newspaper with a heading "Reading" under which appears an avatar indicating one person has read the article.
The display of a read post on ColoradoBoulevard.net

A new itch

But as I think about these read posts, lurking, and being more civil on the internet, I have a new itch for some functionality I’d like to add to my website. I very frequently use my website as a digital commonplace book to collect links of things I’ve read, watched, and listened to. I’ll collect quotes, highlights, and even my own marginalia. As I mentioned above, my read posts sometimes have comments, and quite often those comments are really meant just for me and not for the author of the original post. In many cases, when my comments may be too egregious, sensitive, or perhaps even insulting to the original author, I’ll make these posts private so that only I can see them on my site.  Of course when they’re private, no notifications are sent to the site at the other end of the line.

Sometimes I would like to be able to send a read notification to the site, but also keep my commentary privately to myself. This allows me to have my notes on the piece and be highly critical without dragging down the original author or piece who I may not know well or the audience of that same piece which I haven’t properly lurked (in the positive community-based sense indicated above) to be as intelligently and sensitively commenting as I would otherwise like. Thus I’d like to build in some functionality so that I can publicly indicate I’ve read a piece (and send a notification), but also so that I can keep the commentary on my read private to either myself or a smaller audience.

I suspect that I can do this in a variety of meta-fields on my website which aren’t shown to the public, but which might be shown to either myself or logged in users. In some sense, this is a subset of functionality which many in the IndieWeb have been exploring recently around the ideas of private posts or by limiting the audience of a post. In my case, I’m actually looking at making a post public, but making smaller sub-portions of it private.

To begin with, I’ll most likely be looking at doing this at a small scale just for myself and my commonplace book, as I can definitely see second and third-order effects and a variety of context collapse issues when portions of posts are private, but others who may be privy to them are commenting on those pieces from the perspective of their public spheres which may not be as private or closed off as mine. i.e.: While I may have something marked as private, privy readers will always have the option of copy/pasting it and dragging it out into the public.

For those interested, I’ll briefly note that Sebastiaan Andeweg just wrote Private posts: the move of the checkins which has some useful and related background to private posts. (Of course I remember exactly when I read it.) I also highly suspect there will be a private posts related session(s) at the upcoming IndieWeb Summit in Portland in June (tickets are still available). I’m interested to see what others come up with on this front.

Replied to a thread by Timoni West, Trevor Flowers, Tantek Çelik (Twitter)
A concept closely related to the memex, but which significantly predated it is the commonplace book and definitely has some examples of that:
https://indieweb.org/commonplace_book
RSVPed Attending IndieWeb Summit - June 29-30, 2019 - Portland, Oregon
The ninth annual gathering for independent web creators of all kinds, graphic artists, designers, UX engineers, coders, hackers, to share ideas, create and improve their personal websites, and build upon each others creations.
I’m still working out a conflict to figure out if I’ll physically be in Portland in person, but at the very worst, I’ll definitely attend remotely. This is my favorite event of the entire year, so I definitely won’t miss it.

There are still some tickets left so RSVP now! I hope you’ll join me.

Listened to Steven Johnson on the Importance of Play and the Decisions We Make by Alan Alda from Clear+Vivid with Alan Alda

How do we come up with ideas? How do we make decisions? And how can we do both better? Steven Johnson has explored this question and written a dozen books about it. In this playful, thoughtful episode, Steven has some fascinating stories, like how Darwin made the decision to get married — or how a defecating duck helped lead to the invention of the computer. Through their own stories, Steven and Alan Alda share their thoughts about the transformative nature of ideas and what sort of environments best give rise to creativity.

I love the idea of the slow hunch discussed here. It’s part of the reason I keep a commonplace book. Johnson also discusses his own personal commonplace book, though he doesn’t give it that particular name here.

The commercial about Alda Communication Training makes me wonder if they recommend scientists and communicators have their own websites? In particular, I’m even more curious because of Johnson’s mention of his commonplace book and how he uses it in this episode. I suspect that scientists having a variety of interconnecting commonplaces (via Webmention) using basic IndieWeb or A Domain of One’s Own principles could better create slow hunches, create more links, increase creativity and diversity, and foster greater innovation. I’ll have to follow up on this idea. While some may do something slightly like this within other parts of social media, I don’t get the impression that it’s as useful a tool in those places (isn’t as searchable or permanent feeling, and is likely rarely reviewed over). Being able to own your digital commonplace as a regular tool certainly has more value as Johnson describes. Functionality like On This Day dramatically increases its value.

But there’s another point that we should make more often, I think, which is that one of the most robust findings in the social sciences and psychology over the last 20 years is that diverse groups are just collectively smarter and more original in the way that they think in, in both their way of dreaming up new ideas, but also in making complicated decisions, that they avoid all the problems of group think and homogeneity that you get when you have a group of like minded people together who are just amplifying each other’s beliefs.—Steven Johnson [00:09:59]

Think about a big decision in your life. Think about the age span of the people you’re talking to about that choice. Are they all your peers within three or four years? Are you talking somebody who’s a generation older and a generation younger?—Steven Johnson [00:13:24]

I was talking to Ramzi Hajj yesterday about having mentors (with a clear emphasis on that mentor being specifically older) and this quote is the same sentiment, just with a slightly different emphasis.

One of the things that is most predictive of a species, including most famously, humans, of their capacity for innovation and problem solving as an adult is how much they play as a newborn or as a child.—Steven Johnson [00:28:10]

Play is important for problem solving.

I think you boil this all down into the idea that if you want to know what the next big thing is, look for where people are having fun.—Alan Alda [00:31:35]

This is interesting because I notice that one of the  binding (and even physically stated) principles of the IndieWeb is to have fun. Unconsciously, it’s one of the reasons I’ve always thought that what the group is doing is so important.

Ha! Alda has also been watching Shtisel recently [00:50:04].

👓 Scale and Scope | Jim Luke

Read Scale and Scope by Jim LukeJim Luke (EconProph)
I’ve been saying for awhile now in discussions of the commons, OER, and higher education that a “commons doesn’t scale, it scopes”. Before I explain why I think a commons doesn’t scale very well, I probably need to briefly clarify what’s meant by scale and scope. Like many terms in economics, they’re both commonly used terms in both business and everyday life, but in economics they may carry a subtly different, more precise, or richer meaning. Both terms refer to the production of an increasing volume of output of some kind. Enthusiasts of particular good(s), be they an entrepreneur producing the a product they hope will make them rich or an open educator advocating for more open licensed textbooks because it will improve education, generally want to see their ideas scale. And by scale, they generally mean “be produced in larger and larger volumes”. Larger volume of output, of course, brings a larger volume of benefits to more users. More output –> more users –> more benefits. But it’s the behavior of costs that really intrigues us when we think of “scaling” as a way to increase output. More benefits is nice, but if more benefits also means an equal increase in costs, then it’s not so attractive.
I can see a relation to the economies of scope that Jim Luke is talking about here in relation to the IndieWeb principle of plurality. For a long time the IndieWeb community has put economies of scope first and foremost over that of scale. Scale may not necessarily solve some of the problems we’re all looking at. In fact, scale may be directly responsible for many of the problems that social has caused in our lives and society.

I’m also reminded of a post I annotated the other day:

Data sharing and how it can benefit your scientific career (Nature)

Crowther offered everyone who shared at least a certain volume of data with his forest initiative the chance to be a co-author of a study that he and a colleague led. Published in Science in 2016, the paper used more than 770,000 data points from 44 countries to determine that forests with more tree species are more productive.

I suspect a similar hypothesis holds for shared specs, code, and the broader idea of plurality within the IndieWeb. More interoperable systems makes the IndieWeb more productive.

I also can’t help but think about a reply to a tweet by Chris Messina in relation to the IndieWeb related article in this week’s The New Yorker:

Boris is asking a problematic question not remembering early issues with the Model T, which Jim Luke reminds us of in his article:

Remember Henry Ford’s famous quote about “the customer can get [the Model T] in any color they want as long as it’s black”?

We’ve already got the Model Ts of social media–it’s called Facebook. It’s Twitter. It’s Instagram. And they’re all standardized–black– but they all require their own custom (toxic and limited) roads to be able to drive them! I can’t drive my Model Twitter in Facebookville.  My Instagramobile has long since broken down in Twittertown. Wouldn’t you rather “See The U.S.A. In Your [IndieWeb] Chevrolet“?!

The answer to Boris is that the IndieWeb has been working on the scope problem first knowing that once the interoperable kinks between systems can be worked out to a reasonable level that scale will be the easy part of the problem. Obviously micro.blog has been able to productize IndieWeb principles (with several thousands of users) and still work relatively flawlessly with a huge number of other platforms.  There have been tremendous strides towards shoehorning IndieWeb principles into major CMSes like WordPress (~500+ active users currently) and Drupal (~50+ active users) not to mention several dozens of others including Known, Perch, Craft CMS, Hugo, Kirby, etc., etc.

I haven’t heard aggregate numbers recently, but I would guess that the current active IndieWeb user base is somewhere north of 10,000 people and individual websites.  Once the UI/UX issues have all been ironed out even a single platform like WordPress, which could easily add the individual pieces into its core product in just a few hours, would create a sea-change overnight by making more than 30% of the web which runs on it IndieWeb friendly or IndieWeb compatible.

Yes, friends, scale is the easy part. Plurality and scope are the the far more difficult problems. Just ask Zuck or Jack. Or their users products.

An IndieWeb Podcast: Episode 14 A loose collective of developers and techno-utopians

Episode 14: A loose collective of developers and techno-utopians

Running time: 1h 19m 57s | Download (37.5MB) | Subscribe by RSS | Huffduff

Summary: Our first episode since January. David Shanske and Chris Aldrich get caught up on some recent IndieWebCamps, an article about IndieWeb in The New Yorker, changes within WordPress, and upcoming events.

Recorded: May 19, 2019

Shownotes

6 camps later…
Austin
Online
New Haven
Berlin
Düsseldorf
Utrecht

National Duckpin Bowling Congress
Duck Tours
Streaming rigs for remote participation at IndieWeb Camps
Ad hoc sessions (🎧 00:11:28)

Can “Indie” Social Media Save Us? (The New Yorker) by Cal Newport (🎧 00:13:50)

Swarm Account deletions and posting limits
New Checkin icon within the Post Kinds Plugin: example https://david.shanske.com/kind/checkin/
Weather now has microformats mark up in WordPress
Fatwigoo problems with icons
IndieWeb Bingo

Webmention Project

Project of updating Matthias Pfefferle‘s Webmention and Semantic Linkbacks plugins (🎧 00:26:10)

Readers & Yarns

Readers & Yarns update (🎧 00:40:50)
X-Ray
Indigenous Replacement: Final Indigenous Log: The Future of the App

Post Kinds Plugin

Post Kinds and new exclude functionality (🎧 00:48:15)

  • widgets
  • titleless posts
  • On this day

David’s list of 24 IndieWebCamps he’s attended
Looking back at past IndieWebCamp sessions and wiki pages for interesting ideas and new itches
Date and time stamps on webmentions
Call for tickets in WordPress
Subscribing to h-cards with WebSub
Is Mastodon IndieWeb?
Fixing IndieAuth
Improving scoping, particularly for multi-user sites

Coming up within the community

IndieWeb Book Club

IndieWeb Book Club is coming up featuring Mike Monteiro’s book Ruined by Design(🎧 01:13:04)

IndieWeb Summit 2019

9th annual IndieWeb Summit (Portland) is coming up in June. RSVP now.

Questions?

Feel free to send us your questions or topic suggestions for upcoming episodes. (Use the comments below or your own site using Webmention). 
Perhaps a future episode on Micro.blog?

Replied to a tweet by Chris MessinaChris Messina (Twitter)
I agree with Chris’ summation and wish there would have been some more positive “gee wiz” in the piece.

The likely missed subtext here though is that the author is a computer science professor so avowedly anti-social media that he doesn’t have accounts of his own, and he has actually written a book about digital minimalism. From this perspective, this generally positive review of the IndieWeb in The New Yorker reads as positively scintillating!

It also bears pointing out that Cal Newport, the author of the piece, has both his own domain name and his own website which he uses as his primary identity on the web. He also uses it as the cornerstone of all of his web communication, so he’s as solidly in the IndieWeb camp as one could want from the perspective of the most simplistic definition.

I would love to see a journalist (rather than an essayist) who follows social and Internet culture more closely and intelligently (Taylor Lorenz Twitter logo for example?) who wanted to cover something more positive within the interwebz than the scandal-of-the-day at Instagram, Facebook, add silo-of-your-choice-here to direct a more balanced eye on the topic of how the IndieWeb community is looking to reshape the web. I suppose the benefit and the curse of a decentralized, non-corporate web movement is that it’s got to be heavily reliant on slow, steady growth with only the best of earned media. In some sense it’s nice being the under-the-radar internet version of Coachella circa ’99-’06 rather than the 2019 Coachella where everyone only cares about Beyoncé.

We’re obviously on the right track. Thankfully companies like Micro.blog have got a good start on mainstreaming some of our ideas in an ethical way. Keep up the good fight gang!

I’m still waiting for the thousands of app developers who were burned by Twitter to discover the ideas of Micropub or Microsub and rebuild those clients with it. Or the hundreds of second tier social apps (great unitaskers like SoundCloud as an example) that either just aren’t getting as much traction with Facebook, et al. or are worried about being put out of business by them that could be more IndieWeb friendly and benefit greatly from it.