As suspected, Bubbles.town was vibecoded lol. I would be very careful adding the upvote embed to your site or the bookmarklet to your browser
https://bubbles.town/faq
#IndieWeb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://gamedev.lgbt/@renkotsuban/116474981663758114",
"content": {
"html": "<p>As suspected, Bubbles.town was vibecoded lol. I would be very careful adding the upvote embed to your site or the bookmarklet to your browser</p><p><a href=\"https://bubbles.town/faq\"><span>https://</span><span>bubbles.town/faq</span><span></span></a></p><p><a href=\"https://gamedev.lgbt/tags/IndieWeb\">#<span>IndieWeb</span></a></p>",
"text": "As suspected, Bubbles.town was vibecoded lol. I would be very careful adding the upvote embed to your site or the bookmarklet to your browser\n\nhttps://bubbles.town/faq\n\n#IndieWeb"
},
"published": "2026-04-27T05:19:36+00:00",
"photo": [
"https://files.mastodon.social/cache/media_attachments/files/116/474/981/942/493/716/original/3a31cbe73be15ca2.png"
],
"post-type": "photo",
"_id": "48069932",
"_source": "8007",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": null,
"url": "https://herestomwiththeweather.com/",
"photo": null
},
"url": "https://herestomwiththeweather.com/2026/04/26/follow-button-with-activity-intents/",
"published": "2026-04-26T19:45:06+00:00",
"content": {
"html": "<p>I don\u2019t want to brag but I finally added a follow button to my static jekyll blog. Because it uses <a href=\"https://codeberg.org/fediverse/fep/src/branch/main/fep/3b86/fep-3b86.md\">Activity Intents</a>, a visitor can <em>remotely</em> follow my fediverse account regardless of where their host server lives as long as their server supports Activity Intents. The good news is that <a href=\"https://mastodon.social/\">mastodon.social</a> already supports this as it is running the nightly build. It will be included in the next major release (4.6) as mentioned in <a href=\"https://blog.joinmastodon.org/2026/04/trunk-tidbits-march-2026/\">Trunk & Tidbits, March 2026</a> so that other Mastodon servers will support it.</p>\n\n<p>Usually, the idea is suppose a visitor Alice from home server A.com visits Bob\u2019s account on server B.com. Alice would like to easily follow Bob. Alice clicks on the follow button and is prompted for her fediverse address and she submits alice@A.com. Her browser makes a CORS webfinger request to A.com so that the web page at B.com can discover what url to redirect Alice to so that she can follow Bob from her home server where she is logged in. My setup is slightly different because my follow button is on my blog instead of on my fediverse server.</p>\n\n<p>The code was added to Mastodon in <a href=\"https://github.com/mastodon/mastodon/commit/69b1f60f4e46cf58e7240c2bfb81588accc1af6f\">Add support for FEP-3b86 (Activity Intents) (#38120)</a> and it seems there are 2 different values for \u201crel\u201d a home server may offer to accept a follow: <a href=\"https://codeberg.org/fediverse/fep/src/branch/main/fep/3b86/fep-3b86.md#4-10-follow-intent\">4.10 Follow Intent</a> and <a href=\"https://codeberg.org/fediverse/fep/src/branch/main/fep/3b86/fep-3b86.md#5-1-object-intent\">5.1 Object Intent</a> so my button <a href=\"https://github.com/herestomwiththeweather/herestomwiththeweather.github.io/blob/master/_includes/follow.html#L42\">accepts 2 different values</a>.</p>\n\n<pre><code>var rels = ['https://w3id.org/fep/3b86/Follow', 'https://w3id.org/fep/3b86/Object'];\n</code></pre>\n\n<p>Intents are for all activities but it seems there is a tendency for fediverse home servers to support just a subset of activities at the moment. Earlier this week, I added <a href=\"https://github.com/herestomwiththeweather/irwin/commit/6d06e99d93d00317ee6f532a0a336f8ccdc2c4f4\">support just for follow and like</a> for <a href=\"https://otisburg.social/\">my home server</a>. Since my webfinger identifier has a different domain than my fediverse server, I also had to <a href=\"https://github.com/herestomwiththeweather/herestomwiththeweather.github.io/commit/d11d2354bea1782a2df16f2a0c5d3118ffa454d2\">add intents to webfinger</a> in my jekyll software as well as <a href=\"https://github.com/herestomwiththeweather/herestomwiththeweather.github.io/commit/e7001989233c08d7afc1d3835dc846e6e65e2eb5\">allow webfinger to respond to CORS request</a>.</p>",
"text": "I don\u2019t want to brag but I finally added a follow button to my static jekyll blog. Because it uses Activity Intents, a visitor can remotely follow my fediverse account regardless of where their host server lives as long as their server supports Activity Intents. The good news is that mastodon.social already supports this as it is running the nightly build. It will be included in the next major release (4.6) as mentioned in Trunk & Tidbits, March 2026 so that other Mastodon servers will support it.\n\nUsually, the idea is suppose a visitor Alice from home server A.com visits Bob\u2019s account on server B.com. Alice would like to easily follow Bob. Alice clicks on the follow button and is prompted for her fediverse address and she submits alice@A.com. Her browser makes a CORS webfinger request to A.com so that the web page at B.com can discover what url to redirect Alice to so that she can follow Bob from her home server where she is logged in. My setup is slightly different because my follow button is on my blog instead of on my fediverse server.\n\nThe code was added to Mastodon in Add support for FEP-3b86 (Activity Intents) (#38120) and it seems there are 2 different values for \u201crel\u201d a home server may offer to accept a follow: 4.10 Follow Intent and 5.1 Object Intent so my button accepts 2 different values.\n\nvar rels = ['https://w3id.org/fep/3b86/Follow', 'https://w3id.org/fep/3b86/Object'];\n\n\nIntents are for all activities but it seems there is a tendency for fediverse home servers to support just a subset of activities at the moment. Earlier this week, I added support just for follow and like for my home server. Since my webfinger identifier has a different domain than my fediverse server, I also had to add intents to webfinger in my jekyll software as well as allow webfinger to respond to CORS request."
},
"name": "Follow button with Activity Intents",
"post-type": "article",
"_id": "48069708",
"_source": "246",
"_is_read": false
}
Making the Case for Slow Technologies
It's time to intentionally slow down the technology in our lives so our brains (and often our emotions) have time to react, think, and respond appropriately. We do not always have to maximize efficiency and minimize friction.
https://readbeanicecream.surge.sh/2026/04/26/making-the-case-for-slow-technologies/
#technology #tech #indieweb #socialmedia #rss #blogging #philosophy
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@readbeanicecream/116474211300807528",
"content": {
"html": "<p>Making the Case for Slow Technologies</p><p>It's time to intentionally slow down the technology in our lives so our brains (and often our emotions) have time to react, think, and respond appropriately. We do not always have to maximize efficiency and minimize friction. </p><p><a href=\"https://readbeanicecream.surge.sh/2026/04/26/making-the-case-for-slow-technologies/\"><span>https://</span><span>readbeanicecream.surge.sh/2026</span><span>/04/26/making-the-case-for-slow-technologies/</span></a></p><p><a href=\"https://mastodon.social/tags/technology\">#<span>technology</span></a> <a href=\"https://mastodon.social/tags/tech\">#<span>tech</span></a> <a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://mastodon.social/tags/socialmedia\">#<span>socialmedia</span></a> <a href=\"https://mastodon.social/tags/rss\">#<span>rss</span></a> <a href=\"https://mastodon.social/tags/blogging\">#<span>blogging</span></a> <a href=\"https://mastodon.social/tags/philosophy\">#<span>philosophy</span></a></p>",
"text": "Making the Case for Slow Technologies\n\nIt's time to intentionally slow down the technology in our lives so our brains (and often our emotions) have time to react, think, and respond appropriately. We do not always have to maximize efficiency and minimize friction. \n\nhttps://readbeanicecream.surge.sh/2026/04/26/making-the-case-for-slow-technologies/\n\n#technology #tech #indieweb #socialmedia #rss #blogging #philosophy"
},
"published": "2026-04-27T02:03:41+00:00",
"post-type": "note",
"_id": "48068946",
"_source": "8007",
"_is_read": false
}
New Blogroll Post
“Husk of a Rainbow” by Abhigyan Trips
«A poem written with a rage that surprised me while writing it.»
#blog #indieweb
https://abhi.now/blog/husk-of-a-rainbow/?ref=blr.indiewebclub.org
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://indieweb.social/@blr/116474144696210155",
"content": {
"html": "<p>New Blogroll Post</p><p>\u201cHusk of a Rainbow\u201d by Abhigyan Trips</p><p>\u00abA poem written with a rage that surprised me while writing it.\u00bb</p><p> <a href=\"https://indieweb.social/tags/blog\">#<span>blog</span></a> <a href=\"https://indieweb.social/tags/indieweb\">#<span>indieweb</span></a></p><p><a href=\"https://abhi.now/blog/husk-of-a-rainbow/?ref=blr.indiewebclub.org\"><span>https://</span><span>abhi.now/blog/husk-of-a-rainbo</span><span>w/?ref=blr.indiewebclub.org</span></a></p>",
"text": "New Blogroll Post\n\n\u201cHusk of a Rainbow\u201d by Abhigyan Trips\n\n\u00abA poem written with a rage that surprised me while writing it.\u00bb\n\n #blog #indieweb\n\nhttps://abhi.now/blog/husk-of-a-rainbow/?ref=blr.indiewebclub.org"
},
"published": "2026-04-27T01:46:45+00:00",
"post-type": "note",
"_id": "48068871",
"_source": "8007",
"_is_read": false
}
Today I created a traffic indicator for my website so I can see when I get any visitors.
I like this because it makes it feel a little less like I'm yeeting things into the void.
The website publishes WebSocket events on every request. A Raspberry Pi connects to the WebSocket stream and continuously blinks while receiving requests.
It's adorable.
#indieweb #raspberrypi #nestjs #posse
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://indieweb.social/@dandean/116474038679920338",
"content": {
"html": "<p>Today I created a traffic indicator for my website so I can see when I get any visitors.</p><p>I like this because it makes it feel a little less like I'm yeeting things into the void.</p><p>The website publishes WebSocket events on every request. A Raspberry Pi connects to the WebSocket stream and continuously blinks while receiving requests.</p><p>It's adorable.</p><p><a href=\"https://indieweb.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://indieweb.social/tags/raspberrypi\">#<span>raspberrypi</span></a> <a href=\"https://indieweb.social/tags/nestjs\">#<span>nestjs</span></a> <a href=\"https://indieweb.social/tags/posse\">#<span>posse</span></a></p>",
"text": "Today I created a traffic indicator for my website so I can see when I get any visitors.\n\nI like this because it makes it feel a little less like I'm yeeting things into the void.\n\nThe website publishes WebSocket events on every request. A Raspberry Pi connects to the WebSocket stream and continuously blinks while receiving requests.\n\nIt's adorable.\n\n#indieweb #raspberrypi #nestjs #posse"
},
"published": "2026-04-27T01:19:47+00:00",
"photo": [
"https://files.mastodon.social/cache/media_attachments/files/116/474/038/719/737/754/original/b68bcefce45c8193.mp4"
],
"post-type": "photo",
"_id": "48068652",
"_source": "8007",
"_is_read": false
}
@dfgomes @kev the only thing that left is in our hands is #indieweb … let’s not screw it up
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@anydigital/116473487937762984",
"content": {
"html": "<p><span class=\"h-card\"><a class=\"u-url\" href=\"https://mastodon.social/@dfgomes\">@<span>dfgomes</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://fosstodon.org/@kev\">@<span>kev</span></a></span> the only thing that left is in our hands is <a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> \u2026 let\u2019s not screw it up</p>",
"text": "@dfgomes @kev the only thing that left is in our hands is #indieweb \u2026 let\u2019s not screw it up"
},
"published": "2026-04-26T22:59:43+00:00",
"post-type": "note",
"_id": "48067853",
"_source": "8007",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://rebel.ar/@martindehf/116473335130194118",
"content": {
"html": "<p>Publiqu\u00e9 \"Una nueva desilusi\u00f3n\"</p><p>Un breve recuerdo on\u00edrico.</p><p><a href=\"https://martinvukovic.com/posts/2026/04-26-desilusion.html\"><span>https://</span><span>martinvukovic.com/posts/2026/0</span><span>4-26-desilusion.html</span></a></p><p><a href=\"https://rebel.ar/tags/blog\">#<span>blog</span></a> <a href=\"https://rebel.ar/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://rebel.ar/tags/smallweb\">#<span>smallweb</span></a> <a href=\"https://rebel.ar/tags/escritura\">#<span>escritura</span></a></p>",
"text": "Publiqu\u00e9 \"Una nueva desilusi\u00f3n\"\n\nUn breve recuerdo on\u00edrico.\n\nhttps://martinvukovic.com/posts/2026/04-26-desilusion.html\n\n#blog #indieweb #smallweb #escritura"
},
"published": "2026-04-26T22:20:52+00:00",
"post-type": "note",
"_id": "48067711",
"_source": "8007",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://caneandable.social/@WeirdWriter/116473103676849578",
"content": {
"html": "<p>Third Grade Letter to Santa <a href=\"https://sightlessscribbles.com/third-grade-letter-to-santa/\"><span>https://</span><span>sightlessscribbles.com/third-g</span><span>rade-letter-to-santa/</span></a> <a href=\"https://caneandable.social/tags/Blog\">#<span>Blog</span></a> <a href=\"https://caneandable.social/tags/Blogs\">#<span>Blogs</span></a> <a href=\"https://caneandable.social/tags/Blogging\">#<span>Blogging</span></a> <a href=\"https://caneandable.social/tags/IndieWeb\">#<span>IndieWeb</span></a> <a href=\"https://caneandable.social/tags/NoPaywall\">#<span>NoPaywall</span></a></p>",
"text": "Third Grade Letter to Santa https://sightlessscribbles.com/third-grade-letter-to-santa/ #Blog #Blogs #Blogging #IndieWeb #NoPaywall"
},
"published": "2026-04-26T21:22:00+00:00",
"post-type": "note",
"_id": "48067370",
"_source": "8007",
"_is_read": false
}
@tchambers @anildash Anyone with an #indieweb or #smolweb site should keep a 'Community' list of around seven other sites they have full confidence in being curated by human sweat. That way we strengthen the Human Web.
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://cyberplace.social/@khleedril/116472459486184507",
"content": {
"html": "<p><span class=\"h-card\"><a class=\"u-url\" href=\"https://indieweb.social/@tchambers\">@<span>tchambers</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://me.dm/@anildash\">@<span>anildash</span></a></span> Anyone with an <a href=\"https://cyberplace.social/tags/indieweb\">#<span>indieweb</span></a> or <a href=\"https://cyberplace.social/tags/smolweb\">#<span>smolweb</span></a> site should keep a 'Community' list of around seven other sites they have full confidence in being curated by human sweat. That way we strengthen the Human Web.</p>",
"text": "@tchambers @anildash Anyone with an #indieweb or #smolweb site should keep a 'Community' list of around seven other sites they have full confidence in being curated by human sweat. That way we strengthen the Human Web."
},
"published": "2026-04-26T18:38:10+00:00",
"post-type": "note",
"_id": "48066273",
"_source": "8007",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@tgagor/116472448865950580",
"content": {
"html": "<p>Just finished a book, check my review:<br /><a href=\"https://mastodon.social/tags/blog\">#<span>blog</span></a> <a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://mastodon.social/tags/books\">#<span>books</span></a> <a href=\"https://mastodon.social/tags/Business\">#<span>Business</span></a> <a href=\"https://mastodon.social/tags/Leadership\">#<span>Leadership</span></a> <a href=\"https://mastodon.social/tags/Management\">#<span>Management</span></a> <a href=\"https://mastodon.social/tags/Technology\">#<span>Technology</span></a> (<a href=\"https://gagor.pro/book/2026/team-topologies/\"><span>https://</span><span>gagor.pro/book/2026/team-topol</span><span>ogies/</span></a>)</p>",
"text": "Just finished a book, check my review:\n#blog #indieweb #books #Business #Leadership #Management #Technology (https://gagor.pro/book/2026/team-topologies/)"
},
"published": "2026-04-26T18:35:28+00:00",
"post-type": "note",
"_id": "48066274",
"_source": "8007",
"_is_read": false
}
A quick guide on how to set the GPU-accelerated Ghostty terminal as the default on Ubuntu 26.04 using the new configuration method.
#blog #indieweb #Bash #Linux #Ubuntu (https://gagor.pro/2026/04/setting-ghostty-as-default-terminal-on-ubuntu-26.04/)
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@tgagor/116472367959530822",
"content": {
"html": "<p>A quick guide on how to set the GPU-accelerated Ghostty terminal as the default on Ubuntu 26.04 using the new configuration method.<br /><a href=\"https://mastodon.social/tags/blog\">#<span>blog</span></a> <a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://mastodon.social/tags/Bash\">#<span>Bash</span></a> <a href=\"https://mastodon.social/tags/Linux\">#<span>Linux</span></a> <a href=\"https://mastodon.social/tags/Ubuntu\">#<span>Ubuntu</span></a> (<a href=\"https://gagor.pro/2026/04/setting-ghostty-as-default-terminal-on-ubuntu-26.04/\"><span>https://</span><span>gagor.pro/2026/04/setting-ghos</span><span>tty-as-default-terminal-on-ubuntu-26.04/</span></a>)</p>",
"text": "A quick guide on how to set the GPU-accelerated Ghostty terminal as the default on Ubuntu 26.04 using the new configuration method.\n#blog #indieweb #Bash #Linux #Ubuntu (https://gagor.pro/2026/04/setting-ghostty-as-default-terminal-on-ubuntu-26.04/)"
},
"published": "2026-04-26T18:14:54+00:00",
"photo": [
"https://files.mastodon.social/media_attachments/files/116/472/367/913/709/929/original/049f13713315a75f.webp"
],
"post-type": "photo",
"_id": "48066214",
"_source": "8007",
"_is_read": false
}
Unencrypted è una nuova e-zine che racconta storie di autonomia digitale.
Si parte con il numero zero perchè... è speciale! 😉
https://www.unencrypted.it
@sicurezza
#AutonomiaDigitale #SoftwareLibero #Indieweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.uno/@prealpinux/116472091121598726",
"content": {
"html": "<p>Unencrypted \u00e8 una nuova e-zine che racconta storie di autonomia digitale.</p><p>Si parte con il numero zero perch\u00e8... \u00e8 speciale! \ud83d\ude09 </p><p><a href=\"https://www.unencrypted.it\"><span>https://www.</span><span>unencrypted.it</span><span></span></a></p><p><span class=\"h-card\"><a class=\"u-url\" href=\"https://diggita.com/c/sicurezza\">@<span>sicurezza</span></a></span> </p><p><a href=\"https://mastodon.uno/tags/AutonomiaDigitale\">#<span>AutonomiaDigitale</span></a> <a href=\"https://mastodon.uno/tags/SoftwareLibero\">#<span>SoftwareLibero</span></a> <a href=\"https://mastodon.uno/tags/Indieweb\">#<span>Indieweb</span></a></p>",
"text": "Unencrypted \u00e8 una nuova e-zine che racconta storie di autonomia digitale.\n\nSi parte con il numero zero perch\u00e8... \u00e8 speciale! \ud83d\ude09 \n\nhttps://www.unencrypted.it\n\n@sicurezza \n\n#AutonomiaDigitale #SoftwareLibero #Indieweb"
},
"published": "2026-04-26T17:04:30+00:00",
"post-type": "note",
"_id": "48065699",
"_source": "8007",
"_is_read": false
}
I added a little game to powRSS where you have to guess the author of a blog excerpt. Thought it'd be a fun way to explore more from our #indieweb neighbors 😁
https://powrss.com/who
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@enocc/116472045695052606",
"content": {
"html": "<p>I added a little game to powRSS where you have to guess the author of a blog excerpt. Thought it'd be a fun way to explore more from our <a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> neighbors \ud83d\ude01</p><p><a href=\"https://powrss.com/who\"><span>https://</span><span>powrss.com/who</span><span></span></a></p>",
"text": "I added a little game to powRSS where you have to guess the author of a blog excerpt. Thought it'd be a fun way to explore more from our #indieweb neighbors \ud83d\ude01\n\nhttps://powrss.com/who"
},
"published": "2026-04-26T16:52:56+00:00",
"photo": [
"https://files.mastodon.social/media_attachments/files/116/472/040/614/409/194/original/f8f30e7b36fc5f66.png"
],
"post-type": "photo",
"_id": "48065558",
"_source": "8007",
"_is_read": false
}
@autumnstuff @jamesg.blog @Bearina @tantek.com @bjoern @jkphl @etp @paultibbetts @dshanske @dletorey It was an eye-opener seeing all these wonderful IndieWeb sites today during the demo, especially all the public displays of #webmentions. Hope one day I'll work out how to display it too! Thanks everyone, for the great atmosphere. 😊
{
"type": "entry",
"author": {
"name": "#webmentions",
"url": "https://mastodon.social/tags/webmentions",
"photo": null
},
"url": "https://fosstodon.org/@eclecticpassions/116471965424359113",
"content": {
"html": "<p><span class=\"h-card\"><a class=\"u-url\" href=\"https://mastodon.social/@autumnstuff\">@<span>autumnstuff</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://fed.brid.gy/r/https://jamesg.blog/\">@<span>jamesg.blog</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://sunny.garden/@Bearina\">@<span>Bearina</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://fed.brid.gy/r/https://tantek.com/\">@<span>tantek.com</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://social.stierand.org/@bjoern\">@<span>bjoern</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://mastodon.social/@jkphl\">@<span>jkphl</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://indieweb.social/@etp\">@<span>etp</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://indieweb.social/@paultibbetts\">@<span>paultibbetts</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://david.shanske.com/author/dshanske/\">@<span>dshanske</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://front-end.social/@dletorey\">@<span>dletorey</span></a></span> It was an eye-opener seeing all these wonderful IndieWeb sites today during the demo, especially all the public displays of <a href=\"https://fosstodon.org/tags/webmentions\">#<span>webmentions</span></a>. Hope one day I'll work out how to display it too! Thanks everyone, for the great atmosphere. \ud83d\ude0a</p>",
"text": "@autumnstuff @jamesg.blog @Bearina @tantek.com @bjoern @jkphl @etp @paultibbetts @dshanske @dletorey It was an eye-opener seeing all these wonderful IndieWeb sites today during the demo, especially all the public displays of #webmentions. Hope one day I'll work out how to display it too! Thanks everyone, for the great atmosphere. \ud83d\ude0a"
},
"published": "2026-04-26T16:32:32+00:00",
"post-type": "note",
"_id": "48065407",
"_source": "8007",
"_is_read": false
}
It's a wrap! https://aprilscable.neocities.org/nes2
As a remote participant, showcased the page at the DEMO station at IndieWeb Camp Düsseldorf 2026. It was Create Day today! Many showcased website were really beautiful and inspiring. Vielan Danke!
@jamesg.blog
@eclecticpassions @Bearina
@tantek.com
@bjoern
@jkphl
@etp
@paultibbetts
@dshanske
@dletorey
#blog #indieweb #indiewebcamp #nes #css #retro #sunday #weekend
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@autumnstuff/116471685188202919",
"content": {
"html": "<p>It's a wrap! <a href=\"https://aprilscable.neocities.org/nes2\"><span>https://</span><span>aprilscable.neocities.org/nes2</span><span></span></a></p><p>As a remote participant, showcased the page at the DEMO station at IndieWeb Camp D\u00fcsseldorf 2026. It was Create Day today! Many showcased website were really beautiful and inspiring. Vielan Danke! <br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://fed.brid.gy/r/https://jamesg.blog/\">@<span>jamesg.blog</span></a></span> <br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://fosstodon.org/@eclecticpassions\">@<span>eclecticpassions</span></a></span> <span class=\"h-card\"><a class=\"u-url\" href=\"https://sunny.garden/@Bearina\">@<span>Bearina</span></a></span> <br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://fed.brid.gy/r/https://tantek.com/\">@<span>tantek.com</span></a></span> <br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://social.stierand.org/@bjoern\">@<span>bjoern</span></a></span><br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://mastodon.social/@jkphl\">@<span>jkphl</span></a></span><br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://indieweb.social/@etp\">@<span>etp</span></a></span><br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://indieweb.social/@paultibbetts\">@<span>paultibbetts</span></a></span> <br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://david.shanske.com/author/dshanske/\">@<span>dshanske</span></a></span><br /><span class=\"h-card\"><a class=\"u-url\" href=\"https://front-end.social/@dletorey\">@<span>dletorey</span></a></span> </p><p><a href=\"https://mastodon.social/tags/blog\">#<span>blog</span></a> <a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://mastodon.social/tags/indiewebcamp\">#<span>indiewebcamp</span></a> <a href=\"https://mastodon.social/tags/nes\">#<span>nes</span></a> <a href=\"https://mastodon.social/tags/css\">#<span>css</span></a> <a href=\"https://mastodon.social/tags/retro\">#<span>retro</span></a> <a href=\"https://mastodon.social/tags/sunday\">#<span>sunday</span></a> <a href=\"https://mastodon.social/tags/weekend\">#<span>weekend</span></a></p>",
"text": "It's a wrap! https://aprilscable.neocities.org/nes2\n\nAs a remote participant, showcased the page at the DEMO station at IndieWeb Camp D\u00fcsseldorf 2026. It was Create Day today! Many showcased website were really beautiful and inspiring. Vielan Danke! \n@jamesg.blog \n@eclecticpassions @Bearina \n@tantek.com \n@bjoern\n@jkphl\n@etp\n@paultibbetts \n@dshanske\n@dletorey \n\n#blog #indieweb #indiewebcamp #nes #css #retro #sunday #weekend"
},
"published": "2026-04-26T15:21:16+00:00",
"post-type": "note",
"_id": "48064863",
"_source": "8007",
"_is_read": false
}
New Blogroll Post
“Week 17/2026” by Yash Garg
« «A low-key week with high-key heat.» »
#blog #indieweb
https://yashgarg.dev/weekly-notes-17-2026/?ref=blr.indiewebclub.org
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://indieweb.social/@blr/116471628311864957",
"content": {
"html": "<p>New Blogroll Post</p><p>\u201cWeek 17/2026\u201d by Yash Garg</p><p>\u00ab \u00abA low-key week with high-key heat.\u00bb \u00bb</p><p> <a href=\"https://indieweb.social/tags/blog\">#<span>blog</span></a> <a href=\"https://indieweb.social/tags/indieweb\">#<span>indieweb</span></a></p><p><a href=\"https://yashgarg.dev/weekly-notes-17-2026/?ref=blr.indiewebclub.org\"><span>https://</span><span>yashgarg.dev/weekly-notes-17-2</span><span>026/?ref=blr.indiewebclub.org</span></a></p>",
"text": "New Blogroll Post\n\n\u201cWeek 17/2026\u201d by Yash Garg\n\n\u00ab \u00abA low-key week with high-key heat.\u00bb \u00bb\n\n #blog #indieweb\n\nhttps://yashgarg.dev/weekly-notes-17-2026/?ref=blr.indiewebclub.org"
},
"published": "2026-04-26T15:06:48+00:00",
"post-type": "note",
"_id": "48064761",
"_source": "8007",
"_is_read": false
}
Spun off the Wander Console crawler data into its own little project:
https://susam.codeberg.page/wcn/
In the five and a half weeks since Wander launched, there have been more than 50 new consoles with over 1400 page recommendations.
If your console link is missing from the list, please let me know or send a pull request to <https://codeberg.org/susam/wcn>.
#indieweb #webdev #programming #technology
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@susam/116471514276383257",
"content": {
"html": "<p>Spun off the Wander Console crawler data into its own little project:</p><p><a href=\"https://susam.codeberg.page/wcn/\"><span>https://</span><span>susam.codeberg.page/wcn/</span><span></span></a></p><p>In the five and a half weeks since Wander launched, there have been more than 50 new consoles with over 1400 page recommendations.</p><p>If your console link is missing from the list, please let me know or send a pull request to <<a href=\"https://codeberg.org/susam/wcn\"><span>https://</span><span>codeberg.org/susam/wcn</span><span></span></a>>.</p><p><a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://mastodon.social/tags/webdev\">#<span>webdev</span></a> <a href=\"https://mastodon.social/tags/programming\">#<span>programming</span></a> <a href=\"https://mastodon.social/tags/technology\">#<span>technology</span></a></p>",
"text": "Spun off the Wander Console crawler data into its own little project:\n\nhttps://susam.codeberg.page/wcn/\n\nIn the five and a half weeks since Wander launched, there have been more than 50 new consoles with over 1400 page recommendations.\n\nIf your console link is missing from the list, please let me know or send a pull request to <https://codeberg.org/susam/wcn>.\n\n#indieweb #webdev #programming #technology"
},
"published": "2026-04-26T14:37:48+00:00",
"photo": [
"https://files.mastodon.social/media_attachments/files/116/471/506/847/107/867/original/1bfe120905505c3f.png"
],
"post-type": "photo",
"_id": "48064538",
"_source": "8007",
"_is_read": false
}
(Ironic I know as i founded one based on the #Indieweb community) Those are as important or more than big general purpose servers. Go #Forkiverse. Power on. May more such communities follow your lead! 🧵 2/2
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://indieweb.social/@tchambers/116471204938262267",
"content": {
"html": "<p>(Ironic I know as i founded one based on the <a href=\"https://indieweb.social/tags/Indieweb\">#<span>Indieweb</span></a> community) Those are as important or more than big general purpose servers. Go <a href=\"https://indieweb.social/tags/Forkiverse\">#<span>Forkiverse</span></a>. Power on. May more such communities follow your lead! \ud83e\uddf5 2/2</p>",
"text": "(Ironic I know as i founded one based on the #Indieweb community) Those are as important or more than big general purpose servers. Go #Forkiverse. Power on. May more such communities follow your lead! \ud83e\uddf5 2/2"
},
"published": "2026-04-26T13:19:08+00:00",
"post-type": "note",
"_id": "48064073",
"_source": "8007",
"_is_read": false
}
New Blogroll Post
“Weeknotes: Week #17 (2026)” by Harsh Shandilya
« Adapting to changes at work and doing a bunch of gaming »
#blog #indieweb
https://msfjarvis.dev/posts/weeknotes-week-17-2026/?ref=blr.indiewebclub.org
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://indieweb.social/@blr/116471124412311998",
"content": {
"html": "<p>New Blogroll Post</p><p>\u201cWeeknotes: Week #17 (2026)\u201d by Harsh Shandilya</p><p>\u00ab Adapting to changes at work and doing a bunch of gaming \u00bb</p><p> <a href=\"https://indieweb.social/tags/blog\">#<span>blog</span></a> <a href=\"https://indieweb.social/tags/indieweb\">#<span>indieweb</span></a></p><p><a href=\"https://msfjarvis.dev/posts/weeknotes-week-17-2026/?ref=blr.indiewebclub.org\"><span>https://</span><span>msfjarvis.dev/posts/weeknotes-</span><span>week-17-2026/?ref=blr.indiewebclub.org</span></a></p>",
"text": "New Blogroll Post\n\n\u201cWeeknotes: Week #17 (2026)\u201d by Harsh Shandilya\n\n\u00ab Adapting to changes at work and doing a bunch of gaming \u00bb\n\n #blog #indieweb\n\nhttps://msfjarvis.dev/posts/weeknotes-week-17-2026/?ref=blr.indiewebclub.org"
},
"published": "2026-04-26T12:58:39+00:00",
"post-type": "note",
"_id": "48063934",
"_source": "8007",
"_is_read": false
}
It's the final stretch of Day 2 (Create Day) of the 2-day #indiewebcamp. It's been inspiring to see such a creative and skilled bunch of individuals all passionate about websites. I'm honoured and grateful to be part of it! There will be a demo/show-and-tell session soon where everyone will share what they worked on today. Can't wait! 👍
Event page: https://events.indieweb.org/2026/04/-indiewebcamp-d%c3%bcsseldorf-ewHCZehNA3gg
#indiewebcampdus #indieweb #webdev #personalsite #PersonalSites #personalBlog #blogger #SmallWeb #createday #IWC #smolweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://fosstodon.org/@eclecticpassions/116471055721695503",
"content": {
"html": "<p>It's the final stretch of Day 2 (Create Day) of the 2-day <a href=\"https://fosstodon.org/tags/indiewebcamp\">#<span>indiewebcamp</span></a>. It's been inspiring to see such a creative and skilled bunch of individuals all passionate about websites. I'm honoured and grateful to be part of it! There will be a demo/show-and-tell session soon where everyone will share what they worked on today. Can't wait! \ud83d\udc4d</p><p>Event page: <a href=\"https://events.indieweb.org/2026/04/-indiewebcamp-d%C3%BCsseldorf-ewHCZehNA3gg\"><span>https://</span><span>events.indieweb.org/2026/04/-i</span><span>ndiewebcamp-d%c3%bcsseldorf-ewHCZehNA3gg</span></a></p><p><a href=\"https://fosstodon.org/tags/indiewebcampdus\">#<span>indiewebcampdus</span></a> <a href=\"https://fosstodon.org/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://fosstodon.org/tags/webdev\">#<span>webdev</span></a> <a href=\"https://fosstodon.org/tags/personalsite\">#<span>personalsite</span></a> <a href=\"https://fosstodon.org/tags/PersonalSites\">#<span>PersonalSites</span></a> <a href=\"https://fosstodon.org/tags/personalBlog\">#<span>personalBlog</span></a> <a href=\"https://fosstodon.org/tags/blogger\">#<span>blogger</span></a> <a href=\"https://fosstodon.org/tags/SmallWeb\">#<span>SmallWeb</span></a> <a href=\"https://fosstodon.org/tags/createday\">#<span>createday</span></a> <a href=\"https://fosstodon.org/tags/IWC\">#<span>IWC</span></a> <a href=\"https://fosstodon.org/tags/smolweb\">#<span>smolweb</span></a></p>",
"text": "It's the final stretch of Day 2 (Create Day) of the 2-day #indiewebcamp. It's been inspiring to see such a creative and skilled bunch of individuals all passionate about websites. I'm honoured and grateful to be part of it! There will be a demo/show-and-tell session soon where everyone will share what they worked on today. Can't wait! \ud83d\udc4d\n\nEvent page: https://events.indieweb.org/2026/04/-indiewebcamp-d%c3%bcsseldorf-ewHCZehNA3gg\n\n#indiewebcampdus #indieweb #webdev #personalsite #PersonalSites #personalBlog #blogger #SmallWeb #createday #IWC #smolweb"
},
"published": "2026-04-26T12:41:11+00:00",
"post-type": "note",
"_id": "48063812",
"_source": "8007",
"_is_read": false
}