55°F

Aaron Parecki

  • Articles
  • Notes
  • Photos
  • Sending your First Webmention from Scratch

    June 30, 2018

    Webmention is one of the fundamental indieweb building blocks. It enables rich interactions between websites, like posting a comment or favorite on one site from another site. This post will walk you through the simplest way to get started sending webmentions to other sites so that you can use your own site to join the conversations happening on the Indie Web.

    So what do you need to walk through this tutorial? We'll use static files and simple command line tools so that you can easily adapt this to any environment or programming language later.

    Get started

    First, we'll create a new HTML file that we'll use to contain the comment to post. At the very minimum, that file will need to contain a link to the post we're replying to.

     <!doctype html> <meta charset="utf-8"> <title>Hello World</title> <body>   <p>in reply to: <a href="https://aaronparecki.com/2018/06/30/11/your-first-webmention">@aaronpk</a></p>   <p>Trying out this guide to sending webmentions</p> </body> 

    Go ahead and copy that HTML and save it into a new file on your web server, for example: https://aaronpk.com/reply.html. Take your new post's URL and paste it into the webmention form at the bottom of this post. After a few seconds, reload this page and you should see your post show up under "Other Mentions"!

    First Reply

    Making it look better

    That's a great start! But you might be wondering where your comment text is. To make your comment show up better on other peoples' websites, you'll need to add a little bit of HTML markup to tell the site where your comment text is and to add your name and photo.

    Let's take the HTML from before and add a couple pieces.

     <!doctype html> <meta charset="utf-8"> <title>Hello World</title> <body>   <div class="h-entry">     <p>in reply to: <a class="u-in-reply-to" href="https://aaronparecki.com/2018/06/30/11/your-first-webmention">@aaronpk</a></p>     <p class="e-content">Trying out this guide to sending webmentions</p>   </div> </body> 

    Note the parts added in green. These are Microformats! This tells the site that's receiving your webmention where to find specific parts of your post. We first wrap the whole post in a <div class="h-entry"> to indicate that this is a post. Then we add a class to the <a> tag of the post we're replying to, as well as a class to the element that contains our reply text.

    Now, take your URL and paste it into the webmention form below again. After a few seconds, reload the page and your reply should look more complete here!

    Second Reply

    Now we see the text of the reply, and also notice that it moved out of the "Other Mentions" section and shows up along with the rest of the replies!

    Of course this web page still looks pretty plain on your own website, but that's up to you to make it look however you like for visitors visiting your website! As long as you leave the h-entry and other Microformats in your post, you can add additional markup and style the page however you like!

    Adding your name and photo

    Let's make the comment appear with your name and photo now! To do this, you'll need to add a little section to your web page that indicates who wrote the post.

    In Microformats, the author of a post is represented as an h-cards. An h-card is another type of object like h-entry, but is intended to represent people or places instead of posts. Below is a simple h-card that we'll add to the post.

     <div class="h-card">   <img src="https://aaronpk.com/images/aaronpk.jpg" class="u-photo" width="40">   <a href="https://aaronpk.com/" class="u-url p-name">Aaron Parecki</a> </div> 

    When we add this h-card into the post we've written, we need to tell it that this h-card is the author of the post. To do that, add the class u-author before the h-card class like the example below.

     <!doctype html> <meta charset="utf-8"> <title>Hello World</title> <body>   <div class="h-entry">     <div class="u-author h-card">       <img src="https://aaronpk.com/images/aaronpk.jpg" class="u-photo" width="40">       <a href="https://aaronpk.com/" class="u-url p-name">Aaron Parecki</a>     </div>     <p>in reply to: <a class="u-in-reply-to" href="https://aaronparecki.com/2018/06/30/11/your-first-webmention">@aaronpk</a></p>     <p class="e-content">Trying out this guide to sending webmentions</p>   </div> </body> 

    Now when you re-send the webmention, the receiver will find your author name, photo and URL and show it in the comment!

    Second Reply

    Great job! If you've successfully gotten this far, you're now able to comment on things and even RSVP to events using your own website!

    One more detail that you'll want to include on your posts is the date that your post was written. This will ensure the receiving website shows the correct timestamp of your post. If you eventually incorporate this into a static site generator or CMS where you show a list of your replies all on one page, then you'll also want to add a permalink to the individual reply in this post. Typically an easy way to solve both is with the markup below.

     <a href="https://aaronpk.com/reply.html" class="u-url">   <time class="dt-published" datetime="2018-06-30T17:15:00-0700">July 30, 2018</time> </a> 

    We can add that to the post below the content.

     <!doctype html> <meta charset="utf-8"> <title>Hello World</title> <body>   <div class="h-entry">     <div class="u-author h-card">       <img src="https://aaronpk.com/images/aaronpk.jpg" class="u-photo" width="40">       <a href="https://aaronpk.com/" class="u-url p-name">Aaron Parecki</a>     </div>     <p>in reply to: <a class="u-in-reply-to" href="https://aaronparecki.com/2018/06/30/11/your-first-webmention">@aaronpk</a></p>     <p class="e-content">Trying out this guide to sending webmentions</p>     <p>       <a href="https://aaronpk.com/reply.html" class="u-url">         <time class="dt-published" datetime="2018-06-30T17:15:00-0700">July 30, 2018</time>       </a>     </p>   </div> </body> 

    Automatically sending webmentions

    The last piece to the puzzle is having your website send webmentions automatically when a new post is created.

    This part will require writing some code in your particular language of choice. You'll start by making an HTTP request to get the contents of the page you're replying to, then looking in the response for the webmention endpoint.

    We can simulate this on the command line using curl and grep.

     curl -si https://aaronparecki.com/2018/06/30/11/your-first-webmention | grep rel=\"webmention\" 

    The response will include any HTTP Link headers or HTML <link> tags that have a rel value of "webmention".

     Link: <https://webmention.io/aaronpk/webmention>; rel="webmention" <link rel="webmention" href="https://webmention.io/aaronpk/webmention"> 

    If you get more than one, the first one wins. You'll need to extract the URL from the tag and then send the webmention there.

    Sending a webmention is just a simple POST request to the webmention endpoint with two URLs: the URL of your post (source) and the URL of the post you're replying to (target).

     curl -si https://webmention.io/aaronpk/webmention \   -d source=https://aaronpk.com/reply.html \   -d target=https://aaronparecki.com/2018/06/30/11/your-first-webmention 

    The only significant part of the response is the HTTP response code. Any 2xx response code is considered a success. You'll most often receive either a 202 which indicates that the webmention processing is happening asynchronously, or if the receiver processes webmentions synchronously and everything worked, you'll get a 201 or 200.

    In practice, you'll probably use a library for discovering the endpoint and sending the webmention, so here are a few pointers to start you out in a variety of languages.

    • Ruby
    • PHP
    • Node
    • Python
    • Go
    • Elixir
    • ...more on indieweb.org

    Hopefully this guide was helpful to get you going in the right direction!

    If you want to dive into the weeds, check out the Webmention spec as well as more details on reply posts.

    When you want to put your automatic webmention sending implementation to the test, try sending webmentions to all of the links on the test suite, webmention.rocks!

    If you have any questions or run into any issues, feel free to ping me or anyone else in the IndieWeb chat!

    Sat, Jun 30, 2018 8:35pm -07:00 #webmention #indieweb #tutorial #microformats
    34 likes 4 reposts 10 bookmarks 140 replies 113 mentions 3 RSVPs
    • John Smith
    • 边宇琨
    • Bian Yukun
    • jarenado
    • Jake
    • Peter Smith
    • Peter Goes
    • Kasper Zutterman
    • Henrique Dias
    • Geffrey van der Bos
    • Jonathan Jenne
    • Noorul
    • Noor Lutfiyah Afifah
    • David Pflug
    • David Pflug
    • Robert van Bregt
    • Robert van Bregt
    • gRegor Morrill
    • Ryan Barrett
    • Marty McGuire
    • Marty McGuire
    • Eli Mellen
    • Sebastiaan Andeweg
    • Peter Stuifzand
    • Malcolm Blaney
    • Kartik Prabhu
    • Tom
    • https://jgregorymcverry.com
    • alvar
    • Jason Lengstorf ⚡️
    • Karey Higuera 🦈
    • Niko | @h4kor@chaos.social
    • Caleb (he/him) 🔜 SF 4 #JamstackConf
    • Eddie
    • Caleb (he/him) 🔜 SF 4 #JamstackConf
    • Noorul
    • Robert van Bregt
    • NinjaTrappeur
    • Greg Sarjeant
    • John Smith
    • Peter Goes
    • Vincent Pickering
    • Serena
    • Jeremy Keith
    • Peter Stuifzand
    • Kicks Condor
    • Kicks Condor
    • this h-card is hidden via css and only here for styling of my webmention a person with short brown hair, glasses and white skin is wearing a blue denim jacket with pin badges and an orange t-shirt

    RSVPs

    • Chris Aldrich boffosocko.com
      Domain of One’s Own Meetup (October 2020)
      I’ll be hosting a Domain of One’s Own meetup on Tuesday, October 20, 2020 at at 9:00 AM Pacific / 12:00 PM Eastern / 6:00 PM CEST. Everyone who is interested in the topic is welcome to attend.

      We expect there will be students, teachers, designers, web developers, technologists, and people of all ages and ranges of ability from those just starting out with a domain to those running DoOO programs at colleges or even people running their own hosting companies.

      We’ll meet via Zoom for audio/video and will use an Etherpad for real-time chat and note taking for the event. Feel free to add your ideas and questions to the etherpad in advance if you like.

      We will

      • Have discussions about A Domain of One’s Own and the independent web;
      • Get to know others in the space;
      • Find potential collaborators for domains-related projects you’re working on;
      • Explore new and interesting ideas about what one can do or accomplish with a personal domain;
      • Create or update your domain
      • Ask colleagues for help/advice on problems or issues you’re having with your domain;

      Agenda

      • Welcome/Brief introductions
      • Main topic: To be determined. (Have a topic idea for discussion at the next session? Drop us a line by adding a comment to this post or one of the syndicated copies, ping me in chat, or track me down on your platform and means of communication of choice.)
      • Group photo for those who wish to participate
      • Demos, questions, problems:
        Ideally everyone should bring a topic, short demonstration of something they’ve built or gotten working on their website, a question, or problem to discuss with the group. Depending on time and interest, we can try to spend 5-10 minutes discussing and providing feedback on each of these. If questions go over this time limitation, we can extend the conversation in smaller groups as necessary after the meetup.

      RSVP

      To RSVP to the meetup, please (optionally) do one of the following:

      • Make a comment to indicate your attendance at the original event post;
      • Tweet your RSVP reply to this Tweet;
      • Comment your RSVP on the Reclaim Hosting Community post about the event;
      • RSVP to the event on events.indieweb.org
      • Extra bonus points if you can go full Domain of One’s Own and Publish an indie RSVP on your own website/domain and send a webmention to this post.

      Invite your friends, colleagues, and students

      Know someone who would be interested in joining? Please forward this event, or one of the syndicated copies to them on your platform or modality of choice.

      Featured image: Hard Drive Repair flickr photo by wwarby shared under a Creative Commons (BY) license

      Fri, Oct 2, 2020 1:50pm -07:00
    • Chris Aldrich boffosocko.com
      Domain of One’s Own Meetup (September 2020)
      I’ll be hosting a Domain of One’s Own meetup on Tuesday, September 22, 2020 at at 9:00 AM Pacific / 12:00 PM Eastern / 6:00 PM CEST. Everyone who is interested in the topic is welcome to attend.

      We expect there will be students, teachers, designers, web developers, technologists, and people of all ages and ranges of ability from those just starting out with a domain to those running DoOO programs at colleges or even people running their own hosting companies.

      We’ll meet via Zoom for audio/video and will use an Etherpad for real-time chat and note taking for the event.

      We will

      • Have discussions about A Domain of One’s Own and the independent web;
      • Get to know others in the space;
      • Find potential collaborators for domains-related projects you’re working on;
      • Explore new and interesting ideas about what one can do or accomplish with a personal domain;
      • Create or update your domain
      • Ask colleagues for help/advice on problems or issues you’re having with your domain;

      Agenda

      • Welcome/Brief introductions
      • Main topic: This summer Reclaim Hosting launched Reclaim Cloud, but for many new and established Domains users, the “cloud” has been a nebulous buzzword with unclear meanings. In this meeting we’ll talk about what it is and why it might be important for gaining greater control over your personal cyberinfrastructure.
      • Group photo for those who wish to participate
      • Demos, questions, problems:
        Ideally everyone should bring a topic, short demonstration of something they’ve built or gotten working on their website, a question, or problem to discuss with the group. Depending on time and interest, we can try to spend 5-10 minutes discussing and providing feedback on each of these. If questions go over this time limitation, we can extend the conversation in smaller groups as necessary after the meetup.

      RSVP

      To RSVP to the meetup, please (optionally) do one of the following:

      • Make a comment to indicate your attendance at the original event post;
      • Tweet your RSVP reply to this Tweet;
      • Comment your RSVP on the Reclaim Hosting Community post about the event;
      • RSVP to the event on events.indieweb.org
      • Extra bonus points if you can go full Domain of One’s Own and Publish an indie RSVP on your own website/domain and send a webmention to this post.

      Future meetups

      While the time frame for this meetup may work best for some in the Americas, everyone with interest is most welcome. If there are others in Europe, Asia, Africa, Australia, or other locales who are interested, do let us know what dates/times might work for you in the future and we can try to organize a time to maximize some attendance there. I’m happy to help anyone who’d like to take the leadership of other time zones or locales to leverage some of the resources of the IndieWeb community to assist in starting future meetings to cover other areas of the world.

      Have a topic idea for discussion at the next session? Drop us a line by adding a comment to this post or one of the syndicated copies, ping me in chat, or track me down on your platform and means of communication of choice.

      Invite your friends, colleagues, and students

      Know someone who would be interested in joining? Please forward this event, or one of the syndicated copies to them on your platform or modality of choice.

      Featured image: Hard Drive Repair flickr photo by wwarby shared under a Creative Commons (BY) license

      Fri, Sep 4, 2020 10:58am -07:00
    • Christian Olivier forevercurious.be
      Sat, Dec 11, 2021 9:47am -07:00

    Replies

    • Stephan Hagemann stephanhagemann.com

      Trying out these guides to sending webmentions...

      Some of the pages I am on right now:

      • Sending your First Webmention from Scratch
      • IndieWebify.Me
      • IndieWeb
      • IndieWeb - reply
      Tue, Apr 1, 2025 5:00pm -07:00
    • Stephan Hagemann web.brid.gy/r/stephanhagemann.com

      Trying out these guides to sending webmentions...

      Some of the pages I am on right now:

      • Sending your First Webmention from Scratch
      • IndieWebify.Me
      • IndieWeb
      • IndieWeb - reply
      Sending your First Webmention from Scratch
      Wed, Apr 2, 2025 12:00am +00:00 (via brid.gy)
    • Greg Sarjeant subcultureofone.org

      Thanks for this guide!

      Sat, Feb 15, 2025 10:00pm -05:00
    • Adam Chamberlin adamchamberlin.info
      Reply to James
      Fri, Dec 20, 2024 5:00pm -07:00
    • Candice White t.inggrismantap.my.id/@ugu?candy
      @aaron Thanks for creating this webmentions technology. I think this is the lightweight and no bloated version of Activitypub. I heard that in order to install a mastodon instance, you have to use a lot of processing power which is not feasible for average joe. But with webmentions you can make your own social media and use federation like activitypub that does not put strains on your server memory. Cheers!
      p.jpg
      Sun, Nov 24, 2024 11:01pm -07:00
    • Anders Pitman apitman.com

      This post is for testing webmention support. See here

      Test 1 Test 2 Test 3 Test 4 Test 5 Test 6 Test 7 Test 8 Test 9 Test 10 Test 11 Test 12 Test 13 Test 14 Test 15 Test 16 Test 17 Test 18 Test 19 Test 20 Test 21 Test 22 Test 23

      Fri, Nov 1, 2024 2:27pm -07:00
    • MimicsChest mimicschest.info
      Hey, great guide! This was really helpful!
      Fri, Sep 27, 2024 11:52pm -07:00
    • Cidney Hamilton cidney.org

      Trying out webmentions once again.

      Wed, Feb 14, 2024 4:38pm +00:00
    • Rongbin FAN fanrongbin.com
      Trying out this guide to sending webmentions.
      Sun, Jan 7, 2024 11:12am +08:00
    • jarenado mastodon.social/users/vidalstat

      Trying out this guide to sending webmentions (https://josearenado.com/blog/mention/)

      Fri, May 12, 2023 8:56pm -07:00
    • puxped puxped.ddns.net
      Great blog post, I appreciate it!
      Fri, Apr 7, 2023 4:15pm +02:00
    • puxped puxped.ddns.net
      trying this out
      Fri, Apr 7, 2023 4:15pm +02:00
    • Pablo Morales lifeofpablo.com
      Thank you for all the great info out there! This is my first webmention! Woo!
      Sat, Mar 18, 2023 5:15pm -07:00 (via lifeofpablo.com)
    • Pablo Morales lifeofpablo.com
      Thank you for all the great info out there! This is my first webmention! Woo!
      Sat, Mar 18, 2023 5:15pm -07:00
    • silbernagel.dev
      Sending my first webmentions
      Fri, Jan 20, 2023 5:00pm -07:00
    • AxiomEval www.axiomeval.me

      Trying out my first webmention based on this helpful guide - thanks for putting it together and letting me test :-)

      Sun, Jan 15, 2023 4:45pm -07:00
    • Leon Paternoster
      Sending your First Webmention from Scratch
      Fri, Jan 13, 2023 5:00pm -07:00
    • Matt Stine mattstine.com

      Trying out this guide to sending webmentions.

      Sun, Nov 27, 2022 5:00pm -07:00
    • Aaron Parecki @ IETF115 London twitter.com/aaronpk
      Yeah, frankly I don't think an alternative would end up being significantly simpler anyway once you start accounting for the things that are already established in the current ecosystem. There are tools and services now, and libraries, but we always need more!
      Sun, Nov 6, 2022 7:40pm +00:00 (via brid.gy)
    • Jason Lengstorf ⚡️ twitter.com/jlengstorf
      that’s great news! But, looking at this, I guess I mean: if setup involves understanding what an API call is, it’s not accessible to a huge swath of site owners
      Sun, Nov 6, 2022 6:04pm +00:00 (via brid.gy)
    • Ryan Barrett twitter.com/schnarfed
      The bar may have been higher years ago, but it's pretty low these days! Mature plugins for most popular CMSes, webmention.app, webmention.herokuapp.com, webmention.io, etc.
      Sun, Nov 6, 2022 6:00pm +00:00 (via brid.gy)
    • Jason Lengstorf ⚡️ twitter.com/jlengstorf
      maybe an investment* weird autocorrect
      Sun, Nov 6, 2022 5:54pm +00:00 (via brid.gy)
    • Karey Higuera 🦈 twitter.com/kbravh
      Came here to mention Webmentions! Glad to see a building interest.
      Sun, Nov 6, 2022 5:28pm +00:00 (via brid.gy)
    • Aaron Parecki aaronparecki.com
      This is basically what we're doing with Webmentions. It's an old post, but surprisingly relevant all of a sudden: https://aaronparecki.com/2018/06/30/11/your-first-webmention
      Sun, Nov 6, 2022 5:04pm +00:00
    • Loura heyloura.com
      Loura
      Mon, Oct 3, 2022 7:37am -07:00
    • petermolnar twitter.com/petermolnar
      Also aaronparecki.com/2018/06/30/11/… for a bit more technical approach.
      Tue, Aug 9, 2022 11:08am +00:00 (via brid.gy)
    • brandontreb brandon_swoop.ngrok.io

      Sick post bro

      Mon, Jul 18, 2022 2:15pm -07:00
    • Alex Dalton alexdalt.co.uk

      In reply to @aaronpk: Trying out this guide to sending webmentions

      Sun, Jul 10, 2022 2:10pm +01:00
    • Dade Murphey 57ae0da9fefd.ngrok.io

      Thanks Aaron! You are an inspiration to all of us in the Indie Web Space!

      Such a great tutorial!!

      Wed, Jul 6, 2022 5:00pm -07:00
    • Sam x Smith samxsmith.com

      # My first web mention

      Diving into the IndieWeb world, with help from some great resources. Used Aaron’s tutorial to create this, my first Webmention: a reply thanking him for his post.

      Sun, Jun 12, 2022 6:00pm +00:00
    • YimingWu is painting? twitter.com/ChengduLittleA
      LOL yeah I mean it's not hard technically, but if say I want to comment I need to send something on my website and send a webmention on to yours, it's not exactly noob-friendly XD I want something that's even easier to use so that I could push those things to artists and so on
      Wed, May 4, 2022 7:06am +00:00 (via brid.gy)
    • Chris Aldrich stream.boffosocko.com/profile/chrisaldrich
      @ChengduLittleA You're not doing them all manually like this are you? https://aaronparecki.com/2018/06/30/11/your-first-webmention 😹
      Wed, May 4, 2022 6:23am +00:00
    • Marguerite Efdé mastodon.nl/@Marguerite

      @frankmeeuwsen dank je wel, zal ik met plezier doornemen!

      Wed, Apr 27, 2022 7:50am -07:00 (via brid.gy)
    • monkeyhill.llc

      Four years later, I still reference @aaronpk when I can’t remember the syntax for a manual webmention.

      Thu, Mar 24, 2022 8:52am -04:00
    • Nicolas Hoizey twitter.com/nhoizey
      Un souci des Microformats / micro data effectivement. Mais c'est tellement pratique de ne pas dupliquer la plupart des informations entre éléments visibles et éléments requêtables, comme c'est malheureusement le cas avec JSON-LD.
      Mon, Feb 14, 2022 1:41pm +00:00 (via brid.gy)
    • Franck Paul twitter.com/franckpaul
      certes, mais ça implique de rajouter pas mal de choses dans le corps de la page ; dommage qu'on puisse pas le coller dans le <head> parce que des class="h-card", bof bof, spa des vrais classes CSS ça
      Mon, Feb 14, 2022 1:37pm +00:00 (via brid.gy)
    • El Rafa el-rafa.at
      Trying out this guide to sending webmentions
      Thu, Feb 10, 2022 12:07am +01:00
    • Peter Smith petersmith.org

      This is a really helpful page. It allows you to try out webmentions (especially replies).

      This is a test page. So it doesn't really count.

      Mon, Jan 24, 2022 5:01pm +13:00
    • sod-test.micro.blog

      This is an example reply to @aaronpk. Thanks to the class u-in-reply-to, Micro.blog should send a webmention automaticly.

      Fri, Jan 21, 2022 8:31pm +01:00
    • Inhji 💉💉💉 inhji.de
      ⚠️ Webmention Test
      Wed, Jan 5, 2022 1:46am -07:00
    • David Mead davidjohnmead.com
      webmention test
      Thu, Dec 23, 2021 10:00pm -07:00
    • Author: Peter Smith petersmith.org
      Yet another "Hello world!"
      Thu, Oct 21, 2021 7:06pm +13:00
    • username enterize.com
      ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
      Wed, Jun 30, 2021 5:15pm -07:00 (via store.enterize.com)
    • James Evans mnml.blog

      I suck at life, but I think I fixed my css issues.

      Replying to: @Aaron Parecki
      Fri, Jun 25, 2021 7:36pm -05:00
    • James Evans mnml.blog

      4th times a charm?

      Replying to: Aaron Parecki
      Fri, Jun 25, 2021 6:50pm -05:00
    • mnml.blog

      Let's do this with style.

      Replying to: Aaron Parecki
      Fri, Jun 25, 2021 6:00pm -05:00
    • mnml.blog
      headshot-grey.pngJames Evans - mnml.blog Reply To: Aaron Parecki

      Let's do this with style.

      Fri, Jun 25, 2021 3:53pm -05:00
    • mnml.blog

      in reply to: @aaronpk

      Something was formatted wrong. Trying again.

      Fri, Jun 25, 2021 2:23pm -05:00
    • Peter Goes www.petergoes.nl

      Yeay, I got it working!

      Thu, May 20, 2021 4:30am -07:00
    • Neel Yadav neelyadav.com
      My second webmention (now w/ more style!)
      Thu, May 13, 2021 3:53pm -05:00
    • Neel Yadav neelyadav.com
      My first handmade webmention
      Wed, Apr 21, 2021 2:50am -05:00
    • Stephen James strandlines.blog
      Trying out this guide to sending webmentions
      Sat, Mar 6, 2021 10:15am -07:00
    • Mike Myat Min Han
      Sending another webmention
      Tue, Oct 27, 2020 1:57pm -07:00
    • Mike Myat Min Han
      Sending another webmention
      Tue, Oct 27, 2020 1:26pm -07:00 (via 83682d66a64f.ngrok.io)
    • Alessio Caiazza abisso.org
      webmentions rocks!?
      Fri, Oct 16, 2020 9:41am -07:00
    • abisso.org

      Trying out this guide to sending webmentions 🕸, will it work❓

      Fri, Oct 16, 2020 4:41pm +02:00
    • Дарья Морено-Гоголева iwanttobealight.ru
      Trying out this guide to sending webmentions. Thank you, Aaron =^..^=
      Sat, Sep 5, 2020 10:29am -07:00 (via iwanttobealight.ru)
    • J K 🇯🇵🏴󠁧󠁢󠁳󠁣󠁴󠁿 jk.nipponalba.scot
      Automation test
      Thu, Jun 18, 2020 8:55am -07:00
    • Jon Kelbie󠁧󠁢󠁳󠁣󠁴󠁿 jon.kelbie.scot
      Automation test
      Thu, Jun 18, 2020 8:55am -07:00
    • J K 🇯🇵🏴󠁧󠁢󠁳󠁣󠁴󠁿 jk.nipponalba.scot
      Testing automated webmention sending using beehive & telegraph.
      Thu, Jun 18, 2020 8:05am -07:00
    • Jon Kelbie󠁧󠁢󠁳󠁣󠁴󠁿 jon.kelbie.scot
      Testing automated webmention sending using beehive & telegraph.
      Thu, Jun 18, 2020 8:05am -07:00
    • J K 🇯🇵🏴󠁧󠁢󠁳󠁣󠁴󠁿 jk.nipponalba.scot
      Testing delivery via webmention.app again
      Thu, Jun 18, 2020 6:18am -07:00
    • Jon Kelbie󠁧󠁢󠁳󠁣󠁴󠁿 jon.kelbie.scot
      Testing delivery via webmention.app again
      Thu, Jun 18, 2020 6:18am -07:00
    • J K 🇯🇵🏴󠁧󠁢󠁳󠁣󠁴󠁿 jk.nipponalba.scot
      webmention

      Replied to someone's post

      Testing sending webmentions via webmention.app


      18/06/2020 11:01 GMT
      Thu, Jun 18, 2020 4:01am -07:00
    • Jon Kelbie󠁧󠁢󠁳󠁣󠁴󠁿 jon.kelbie.scot
      Testing sending webmentions via webmention.app
      Thu, Jun 18, 2020 4:01am -07:00
    • Paulo Pinto w3bk3rn3l.xyz
      Trying out this guide to sending webmentions
      Sun, May 17, 2020 7:30pm +01:00
    • Mani Tajaddini my-portfolio-app.now.sh

      Testing here the automatic webmention send number 01

      Mon, May 11, 2020 5:00pm -07:00
    • Jeremy Friesen takeonrules.com
      Adding Webmention Features
      Sat, May 2, 2020 3:14pm -04:00
    • Mani Tajaddini my-portfolio-app.now.sh

      Testing rich text will be next

      Thu, Apr 30, 2020 5:00pm -07:00
    • Chris Aldrich boffosocko.com

      Your screenshot provides the answer directly! There’s no link (URL) to my site or one of my posts you’re responding to in your post. By the way, since you’ve got the Webmention plugin installed, it should find the URL and send the webmention for you without your needing to do so manually.

      My post on Webmentions gives a good overview of the process. Aaron Parecki also has a good primer on some of the basics for creating posts manually as well. If you’re a bookmarklet fan, you can use Ryan Barrett’s IndieWeb Press This tools, which are also built into the IndieWeb plugin.

      Syndicated copies:

      • Twitter icon
      Thu, Mar 26, 2020 9:36pm -07:00
    • Henrique Dias hacdias.com
      Not my first webmention, but trying them out to make sure they work!
      Sat, Dec 28, 2019 5:00pm -07:00
    • Henrique Dias hacdias.com
      Trying to make my first webmention with a reply because favorites already work!
      Fri, Dec 27, 2019 5:00pm -07:00
    • Michael Spellacy (Spell) michaelspellacy.com

      This is just a test post in response to a webmentions article that I just read. Really cool to be able to communicate with other websites in this manner. So much more to learn!

      Wed, Oct 30, 2019 8:38am -04:00
    • Paulo Pinto paulopinto.xyz
      Paulo Pinto is trying out this guide to sending webmentions
      Mon, Sep 30, 2019 8:15pm +01:00 (via paulopinto.xyz)
    • Paulo Pinto paulopinto.xyz
      Paulo Pinto is trying out this guide to sending webmentions
      Mon, Sep 30, 2019 8:15pm +01:00
    • 0xadada.pub

      It would be neat if you could include syntax highlighted code snippets on other peoples sites.

      Fri, Sep 13, 2019 11:07pm +00:00
    • 0xadada.pub
      Reply
      Mon, Sep 9, 2019 10:14pm +00:00
    • 0xadada.pub
      Reply
      Mon, Sep 9, 2019 10:14pm +00:00
    • Jakob L. Kreuze jakob.space
      Alright, giving this another shot!
      Fri, Jul 19, 2019 8:17pm +00:00
    • Aaron Parecki aaronparecki.com
      That's exactly what it did! Not for magic SEO juice, but for something much more interesting!

      https://aaronparecki.com/2018/06/30/11/your-first-webmention
      Fri, Jun 21, 2019 12:34pm +01:00
    • Geffrey van der Bos www.geffrey.io

      Hi all! I can't get the author and post content to display. Must be doing something wrong. So here is a reply to Aaron his post. Just to check it.

      Sun, May 19, 2019 5:00pm -07:00
    • Jakob L. Kreuze jakob.space
      Hoo, this comments section is a bit of a mess. Anyway, I'm just testing out Webmentions like everyone else. Don't mind me...
      Sat, May 11, 2019 5:07pm -04:00
    • Inhji tunnel.inhji.de

      Test sending webmention

      Wed, May 8, 2019 4:32am -07:00
    • Lee Kierstead thepaperlion.ca
      Thanks for this, this is pretty rad.
      Mon, May 6, 2019 12:33pm -06:00
    • Chris Aldrich boffosocko.com/author/chrisaldrich
      Ideas for IndieWeb-ifying Hypothes.is
      Mon, Apr 8, 2019 5:03pm -07:00
    • Noorul s.noorul.xyz/users/noorul
      @aaronpk test from mastodon
      Sun, Jan 20, 2019 4:04pm +00:00
    • Noor Lutfiyah Afifah noorlutfiyahafifah.blogspot.com
      When I like the post "Sending your First Webmention from Scratch" from the aaronparecki.com website, can I retrieve JSON data from my blog noorlutfiyahafifah.blogspot.com to get a post that I like. So, with that, I will make the "My Favorites" tag in my blog with that data.
      Thu, Jan 10, 2019 4:30am -08:00
    • David Pflug pflug.email
      Thanks for all the work you've done on this! 😀
      Wed, Nov 28, 2018 3:22pm -07:00
    • Jonathan Jenne inhji.de

      Thanks Aaron, this post has been immensely helpful for setting up webmentions on my site!

      Sun, Nov 18, 2018 6:50am -07:00
    • voss blog.voss.co/profile/voss
      Looking forward to reading and trying this one out one of these days.

      #indieweb
      #webmention
      Wed, Oct 31, 2018 10:05pm +00:00
    • Laurence Hughes fuzzylogic.me
      Testing out webmentions
      Mon, Sep 10, 2018 12:46pm -07:00
    • Scott Gruber scottgruber.me

      Sites to help test

      • fed.brid.gy
      • brid.gy
      Wed, Aug 22, 2018 9:22pm -07:00
    • Florian Rang x.rang.de/contact
      Trying out this guide to sending webmentions. Cool stuff!
      Sun, Jul 29, 2018 12:43pm +02:00
    • Stephen McCready www.stephenmccready.asia
      试用本指南发送 webmentions
      Fri, Jul 20, 2018 11:58pm -07:00
    • john johnjohnston.info/blog/author/john
      Re: Sending your First Webmention from Scratch
      Mon, Jul 9, 2018 10:57am +00:00
    • Shane Hudson shanehudson.net
      I need to rewrite the webmention plugin I was using, upgraded to Craft 3 and no longer compatible.
      Sun, Jul 1, 2018 4:24pm +00:00 (via brid-gy.appspot.com)
    • Aaron Davis readwriterespond.com
      💬 Sending your First Webmention from Scratch
      Sun, Jul 1, 2018 9:01pm +10:00
    • Amit Gawande www.amitgawande.com

      I always wanted to sort out my webmentions and the respective microformats in reply posts. Aaron’s post could not have arrived at a better time. Here’s hoping it comes out the way I want it to.

      Sun, Jul 1, 2018 3:35am -07:00
    • Douglas Beal dougbeal.com
      🎉
      Sat, Jun 30, 2018 9:34pm -07:00
    • Bobby Sebolao www.bobbysebolao.com
      Trying out this guide to sending webmentions - can't wait to get
      this working on my website!
      Sat, Jun 30, 2018 5:15pm -07:00
    • Bobby Sebolao www.bobbysebolao.com
      Trying out this guide to sending webmentions - can't wait to get
      this working on my website!
      Sat, Jun 30, 2018 5:15pm -07:00 (via www.bobbysebolao.com)
    • K itsjustk.com/about
      Trying out webmentions!
      Wed, Dec 31, 1969 5:00pm -07:00
    • John Johnston johnjohnston.info/blog
      Trying out this guide to sending webmentions step 3 & curl
      Mon, Jan 7, 2019 4:22pm -07:00
    • digital.st
      Trying out this guide to sending webmentions!
      Wed, Jul 11, 2018 12:41am -07:00
    • Maximilian von Hulewicz www.vonhulewicz.com
      webmention test from my website
      Thu, Jan 24, 2019 8:25pm -07:00
    • John Conway johnconway.co
      A mention from John's Nim Microblog
      Tue, Apr 23, 2019 4:43am -07:00
    • aaron the avocado
      Trying out this guide to sending webmentions
      Sat, May 11, 2019 2:59am -07:00
    • infominer.id
      Thanks for this cool instructional!
      Tue, May 21, 2019 8:55am -07:00
    • lzahq.tech
      Trying out this guide to sending webmentions
      Sun, Jun 30, 2019 8:46pm -07:00
    • social.willtmonroe.com
      Trying out this guide to sending webmentions
      Wed, Jul 3, 2019 6:05pm -07:00
    • Will Monroe social.willtmonroe.com
      Trying out this guide to sending webmentions
      Wed, Jul 3, 2019 6:13pm -07:00
    • Maxwell Joslyn www.maxwelljoslyn.com
      Testing Webmentions
      Thu, Jul 18, 2019 7:32pm -07:00
    • miso dwell.pub/miso
      Sat, Nov 16, 2019 12:46pm -07:00
    • Dmitry Rodichev falsetrue.io
      Hi Aaron, thanks for Webmentions, trying out this guide to sending webmentions.
      Tue, Jun 9, 2020 3:15pm -07:00
    • Aaron Parecki aaronpk.com
      Trying out this guide to sending webmentions
      Fri, May 15, 2020 10:04pm -07:00
    • Дарья Морено-Гоголева www.iwanttobealight.ru
      Trying out this guide to sending webmentions
      Sat, Sep 5, 2020 12:15am -07:00
    • Johannes Hove-Henriksen 3j.no
      test if this works than i will use webmention
      Thu, Mar 11, 2021 7:04am -07:00
    • Chris Finazzo hirechrisfinazzo.com
      Trying out this guide to sending webmentions.
      Sat, Apr 24, 2021 1:32pm -07:00
    • Zinzy Nev Geene www.zinzy.website

      Really pleased with this guide, Aaron! Glad I was able to use it to send my first manual webmention.

      Fri, Apr 30, 2021 8:25am -07:00
    • www.code4peeps.life
      Trying out this guide to sending webmentions
      Tue, May 4, 2021 3:21pm -07:00
    • James Stallings jamesstallings.code4peeps.life
      If this working I feel like I should be able to see evidence of it on Aaron's site.
      Tue, May 4, 2021 3:56pm -07:00 (via jamesstallings.code4peeps.life)
    • Christian Olivier forevercurious.be
      this is the content of my answer
      Wed, Dec 8, 2021 3:11pm -07:00
    • El Rafa el-rafa.at
      Trying out this guide to sending webmentions
      Wed, Feb 9, 2022 4:03pm -07:00
    • Neil Hainsworth neilorangepeel.com
      Trying out this guide to sending webmentions
      Mon, Apr 18, 2022 1:47am -07:00
    • Undead Alien undeadalien.xyz
      Trying out this guide to sending webmentions
      Tue, Aug 9, 2022 11:23am -07:00
    • Dmitry Rodichev falsetrue.io
      Hi Aaron, thanks for Webmentions, trying out this guide to sending webmentions.
      Sat, Oct 15, 2022 4:48am -07:00
    • bobsica.com

      aaronpk. Hopefully I got this Webmention syntax figured out now.

      Tue, Jan 17, 2023 2:32pm -07:00
    • @cobysher cobysher.dev/blog
      Thanks much for all of your resources on Webmentions. Sending this from my own implementation 😁. Hoping to add it to the official list sometime soonish!
      Sat, Feb 18, 2023 2:10pm -07:00
    • jo diptera.casa
      Thank you for this guide, you save my life, you water my crops, you feed my fish etc
      Fri, Apr 21, 2023 11:23am -07:00
    • mandaris-test.micro.blog

      Sending your First Webmention from Scratch • Aaron Parecki

      So what do you need to walk through this tutorial? We'll use static files and simple command line tools so that you can easily adapt this to any environment or programming language later.

      Sending your First Webmention from Scratch • Aaron Parecki

      Second attempt.

      Wed, May 3, 2023 8:17am -07:00
    • mandarismoore.com

      Sending your First Webmention from Scratch • Aaron Parecki

      Webmention is one of the fundamental indieweb building blocks. It enables rich interactions between websites, like posting a comment or favorite on one site from another site. Sending your First Webmention from Scratch • Aaron Parecki

      This is just another attempt

      Wed, May 3, 2023 8:35am -07:00
    • Jose Arenado josearenado.com
      Trying out this guide to sending webmentions
      Fri, May 12, 2023 3:23pm -07:00
    • Mandaris Moore
      Testing Webmentions again
      Wed, Jun 14, 2023 10:37am -07:00
    • Mandaris Moore
      Testing Webmentions one last time for the day
      Wed, Jun 14, 2023 12:01pm -07:00
    • Mandaris Moore

      This is a basic example reply to @aaronpk. Thanks to the class u-in-reply-to, Micro.blog should send a webmention automaticly. Thank you @sod.

      Wed, Jun 14, 2023 7:47pm -07:00
    • Kevin Cunningham kevincunningham.co.uk
      Trying out this guide to sending webmentions
      Tue, Nov 21, 2023 3:15am -07:00
    • anders.indiehost.org

      Test sending Webmention

      Tue, Dec 5, 2023 12:05pm -07:00
    • blog.andylu.dev
      Trying out this guide to sending webmentions
      Mon, Dec 11, 2023 7:41pm -07:00
    • Diederick de Vries thefoggiest.dev
      Trying out this guide to sending webmentions
      Sat, Apr 20, 2024 11:28am -07:00
    • Daniel Hähnel hosentaschenblog.org
      If you can read this, it worked! :)
      Sun, Dec 29, 2024 3:54pm -07:00

    Other Mentions

    • Greg Sarjeant subcultureofone.org
      Testing Webmentions
      Sat, Feb 15, 2025 10:00pm -05:00
    • Greg Sarjeant subcultureofone.org
      Testing Webmentions
      Sat, Feb 15, 2025 10:00pm -05:00
    • DezeStijn
      Sending my first webmention from scratch
      Tue, Jan 21, 2025 12:00am +01:00
    • scientiac scientiac.space
      Webmentions
      Mon, Nov 4, 2024 5:00pm -07:00
    • Anders Pitman entree.tn7.org

      Let's try: https://aaronparecki.com/2018/06/30/11/your-first-webmention

      Sun, Oct 27, 2024 10:31pm -07:00
    • philipcristiano.com

      Trying out this guide to sending webmentions

      Wed, Feb 7, 2024 5:45pm -07:00
    • Rongbin Fan fanrongbin.com
      用 Webmention 连接 Mastodon 并通过 Github Actions 拉取更新
      Sat, Jan 6, 2024 12:00am +00:00
    • Rongbin Fan fanrongbin.com
      用 Webmention 连接 Mastodon 并通过 Github Actions 拉取更新
      Sat, Jan 6, 2024 12:00am +00:00
    • Rongbin Fan fanrongbin.com
      用 Webmention 接收 Mastodon 互动
      Sat, Jan 6, 2024 12:00am +00:00
    • Mike Sass
      IndieWeb Assimilation
      Sat, Jul 15, 2023 5:00pm -07:00
    • James driftwood.run
      Sending Webmention
      Sat, May 13, 2023 12:00am +00:00
    • Christian Bühlmann christianbuehlmann.com/author/christian-buhlmann
      My first webmention
      Sat, Apr 15, 2023 8:54am +02:00
    • Khürt Williams twitter.com/khurtwilliams
      TEST2 Manual reply. aaronparecki.com/2018/06/30/11/…
      Sun, Aug 21, 2022 1:27pm +00:00 (via brid.gy)
    • Khürt Williams twitter.com/khurtwilliams
      TEST This should send a Webmention to the item linked in TEST. aaronparecki.com/2018/06/30/11/…
      Sun, Aug 21, 2022 1:27pm +00:00 (via brid.gy)
    • eruhinim.com
      Passenger cars in the EU Pre vs Post Covid-19 pandemic
      Tue, Aug 2, 2022 5:00pm -07:00
    • blog.omgmog.net
      Adding support for Webmentions
      Fri, Apr 8, 2022 12:00am +00:00
    • Author: Peter Smith petersmith.org
      Yet another "Hello world!"
      Thu, Oct 21, 2021 7:06pm +13:00
    • mnml.blog

      Testing the webmention tutorial on aaronpareki.com.

      Fri, Jun 25, 2021 2:13pm -05:00
    • nicolas2fr nicolas-bermond.com/author/admin
      Edito Newsletter Avril « Méfiez-vous du « no code »
      Thu, Apr 29, 2021 8:10am +00:00
    • Jessica Smith www.jayeless.net
      How I Integrated Webmentions Into My Hugo Static Site
      Sun, Feb 21, 2021 2:55pm +11:00
    • hoschi-it hoschi-it.de

      For people who want to get started with the indieweb I highly recommend reading and executing the tutorial in this blog post and also (if you like docs) going through the IndieWeb wiki to learn more.

      Thank you very much for this excellent guide @Aaron. I found it still pretty up-to-date in 2020.

      Mon, Dec 28, 2020 7:31pm +00:00
    • James Gallagher jamesg.blog
      Adding Webmentions to Jekyll
      Sun, Sep 27, 2020 5:00pm -07:00
    • James jamesg.blog
      Adding Webmentions to Jekyll
      Mon, Sep 28, 2020 12:00am +00:00
    • James Gallagher jamesg.blog
      How I Use Webmentions
      Thu, Sep 3, 2020 5:00pm -07:00
    • James jamesg.blog
      How I Use Webmentions
      Fri, Sep 4, 2020 12:00am +00:00
    • Marty McGuire martymcgui.re
      What we talk about when we're talking about "Webmentions"
      Wed, Jul 15, 2020 7:31pm -04:00
    • Chris Aldrich boffosocko.com
      A Domain of One’s Own Meetup | July 23, 2020
      Sat, Jul 11, 2020 2:31pm -07:00
    • Erick Ochoa www.ceci-nest-pas.me/media/2020/05/21/ceci-nest-pas.me
      TEST
      Thu, May 21, 2020 12:00am +00:00
    • bonkerfield.org
      will stedden
      Thu, Apr 9, 2020 12:00am -07:00
    • Tobias Zeumer twitter.com/vform
      Ok, endlich mal Schritt für Schritt. Also ich kann * Webmentions empfangen: via webmention.io (generisch nehm ich an unter webmentions.verweisungsform.de) * Webmentions (hübsch) erstellen aaronparecki.com/2018/06/30/11/… * Webmentions versenden telegraph.p3k.io/send-a-webment…
      Tue, Feb 11, 2020 5:26pm +00:00 (via brid-gy.appspot.com)
    • Steve Ivy

      Aaron Parecki has a great tutorial on Sending your First Webmention from Scratch. #webmention #indieweb

      ~ # 04:04 ~

      Sat, Jan 25, 2020 9:04pm -07:00
    • Jeremy Felt jeremyfelt.com
      Webmentions work log 20200115
      Wed, Jan 15, 2020 10:39pm -08:00
    • diggingthedigital.com
      WordPress en webmentions
      Sun, Dec 29, 2019 4:04pm +01:00
    • Evan Travers
      Indieweb Webmentions on Middleman or Jekyll
      Wed, Nov 13, 2019 5:53pm -07:00
    • Paulo Pinto
      Replies
      Mon, Sep 30, 2019 11:40am -07:00
    • Weisser Zwerg
      Webmention Test
      Thu, Sep 5, 2019 5:00pm -07:00
    • Jason McIntosh jmac.org
      How to post replies to Fogknife articles
      Sun, Aug 4, 2019 12:30pm -07:00
    • Drei aka Bitcoin Master oliodigest.com
      Comments for static sites
      Thu, Jul 18, 2019 12:00am +00:00
    • triptico.com
      Webmention support for static sites
      Wed, Jun 5, 2019 5:47am -07:00
    • leralle
      Auf den Indieweb-Zug springen…
      Tue, May 28, 2019 11:50pm +02:00
    • :Dennis 🍯🦡⚡️ twitter.com/DennisReimann
      The talk @t gave at @btconf inspired me to add #webmentions and #microformats to my website. ✨👍

      🚀 Built on top of:
      webmention.io
      brid.gy

      📗 Here are some resources that really helped with that:
      keithjgrant.com/posts/2019/02/…
      aaronparecki.com/2018/06/30/11/…
      Fri, May 17, 2019 9:48am +00:00 (via brid-gy.appspot.com)
    • Paul Ardeleanu twitter.com/pardel
      Great first presentation at @indiewebcamp from @aaronpk on webmentions. Thank you!
      Blogpost on topic: aaronparecki.com/2018/06/30/11/…
      #indieweb #webmentions
      Sat, May 11, 2019 10:18am +00:00 (via brid-gy.appspot.com)
    • boffosocko.com
      Some of us have thought about doing it before, but perhaps just jumping into the water and trying it out may be the best way to begin designing, testing, and building a true online IndieWeb Book Club. Ruined By Design

      Earlier this week I saw a notice about an upcoming local event for Mike Monteiro‘s new book Ruined by Design: How Designers Destroyed the World, and What We Can Do to Fix It (Mule Books, March 2019, ISBN: 978-1090532084). Given the IndieWeb’s focus on design which is built into several of their principles, I thought this looked like a good choice for kicking off such an IndieWeb Book Club.

      Here’s the description of the book from the publisher:

      The world is working exactly as designed. The combustion engine which is destroying our planet’s atmosphere and rapidly making it inhospitable is working exactly as we designed it. Guns, which lead to so much death, work exactly as they’re designed to work. And every time we “improve” their design, they get better at killing. Facebook’s privacy settings, which have outed gay teens to their conservative parents, are working exactly as designed. Their “real names” initiative, which makes it easier for stalkers to re-find their victims, is working exactly as designed. Twitter’s toxicity and lack of civil discourse is working exactly as it’s designed to work.The world is working exactly as designed. And it’s not working very well. Which means we need to do a better job of designing it. Design is a craft with an amazing amount of power. The power to choose. The power to influence. As designers, we need to see ourselves as gatekeepers of what we are bringing into the world, and what we choose not to bring into the world. Design is a craft with responsibility. The responsibility to help create a better world for all. Design is also a craft with a lot of blood on its hands. Every cigarette ad is on us. Every gun is on us. Every ballot that a voter cannot understand is on us. Every time social network’s interface allows a stalker to find their victim, that’s on us. The monsters we unleash into the world will carry your name. This book will make you see that design is a political act. What we choose to design is a political act. Who we choose to work for is a political act. Who we choose to work with is a political act. And, most importantly, the people we’ve excluded from these decisions is the biggest (and stupidest) political act we’ve made as a society.If you’re a designer, this book might make you angry. It should make you angry. But it will also give you the tools you need to make better decisions. You will learn how to evaluate the potential benefits and harm of what you’re working on. You’ll learn how to present your concerns. You’ll learn the importance of building and working with diverse teams who can approach problems from multiple points-of-view. You’ll learn how to make a case using data and good storytelling. You’ll learn to say NO in a way that’ll make people listen. But mostly, this book will fill you with the confidence to do the job the way you always wanted to be able to do it. This book will help you understand your responsibilities.

      I suspect that this book will be of particular interest to those in the IndieWeb, A Domain of One’s Own, the EdTech space (and OER), and really just about anyone.

      How to participate

      I’m open to other potential guidelines and thoughts since this is incredibly experimental at best, but I thought I’d lay out the following broad ideas for how we can generally run the book club and everyone can keep track of the pieces online. Feel free to add your thoughts as responses to this post or add them to the IndieWeb wiki’s page https://indieweb.org/IndieWeb_Book_Club.

      • Buy the book or get a copy from your local bookstore
      • Read it along with the group
      • Post your progress, thoughts, replies/comments, highlights, annotations, reactions, quotes, related bookmarks, podcast or microcast episodes, etc. about the book on your own website on your own domain. If your site doesn’t support any of these natively, just do your best and post simple notes that you can share. In the end, this is about the content and the discussion first and the technology second, but feel free to let it encourage you to improve your own site for doing these things along the way.
        • Folks can also post on other websites and platforms if they must, but that sort of defeats some of the purpose of the Indie idea, right?
      • Syndicate your thoughts to indieweb.xyz to the stub indieweb.xyz/en/bookclub/ as the primary location for keeping track of our conversation. Directions for doing this can be found at https://indieweb.xyz/howto/en.
      • Optionally syndicate them to other services like Twitter, Facebook, Instagram, LinkedIn, etc.
      • Optionally mention this original post, and my website will also aggregate the comments via webmention to the comment section below.
      • At regular intervals, check in on the conversations linked on indieweb.xyz/en/bookclub/ and post your replies and reactions about them on your own site.

      If your site doesn’t support sending/receiving webmentions (a special type of open web notifications), take a look at Aaron Parecki’s post Sending your first Webmention and keep in mind that you can manually force webmentions with services like Telegraph or Mention-Tech. 

      I’ll also try to keep track of entries I’m aware about on my own site as read or bookmark posts which I’ll tag with #IWBCMM (ostensibly for IndieWeb Book Club Mike Monteiro), which we can also use on other social silos for keeping track of the conversation there.

      Perhaps as we move along, I’ll look into creating a planet for the club as well as aggregating OPML files of those who create custom feeds for their posts. If I do this it will only be to supplement the aggregation of posts at the stub on indieweb.xyz which should serve as the primary hub for the club’s conversation.

      If you haven’t run across it yet you can also use gRegor Morrill‘s IndieBookClub.biz tool in the process. 

      If you don’t already have your own website or domain to participate, feel free to join in on other portions of social media, but perhaps consider jumping into the IndieWeb chat to ask about how to get started to better own your online identity and content. 

      If you need help putting together your own site, there are many of us out here who can help get you started. I might also recommend using micro.blog which is an inexpensive and simple way to have your own website. I know that Manton Reece has already purchased a copy of the book himself. I hope that he and the rest of the micro.blog community will participate  along with us.

      If you feel technically challenged, please ping me about your content and participation, and I’m happy to help aggregate your posts to the indieweb.xyz hub on your behalf. Ideally a panoply of people participating on a variety of technical levels and platforms will help us create a better book club (and a better web) for the future.

      Of course, if you feel the itch to build pieces of infrastructure into your own website for improved participation, dive right in. Feel free to document what you’re doing both your own website and the IndieWeb wiki so others can take advantage of what you’ve come up with. Also feel free to join in on upcoming Homebrew Website Clubs (either local or virtual) or IndieWebCamps to continue brainstorming and iterating in those spaces as well.

      Kickoff and Timeline

      I’m syndicating this post to IndieNews for inclusion into next week’s IndieWeb newsletter which will serve as a kickoff notice. That will give folks time to acquire a copy of the book and start reading it. Of course this doesn’t mean that you couldn’t start today.

      Share and repost this article with anyone you think might enjoy participating in the meanwhile.

      I’ll start reading and take a stab at laying out a rough schedule. If you’re interested in participating, do let me know; we can try to mold the pace to those who actively want to participate.

      I’ve already acquired a copy of the book and look forward to reading it along with you. Syndicated copies:

      • Flipboard icon
      • Plurk icon
      • Tumblr icon
      • WordPress icon
      • Twitter icon

      https://boffosocko.com/2019/05/04/indieweb-book-club-ruined-by-design/

      Sat, May 4, 2019 12:12pm +00:00
    • Jickelsen twitter.com/jickelsen
      Geeking out about the decentralized web as well as various indieweb concepts. Gonna try making a tiny profile website for myself to try implementing stuff like Webmentions for cross-website social interactions. aaronparecki.com/2018/06/30/11/…
      Tue, Feb 19, 2019 2:18pm +00:00 (via brid-gy.appspot.com)
    • micro.michelsen.se

      Geeking out about the decentralized web as well as various indieweb concepts. Gonna try making a tiny profile website for myself to try implementing stuff like Webmentions for cross-website social interactions. aaronparecki.com/2018/06/3…

      Tue, Feb 19, 2019 3:18pm +01:00
    • gRegor Morrill gregorlove.com
      Recap of An Introduction to Microformats
      Fri, Nov 9, 2018 8:43am -08:00
    • Zachary Dunn adhoc.systems
      this is a #test reply to Aaron Parecki's post on implementing #webmentions. I'm starting work on webmentions in my CMS
      Tue, Nov 6, 2018 9:00am -07:00
    • Jason Ho jasonho.ca
      Jason Ho

      in reply to: @aaronpk

      Trying out this guide to sending webmentions

      Mon, Aug 27, 2018 12:00am +08:00
    • Norman Walsh nwalsh.com
      Webmention implemented
      Fri, Aug 24, 2018 5:00pm -07:00
    • Sylvain Lesage rednegra.net
      El futuro de los comentarios (ojala) son las "menciones web".

      Estándar oficial W3C, descentralizado, con un concepto genial: comentas un artículo de donde quieres (TW, FB, tu blog) y aparece abajo del artículo original.

      Desarrollador/a: aquí está la base
      aaronparecki.com/2018/06/30/11/…
      Fri, Aug 17, 2018 1:36am +00:00 (via brid-gy.appspot.com)
    • Deluvi deluvi.com
      Implementing Webmention on a static website
      Thu, Aug 9, 2018 2:00pm +02:00
    • Greg McVerry jgregorymcverry.com
      My #EDU522 Subjectives
      Thu, Aug 2, 2018 8:18pm -04:00
    • Greg McVerry jgregorymcverry.com
      My #EDU522 Subjectives
      Thu, Aug 2, 2018 8:18pm -04:00
    • Kendall Giles www.kendallgiles.com
      And Now to Tackle Webmentions
      Mon, Jul 23, 2018 9:05am +00:00
    • Fabian Steeg fsteeg.com
      “This post will walk you through the simplest way to get started sending webmentions to other sites […] We’ll use static files and simple command line tools” aaronparecki.com/2018/06/30/11/…
      Thu, Jul 19, 2018 9:34pm +00:00 (via brid-gy.appspot.com)
    • Chris Aldrich is developer and researcher who lives in Los Angeles. When not working on the abstract mathematics of digital communication, he tinkers on the web. An active member of the IndieWeb community, he enjoys replacing his dependency on social silos with his website which doubles as his commonplace book.
      Webmentions: Enabling Better Communication on the Internet
      Thu, Jul 19, 2018 9:51am -07:00
    • Chris Aldrich boffosocko.com/author/chrisaldrich
      An Indieweb Podcast: Episode 8 Interflux
      Mon, Jul 16, 2018 8:10am -07:00
    • keith•j•grant keithjgrant.com
      An introduction to Webmentions from @aaronpk

      aaronparecki.com/2018/06/30/11/…
      Mon, Jul 16, 2018 2:15pm +00:00 (via brid-gy.appspot.com)
    • tams sokari tamssokari.wordpress.com
      aaronparecki.com/2018/06/30/11/…
      Sat, Jul 14, 2018 11:54pm +00:00 (via brid-gy.appspot.com)
    • Chris Baughman cmb.ninja
      Here is yet another cool little known #html feature called #webmentions aaronparecki.com/2018/06/30/11/… @aaronpk really does a nice job of introducing it.
      Tue, Jul 10, 2018 10:06pm +00:00 (via brid-gy.appspot.com)
    • Peter Rukavina https://images.ruk.ca/picture-of-peter-rukavina.jpg ruk.ca/about-peter-rukavina
      Digging into Webmention
      Thu, Jul 5, 2018 10:22pm -07:00
    • Frank Meeuwsen diggingthedigital.com/author/frank-meeuwsen
      Sending your First Webmention from Scratch
      Sun, Jul 1, 2018 8:23pm +02:00
    • Kevin Marks known.kevinmarks.com/profile/kevinmarks
      Aaron put together a nice clear guide to creating and sending your first webmention https://aaronparecki.com/2018/06/30/11/your-first-webmention #Indieweb
      Sun, Jul 1, 2018 4:21pm +00:00
    • Adactio Links adactio.com/links
      Sending your First Webmention from Scratch • Aaron Parecki aaronparecki.com/2018/06/30/11/…
      Sun, Jul 1, 2018 11:07am +00:00 (via brid-gy.appspot.com)
    • Amit Gawande www.amitgawande.com
      In reply to aaronparecki.com/2018/06/30/11/…

      I always wanted to sort out my webmentions and the respective microformats in reply posts. Aaron’s post could not have arrived at a better time. Here’s hoping it comes out the way I want it to.
      Sun, Jul 1, 2018 10:47am +00:00 (via brid-gy.appspot.com)
    • Chris Aldrich www.boffosocko.com
      👓 Sending your First Webmention from Scratch | Aaron Parecki
      Sat, Jun 30, 2018 11:05pm -07:00
    • Kartik Prabhu kartikprabhu.com
      liked aaronparecki.com/2018/06/30/11/…
      Nice short guide to sending webmentions.
      Sun, Jul 1, 2018 3:43am +00:00 (via brid-gy.appspot.com)
    • Aaron Parecki aaronparecki.com
      Sending your First Webmention from Scratch
      Sat, Jun 30, 2018 8:35pm -07:00
    • www.wrke.online
      Kim Landwehr
      Sun, Jul 1, 2018 1:14pm -07:00
    • alistapart.com
      Sun, Jun 16, 2019 2:39pm -07:00
    • stephenmccready.asia
      Fri, Jul 20, 2018 3:39am -07:00
    • fulcrumaccess.com
      Peter Abramowicz
      Fri, Jul 20, 2018 9:00am -07:00
    • floridafruitgeek.com
      Fri, Jul 20, 2018 12:40pm -07:00
    • www.kickscondor.com
      Kicks Condor
      Fri, Nov 9, 2018 5:46pm -07:00
    • www.kickscondor.com
      Kicks Condor
      Fri, Nov 9, 2018 8:50pm -07:00
    • Vincent Pickering a Service Designer & UI/UX Consultant, based in Leeds, U.K. Published by Vincent Pickering in response on 12th Nov 2018 at 21:17pm vincentp.me/notes/2018/11/12/22-17

      testing sending a webmention for the first time

      Tue, Nov 13, 2018 6:04am -07:00
    • webmention.blogspot.com
      Sun, Dec 23, 2018 8:13am -07:00
    • My Url Is myurlis.com
      My Url Is aaronparecki.com (Episode 1)
      Wed, Oct 3, 2018 6:15am -07:00
    • Noor Lutfiyah Afifah noorlutfiyahafifah.blogspot.com/2019/01/responding-webmention.html
      testing sending a webmention for the...
      Sat, Jan 5, 2019 2:50pm -07:00
    • www.i.noorul.xyz
      Trying out this guide to sending webmentions
      Sun, Jan 20, 2019 7:15am -07:00
    • www.i.noorul.xyz
      Trying out this guide to sending webmentions
      Sun, Jan 20, 2019 12:20pm -07:00
    • www.i.noorul.xyz
      Tue, Jan 22, 2019 1:19pm -07:00
    • www.bridgestew.com
      Bridget Stewart
      Fri, Feb 1, 2019 8:34pm -07:00
    • My Url Is myurlis.com
      My Url Is aaronparecki.com (Episode 1)
      Wed, Oct 3, 2018 6:24am -07:00 (via tracking.feedpress.it)
    • iiii.ca
      Wed, Mar 13, 2019 5:55pm -07:00
    • iiii.ca
      Wed, Mar 13, 2019 7:45pm -07:00
    • spellacy.net
      Mon, May 13, 2019 12:15pm -07:00
    • kirby.dirkdoering.de
      Testing Webmentions
      Wed, May 15, 2019 6:56am -07:00
    • infominer.id
      Tue, May 21, 2019 8:35am -07:00
    • infominer.id
      Tue, May 21, 2019 8:40am -07:00
    • lzahq.tech
      Sun, Jun 30, 2019 8:45pm -07:00
    • social.willtmonroe.com
      Wed, Jul 3, 2019 6:02pm -07:00
    • francoscarpa.com
      Mon, Jul 15, 2019 3:14pm -07:00
    • 76814284.ngrok.io
      Sat, Nov 16, 2019 9:11am -07:00
    • easrng-blag.glitch.me
      Fri, Mar 6, 2020 7:34pm -07:00
    • itsjustk.com
      Wed, Mar 25, 2020 10:50am -07:00
    • itsjustk.com
      Wed, Mar 25, 2020 10:35am -07:00
    • viewfoil.bonkerfield.org
      Mon, Mar 30, 2020 10:45pm -07:00
    • my-portfolio-app.now.sh
      Thu, Apr 30, 2020 10:32am -07:00
    • jamesg.app
      Sun, Jun 14, 2020 3:40am -07:00
    • Christian Olivier forevercurious.be

      testing reply, like and rsvp
      Sat, Dec 11, 2021 8:17am -07:00
    • mmhan.net
      Tue, Oct 27, 2020 7:14am -07:00
    • 7c04108fd2eb.ngrok.io
      Tue, Oct 27, 2020 6:50am -07:00
    • mmhan.net
      Tue, Oct 27, 2020 6:58am -07:00
    • alongtheray.blot.im
      Mon, Jun 27, 2022 10:44pm -07:00
    • mattstine.com
      Wed, Dec 7, 2022 1:14pm -07:00
    • gregmakes.xyz
      Webmentions First Pass
      Sun, Feb 5, 2023 12:14pm -07:00
    • binarydigit.cafe
      Thu, Nov 16, 2023 11:40am -07:00
    • anders.indiehost.org
      Mon, Dec 4, 2023 11:15pm -07:00
    • fanrongbin.com
      Fri, Jan 5, 2024 5:15pm -07:00
    • portfolio-sveltekit-dtvbk0uuz-cobypear.vercel.app
      Webmention Reply
      Mon, Jan 23, 2023 7:42pm -07:00
    • underlap.org
      Webmention test
      Sun, May 5, 2024 8:35pm -07:00
    • blog.greatape.casa
      Sat, Jan 25, 2025 11:27pm -07:00
Posted in /articles using quill.p3k.io

Hi, I'm Aaron Parecki, Director of Identity Standards at Okta, and co-founder of IndieWebCamp. I maintain oauth.net, write and consult about OAuth, and participate in the OAuth Working Group at the IETF. I also help people learn about video production and livestreaming. (detailed bio)

I've been tracking my location since 2008 and I wrote 100 songs in 100 days. I've spoken at conferences around the world about owning your data, OAuth, quantified self, and explained why R is a vowel. Read more.

  • Director of Identity Standards at Okta
  • IndieWebCamp Founder
  • OAuth WG Editor
  • OpenID Board Member

  • 🎥 YouTube Tutorials and Reviews
  • 🏠 We're building a triplex!
  • ⭐️ Life Stack
  • ⚙️ Home Automation
  • All
  • Articles
  • Bookmarks
  • Notes
  • Photos
  • Replies
  • Reviews
  • Trips
  • Videos
  • Contact
© 1999-2025 by Aaron Parecki. Powered by p3k. This site supports Webmention.
Except where otherwise noted, text content on this site is licensed under a Creative Commons Attribution 3.0 License.
IndieWebCamp Microformats Webmention W3C HTML5 Creative Commons
WeChat ID
aaronpk_tv