Students Don't Read Syllabi, Exhibit 58623 https://t.co/uSuc8AisnD
— Connor Ewing (@ConnorMEwing) Dec 10, 2021
Random Posts
📺 “Suits” Right-Hand Man | USA Network
Directed by Christopher Misiano. With Gabriel Macht, Rick Hoffman, Sarah Rafferty, Amanda Schull. Harvey and Zane grapple over who should lead as the firm works through its transition.
👓 Former Mozilla exec: Google has sabotaged Firefox for years | ZDNet
Former and current Mozilla engineers are reaching their boiling points.
One of the first country artists to sell out arenas, Mr. Rogers sold more than 100 million records in a career that spanned decades.
👓 When you’re on a plane for 16 hours | supine-owl.com

When you’re on a plane for 16 hours you have to find something to do.
Originally I had scanned @camilladerrico colouring book into the Pigment app, but in the end @procreate was the better app for what I wanted to do.
Also, it creates a time lapse of my progress.
I need to work on colouring skin.
👓 Combating Sexism in Tech With Honesty: The Impact of Upload’s Silence| Medium | Danny Bittman
I was the Creative Producer at Upload until most of the Upload San Francisco staff and I quit after a sexual harassment lawsuit was filed…
"It's about cutting through the apathy that a lot of people have about tech because it feels mysterious, letting people know there are decisions and changes you can make to your behavior that will feel empowering to people."
A reply to Aaron Davis about h-cards
As the IndieWeb continues onward, part of the underlying foundation is that “Each generation is expected to lower barriers for adoption successively for the next generation.” – from the Generations page on the IndieWeb Wiki.
To date, the majority of people in the movement are developers or programmers by trade, but increasingly there are people from generation 2, 3, and even many from generation 4 who are starting to take a look at what is now possible on the web that wasn’t just ten, twenty, or even thirty-six months ago. Many are not only just looking, but, like you, are spending the time, effort, and energy to implement what they’re able to and simultaneously spreading the word to larger circles.
As someone who personally identifies as being on the border of generations 1 and 2, I’m finding more and more people seeing what is happening and wanting the fruits and benefits of these tools for themselves. It’s the raw value they find in these methods and processes that spur them on even when they find themselves in deeper waters than they may have expected. Fortunately there are a large number of giving and helpful developers in the generation 1 crowd who are watching and listening to those coming after them. They’re taking up the mantle to not only improve things for just themselves, but to improve things for their fellow netizens.
All of this to say that there is currently a slow reworking and refining of material that’s on the wiki. It was only just earlier this week that a self-identifying fourth generation member asked about the word POSSE, which many would rightly consider jargon, and inquired about its relation to the more commonly known term of “cross-posting“. Surprisingly, cross-posting didn’t really exist on the wiki yet, but it was quickly added, and then later expanded to bring the ideas of POSSE, PESOS, PESETAS, and PASTA within it and then tied into the broader idea of syndication.
Your questions about h-card are very similar. Yes, the wiki page on the idea is certainly very generation 1 specific and perhaps a bit over-burdened by jargon. While I don’t think the concept of microformats is very difficult, I also realize that saying that is the result of having spent no less than ten hours reading about it, looking at examples, and implementing pieces of it by hand myself. So how can we make it simpler and easier for the next generation? The page needs a bit of overhaul and work for the next generations. Some of this is my goal in writing an IndieWeb book, though it’s geared toward an audience that is less likely to get their information from a wiki or contribute back to one in practice.
While h-card is a specific type of microformat, in practice most instances of it on the wiki are really referring to an object on a webpage that conveys identity. I’d suggest that it’s far easier to look at an h-card as an online version of a business card that contains some basic information about a person (or even a business or other entitiy) online. It has things like their name, their address, their email, their phone number, perhaps a photo, or even other very basic information about them. Each of these pieces of data has its own microformats to indicate to machines what they specifically represent. While some h-cards are human readable (like mine), some could be hidden in a web pages’ header and are meant to be machine readable.
While h-cards can convey data in other use cases, in most IndieWeb instances they’re conveying information about either the owner of a website (and thus found on the site’s homepage), or they’re found on individual posts as indicators of the authorship of the content on that page.
Depending on how they’re nested into a web page, they can have different meanings. As possibly the most common example on a traditional WordPress article post, the main h-card for the page would indicate information about the author of that post. However, these article posts will often contain comments sections at the bottom and each individual comment will have it’s own separate author and author information and thus its own h-card. Because these comments are properly nested, they only indicate the authorship of each particular sub-section of a page.
For most IndieWeb use, having an h-card on your homepage tells parsers (code run by other computers) who you are and some basic information about yourself. Generally this extends to your name, your avatar, and your homepage URL.
In your case Aaron, when you’ve generally been sending me webmentions from your primary website (readwriterespond.com), I’ve often been missing your avatar in your comments because you didn’t have an h-card available on them. (I typically remedy this on my own website by hand because I’ve been able to guess the email address/”key” you use for your Gravatar account which then automatically fills in that missing data for me on those comments.)
In the particular case here, for your reply you’ll notice in looking at the source for the page with your response that your ZenPress theme smartly and kindly includes an h-card for you automatically. Here’s what it looks like in code:
<div class="entry-meta">
<address class="byline"><span class="author p-author vcard hcard h-card" itemprop="author" itemscope itemtype="http://schema.org/Person"><img alt='' src='https://secure.gravatar.com/avatar/d00e7ca24ca1b9c853da43af229c0e0e?s=40&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/d00e7ca24ca1b9c853da43af229c0e0e?s=80&d=mm&r=g 2x' class='avatar avatar-40 photo u-photo' height='40' width='40' itemprop="image"/> <a class="url uid u-url u-uid fn p-name" href="https://collect.readwriterespond.com/author/admin/" title="View all posts by Aaron Davis" rel="author" itemprop="url"><span itemprop="name">Aaron Davis</span></a></span></address> <span class="sep"> | </span> <a href="https://collect.readwriterespond.com/posts/replies/a-further-reply-to-chris-aldrich-in-regards-to-the-indieweb/" title="10:06 pm" rel="bookmark" class="url u-url"><time class="entry-date updated published dt-updated dt-published" datetime="2017-11-22T22:06:22+00:00" itemprop="dateModified datePublished">November 22, 2017</time></a>
</div>
You’ll see that it includes (and I’ve highlighted them in red with the relevant microformats classes) your name, your website URL, and it also pulls in your Gravatar avatar using the WordPress back end, since you’ve provided your WordPress installation this data. This is the benefit of a smartly built and designed theme! Thus it would seem that for your “Collect” site, you needn’t worry about an h-card because your theme is already handling the details for you to a great extent. Ideally all themes would do this using standard data fields within a WordPress install. But until then…
Anticipating your next question, what about readwriterespond.com? There, your theme isn’t doing this work for you, so you’ll need to do it yourself. The easiest way to pull this off quickly is to use the IndieWeb Plugin for WordPress. The plugin adds a bunch of additional fields to the page under the “Users” menu located at /wp-admin/profile.php within your admin UI. By filling them in you’re providing the details you’d usually add to an h-card or for rel=”me” uses. The IndieWeb plugin then also makes an h-card widget available at /wp-admin/widgets.php. You can drag and drop it to any of the available pieces of your theme which often include sidebars, footers, and sometimes headers.
The widget does a relatively good job, but some will want more control over what and how things are presented and designed. For those, another option is to create your own HTML-based widget and put the code/data for your h-card into it. This is essentially what you’ve seen on my homepage at boffosocko.com. While mine is entirely handcoded, it may be easier for most to use the microformats website which has a fill-in-the-blanks h-card generator that will allow one to input all of the data they’d like to display and it will automatically mark all of it up properly so that one can cut and paste the semantic HTML directly into a web page or a widget.
There are a bevy of other options for dropping an h-card into your site which will work. You mentioned doing something via a child-theme and that’s an option as well as any one of dozens of plugins that will allow you to drop arbitrary code into your header and/or footer. (Incidentally a child-theme is an excellent way of doing small customizations of your theme without preventing future (security) updates of your theme from overwriting them. If you’re not using one, I recommend following one of the tutorials on the wiki to create one. I would hope it shouldn’t take you more than an hour to implement based on what I know of your skill level.)
As I think you’ve mentioned, there are a few simple validators that will accept a URL which they can parse to show the h-card data they find. These include:
- indiewebify.me h-card parser that checks for the bare minimum for IndieWeb use
- pin13.net, an mf2 parser which outputs raw parsed JSON
People can use these to see if their h-cards are working as they generally expect them to.
Naturally, there are some additional subtleties in h-cards which are noted on both the IndieWeb wiki and the microformats wiki pages, but most of these aren’t of huge consequence to average users or are experimental features which aren’t widely distributed or supported. If it makes you feel better, I’ll also note that it’s not always the case that experienced theme builders or even WordPress core maintainers will properly use microformats as there are frequently cases where they’re wildly misused, abused, or mistreated in the extreme. We can only do our best I suppose…
Hopefully some of this helps put things into perspective. Now that you’re able to sign into the IndieWeb wiki, I invite you to add or modify parts you feel could be clearer or improved as you use and implement them yourself. Surely doing so will help make things easier for those that follow us both.
The Centers for Disease Control and Prevention are recommending that men shave their beards if they're going to wear masks to guard against coronavirus.
🎧 This Week in Google 444 The Fritter Critter | TWiT.TV
Google brings AMP to email, smart replies to messages, ad blocking to Chrome, and warnings to insecure websites. Cryptocurrency mining comes to Salon and 4200 other sites. Pixel Visual Core comes to Facebook and Snapchat, but not Google Camera. Logan Paul off YouTube - for now. Facebook loses the youngs. • Kevin's Stuff: Beaker Browser and Fritter • Jeff's Number: 280 character wedding vows • Stacey's Thing: Mango Mirror
https://youtu.be/FZYvZBLsd1o
👓 Top Cancer Researcher Fails to Disclose Corporate Financial Ties in Major Research Journals | New York Times
A senior official at Memorial Sloan Kettering Cancer Center has received millions of dollars in payments from companies that are involved in medical research.
I’m kind of shocked that major publishers like Elsevier are continually saying they add so much value to the chain of publishing they do, yet somehow, in all the major profits they (and others) are making that they don’t do these sorts of checks as a matter of course.
Book Club on Cataloging the World and Index, A History of the
- Wright, Alex. Cataloging the World: Paul Otlet and the Birth of the Information Age. Oxford University Press, 2014.
- Duncan, Dennis. Index, A History of the: A Bookish Adventure from Medieval Manuscripts to the Digital Age. 1st Edition, W.W. Norton & Company, Inc., 2022.
This iteration of the book club might be fruitful for those interested in note taking, commonplacing, or zettelkasting. If you’re building or designing a note taking application or attempting to create one for yourself using either paper (notebooks, index cards) or digital tools like Obsidian, Logseq, Notion, Bear, TinderBox etc. having some background on the history and use of these sorts of tools for thought may give you some insight about how to best organize a simple, but sustainable digital practice for yourself.
The first session will be on Saturday, February 17 24, 2024 and recur weekly from 8:00 AM – 10:00 Pacific. Our meetings are usually very welcoming and casual conversations over Zoom with the optional beverage of your choice. Most attendees are inveterate note takers, so there’s sure to be discussion of application of the ideas to current practices.
To join and get access to the Zoom links and the shared Obsidian vault we use for notes and community communication, ping Dan Allosso with your email address.
Happy reading!