#IndieWeb people, i love what you're doing, but could we maybe lighten up on the flashing buttons and backgrounds
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://tech.lgbt/@retchohrips/112746697744085697",
"content": {
"html": "<p><a href=\"https://tech.lgbt/tags/IndieWeb\">#<span>IndieWeb</span></a> people, i love what you're doing, but could we maybe lighten up on the flashing buttons and backgrounds <img alt=\":neodog_dizzy:\" height=\"16\" src=\"https://files.mastodon.social/cache/custom_emojis/images/000/941/146/original/95ea2eff8ca0b4e6.png\" title=\":neodog_dizzy:\" width=\"16\" /></p>",
"text": "#IndieWeb people, i love what you're doing, but could we maybe lighten up on the flashing buttons and backgrounds"
},
"published": "2024-07-07T18:47:58+00:00",
"post-type": "note",
"_id": "41575404",
"_source": "8007",
"_is_read": false
}
Is 32bit.cafe permanently down? I've been trying to visit it for a while and just get a server error #indieweb #32bitcafe
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://indieweb.social/@valendia/112746641153566705",
"content": {
"html": "<p>Is 32bit.cafe permanently down? I've been trying to visit it for a while and just get a server error <a href=\"https://indieweb.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://indieweb.social/tags/32bitcafe\">#<span>32bitcafe</span></a></p>",
"text": "Is 32bit.cafe permanently down? I've been trying to visit it for a while and just get a server error #indieweb #32bitcafe"
},
"published": "2024-07-07T18:33:34+00:00",
"post-type": "note",
"_id": "41574808",
"_source": "8007",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2024/07/07/activitypub-paper-cuts.html",
"name": "ActivityPub paper cuts",
"content": {
"html": "<p>Everyone who has implemented ActivityPub from scratch knows that there are implementation-specific quirks that trip up developers, making compatibility between apps more difficult. Some of these issues are being clarified by the <a href=\"https://www.w3.org/community/socialcg/\">Social Web Community Group</a>. Test suites will help too. Micro.blog has had ActivityPub support for years and we\u2019re still finding edge cases.</p>\n<p>With <a href=\"https://activitypub.ghost.org/lets-fix-it-in-production/\">Ghost making progress on adding ActivityPub</a>, I tried following their first test account today and immediately ran into a small issue. It\u2019s simple so I think illustrates the kind of problem that developers might hit. You only need to know what JSON looks like to follow along.</p>\n<p>When you download an actor\u2019s profile, you get a bunch of fields like the inbox to send requests to, the user\u2019s full name, and the user\u2019s profile photo. The photo is set in a field called <code>icon</code> (or <code>image</code>). If you skim through the ActivityPub specification, you\u2019ll see this example:</p>\n<pre><code>\"icon\": [\n \"https://kenzoishii.example.com/image/165987aklre4\"\n]\n</code></pre><p>Pretty simple. The field is an array with a single URL to the image. But most implementations don\u2019t follow that example. Mastodon and Micro.blog both use something like this, which is in the more complete ActivityStreams spec:</p>\n<pre><code>\"icon\": {\n \"url\": \"https://micro.blog/manton/avatar.jpg\",\n \"type\": \"Image\",\n \"mediaType\": \"image/jpeg\"\n}\n</code></pre><p>Which one is correct? Both, of course! Back to the ActivityPub documentation for <code>icon</code>:</p>\n<blockquote>\n<p>A link to an image or an Image object which represents the user\u2019s profile picture</p>\n</blockquote>\n<p>Now let\u2019s check out what Ghost is doing:</p>\n<pre><code>\"icon\": \"https://ghost.org/favicon.ico\"\n</code></pre><p>This is a third variation of the same field, this time using a simple URL value. Not an array and not an object with multiple fields.</p>\n<p>As programmers, we often try to follow <a href=\"https://en.wikipedia.org/wiki/Robustness_principle\">Postel\u2019s law</a>: \u201cbe conservative in what you do, be liberal in what you accept from others\u201d. In other words, we should gracefully handle all these different JSON responses, but we should only send out the best one, the one that is documented by the standard. And yet the standard is itself not very explicit about this.</p>\n<p>I\u2019m not attempting to blame anyone for this. Certainly not Ghost who has just barely got their implementation up and running and will likely have many changes coming in the next few months. But if you imagine this <code>icon</code> variation spread out across the whole spec, with potentially dozens of minor differences, you see why interoperability has sometimes been a challenge.</p>",
"text": "Everyone who has implemented ActivityPub from scratch knows that there are implementation-specific quirks that trip up developers, making compatibility between apps more difficult. Some of these issues are being clarified by the Social Web Community Group. Test suites will help too. Micro.blog has had ActivityPub support for years and we\u2019re still finding edge cases.\nWith Ghost making progress on adding ActivityPub, I tried following their first test account today and immediately ran into a small issue. It\u2019s simple so I think illustrates the kind of problem that developers might hit. You only need to know what JSON looks like to follow along.\nWhen you download an actor\u2019s profile, you get a bunch of fields like the inbox to send requests to, the user\u2019s full name, and the user\u2019s profile photo. The photo is set in a field called icon (or image). If you skim through the ActivityPub specification, you\u2019ll see this example:\n\"icon\": [\n \"https://kenzoishii.example.com/image/165987aklre4\"\n]\nPretty simple. The field is an array with a single URL to the image. But most implementations don\u2019t follow that example. Mastodon and Micro.blog both use something like this, which is in the more complete ActivityStreams spec:\n\"icon\": {\n \"url\": \"https://micro.blog/manton/avatar.jpg\",\n \"type\": \"Image\",\n \"mediaType\": \"image/jpeg\"\n}\nWhich one is correct? Both, of course! Back to the ActivityPub documentation for icon:\n\nA link to an image or an Image object which represents the user\u2019s profile picture\n\nNow let\u2019s check out what Ghost is doing:\n\"icon\": \"https://ghost.org/favicon.ico\"\nThis is a third variation of the same field, this time using a simple URL value. Not an array and not an object with multiple fields.\nAs programmers, we often try to follow Postel\u2019s law: \u201cbe conservative in what you do, be liberal in what you accept from others\u201d. In other words, we should gracefully handle all these different JSON responses, but we should only send out the best one, the one that is documented by the standard. And yet the standard is itself not very explicit about this.\nI\u2019m not attempting to blame anyone for this. Certainly not Ghost who has just barely got their implementation up and running and will likely have many changes coming in the next few months. But if you imagine this icon variation spread out across the whole spec, with potentially dozens of minor differences, you see why interoperability has sometimes been a challenge."
},
"published": "2024-07-07T11:19:15-05:00",
"category": [
"Essays"
],
"post-type": "article",
"_id": "41573833",
"_source": "12",
"_is_read": false
}
On and off for a few hours here and there over the last year, I’ve been working on a way to post updates and photos to my site (which is federated). I’m using Hugo (static site generator) as my CMS but the process was never super fast - especially for things like status updates (that you’re looking at now).
I had the crazy idea a while back that I could use a bat file to help in the process, ultimely to:
- Quickly make a page in hugo with the right categories and tags .
- Build the site.
- Deploy it.
- Send a webmention.
This morning after a complete overhaul of the BAT file, this is my first automated post. If this doesn’t work, then I’m going to walk away until next weekend and bang my head some more then. If this makes it out there, then I’m going to work on a post on how I pulled this all off. (Its long overdue)
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://fed.brid.gy/r/https://uxbrad.com/activity/20240707/101156/",
"content": {
"html": "<p>On and off for a few hours here and there over the last year, I\u2019ve been working on a way to post updates and photos to my site (which is federated). I\u2019m using Hugo (static site generator) as my CMS but the process was never super fast - especially for things like status updates (that you\u2019re looking at now).</p><br /><p>I had the crazy idea a while back that I could use a bat file to help in the process, ultimely to:</p><br /><ol><li><br /></li><li>Quickly make a page in hugo with the right categories and tags .<br /></li><li>Build the site.<br /></li><li>Deploy it.<br /></li><li>Send a webmention.<br /></li></ol><br /><p>This morning after a complete overhaul of the BAT file, this is my first automated post. If this doesn\u2019t work, then I\u2019m going to walk away until next weekend and bang my head some more then. If this makes it out there, then I\u2019m going to work on a post on how I pulled this all off. (Its long overdue)</p>",
"text": "On and off for a few hours here and there over the last year, I\u2019ve been working on a way to post updates and photos to my site (which is federated). I\u2019m using Hugo (static site generator) as my CMS but the process was never super fast - especially for things like status updates (that you\u2019re looking at now).\nI had the crazy idea a while back that I could use a bat file to help in the process, ultimely to:\n\nQuickly make a page in hugo with the right categories and tags .\nBuild the site.\nDeploy it.\nSend a webmention.\n\nThis morning after a complete overhaul of the BAT file, this is my first automated post. If this doesn\u2019t work, then I\u2019m going to walk away until next weekend and bang my head some more then. If this makes it out there, then I\u2019m going to work on a post on how I pulled this all off. (Its long overdue)"
},
"published": "2024-07-07T14:11:56+00:00",
"post-type": "note",
"_id": "41573284",
"_source": "8007",
"_is_read": false
}
Hi all - Just a short note to say I have moved accounts and my username to now follow is @dalereardon - My old handle was @dalereardon@mastodon.social #Disability #NDIS #MentalHealth #WordPress #IndieWeb #Tourism #Travel #Marketing
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://indieweb.social/@dalereardon/112743589775629547",
"content": {
"html": "<p>Hi all - Just a short note to say I have moved accounts and my username to now follow is <span class=\"h-card\"><a class=\"u-url\" href=\"https://indieweb.social/@dalereardon\">@<span>dalereardon</span></a></span> - My old handle was <span class=\"h-card\"><a class=\"u-url\" href=\"https://mastodon.social/@dalereardon\">@<span>dalereardon@mastodon.social</span></a></span> <a href=\"https://indieweb.social/tags/Disability\">#<span>Disability</span></a> <a href=\"https://indieweb.social/tags/NDIS\">#<span>NDIS</span></a> <a href=\"https://indieweb.social/tags/MentalHealth\">#<span>MentalHealth</span></a> <a href=\"https://indieweb.social/tags/WordPress\">#<span>WordPress</span></a> <a href=\"https://indieweb.social/tags/IndieWeb\">#<span>IndieWeb</span></a> <a href=\"https://indieweb.social/tags/Tourism\">#<span>Tourism</span></a> <a href=\"https://indieweb.social/tags/Travel\">#<span>Travel</span></a> <a href=\"https://indieweb.social/tags/Marketing\">#<span>Marketing</span></a></p>\n<a class=\"u-mention\" href=\"https://indieweb.social/@dalereardon\"></a>\n<a class=\"u-mention\" href=\"https://mastodon.social/@dalereardon\"></a>",
"text": "Hi all - Just a short note to say I have moved accounts and my username to now follow is @dalereardon - My old handle was @dalereardon@mastodon.social #Disability #NDIS #MentalHealth #WordPress #IndieWeb #Tourism #Travel #Marketing"
},
"published": "2024-07-07T05:37:34+00:00",
"post-type": "note",
"_id": "41570860",
"_source": "8007",
"_is_read": false
}
New post and old Roblox thing!
I published the script for that old Roblox video tutorial I plan to make, so even though there's no video and it's still a pretty solid resource. Not much info on this stuff online, so hopefully I can change that one drop at a time?
I also published it for motivation reasons - releasing bits at a time encourages me to keep going. Because I know if I start working on an actual video I will get lazy and stop.. oh well.
Enjoy!
https://realja.me/blog/roblox-tutorial-draft/
#blog #oldroblox #roblox #robloxdev #indieweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://wetdry.world/@jame/112743032260270313",
"content": {
"html": "<p>New post and old Roblox thing!</p><p>I published the script for that old Roblox video tutorial I plan to make, so even though there's no video and it's still a pretty solid resource. Not much info on this stuff online, so hopefully I can change that one drop at a time?</p><p>I also published it for motivation reasons - releasing bits at a time encourages me to keep going. Because I know if I start working on an actual video I will get lazy and stop.. oh well.</p><p>Enjoy!</p><p><a href=\"https://realja.me/blog/roblox-tutorial-draft/\"><span>https://</span><span>realja.me/blog/roblox-tutorial</span><span>-draft/</span></a></p><p><a href=\"https://wetdry.world/tags/blog\">#<span>blog</span></a> <a href=\"https://wetdry.world/tags/oldroblox\">#<span>oldroblox</span></a> <a href=\"https://wetdry.world/tags/roblox\">#<span>roblox</span></a> <a href=\"https://wetdry.world/tags/robloxdev\">#<span>robloxdev</span></a> <a href=\"https://wetdry.world/tags/indieweb\">#<span>indieweb</span></a></p>",
"text": "New post and old Roblox thing!\n\nI published the script for that old Roblox video tutorial I plan to make, so even though there's no video and it's still a pretty solid resource. Not much info on this stuff online, so hopefully I can change that one drop at a time?\n\nI also published it for motivation reasons - releasing bits at a time encourages me to keep going. Because I know if I start working on an actual video I will get lazy and stop.. oh well.\n\nEnjoy!\n\nhttps://realja.me/blog/roblox-tutorial-draft/\n\n#blog #oldroblox #roblox #robloxdev #indieweb"
},
"published": "2024-07-07T03:15:47+00:00",
"post-type": "note",
"_id": "41570413",
"_source": "8007",
"_is_read": false
}
@oligneisti@linux.pizza @jsit That last paragraph really resonates! From a solo creator's POV, even with bulk scheduling tools that can post across platforms, it's a headache to manage and detracts from content creation. I'm also pro- "own your content on your site", à la #indieweb #POSSE (Publish on your own site, syndicate elsewhere).
That said, an #RSS reader lacks the ability of, say, #activitypub to comment and interact directly with video content, creators, and other users. (1/4)
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://vis.social/@candide/112742949849638853",
"content": {
"html": "<p>@oligneisti@linux.pizza <span class=\"h-card\"><a class=\"u-url\" href=\"https://social.coop/@jsit\">@<span>jsit</span></a></span> That last paragraph really resonates! From a solo creator's POV, even with bulk scheduling tools that can post across platforms, it's a headache to manage and detracts from content creation. I'm also pro- \"own your content on your site\", \u00e0 la <a href=\"https://vis.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://vis.social/tags/POSSE\">#<span>POSSE</span></a> (Publish on your own site, syndicate elsewhere).</p><p>That said, an <a href=\"https://vis.social/tags/RSS\">#<span>RSS</span></a> reader lacks the ability of, say, <a href=\"https://vis.social/tags/activitypub\">#<span>activitypub</span></a> to comment and interact directly with video content, creators, and other users. (1/4)</p>\n<a class=\"u-mention\" href=\"https://social.coop/@jsit\"></a>",
"text": "@oligneisti@linux.pizza @jsit That last paragraph really resonates! From a solo creator's POV, even with bulk scheduling tools that can post across platforms, it's a headache to manage and detracts from content creation. I'm also pro- \"own your content on your site\", \u00e0 la #indieweb #POSSE (Publish on your own site, syndicate elsewhere).\n\nThat said, an #RSS reader lacks the ability of, say, #activitypub to comment and interact directly with video content, creators, and other users. (1/4)"
},
"published": "2024-07-07T02:54:50+00:00",
"post-type": "note",
"_id": "41570333",
"_source": "8007",
"_is_read": false
}
Would be it fun if indie web blogs have section of every post that is basically nonsense as AI poison contents? #AI #indieweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://indieweb.social/tags/indieweb",
"photo": null
},
"url": "https://fosstodon.org/@potatomeow/112741472306129327",
"content": {
"html": "<p>Would be it fun if indie web blogs have section of every post that is basically nonsense as AI poison contents? <a href=\"https://fosstodon.org/tags/AI\">#<span>AI</span></a> <a href=\"https://fosstodon.org/tags/indieweb\">#<span>indieweb</span></a></p>",
"text": "Would be it fun if indie web blogs have section of every post that is basically nonsense as AI poison contents? #AI #indieweb"
},
"published": "2024-07-06T20:39:04+00:00",
"post-type": "note",
"_id": "41568901",
"_source": "8007",
"_is_read": false
}
An alternative to complex and privacy invasive Google Analytics. With key 3 metrics: unique visitors, pages visited most, and where visitors came from.
#indieweb #SmallWeb #webdev #website #design
https://indieaisle.com/indieaisle/simple-stats/
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@indieaisle/112741173273459828",
"content": {
"html": "<p>An alternative to complex and privacy invasive Google Analytics. With key 3 metrics: unique visitors, pages visited most, and where visitors came from.</p><p><a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://mastodon.social/tags/SmallWeb\">#<span>SmallWeb</span></a> <a href=\"https://mastodon.social/tags/webdev\">#<span>webdev</span></a> <a href=\"https://mastodon.social/tags/website\">#<span>website</span></a> <a href=\"https://mastodon.social/tags/design\">#<span>design</span></a> </p><p><a href=\"https://indieaisle.com/indieaisle/simple-stats/\"><span>https://</span><span>indieaisle.com/indieaisle/simp</span><span>le-stats/</span></a></p>",
"text": "An alternative to complex and privacy invasive Google Analytics. With key 3 metrics: unique visitors, pages visited most, and where visitors came from.\n\n#indieweb #SmallWeb #webdev #website #design \n\nhttps://indieaisle.com/indieaisle/simple-stats/"
},
"published": "2024-07-06T19:23:01+00:00",
"post-type": "note",
"_id": "41568596",
"_source": "8007",
"_is_read": false
}
I’m very busy and far from home this week (more on that later), but I have finally finished to convert my personal website from good old PHP to @astro ! Which means that it’s sitting on a better server and will be way easier to update going forward (no more drag and drop in Filezilla ).
If you haven’t yet I invite you to have a look!
Some highlights are my Art Gallery, the Grand Book of Quotes, and if you enjoyed the website you can leave a message on the Whiteboard :)
⭐ https://nighten.fr ⭐
#PersonalWebsite #IndieWeb #Portfolio #AstroJS
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://hi.nighten.fr/objects/6af42f39-3532-4637-96aa-763538e4574d",
"content": {
"html": "<p>I\u2019m very busy and far from home this week <em>(more on that later)</em>, but I have finally finished to convert my personal website from good old PHP to <span class=\"h-card\"><a class=\"u-url\" href=\"https://m.webtoo.ls/@astro\">@<span>astro</span></a></span> ! Which means that it\u2019s sitting on a better server and will be way easier to update going forward (no more drag and drop in Filezilla <img alt=\":c_hap:\" height=\"16\" src=\"https://files.mastodon.social/cache/custom_emojis/images/000/952/986/original/10faff3b63784b51.gif\" title=\":c_hap:\" width=\"16\" /> ).</p><p>If you haven\u2019t yet I invite you to have a look!</p><p>Some highlights are my <a href=\"https://gallery.nighten.fr\">Art Gallery</a>, the <a href=\"https://nighten.fr/quotes.html\">Grand Book of Quotes</a>, and if you enjoyed the website you can leave a message on the Whiteboard :)</p><p>\u2b50 <a href=\"https://nighten.fr\">https://nighten.fr</a> \u2b50</p><p><a href=\"https://hi.nighten.fr/tag/personalwebsite\">#PersonalWebsite</a> <a href=\"https://hi.nighten.fr/tag/indieweb\">#IndieWeb</a> <a href=\"https://hi.nighten.fr/tag/portfolio\">#Portfolio</a> <a href=\"https://hi.nighten.fr/tag/astrojs\">#AstroJS</a></p>\n<a class=\"u-mention\" href=\"https://m.webtoo.ls/@astro\"></a>",
"text": "I\u2019m very busy and far from home this week (more on that later), but I have finally finished to convert my personal website from good old PHP to @astro ! Which means that it\u2019s sitting on a better server and will be way easier to update going forward (no more drag and drop in Filezilla ).\n\nIf you haven\u2019t yet I invite you to have a look!\n\nSome highlights are my Art Gallery, the Grand Book of Quotes, and if you enjoyed the website you can leave a message on the Whiteboard :)\n\n\u2b50 https://nighten.fr \u2b50\n\n#PersonalWebsite #IndieWeb #Portfolio #AstroJS"
},
"published": "2024-07-06T14:18:42+00:00",
"photo": [
"https://files.mastodon.social/cache/media_attachments/files/112/739/976/692/385/106/original/80b608d57a5d284c.png"
],
"post-type": "photo",
"_id": "41566796",
"_source": "8007",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@inautilo/112739451807347076",
"content": {
"html": "<p><a href=\"https://mastodon.social/tags/Business\">#<span>Business</span></a> <a href=\"https://mastodon.social/tags/Explorations\">#<span>Explorations</span></a><br />Should I remove this blog from Google Search? \u00b7 To delist it, or not to delist it, that is the question <a href=\"https://ilo.im/15zaxe\"><span>https://</span><span>ilo.im/15zaxe</span><span></span></a></p><p>_____<br /><a href=\"https://mastodon.social/tags/Google\">#<span>Google</span></a> <a href=\"https://mastodon.social/tags/SearchEngine\">#<span>SearchEngine</span></a> <a href=\"https://mastodon.social/tags/Visibility\">#<span>Visibility</span></a> <a href=\"https://mastodon.social/tags/SEO\">#<span>SEO</span></a> <a href=\"https://mastodon.social/tags/AI\">#<span>AI</span></a> <a href=\"https://mastodon.social/tags/Website\">#<span>Website</span></a> <a href=\"https://mastodon.social/tags/IndieWeb\">#<span>IndieWeb</span></a> <a href=\"https://mastodon.social/tags/SmallWeb\">#<span>SmallWeb</span></a> <a href=\"https://mastodon.social/tags/Ethics\">#<span>Ethics</span></a> <a href=\"https://mastodon.social/tags/Privacy\">#<span>Privacy</span></a></p>",
"text": "#Business #Explorations\nShould I remove this blog from Google Search? \u00b7 To delist it, or not to delist it, that is the question https://ilo.im/15zaxe\n\n_____\n#Google #SearchEngine #Visibility #SEO #AI #Website #IndieWeb #SmallWeb #Ethics #Privacy"
},
"published": "2024-07-06T12:05:14+00:00",
"post-type": "note",
"_id": "41565984",
"_source": "8007",
"_is_read": false
}
It's interesting to see how divided people are about comments section in a blog. Any wants to reply of why you're for or against it, feel free.
It's so I know what to include or not for my blog.
#IndieWeb #Blogging
RE: https://blahaj.zone/notes/9vcfeornwedq0sjn
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://blahaj.zone/notes/9vdj9q6iwedq0zwa",
"content": {
"html": "<p><span>It's interesting to see how divided people are about comments section in a blog. Any wants to reply of why you're for or against it, feel free.<br /><br />It's so I know what to include or not for my blog.<br /></span><a href=\"https://blahaj.zone/tags/IndieWeb\">#IndieWeb</a> <a href=\"https://blahaj.zone/tags/Blogging\">#Blogging</a><span><br /><br />RE: </span><a href=\"https://blahaj.zone/notes/9vcfeornwedq0sjn\">https://blahaj.zone/notes/9vcfeornwedq0sjn</a></p>",
"text": "It's interesting to see how divided people are about comments section in a blog. Any wants to reply of why you're for or against it, feel free.\n\nIt's so I know what to include or not for my blog.\n#IndieWeb #Blogging\n\nRE: https://blahaj.zone/notes/9vcfeornwedq0sjn"
},
"published": "2024-07-06T10:15:56+00:00",
"post-type": "note",
"_id": "41565576",
"_source": "8007",
"_is_read": false
}
Migrated from Discord to using a local install of https://thelounge.chat, we’ll see how that goes. Still in the same #PHP and #IndieWeb channels, just on the other side of the bridge now.
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mefi.social/@jimw/112736697404036736",
"content": {
"html": "<p>Migrated from Discord to using a local install of <a href=\"https://thelounge.chat\"><span>https://</span><span>thelounge.chat</span><span></span></a>, we\u2019ll see how that goes. Still in the same <a href=\"https://mefi.social/tags/PHP\">#<span>PHP</span></a> and <a href=\"https://mefi.social/tags/IndieWeb\">#<span>IndieWeb</span></a> channels, just on the other side of the bridge now.</p>",
"text": "Migrated from Discord to using a local install of https://thelounge.chat, we\u2019ll see how that goes. Still in the same #PHP and #IndieWeb channels, just on the other side of the bridge now."
},
"published": "2024-07-06T00:24:45+00:00",
"post-type": "note",
"_id": "41563345",
"_source": "8007",
"_is_read": false
}
{
"type": "entry",
"published": "2024-07-05 15:24-0700",
"url": "http://tantek.com/2024/187/b1/indiewebify-request-h-feed-validation",
"in-reply-to": [
"https://github.com/indieweb/indiewebify-me/issues"
],
"name": "Feature request: IndieWebify should support h-feed validation",
"content": {
"text": "Similar to its h-entry checking support (validator), IndieWebify should support \nparsing, checking, and advising how to improve your h-feed (https://microformats.org/wiki/h-feed), \nideally re-using the existing h-entry checking code to also validate all h-entry items found inside the h-feed.",
"html": "<p>\nSimilar to its h-entry checking support (validator), IndieWebify should support \nparsing, checking, and advising how to improve your h-feed (<a href=\"https://microformats.org/wiki/h-feed\">https://microformats.org/wiki/h-feed</a>), \nideally re-using the existing h-entry checking code to also validate all h-entry items found inside the h-feed.\n</p>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "https://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "reply",
"refs": {
"https://github.com/indieweb/indiewebify-me/issues": {
"type": "entry",
"url": "https://github.com/indieweb/indiewebify-me/issues",
"name": "GitHub project \u201cindiewebify-me\u201d",
"post-type": "article"
}
},
"_id": "41563254",
"_source": "1",
"_is_read": false
}
website updating today!
i'm trying out a new design with a new sidebar on the right, and making the sidebars be floating panels. i'm using the right sidebar to display additional info like tags and table of contents.
i'm still figuring it out but all in all pretty swag!
also odonata!!
#indieweb #smallweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://wetdry.world/@jame/112736218463991362",
"content": {
"html": "<p>website updating today!<br />i'm trying out a new design with a new sidebar on the right, and making the sidebars be floating panels. i'm using the right sidebar to display additional info like tags and table of contents.<br />i'm still figuring it out but all in all pretty swag!<br />also odonata!!</p><p><a href=\"https://wetdry.world/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://wetdry.world/tags/smallweb\">#<span>smallweb</span></a></p>",
"text": "website updating today!\ni'm trying out a new design with a new sidebar on the right, and making the sidebars be floating panels. i'm using the right sidebar to display additional info like tags and table of contents.\ni'm still figuring it out but all in all pretty swag!\nalso odonata!!\n\n#indieweb #smallweb"
},
"published": "2024-07-05T22:22:57+00:00",
"photo": [
"https://files.mastodon.social/cache/media_attachments/files/112/736/218/581/351/946/original/b4e53a8618afdbac.png"
],
"post-type": "photo",
"_id": "41562652",
"_source": "8007",
"_is_read": false
}
My initial release of a slashdot /games page.
https://box464.weblog.lol/games
#Indieweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@box464/112736104051201490",
"content": {
"html": "<p>My initial release of a slashdot /games page. </p><p><a href=\"https://box464.weblog.lol/games\"><span>https://</span><span>box464.weblog.lol/games</span><span></span></a></p><p><a href=\"https://mastodon.social/tags/Indieweb\">#<span>Indieweb</span></a></p>",
"text": "My initial release of a slashdot /games page. \n\nhttps://box464.weblog.lol/games\n\n#Indieweb"
},
"published": "2024-07-05T21:53:51+00:00",
"post-type": "note",
"_id": "41562518",
"_source": "8007",
"_is_read": false
}
Little mobile accessibility note; by just adding 1 line of html for the viewport tag you can already make your site much more accessible and readable!
This makes the text on the screen scale with the device's screen size which enlarges it, making the websites text larger. This gets your site on mobile from "wow tiny text" to "eyy, can read this"
#webdev #webaccessibility #indieweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://tech.lgbt/@FamiliarDraco/112734684009093054",
"content": {
"html": "<p>Little mobile accessibility note; by just adding 1 line of html for <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag\">the viewport tag</a> you can already make your site much more accessible and readable!</p><p>This makes the text on the screen scale with the device's screen size which enlarges it, making the websites text larger. This gets your site on mobile from \"wow tiny text\" to \"eyy, can read this\" <img alt=\":blobfoxcofe:\" height=\"16\" src=\"https://files.mastodon.social/cache/custom_emojis/images/000/502/764/original/e7544926247fc287.png\" title=\":blobfoxcofe:\" width=\"16\" /></p><p><a href=\"https://tech.lgbt/tags/webdev\">#<span>webdev</span></a> <a href=\"https://tech.lgbt/tags/webaccessibility\">#<span>webaccessibility</span></a> <a href=\"https://tech.lgbt/tags/indieweb\">#<span>indieweb</span></a></p>",
"text": "Little mobile accessibility note; by just adding 1 line of html for the viewport tag you can already make your site much more accessible and readable!\n\nThis makes the text on the screen scale with the device's screen size which enlarges it, making the websites text larger. This gets your site on mobile from \"wow tiny text\" to \"eyy, can read this\" \n\n#webdev #webaccessibility #indieweb"
},
"published": "2024-07-05T15:52:43+00:00",
"post-type": "note",
"_id": "41560369",
"_source": "8007",
"_is_read": false
}
Hey #Indieweb I know about /uses and /now but is there a slash page for games I’d recommend? /plays or /games?
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://mastodon.social/@box464/112734638234306130",
"content": {
"html": "<p>Hey <a href=\"https://mastodon.social/tags/Indieweb\">#<span>Indieweb</span></a> I know about /uses and /now but is there a slash page for games I\u2019d recommend? /plays or /games?</p>",
"text": "Hey #Indieweb I know about /uses and /now but is there a slash page for games I\u2019d recommend? /plays or /games?"
},
"published": "2024-07-05T15:41:04+00:00",
"post-type": "note",
"_id": "41559866",
"_source": "8007",
"_is_read": false
}
なぜホームページを作るべきなのか?
独自ドメインで、自分のHPを作る理由をまとめた海外記事。
・Why you should have a website | rscottjones
https://rscottjones.com/why-you-should-have-a-website/
個人的に「ここが良いよね」というのをいくつか抜き出し。
・恒久的な”家”にすることができる
・特定のプラットフォームにアカウントを持っているかどうかに関係なく、誰でもあなたのコンテンツを見ることができる
・決められた文字数に合わせる必要がない
・写真を、その時々のアプリが求めるフォーマットやアスペクト比ではなく、希望するフォーマットやアスペクト比で表示できる
・消費よりも創造の方が良い
・ウェブサイトに投稿すると、どんなソーシャルメディアプラットフォームでも、同じ投稿に永久的にリンクすることができる
・ソーシャルメディアの投稿を振り返るよりも、ブログの投稿を振り返る方がはるかに簡単
やっぱりリンクも強調も文字数もデザインも、
自由にできるのがなによりも良いよね。
原文には47個理由が記載されているので、
個人サイト作ろうか迷っている方はぜひとも。
Why you should have a website
デジタルガーデンと個人サイトを育てること。
https://nejimaki-radio.com/why-you-should-have-website-own-domain/
#indieweb
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://nejimaki-radio.com/why-you-should-have-website-own-domain/",
"content": {
"html": "<p><strong>\u306a\u305c\u30db\u30fc\u30e0\u30da\u30fc\u30b8\u3092\u4f5c\u308b\u3079\u304d\u306a\u306e\u304b\uff1f</strong></p><p>\u72ec\u81ea\u30c9\u30e1\u30a4\u30f3\u3067\u3001\u81ea\u5206\u306eHP\u3092\u4f5c\u308b\u7406\u7531\u3092\u307e\u3068\u3081\u305f\u6d77\u5916\u8a18\u4e8b\u3002</p><p>\u30fbWhy you should have a website | rscottjones<br /><a href=\"https://rscottjones.com/why-you-should-have-a-website/\">https://rscottjones.com/why-you-should-have-a-website/</a></p><p>\u500b\u4eba\u7684\u306b\u300c\u3053\u3053\u304c\u826f\u3044\u3088\u306d\u300d\u3068\u3044\u3046\u306e\u3092\u3044\u304f\u3064\u304b\u629c\u304d\u51fa\u3057\u3002</p><p><strong>\u30fb\u6052\u4e45\u7684\u306a\u201d\u5bb6\u201d\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b</strong></p><p><strong>\u30fb\u7279\u5b9a\u306e\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u306b\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u6301\u3063\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306b\u95a2\u4fc2\u306a\u304f\u3001\u8ab0\u3067\u3082\u3042\u306a\u305f\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u308b</strong></p><p><strong>\u30fb\u6c7a\u3081\u3089\u308c\u305f\u6587\u5b57\u6570\u306b\u5408\u308f\u305b\u308b\u5fc5\u8981\u304c\u306a\u3044</strong></p><p><strong>\u30fb\u5199\u771f\u3092\u3001\u305d\u306e\u6642\u3005\u306e\u30a2\u30d7\u30ea\u304c\u6c42\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3084\u30a2\u30b9\u30da\u30af\u30c8\u6bd4\u3067\u306f\u306a\u304f\u3001\u5e0c\u671b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3084\u30a2\u30b9\u30da\u30af\u30c8\u6bd4\u3067\u8868\u793a\u3067\u304d\u308b</strong></p><p><strong>\u30fb\u6d88\u8cbb\u3088\u308a\u3082\u5275\u9020\u306e\u65b9\u304c\u826f\u3044</strong></p><p><strong>\u30fb\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306b\u6295\u7a3f\u3059\u308b\u3068\u3001\u3069\u3093\u306a\u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3067\u3082\u3001\u540c\u3058\u6295\u7a3f\u306b\u6c38\u4e45\u7684\u306b\u30ea\u30f3\u30af\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b</strong></p><p><strong>\u30fb\u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u306e\u6295\u7a3f\u3092\u632f\u308a\u8fd4\u308b\u3088\u308a\u3082\u3001\u30d6\u30ed\u30b0\u306e\u6295\u7a3f\u3092\u632f\u308a\u8fd4\u308b\u65b9\u304c\u306f\u308b\u304b\u306b\u7c21\u5358</strong></p><p>\u3084\u3063\u3071\u308a\u30ea\u30f3\u30af\u3082\u5f37\u8abf\u3082\u6587\u5b57\u6570\u3082\u30c7\u30b6\u30a4\u30f3\u3082\u3001<br />\u81ea\u7531\u306b\u3067\u304d\u308b\u306e\u304c\u306a\u306b\u3088\u308a\u3082\u826f\u3044\u3088\u306d\u3002</p><p>\u539f\u6587\u306b\u306f47\u500b\u7406\u7531\u304c\u8a18\u8f09\u3055\u308c\u3066\u3044\u308b\u306e\u3067\u3001<br />\u500b\u4eba\u30b5\u30a4\u30c8\u4f5c\u308d\u3046\u304b\u8ff7\u3063\u3066\u3044\u308b\u65b9\u306f\u305c\u3072\u3068\u3082\u3002</p><blockquote><p><a href=\"https://rscottjones.com/why-you-should-have-a-website/\">Why you should have a website</a></p></blockquote><p></p><blockquote><p><a href=\"https://nejimaki-radio.com/digital-garden-blog-indie-website-personal-internet/\">\u30c7\u30b8\u30bf\u30eb\u30ac\u30fc\u30c7\u30f3\u3068\u500b\u4eba\u30b5\u30a4\u30c8\u3092\u80b2\u3066\u308b\u3053\u3068\u3002</a></p></blockquote><p></p><p><a href=\"https://nejimaki-radio.com/why-you-should-have-website-own-domain/\">https://nejimaki-radio.com/why-you-should-have-website-own-domain/</a></p><p><a class=\"u-tag u-category\" href=\"https://nejimaki-radio.com/tag/indieweb/\">#indieweb</a></p>",
"text": "\u306a\u305c\u30db\u30fc\u30e0\u30da\u30fc\u30b8\u3092\u4f5c\u308b\u3079\u304d\u306a\u306e\u304b\uff1f\n\n\u72ec\u81ea\u30c9\u30e1\u30a4\u30f3\u3067\u3001\u81ea\u5206\u306eHP\u3092\u4f5c\u308b\u7406\u7531\u3092\u307e\u3068\u3081\u305f\u6d77\u5916\u8a18\u4e8b\u3002\n\n\u30fbWhy you should have a website | rscottjones\nhttps://rscottjones.com/why-you-should-have-a-website/\n\n\u500b\u4eba\u7684\u306b\u300c\u3053\u3053\u304c\u826f\u3044\u3088\u306d\u300d\u3068\u3044\u3046\u306e\u3092\u3044\u304f\u3064\u304b\u629c\u304d\u51fa\u3057\u3002\n\n\u30fb\u6052\u4e45\u7684\u306a\u201d\u5bb6\u201d\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\n\n\u30fb\u7279\u5b9a\u306e\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u306b\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u6301\u3063\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u306b\u95a2\u4fc2\u306a\u304f\u3001\u8ab0\u3067\u3082\u3042\u306a\u305f\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\n\n\u30fb\u6c7a\u3081\u3089\u308c\u305f\u6587\u5b57\u6570\u306b\u5408\u308f\u305b\u308b\u5fc5\u8981\u304c\u306a\u3044\n\n\u30fb\u5199\u771f\u3092\u3001\u305d\u306e\u6642\u3005\u306e\u30a2\u30d7\u30ea\u304c\u6c42\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3084\u30a2\u30b9\u30da\u30af\u30c8\u6bd4\u3067\u306f\u306a\u304f\u3001\u5e0c\u671b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3084\u30a2\u30b9\u30da\u30af\u30c8\u6bd4\u3067\u8868\u793a\u3067\u304d\u308b\n\n\u30fb\u6d88\u8cbb\u3088\u308a\u3082\u5275\u9020\u306e\u65b9\u304c\u826f\u3044\n\n\u30fb\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306b\u6295\u7a3f\u3059\u308b\u3068\u3001\u3069\u3093\u306a\u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3067\u3082\u3001\u540c\u3058\u6295\u7a3f\u306b\u6c38\u4e45\u7684\u306b\u30ea\u30f3\u30af\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\n\n\u30fb\u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u306e\u6295\u7a3f\u3092\u632f\u308a\u8fd4\u308b\u3088\u308a\u3082\u3001\u30d6\u30ed\u30b0\u306e\u6295\u7a3f\u3092\u632f\u308a\u8fd4\u308b\u65b9\u304c\u306f\u308b\u304b\u306b\u7c21\u5358\n\n\u3084\u3063\u3071\u308a\u30ea\u30f3\u30af\u3082\u5f37\u8abf\u3082\u6587\u5b57\u6570\u3082\u30c7\u30b6\u30a4\u30f3\u3082\u3001\n\u81ea\u7531\u306b\u3067\u304d\u308b\u306e\u304c\u306a\u306b\u3088\u308a\u3082\u826f\u3044\u3088\u306d\u3002\n\n\u539f\u6587\u306b\u306f47\u500b\u7406\u7531\u304c\u8a18\u8f09\u3055\u308c\u3066\u3044\u308b\u306e\u3067\u3001\n\u500b\u4eba\u30b5\u30a4\u30c8\u4f5c\u308d\u3046\u304b\u8ff7\u3063\u3066\u3044\u308b\u65b9\u306f\u305c\u3072\u3068\u3082\u3002Why you should have a website\u30c7\u30b8\u30bf\u30eb\u30ac\u30fc\u30c7\u30f3\u3068\u500b\u4eba\u30b5\u30a4\u30c8\u3092\u80b2\u3066\u308b\u3053\u3068\u3002\n\nhttps://nejimaki-radio.com/why-you-should-have-website-own-domain/\n\n#indieweb"
},
"published": "2024-07-05T15:19:58+00:00",
"post-type": "note",
"_id": "41559867",
"_source": "8007",
"_is_read": false
}
i finally got around to adding my garden plants catalogued and photographed for the gardening section in my hall of favorites:
https://xandra.cc/favorites/
i've really grown to love gardening, so i love being able to share this aspect of my hobbies with you!
#webdev #personalweb #personalsites #html #css #indieweb #web #internet #webdesign
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://tilde.zone/@xandra/112732212364075990",
"content": {
"html": "<p>i finally got around to adding my garden plants catalogued and photographed for the gardening section in my hall of favorites:</p><p><a href=\"https://xandra.cc/favorites/\"><span>https://</span><span>xandra.cc/favorites/</span><span></span></a></p><p>i've really grown to love gardening, so i love being able to share this aspect of my hobbies with you!</p><p><a href=\"https://tilde.zone/tags/webdev\">#<span>webdev</span></a> <a href=\"https://tilde.zone/tags/personalweb\">#<span>personalweb</span></a> <a href=\"https://tilde.zone/tags/personalsites\">#<span>personalsites</span></a> <a href=\"https://tilde.zone/tags/html\">#<span>html</span></a> <a href=\"https://tilde.zone/tags/css\">#<span>css</span></a> <a href=\"https://tilde.zone/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://tilde.zone/tags/web\">#<span>web</span></a> <a href=\"https://tilde.zone/tags/internet\">#<span>internet</span></a> <a href=\"https://tilde.zone/tags/webdesign\">#<span>webdesign</span></a></p>",
"text": "i finally got around to adding my garden plants catalogued and photographed for the gardening section in my hall of favorites:\n\nhttps://xandra.cc/favorites/\n\ni've really grown to love gardening, so i love being able to share this aspect of my hobbies with you!\n\n#webdev #personalweb #personalsites #html #css #indieweb #web #internet #webdesign"
},
"published": "2024-07-05T05:24:09+00:00",
"post-type": "note",
"_id": "41556203",
"_source": "8007",
"_is_read": false
}