A highlight from IndieWebCamp San Diego:
Them: “you can scroll if you want to”
Me: “you can leave your friends behind”
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://fed.brid.gy/r/https://gregorlove.com/2023/12/a-highlight-from-indiewebcamp/",
"content": {
"html": "<p>A highlight from <a href=\"https://events.indieweb.org/2023/12/indiewebcamp-san-diego-2023-ZEDdVaxIcQjz\">IndieWebCamp San Diego</a>:</p><br /><blockquote><br /><p>Them: \u201cyou can scroll if you want to\u201d<br /><br />\nMe: \u201cyou can leave your friends behind\u201d</p><br /></blockquote>",
"text": "A highlight from IndieWebCamp San Diego:\n\nThem: \u201cyou can scroll if you want to\u201d\n\n\nMe: \u201cyou can leave your friends behind\u201d"
},
"published": "2023-12-20T01:03:00+00:00",
"post-type": "note",
"_id": "39766219",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "@morgan",
"url": "https://sfba.social/@morgan",
"photo": null
},
"url": "https://sfba.social/@morgan/111610050842020018",
"content": {
"html": "<p>Posting this here feels redundant, but hey.</p><p><a href=\"https://www.theverge.com/23990974/social-media-2023-fediverse-mastodon-threads-activitypub\"><span>https://www.</span><span>theverge.com/23990974/social-m</span><span>edia-2023-fediverse-mastodon-threads-activitypub</span></a></p><p><a href=\"https://sfba.social/tags/activitypub\">#<span>activitypub</span></a> <a href=\"https://sfba.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://sfba.social/tags/CorporateOverlords\">#<span>CorporateOverlords</span></a></p>",
"text": "Posting this here feels redundant, but hey.https://www.theverge.com/23990974/social-media-2023-fediverse-mastodon-threads-activitypub#activitypub #indieweb #CorporateOverlords"
},
"published": "2023-12-20T01:03:43+00:00",
"post-type": "note",
"_id": "39766220",
"_source": "7235",
"_is_read": false
}
If you prefer to not use substack, you can find the #indieweb version over at: https://dreamindani.com/posts/bookmark-beat-ep18/
{
"type": "entry",
"author": {
"name": "@dreamindani",
"url": "https://mastodon.design/@dreamindani",
"photo": null
},
"url": "https://mastodon.design/@dreamindani/111609676461318028",
"content": {
"html": "<p>If you prefer to not use substack, you can find the <a href=\"https://mastodon.design/tags/indieweb\">#<span>indieweb</span></a> version over at: <a href=\"https://dreamindani.com/posts/bookmark-beat-ep18/\"><span>https://</span><span>dreamindani.com/posts/bookmark</span><span>-beat-ep18/</span></a></p>",
"text": "If you prefer to not use substack, you can find the #indieweb version over at: https://dreamindani.com/posts/bookmark-beat-ep18/"
},
"published": "2023-12-19T23:28:30+00:00",
"post-type": "note",
"_id": "39765517",
"_source": "7235",
"_is_read": false
}
Some more context: this is specifically for Ticketing. I’m testing from staging.gregorlove.com and sending tickets to wpdev.gwg.us.
In my mind, sending a ticket to someone is analogous to an IndieAuth Client redeeming an authorization_code
— both an authorization_code
and a ticket
are redeemed for an access token. As a result, my implementation for generating the access token hasn’t changed for the Ticketing flow so far. My access token response includes a me
property of staging.gregorlove.com
.
David’s implementation is apparently expecting that me
property to be wpdev.gwg.us
so he can identify which user the token can be used on behalf of (thinking specifically of multi-user environments like WordPress).
It feels odd to me to return someone else’s URL in the me
property. It seems like the initial subject
sent with the ticket should be verified by the recipient and used to determine the user on the site before redeeming the ticket. If a valid user isn’t identified, it should return an error instead of trying to redeem the ticket.
I think the main use for the me
property in the Ticketing flow, so far, is as a reminder which site the access token can be used for. It might be displayed in an admin interface, for example.
{
"type": "entry",
"published": "2023-12-19 12:03-0800",
"url": "https://gregorlove.com/2023/12/some-more-context/",
"category": [
"indieauth",
"issue"
],
"in-reply-to": [
"https://github.com/indieweb/indieauth/issues/132"
],
"content": {
"text": "Some more context: this is specifically for Ticketing. I\u2019m testing from staging.gregorlove.com and sending tickets to wpdev.gwg.us.\n\nIn my mind, sending a ticket to someone is analogous to an IndieAuth Client redeeming an authorization_code \u2014 both an authorization_code and a ticket are redeemed for an access token. As a result, my implementation for generating the access token hasn\u2019t changed for the Ticketing flow so far. My access token response includes a me property of staging.gregorlove.com.\n\nDavid\u2019s implementation is apparently expecting that me property to be wpdev.gwg.us so he can identify which user the token can be used on behalf of (thinking specifically of multi-user environments like WordPress).\n\nIt feels odd to me to return someone else\u2019s URL in the me property. It seems like the initial subject sent with the ticket should be verified by the recipient and used to determine the user on the site before redeeming the ticket. If a valid user isn\u2019t identified, it should return an error instead of trying to redeem the ticket.\n\nI think the main use for the me property in the Ticketing flow, so far, is as a reminder which site the access token can be used for. It might be displayed in an admin interface, for example.",
"html": "<p>Some more context: this is specifically for <a href=\"https://indieweb.org/Ticketing_for_IndieAuth\">Ticketing</a>. I\u2019m testing from <a href=\"https://staging.gregorlove.com\">staging.gregorlove.com</a> and sending tickets to <a href=\"https://wpdev.gwg.us/\">wpdev.gwg.us</a>.</p>\n\n<p>In my mind, sending a ticket to someone is analogous to an IndieAuth Client redeeming an <code>authorization_code</code> \u2014 both an <code>authorization_code</code> and a <code>ticket</code> are redeemed for an access token. As a result, my implementation for generating the access token hasn\u2019t changed for the Ticketing flow so far. My access token response includes a <code>me</code> property of <code>staging.gregorlove.com</code>.</p>\n\n<p>David\u2019s implementation is apparently expecting that <code>me</code> property to be <code>wpdev.gwg.us</code> so he can identify which user the token can be used on behalf of (thinking specifically of multi-user environments like WordPress).</p>\n\n<p>It feels odd to me to return someone else\u2019s URL in the <code>me</code> property. It seems like the initial <code>subject</code> sent with the ticket should be verified by the recipient and used to determine the user on the site <i>before</i> redeeming the ticket. If a valid user isn\u2019t identified, it should return an error instead of trying to redeem the ticket.</p>\n\n<p>I think the main use for the <code>me</code> property in the Ticketing flow, so far, is as a reminder which site the access token can be used for. It might be displayed in an admin interface, for example.</p>"
},
"author": {
"type": "card",
"name": "gRegor Morrill",
"url": "https://gregorlove.com/",
"photo": "https://gregorlove.com/site/assets/files/6268/profile-2021-square.300x0.jpg"
},
"post-type": "reply",
"_id": "39765247",
"_source": "95",
"_is_read": false
}
@noellemitchell if you enjoyed that you might also like this resource I’ve been maintaining with all sorts of #webring and #indieweb goodies https://shellsharks.com/indieweb
{
"type": "entry",
"author": {
"name": "@sass",
"url": "https://mastodon.social/@sass",
"photo": null
},
"url": "https://mastodon.social/@sass/111609084701321076",
"content": {
"html": "<p><span class=\"h-card\"><a class=\"u-url\" href=\"https://mstdn.social/@noellemitchell\">@<span>noellemitchell</span></a></span> if you enjoyed that you might also like this resource I\u2019ve been maintaining with all sorts of <a href=\"https://mastodon.social/tags/webring\">#<span>webring</span></a> and <a href=\"https://mastodon.social/tags/indieweb\">#<span>indieweb</span></a> goodies <a href=\"https://shellsharks.com/indieweb\"><span>https://</span><span>shellsharks.com/indieweb</span><span></span></a></p>",
"text": "@noellemitchell if you enjoyed that you might also like this resource I\u2019ve been maintaining with all sorts of #webring and #indieweb goodies https://shellsharks.com/indieweb"
},
"published": "2023-12-19T20:58:00+00:00",
"post-type": "note",
"_id": "39764370",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"published": "2023-12-19T16:00:51-05:00",
"syndication": [
"https://news.indieweb.org/en"
],
"name": "Indiewebifying a WordPress Site \u2013 2023 Edition - December 19, 2023",
"author": {
"type": "card",
"name": "David Shanske",
"url": "https://david.shanske.com/",
"photo": "https://david.shanske.com/avatar/dshanske?s=96"
},
"post-type": "article",
"_id": "39764296",
"_source": "5",
"_is_read": false
}
So for some reason I just stumbled upon webrings and I think I'm in love I'm finding so many blogs and following their RSS feeds.
#blog #RSSFeed #blogging #RSS #Love #webring #IndieWeb
{
"type": "entry",
"author": {
"name": "@noellemitchell",
"url": "https://mstdn.social/@noellemitchell",
"photo": null
},
"url": "https://mstdn.social/@noellemitchell/111609004745912497",
"content": {
"html": "<p>So for some reason I just stumbled upon webrings and I think I'm in love <img alt=\":blobcathearteyes:\" height=\"16\" src=\"https://cdn.masto.host/indiewebsocial/cache/custom_emojis/images/000/040/904/original/697f64277392b236.png\" title=\":blobcathearteyes:\" width=\"16\" /><img alt=\":blog:\" height=\"16\" src=\"https://cdn.masto.host/indiewebsocial/cache/custom_emojis/images/000/273/975/original/de6a967f5a64e0ac.png\" title=\":blog:\" width=\"16\" /><img alt=\":website:\" height=\"16\" src=\"https://cdn.masto.host/indiewebsocial/cache/custom_emojis/images/000/241/181/original/e42237a394b7fa5f.png\" title=\":website:\" width=\"16\" /> I'm finding so many blogs and following their RSS feeds. </p><p><a href=\"https://mstdn.social/tags/blog\">#<span>blog</span></a> <a href=\"https://mstdn.social/tags/RSSFeed\">#<span>RSSFeed</span></a> <a href=\"https://mstdn.social/tags/blogging\">#<span>blogging</span></a> <a href=\"https://mstdn.social/tags/RSS\">#<span>RSS</span></a> <a href=\"https://mstdn.social/tags/Love\">#<span>Love</span></a> <a href=\"https://mstdn.social/tags/webring\">#<span>webring</span></a> <a href=\"https://mstdn.social/tags/IndieWeb\">#<span>IndieWeb</span></a></p>",
"text": "So for some reason I just stumbled upon webrings and I think I'm in love I'm finding so many blogs and following their RSS feeds. #blog #RSSFeed #blogging #RSS #Love #webring #IndieWeb"
},
"published": "2023-12-19T20:37:40+00:00",
"post-type": "note",
"_id": "39764078",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "@erikaautumn",
"url": "https://mastodon.social/@erikaautumn",
"photo": null
},
"url": "https://mastodon.social/@erikaautumn/111608405558491047",
"content": {
"html": "<p>Happy 6th anniversary to my first EP: \"Purple EP\"</p><p><a href=\"https://erikaautumn.com/music/albums/purple-ep/\"><span>https://</span><span>erikaautumn.com/music/albums/p</span><span>urple-ep/</span></a></p><p><a href=\"https://mastodon.social/tags/musician\">#<span>musician</span></a> <a href=\"https://mastodon.social/tags/producer\">#<span>producer</span></a> <a href=\"https://mastodon.social/tags/IndependentMusician\">#<span>IndependentMusician</span></a> <a href=\"https://mastodon.social/tags/IndependentProducer\">#<span>IndependentProducer</span></a> <a href=\"https://mastodon.social/tags/artist\">#<span>artist</span></a> <a href=\"https://mastodon.social/tags/FreeMusic\">#<span>FreeMusic</span></a> <a href=\"https://mastodon.social/tags/music\">#<span>music</span></a> <a href=\"https://mastodon.social/tags/BandCamp\">#<span>BandCamp</span></a> <a href=\"https://mastodon.social/tags/AppleMusic\">#<span>AppleMusic</span></a> <a href=\"https://mastodon.social/tags/SoundCloud\">#<span>SoundCloud</span></a> <a href=\"https://mastodon.social/tags/Spotify\">#<span>Spotify</span></a> <a href=\"https://mastodon.social/tags/YouTube\">#<span>YouTube</span></a> <a href=\"https://mastodon.social/tags/Deezer\">#<span>Deezer</span></a> <a href=\"https://mastodon.social/tags/MusicProducer\">#<span>MusicProducer</span></a> <a href=\"https://mastodon.social/tags/IndependentMusic\">#<span>IndependentMusic</span></a> <a href=\"https://mastodon.social/tags/IndependentArtist\">#<span>IndependentArtist</span></a> <a href=\"https://mastodon.social/tags/WebDeveloper\">#<span>WebDeveloper</span></a> <a href=\"https://mastodon.social/tags/IndieWeb\">#<span>IndieWeb</span></a></p>",
"text": "Happy 6th anniversary to my first EP: \"Purple EP\"https://erikaautumn.com/music/albums/purple-ep/#musician #producer #IndependentMusician #IndependentProducer #artist #FreeMusic #music #BandCamp #AppleMusic #SoundCloud #Spotify #YouTube #Deezer #MusicProducer #IndependentMusic #IndependentArtist #WebDeveloper #IndieWeb"
},
"published": "2023-12-19T18:05:18+00:00",
"post-type": "note",
"_id": "39762729",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://www.didiermary.fr/indieweb-posse-wordpress/",
"content": {
"html": "IndieWeb, POSSE",
"text": "IndieWeb, POSSE"
},
"published": "2023-12-19T17:14:08+00:00",
"post-type": "note",
"_id": "39762225",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "@cybeardjm",
"url": "https://masto.ai/@cybeardjm",
"photo": null
},
"url": "https://masto.ai/@cybeardjm/111608204709811226",
"content": {
"html": "IndieWeb, POSSE",
"text": "IndieWeb, POSSE"
},
"published": "2023-12-19T17:14:13+00:00",
"post-type": "note",
"_id": "39762226",
"_source": "7235",
"_is_read": false
}
@eloquence Hey I have a fun lil website I work on with my music and art and links to many other fun indie sites!
https://wetnoodle.org
#IndieWeb #webmadethis
{
"type": "entry",
"author": {
"name": "@wetnoodle",
"url": "https://mastodon.social/@wetnoodle",
"photo": null
},
"url": "https://mastodon.social/@wetnoodle/111608125005540415",
"content": {
"html": "<p><span class=\"h-card\"><a class=\"u-url\" href=\"https://social.coop/@eloquence\">@<span>eloquence</span></a></span> Hey I have a fun lil website I work on with my music and art and links to many other fun indie sites!<br /><a href=\"https://wetnoodle.org\"><span>https://</span><span>wetnoodle.org</span><span></span></a></p><p><a href=\"https://mastodon.social/tags/IndieWeb\">#<span>IndieWeb</span></a> <a href=\"https://mastodon.social/tags/webmadethis\">#<span>webmadethis</span></a></p>",
"text": "@eloquence Hey I have a fun lil website I work on with my music and art and links to many other fun indie sites!\nhttps://wetnoodle.org#IndieWeb #webmadethis"
},
"published": "2023-12-19T16:53:57+00:00",
"post-type": "note",
"_id": "39762064",
"_source": "7235",
"_is_read": false
}
I don’t mind flying under the radar. There are benefits for a product to start small and grow slowly. But I’m still kind of puzzled why Micro.blog is rarely mentioned when articles talk about platforms that support the fediverse. We first added ActivityPub in 2018. Must be doing something wrong.
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2023/12/19/i-dont-mind.html",
"content": {
"html": "<p>I don\u2019t mind flying under the radar. There are benefits for a product to start small and grow slowly. But I\u2019m still kind of puzzled why Micro.blog is rarely mentioned when articles talk about platforms that support the fediverse. We first added ActivityPub <em>in 2018</em>. Must be doing something wrong.</p>",
"text": "I don\u2019t mind flying under the radar. There are benefits for a product to start small and grow slowly. But I\u2019m still kind of puzzled why Micro.blog is rarely mentioned when articles talk about platforms that support the fediverse. We first added ActivityPub in 2018. Must be doing something wrong."
},
"published": "2023-12-19T08:46:29-06:00",
"post-type": "note",
"_id": "39760682",
"_source": "12",
"_is_read": false
}
Flipboard is rolling out the first phase of joining the fediverse:
In this first phase we are partnering with 27 publishers and creators to help them federate their Flipboard accounts and gather feedback. This includes a range of publishers covering global news, tech, music, gaming, travel and science as well as a few content creators like Erin Brockovich and Jefferson Graham.
I tested following one of these accounts in Micro.blog and it’s working pretty well.
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2023/12/19/flipboard-is-rolling.html",
"content": {
"html": "<p>Flipboard is rolling out <a href=\"https://medium.com/@mmccue/flipboard-begins-to-federate-4a80d6bdc209\">the first phase of joining the fediverse</a>:</p>\n<blockquote>\n<p>In this first phase we are partnering with 27 publishers and creators to help them federate their Flipboard accounts and gather feedback. This includes a range of publishers covering global news, tech, music, gaming, travel and science as well as a few content creators like Erin Brockovich and Jefferson Graham.</p>\n</blockquote>\n<p>I tested following one of these accounts in Micro.blog and it\u2019s working pretty well.</p>",
"text": "Flipboard is rolling out the first phase of joining the fediverse:\n\nIn this first phase we are partnering with 27 publishers and creators to help them federate their Flipboard accounts and gather feedback. This includes a range of publishers covering global news, tech, music, gaming, travel and science as well as a few content creators like Erin Brockovich and Jefferson Graham.\n\nI tested following one of these accounts in Micro.blog and it\u2019s working pretty well."
},
"published": "2023-12-19T08:31:19-06:00",
"post-type": "note",
"_id": "39760683",
"_source": "12",
"_is_read": false
}
@eloquence
Then I'll jump in. BuffaloResearch.com, a portal for local history & genealogy in #Buffalo, NY, is celebrating its 30th birthday this month, curated by yours truly for 27 of those years. No ads.
#IndieWeb
{
"type": "entry",
"author": {
"name": "@BuffaloResearch",
"url": "https://glammr.us/@BuffaloResearch",
"photo": null
},
"url": "https://glammr.us/@BuffaloResearch/111607488369681704",
"content": {
"html": "<p><span class=\"h-card\"><a class=\"u-url\" href=\"https://social.coop/@eloquence\">@<span>eloquence</span></a></span> <br />Then I'll jump in. BuffaloResearch.com, a portal for local history & genealogy in <a href=\"https://glammr.us/tags/Buffalo\">#<span>Buffalo</span></a>, NY, is celebrating its 30th birthday this month, curated by yours truly for 27 of those years. No ads.<br /><a href=\"https://glammr.us/tags/IndieWeb\">#<span>IndieWeb</span></a></p>",
"text": "@eloquence \nThen I'll jump in. BuffaloResearch.com, a portal for local history & genealogy in #Buffalo, NY, is celebrating its 30th birthday this month, curated by yours truly for 27 of those years. No ads.\n#IndieWeb"
},
"published": "2023-12-19T14:12:02+00:00",
"post-type": "note",
"_id": "39760370",
"_source": "7235",
"_is_read": false
}
Hey #IndieWeb, have you ever got tired of the people who don't attribute or give credits to using your content?
Well, I was doing a bit of #research on how to fight against the people who uses your #creative work for themselves to earn benefits. And realized it would be useful for our Indieweb community too, as we do need to protect our creative works, from getting #Stolen
Hope this would be useful for your indie journey
https://decodedhtml.com/content-creation/dealing-with-content-sharks.html
{
"type": "entry",
"author": {
"name": "@htmldecoder",
"url": "https://indieweb.social/@htmldecoder",
"photo": null
},
"url": "https://indieweb.social/@htmldecoder/111606842465823555",
"content": {
"html": "<p>Hey <a href=\"https://indieweb.social/tags/IndieWeb\">#<span>IndieWeb</span></a>, have you ever got tired of the people who don't attribute or give credits to using your content?</p><p>Well, I was doing a bit of <a href=\"https://indieweb.social/tags/research\">#<span>research</span></a> on how to fight against the people who uses your <a href=\"https://indieweb.social/tags/creative\">#<span>creative</span></a> work for themselves to earn benefits. And realized it would be useful for our Indieweb community too, as we do need to protect our creative works, from getting <a href=\"https://indieweb.social/tags/Stolen\">#<span>Stolen</span></a> </p><p>Hope this would be useful for your indie journey</p><p><a href=\"https://decodedhtml.com/content-creation/dealing-with-content-sharks.html\"><span>https://</span><span>decodedhtml.com/content-creati</span><span>on/dealing-with-content-sharks.html</span></a></p>",
"text": "Hey #IndieWeb, have you ever got tired of the people who don't attribute or give credits to using your content?Well, I was doing a bit of #research on how to fight against the people who uses your #creative work for themselves to earn benefits. And realized it would be useful for our Indieweb community too, as we do need to protect our creative works, from getting #Stolen Hope this would be useful for your indie journeyhttps://decodedhtml.com/content-creation/dealing-with-content-sharks.html"
},
"published": "2023-12-19T11:27:47+00:00",
"post-type": "note",
"_id": "39759139",
"_source": "7235",
"_is_read": false
}
📝 New Post: My Year In Beer 2023 🍻
I had to jack this out of the Untappd website. Turned out better than expected.
Used eleventy-plugin-bundle for the custom styles.
https://flamedfury.com/posts/my-year-in-beer-2023/
#blog #indieweb #beer #11ty
{
"type": "entry",
"author": {
"name": "@flamed",
"url": "https://social.lol/@flamed",
"photo": null
},
"url": "https://social.lol/@flamed/111606584331358467",
"content": {
"html": "<p>\ud83d\udcdd New Post: My Year In Beer 2023 \ud83c\udf7b </p><p>I had to jack this out of the Untappd website. Turned out better than expected.</p><p>Used eleventy-plugin-bundle for the custom styles.</p><p><a href=\"https://flamedfury.com/posts/my-year-in-beer-2023/\"><span>https://</span><span>flamedfury.com/posts/my-year-i</span><span>n-beer-2023/</span></a></p><p><a href=\"https://social.lol/tags/blog\">#<span>blog</span></a> <a href=\"https://social.lol/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://social.lol/tags/beer\">#<span>beer</span></a> <a href=\"https://social.lol/tags/11ty\">#<span>11ty</span></a></p>",
"text": "\ud83d\udcdd New Post: My Year In Beer 2023 \ud83c\udf7b I had to jack this out of the Untappd website. Turned out better than expected.Used eleventy-plugin-bundle for the custom styles.https://flamedfury.com/posts/my-year-in-beer-2023/#blog #indieweb #beer #11ty"
},
"published": "2023-12-19T10:22:08+00:00",
"post-type": "note",
"_id": "39758768",
"_source": "7235",
"_is_read": false
}
A common refrain is that the web is _turning into_ garbage because of LLMs.
But that's not really true. It's just that the garbage is _drowning out_ everything else, especially in search engines that themselves have decided to go into the garbage generation business.
What can we do? We can promote the #IndieWeb right here. Highlight the good, perhaps obscure websites and blogs you come across, especially the ones that aren't loaded with ads & trackers.
The web is still full of awesomeness.
{
"type": "entry",
"author": {
"name": "@eloquence",
"url": "https://social.coop/@eloquence",
"photo": null
},
"url": "https://social.coop/@eloquence/111606010990653295",
"content": {
"html": "<p>A common refrain is that the web is _turning into_ garbage because of LLMs. </p><p>But that's not really true. It's just that the garbage is _drowning out_ everything else, especially in search engines that themselves have decided to go into the garbage generation business.</p><p>What can we do? We can promote the <a href=\"https://social.coop/tags/IndieWeb\">#<span>IndieWeb</span></a> right here. Highlight the good, perhaps obscure websites and blogs you come across, especially the ones that aren't loaded with ads & trackers. </p><p>The web is still full of awesomeness.</p>",
"text": "A common refrain is that the web is _turning into_ garbage because of LLMs. But that's not really true. It's just that the garbage is _drowning out_ everything else, especially in search engines that themselves have decided to go into the garbage generation business.What can we do? We can promote the #IndieWeb right here. Highlight the good, perhaps obscure websites and blogs you come across, especially the ones that aren't loaded with ads & trackers. The web is still full of awesomeness."
},
"published": "2023-12-19T07:56:19+00:00",
"post-type": "note",
"_id": "39758028",
"_source": "7235",
"_is_read": false
}
It's been a shockingly long time since I did anything with my website (don't go look— it's embarrassing). Hosting fees are coming up for renewal soon, and I'm starting to think about cost effective ways to serve sites, along with what else I might use a server for...
Anyone have any recommendations for hosts?
#hosting #webdev #indieweb
{
"type": "entry",
"author": {
"name": "@jslr",
"url": "https://toolsforthought.social/@jslr",
"photo": null
},
"url": "https://toolsforthought.social/@jslr/111604065372305569",
"content": {
"html": "<p>It's been a shockingly long time since I did anything with my website (don't go look\u2014 it's embarrassing). Hosting fees are coming up for renewal soon, and I'm starting to think about cost effective ways to serve sites, along with what else I might use a server for... </p><p>Anyone have any recommendations for hosts? </p><p><a href=\"https://toolsforthought.social/tags/hosting\">#<span>hosting</span></a> <a href=\"https://toolsforthought.social/tags/webdev\">#<span>webdev</span></a> <a href=\"https://toolsforthought.social/tags/indieweb\">#<span>indieweb</span></a></p>",
"text": "It's been a shockingly long time since I did anything with my website (don't go look\u2014 it's embarrassing). Hosting fees are coming up for renewal soon, and I'm starting to think about cost effective ways to serve sites, along with what else I might use a server for... Anyone have any recommendations for hosts? #hosting #webdev #indieweb"
},
"published": "2023-12-18T23:41:32+00:00",
"post-type": "note",
"_id": "39755597",
"_source": "7235",
"_is_read": false
}
heads up for fellow #indieweb kids who have gotten into the habit of putting alt text on posts on Mastodon and want an easy way to copy and paste alt text to their own sites without having to go into the developer console: this rules and is saving my life rn
https://addons.mozilla.org/en-US/firefox/addon/copy-alt-text/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search
{
"type": "entry",
"author": {
"name": "@sarahallenreed",
"url": "https://sunny.garden/@sarahallenreed",
"photo": null
},
"url": "https://sunny.garden/@sarahallenreed/111603387513638941",
"content": {
"html": "<p>heads up for fellow <a href=\"https://sunny.garden/tags/indieweb\">#<span>indieweb</span></a> kids who have gotten into the habit of putting alt text on posts on Mastodon and want an easy way to copy and paste alt text to their own sites without having to go into the developer console: this rules and is saving my life rn </p><p><a href=\"https://addons.mozilla.org/en-US/firefox/addon/copy-alt-text/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search\"><span>https://</span><span>addons.mozilla.org/en-US/firef</span><span>ox/addon/copy-alt-text/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search</span></a></p>",
"text": "heads up for fellow #indieweb kids who have gotten into the habit of putting alt text on posts on Mastodon and want an easy way to copy and paste alt text to their own sites without having to go into the developer console: this rules and is saving my life rn https://addons.mozilla.org/en-US/firefox/addon/copy-alt-text/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search"
},
"published": "2023-12-18T20:49:08+00:00",
"post-type": "note",
"_id": "39754301",
"_source": "7235",
"_is_read": false
}
Super cool. I’d love to have an app that lets me write entries and then have them posted to my website as private posts. Micropub for publishing of course :) #IndieWeb https://toot.cafe/@chartier/111603123372616812
{
"type": "entry",
"author": {
"name": "@jonathan",
"url": "https://cleverdevil.club/@jonathan",
"photo": null
},
"url": "https://cleverdevil.club/@jonathan/111603234818248663",
"content": {
"html": "<p>Super cool. I\u2019d love to have an app that lets me write entries and then have them posted to my website as private posts. Micropub for publishing of course :) <a href=\"https://cleverdevil.club/tags/IndieWeb\">#<span>IndieWeb</span></a> <a href=\"https://toot.cafe/@chartier/111603123372616812\"><span>https://</span><span>toot.cafe/@chartier/1116031233</span><span>72616812</span></a></p>",
"text": "Super cool. I\u2019d love to have an app that lets me write entries and then have them posted to my website as private posts. Micropub for publishing of course :) #IndieWeb https://toot.cafe/@chartier/111603123372616812"
},
"published": "2023-12-18T20:10:18+00:00",
"post-type": "note",
"_id": "39754038",
"_source": "7235",
"_is_read": false
}