hiya! first time shifting instances so wanted to introduce myself again - apologies to those who know me already!
i'm alexandra! i'm in my 30s, live in san francisco with my boyfriend, and work in tech. i'm a queer, neurodivergent lady from the south who cares too much about the internet. my interests include writing, painting, traveling, learning, anthropology, nature, experiencing new things, video games, interior design, tabletop games, and history (read more: https://xandra.cc).
i'm passionate about the independent/personal web and want more people to build websites, host their own web services, create more, and lessen their dependence on social media and an overall corporate web (read more: https://32bit.cafe).
it's nice to meet you!
hashtags: #indieweb #HTML #CSS #webdev #history #sanfrancisco #lgbt #queer #writing #games #interiordesign #travel #developer #nature #anthropology
{
"type": "entry",
"author": {
"name": "@xandra",
"url": "https://tilde.zone/@xandra",
"photo": null
},
"url": "https://tilde.zone/@xandra/110517692993963233",
"content": {
"html": "<p>hiya! first time shifting instances so wanted to introduce myself again - apologies to those who know me already!</p><p>i'm alexandra! i'm in my 30s, live in san francisco with my boyfriend, and work in tech. i'm a queer, neurodivergent lady from the south who cares too much about the internet. my interests include writing, painting, traveling, learning, anthropology, nature, experiencing new things, video games, interior design, tabletop games, and history (read more: <a href=\"https://xandra.cc\"><span>https://</span><span>xandra.cc</span><span></span></a>).</p><p>i'm passionate about the independent/personal web and want more people to build websites, host their own web services, create more, and lessen their dependence on social media and an overall corporate web (read more: <a href=\"https://32bit.cafe\"><span>https://</span><span>32bit.cafe</span><span></span></a>).</p><p>it's nice to meet you!</p><p>hashtags: <a href=\"https://tilde.zone/tags/indieweb\">#<span>indieweb</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/webdev\">#<span>webdev</span></a> <a href=\"https://tilde.zone/tags/history\">#<span>history</span></a> <a href=\"https://tilde.zone/tags/sanfrancisco\">#<span>sanfrancisco</span></a> <a href=\"https://tilde.zone/tags/lgbt\">#<span>lgbt</span></a> <a href=\"https://tilde.zone/tags/queer\">#<span>queer</span></a> <a href=\"https://tilde.zone/tags/writing\">#<span>writing</span></a> <a href=\"https://tilde.zone/tags/games\">#<span>games</span></a> <a href=\"https://tilde.zone/tags/interiordesign\">#<span>interiordesign</span></a> <a href=\"https://tilde.zone/tags/travel\">#<span>travel</span></a> <a href=\"https://tilde.zone/tags/developer\">#<span>developer</span></a> <a href=\"https://tilde.zone/tags/nature\">#<span>nature</span></a> <a href=\"https://tilde.zone/tags/anthropology\">#<span>anthropology</span></a></p>",
"text": "hiya! first time shifting instances so wanted to introduce myself again - apologies to those who know me already!i'm alexandra! i'm in my 30s, live in san francisco with my boyfriend, and work in tech. i'm a queer, neurodivergent lady from the south who cares too much about the internet. my interests include writing, painting, traveling, learning, anthropology, nature, experiencing new things, video games, interior design, tabletop games, and history (read more: https://xandra.cc).i'm passionate about the independent/personal web and want more people to build websites, host their own web services, create more, and lessen their dependence on social media and an overall corporate web (read more: https://32bit.cafe).it's nice to meet you!hashtags: #indieweb #HTML #CSS #webdev #history #sanfrancisco #lgbt #queer #writing #games #interiordesign #travel #developer #nature #anthropology"
},
"published": "2023-06-10T03:02:45+00:00",
"post-type": "note",
"_id": "37826481",
"_source": "7235",
"_is_read": false
}
If you added a #Mastodon / #ActivityPub follow form to your #IndieWeb site based on Bridgy Fed (e.g. using code/instructions I previously posted¹), you need to update it to add another invisible input element for the "protocol", e.g.:
<input name="protocol" type="hidden" value="web" />
Otherwise people trying to use your form to follow you may see an error from #BridgyFed like:
> Bad Request
> Missing required parameter protocol
Here is the complete example that I posted previously with the new invisible input:
<form method="post" action="https://fed.brid.gy/remote-follow">
<label for="follow-address">🐘 Follow
<kbd>@tantek.com@tantek.com</kbd>:<br />
enter your @-@ fediverse address:</label>
<input id="follow-address" name="address" type="text" required="required"
placeholder="@you@instance.social" alt="fediverse address" value="" />
<input name="domain" type="hidden" value="tantek.com" />
<input name="protocol" type="hidden" value="web" />
<button type="submit">Follow</button>
</form>
I also updated that previous post¹ with the new input in case people find that instead.
This is day 42 of #100DaysOfIndieWeb. #100Days
← Day 41: https://tantek.com/2023/139/t1/wikipedia-supports-indieweb-rel-me
→ 🔮
¹ https://tantek.com/2023/020/t2/bridgy-fed-follow-form
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://mastodon.social/tags/indieweb",
"photo": null
},
"url": "https://fed.brid.gy/r/https://tantek.com/2023/160/t1/mastodon-activitypub-follow-form-bridgy-fed",
"content": {
"html": "If you added a <a href=\"https://indieweb.social/tags/Mastodon\">#<span class=\"p-category\">Mastodon</span></a> / <a href=\"https://indieweb.social/tags/ActivityPub\">#<span class=\"p-category\">ActivityPub</span></a> follow form to your <a href=\"https://indieweb.social/tags/IndieWeb\">#<span class=\"p-category\">IndieWeb</span></a> site based on Bridgy Fed (e.g. using code/instructions I previously posted\u00b9), you need to update it to add another invisible input element for the \"protocol\", e.g.:<br /><br /><input name=\"protocol\" type=\"hidden\" value=\"web\" /><br /><br />Otherwise people trying to use your form to follow you may see an error from <a href=\"https://indieweb.social/tags/BridgyFed\">#<span class=\"p-category\">BridgyFed</span></a> like:<br />> Bad Request <br />> Missing required parameter protocol<br /><br />Here is the complete example that I posted previously with the new invisible input:<br /><br /><form method=\"post\" action=\"https://fed.brid.gy/remote-follow\"><br />\u00a0<label for=\"follow-address\">\ud83d\udc18 Follow <br />\u00a0 <kbd>@tantek.com@tantek.com</kbd>:<br /> <br />\u00a0 enter your @-@ fediverse address:</label><br />\u00a0<input id=\"follow-address\" name=\"address\" type=\"text\" required=\"required\"<br />\u00a0 \u00a0 \u00a0 \u00a0 placeholder=\"@you@instance.social\" alt=\"fediverse address\" value=\"\" /><br />\u00a0<input name=\"domain\" type=\"hidden\" value=\"tantek.com\" /><br />\u00a0<input name=\"protocol\" type=\"hidden\" value=\"web\" /><br />\u00a0<button type=\"submit\">Follow</button><br /></form><br /><br />I also updated that previous post\u00b9 with the new input in case people find that instead.<br /><br /><br />This is day 42 of <a href=\"https://indieweb.social/tags/100DaysOfIndieWeb\">#<span class=\"p-category\">100DaysOfIndieWeb</span></a>. <a href=\"https://indieweb.social/tags/100Days\">#<span class=\"p-category\">100Days</span></a><br /><br />\u2190 Day 41: <a href=\"https://tantek.com/2023/139/t1/wikipedia-supports-indieweb-rel-me\">https://tantek.com/2023/139/t1/wikipedia-supports-indieweb-rel-me</a><br />\u2192 \ud83d\udd2e<br /><br /><br />\u00b9 <a href=\"https://tantek.com/2023/020/t2/bridgy-fed-follow-form\">https://tantek.com/2023/020/t2/bridgy-fed-follow-form</a>",
"text": "If you added a #Mastodon / #ActivityPub follow form to your #IndieWeb site based on Bridgy Fed (e.g. using code/instructions I previously posted\u00b9), you need to update it to add another invisible input element for the \"protocol\", e.g.:\n\n<input name=\"protocol\" type=\"hidden\" value=\"web\" />\n\nOtherwise people trying to use your form to follow you may see an error from #BridgyFed like:\n> Bad Request \n> Missing required parameter protocol\n\nHere is the complete example that I posted previously with the new invisible input:\n\n<form method=\"post\" action=\"https://fed.brid.gy/remote-follow\">\n\u00a0<label for=\"follow-address\">\ud83d\udc18 Follow \n\u00a0 <kbd>@tantek.com@tantek.com</kbd>:\n \n\u00a0 enter your @-@ fediverse address:</label>\n\u00a0<input id=\"follow-address\" name=\"address\" type=\"text\" required=\"required\"\n\u00a0 \u00a0 \u00a0 \u00a0 placeholder=\"@you@instance.social\" alt=\"fediverse address\" value=\"\" />\n\u00a0<input name=\"domain\" type=\"hidden\" value=\"tantek.com\" />\n\u00a0<input name=\"protocol\" type=\"hidden\" value=\"web\" />\n\u00a0<button type=\"submit\">Follow</button>\n</form>\n\nI also updated that previous post\u00b9 with the new input in case people find that instead.\n\n\nThis is day 42 of #100DaysOfIndieWeb. #100Days\n\n\u2190 Day 41: https://tantek.com/2023/139/t1/wikipedia-supports-indieweb-rel-me\n\u2192 \ud83d\udd2e\n\n\n\u00b9 https://tantek.com/2023/020/t2/bridgy-fed-follow-form"
},
"published": "2023-06-10T02:14:00+00:00",
"post-type": "note",
"_id": "37826482",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "@redux",
"url": "https://fosstodon.org/@redux",
"photo": null
},
"url": "https://fosstodon.org/@redux/110517529594066852",
"content": {
"html": "<p>My <a href=\"https://fosstodon.org/tags/neocities\">#<span>neocities</span></a> web portal has been released! <a href=\"https://fosstodon.org/tags/opensource\">#<span>opensource</span></a> <a href=\"https://fosstodon.org/tags/web\">#<span>web</span></a> <a href=\"https://fosstodon.org/tags/webdev\">#<span>webdev</span></a> <a href=\"https://fosstodon.org/tags/indieweb\">#<span>indieweb</span></a> <br /><a href=\"https://surfscape.neocities.org/\"><span>https://</span><span>surfscape.neocities.org/</span><span></span></a></p>",
"text": "My #neocities web portal has been released! #opensource #web #webdev #indieweb \nhttps://surfscape.neocities.org/"
},
"published": "2023-06-10T02:21:11+00:00",
"post-type": "note",
"_id": "37826483",
"_source": "7235",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": null,
"url": "https://herestomwiththeweather.com/",
"photo": null
},
"url": "https://herestomwiththeweather.com/2023/06/09/still-masking/",
"published": "2023-06-09T16:40:43+00:00",
"content": {
"html": "<p>It\u2019s that time of the year again when the measurements of covid positivity and wastewater have fallen to a minimum and resentment toward symbols of public health are amplified.</p>\n\n<p>As <a href=\"https://herestomwiththeweather.com/2023/02/19/toews-has-long-covid/\">mentioned back in February</a>, the career of one of the greatest hockey players of all time was curtailed for a 34 year old by long covid. According to <a href=\"https://www.fairhealth.org/article/fair-health-releases-study-on-post-covid-conditions\">Patients Diagnosed with Post-COVID Conditions</a>, the 36 to 50 age group is the age group most likely to be diagnosed with long covid.</p>\n\n<p>Despite being on the favorable side of the graph right now, whenever I\u2019m uncertain about air ventilation, I am still wearing a mask. For me, it\u2019s always the locker room. When we\u2019re near the maximum point of the graphs, I generally dress outside the locker room.</p>\n\n<p>If you\u2019re on the fediverse, please consider following <a href=\"https://mstdn.social/@erictopol\">Eric Topol</a>. In his article <a href=\"https://erictopol.substack.com/p/the-brain-and-long-covid\">The Brain and Long Covid</a>, he references <a href=\"https://erictopol.substack.com/i/124215133/the-hamburg-study\">The Hamburg Study</a> which seems particularly insightful. The participants were unvaccinated and long covid was not a criteria for selection. It was simply 223 people with mild to moderate covid against 223 controls with no evidence of covid. He notes</p>\n\n<blockquote>\n <p>The MRI inflammatory marker abnormalities were so pronounced that machine learning could accurately differentiate which scans were from the Covid patients vs the control group</p>\n</blockquote>\n\n<p>Despite the MRI scans being taken 10 months after the fact, it was still possible to determine who had been infected even for mild cases.</p>\n\n<p>I\u2019m hopeful that we will make real progress in long covid research but until then, the current rules to the game seem unfavorable without sensible mitigations.</p>",
"text": "It\u2019s that time of the year again when the measurements of covid positivity and wastewater have fallen to a minimum and resentment toward symbols of public health are amplified.\n\nAs mentioned back in February, the career of one of the greatest hockey players of all time was curtailed for a 34 year old by long covid. According to Patients Diagnosed with Post-COVID Conditions, the 36 to 50 age group is the age group most likely to be diagnosed with long covid.\n\nDespite being on the favorable side of the graph right now, whenever I\u2019m uncertain about air ventilation, I am still wearing a mask. For me, it\u2019s always the locker room. When we\u2019re near the maximum point of the graphs, I generally dress outside the locker room.\n\nIf you\u2019re on the fediverse, please consider following Eric Topol. In his article The Brain and Long Covid, he references The Hamburg Study which seems particularly insightful. The participants were unvaccinated and long covid was not a criteria for selection. It was simply 223 people with mild to moderate covid against 223 controls with no evidence of covid. He notes\n\n\n The MRI inflammatory marker abnormalities were so pronounced that machine learning could accurately differentiate which scans were from the Covid patients vs the control group\n\n\nDespite the MRI scans being taken 10 months after the fact, it was still possible to determine who had been infected even for mild cases.\n\nI\u2019m hopeful that we will make real progress in long covid research but until then, the current rules to the game seem unfavorable without sensible mitigations."
},
"name": "Still masking",
"post-type": "article",
"_id": "37826292",
"_source": "246",
"_is_read": false
}
{
"type": "entry",
"author": {
"name": "@BinaryDigit",
"url": "https://mstdn.games/@BinaryDigit",
"photo": null
},
"url": "https://mstdn.games/@BinaryDigit/110514797432410716",
"content": {
"html": "<p>Nostalgia Project: Retro Bit</p><p><a href=\"https://binarydigit.cafe/nostalgia-project-retro-bit/\"><span>https://</span><span>binarydigit.cafe/nostalgia-pro</span><span>ject-retro-bit/</span></a></p><p><a href=\"https://mstdn.games/tags/Tech\">#<span>Tech</span></a> <a href=\"https://mstdn.games/tags/code\">#<span>code</span></a> <a href=\"https://mstdn.games/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://mstdn.games/tags/reflection\">#<span>reflection</span></a> <a href=\"https://mstdn.games/tags/retro\">#<span>retro</span></a></p>",
"text": "Nostalgia Project: Retro Bithttps://binarydigit.cafe/nostalgia-project-retro-bit/#Tech #code #indieweb #reflection #retro"
},
"published": "2023-06-09T14:46:22+00:00",
"post-type": "note",
"_id": "37813150",
"_source": "7235",
"_is_read": false
}
So #indieweb.social's new "birdie" look is *infinitely* more pleasant when the shitty font is disabled in favour of my regulay sans-serif.
Still, I never liked the look&feel even when I was still on Twitter...
OTOH, the weird jumpy scrolling behaviour is still there along with weird jumping about in the left (nav) pane. Still disliking it intensely and hoping like hell it doesn't get forced on us.
{
"type": "entry",
"author": {
"name": "@mikro2nd",
"url": "https://indieweb.social/@mikro2nd",
"photo": null
},
"url": "https://indieweb.social/@mikro2nd/110514750041932244",
"content": {
"html": "<p>So <a href=\"https://indieweb.social/tags/indieweb\">#<span>indieweb</span></a>.social's new \"birdie\" look is *infinitely* more pleasant when the shitty font is disabled in favour of my regulay sans-serif.</p><p>Still, I never liked the look&feel even when I was still on Twitter...</p><p>OTOH, the weird jumpy scrolling behaviour is still there along with weird jumping about in the left (nav) pane. Still disliking it intensely and hoping like hell it doesn't get forced on us.</p>",
"text": "So #indieweb.social's new \"birdie\" look is *infinitely* more pleasant when the shitty font is disabled in favour of my regulay sans-serif.Still, I never liked the look&feel even when I was still on Twitter...OTOH, the weird jumpy scrolling behaviour is still there along with weird jumping about in the left (nav) pane. Still disliking it intensely and hoping like hell it doesn't get forced on us."
},
"published": "2023-06-09T14:34:19+00:00",
"post-type": "note",
"_id": "37813151",
"_source": "7235",
"_is_read": false
}
Has anyone made/thought of making a Mastodon equivalent of @zachleat's Tweetback?
#IndieWeb #11ty
{
"type": "entry",
"author": {
"name": "@elly",
"url": "https://front-end.social/@elly",
"photo": null
},
"url": "https://front-end.social/@elly/110512767635663162",
"content": {
"html": "<p>Has anyone made/thought of making a Mastodon equivalent of <span class=\"h-card\"><a class=\"u-url\" href=\"https://fediverse.zachleat.com/@zachleat\">@<span>zachleat</span></a></span>'s Tweetback?</p><p><a href=\"https://front-end.social/tags/IndieWeb\">#<span>IndieWeb</span></a> <a href=\"https://front-end.social/tags/11ty\">#<span>11ty</span></a></p>",
"text": "Has anyone made/thought of making a Mastodon equivalent of @zachleat's Tweetback?#IndieWeb #11ty"
},
"published": "2023-06-09T06:10:10+00:00",
"post-type": "note",
"_id": "37804785",
"_source": "7235",
"_is_read": false
}
I helgen träffade jag gamla och nya bekanta på Anarkistiska bokmässan och konspirerade kring ett möjligt Internet.
Jag hävdade högtravande att Internet var en skitstorm. Här försöker jag utveckla så gått jag förmår i en liten blogpost:
https://www.turist.blog/2023-06-08-internet-ar-en-skitstorm/
#indieweb #swedish #lowtech #fediverse #rss #permacomputing #altweb #mao
ping @samuel
{
"type": "entry",
"author": {
"name": "@httpster",
"url": "https://indieweb.social/@httpster",
"photo": null
},
"url": "https://indieweb.social/@httpster/110510186426395061",
"content": {
"html": "<p>I helgen tr\u00e4ffade jag gamla och nya bekanta p\u00e5 Anarkistiska bokm\u00e4ssan och konspirerade kring ett m\u00f6jligt Internet.</p><p>Jag h\u00e4vdade h\u00f6gtravande att Internet var en skitstorm. H\u00e4r f\u00f6rs\u00f6ker jag utveckla s\u00e5 g\u00e5tt jag f\u00f6rm\u00e5r i en liten blogpost:</p><p><a href=\"https://www.turist.blog/2023-06-08-internet-ar-en-skitstorm/\"><span>https://www.</span><span>turist.blog/2023-06-08-interne</span><span>t-ar-en-skitstorm/</span></a></p><p><a href=\"https://indieweb.social/tags/indieweb\">#<span>indieweb</span></a> <a href=\"https://indieweb.social/tags/swedish\">#<span>swedish</span></a> <a href=\"https://indieweb.social/tags/lowtech\">#<span>lowtech</span></a> <a href=\"https://indieweb.social/tags/fediverse\">#<span>fediverse</span></a> <a href=\"https://indieweb.social/tags/rss\">#<span>rss</span></a> <a href=\"https://indieweb.social/tags/permacomputing\">#<span>permacomputing</span></a> <a href=\"https://indieweb.social/tags/altweb\">#<span>altweb</span></a> <a href=\"https://indieweb.social/tags/mao\">#<span>mao</span></a></p><p>ping <span class=\"h-card\"><a class=\"u-url\" href=\"https://social.spejset.org/@samuel\">@<span>samuel</span></a></span></p>",
"text": "I helgen tr\u00e4ffade jag gamla och nya bekanta p\u00e5 Anarkistiska bokm\u00e4ssan och konspirerade kring ett m\u00f6jligt Internet.Jag h\u00e4vdade h\u00f6gtravande att Internet var en skitstorm. H\u00e4r f\u00f6rs\u00f6ker jag utveckla s\u00e5 g\u00e5tt jag f\u00f6rm\u00e5r i en liten blogpost:https://www.turist.blog/2023-06-08-internet-ar-en-skitstorm/#indieweb #swedish #lowtech #fediverse #rss #permacomputing #altweb #maoping @samuel"
},
"published": "2023-06-08T19:13:43+00:00",
"post-type": "note",
"_id": "37793855",
"_source": "7235",
"_is_read": false
}
What a wild end for Apollo. The era of client APIs for ad-supported platforms is over. Developers should invest their time in open platforms where the business model is aligned with users' and developers' interests: Micro.blog (paid blog hosting) or the fediverse (often donation-supported).
{
"type": "entry",
"author": {
"name": "Manton Reece",
"url": "https://www.manton.org/",
"photo": "https://micro.blog/manton/avatar.jpg"
},
"url": "https://www.manton.org/2023/06/08/what-a-wild.html",
"content": {
"html": "<p><a href=\"https://www.reddit.com/r/apolloapp/comments/144f6xm/apollo_will_close_down_on_june_30th_reddits/\">What a wild end</a> for Apollo. The era of client APIs for ad-supported platforms is over. Developers should invest their time in open platforms where the business model is aligned with users' and developers' interests: Micro.blog (paid blog hosting) or the fediverse (often donation-supported).</p>",
"text": "What a wild end for Apollo. The era of client APIs for ad-supported platforms is over. Developers should invest their time in open platforms where the business model is aligned with users' and developers' interests: Micro.blog (paid blog hosting) or the fediverse (often donation-supported)."
},
"published": "2023-06-08T11:44:05-06:00",
"post-type": "note",
"_id": "37793759",
"_source": "12",
"_is_read": false
}
Put your augmented reality headset to one side because I’m about to have a big moan about big tech and social media again. It’ll be fun, honest.
Here's this weeks addition of my linkblog In The Margins:
#blog #augmentedreality #enshittification #indieweb
https://mikegrindle.com/posts/enshittification
{
"type": "entry",
"author": {
"name": "@mikegrindle",
"url": "https://indieweb.social/@mikegrindle",
"photo": null
},
"url": "https://indieweb.social/@mikegrindle/110508505121493109",
"content": {
"html": "<p>Put your augmented reality headset to one side because I\u2019m about to have a big moan about big tech and social media again. It\u2019ll be fun, honest.</p><p>Here's this weeks addition of my linkblog In The Margins:</p><p><a href=\"https://indieweb.social/tags/blog\">#<span>blog</span></a> <a href=\"https://indieweb.social/tags/augmentedreality\">#<span>augmentedreality</span></a> <a href=\"https://indieweb.social/tags/enshittification\">#<span>enshittification</span></a> <a href=\"https://indieweb.social/tags/indieweb\">#<span>indieweb</span></a> </p><p><a href=\"https://mikegrindle.com/posts/enshittification\"><span>https://</span><span>mikegrindle.com/posts/enshitti</span><span>fication</span></a></p>",
"text": "Put your augmented reality headset to one side because I\u2019m about to have a big moan about big tech and social media again. It\u2019ll be fun, honest.Here's this weeks addition of my linkblog In The Margins:#blog #augmentedreality #enshittification #indieweb https://mikegrindle.com/posts/enshittification"
},
"published": "2023-06-08T12:06:09+00:00",
"post-type": "note",
"_id": "37788092",
"_source": "7235",
"_is_read": false
}
@tchambers@indieweb.social thanks Tim! And now two more years of work on AB Priority projects¹ (and whatever else we come up with @AB@W3C.social).
¹ https://www.w3.org/wiki/AB/Priorities
{
"type": "entry",
"published": "2023-06-07 01:57-0700",
"url": "http://tantek.com/2023/158/t2/",
"in-reply-to": [
"https://indieweb.social/@tchambers/110492011267601933"
],
"content": {
"text": "@tchambers@indieweb.social thanks Tim! And now two more years of work on AB Priority projects\u00b9 (and whatever else we come up with @AB@W3C.social).\n\n\u00b9 https://www.w3.org/wiki/AB/Priorities",
"html": "<a href=\"https://indieweb.social/@tchambers\">@tchambers@indieweb.social</a> thanks Tim! And now two more years of work on AB Priority projects<a href=\"http://tantek.com/#t5RF2_note-1\">\u00b9</a> (and whatever else we come up with <a href=\"https://W3C.social/@AB\">@AB@W3C.social</a>).<br /><br /><a href=\"http://tantek.com/#t5RF2_ref-1\">\u00b9</a> <a href=\"https://www.w3.org/wiki/AB/Priorities\">https://www.w3.org/wiki/AB/Priorities</a>"
},
"author": {
"type": "card",
"name": "Tantek \u00c7elik",
"url": "http://tantek.com/",
"photo": "https://aperture-media.p3k.io/tantek.com/acfddd7d8b2c8cf8aa163651432cc1ec7eb8ec2f881942dca963d305eeaaa6b8.jpg"
},
"post-type": "reply",
"refs": {
"https://indieweb.social/@tchambers/110492011267601933": {
"type": "entry",
"url": "https://indieweb.social/@tchambers/110492011267601933",
"name": "an IndieWeb page",
"post-type": "article"
}
},
"_id": "37755788",
"_source": "1",
"_is_read": false
}
I wonder if the new workout API that Apple is coming up with will solve some #Indieweb problems of being able to automate exercise recording on our web sites? Some folks were spinning ideas about doing that, though we couldn't actually come up with anything definitive as far as I'm aware.
{
"type": "entry",
"author": {
"name": "@cambridgeport90",
"url": "https://social.platypush.tech/@cambridgeport90",
"photo": null
},
"url": "https://social.platypush.tech/@cambridgeport90/110497848933768066",
"content": {
"html": "<p>I wonder if the new workout API that Apple is coming up with will solve some <a href=\"https://social.platypush.tech/tags/Indieweb\">#<span>Indieweb</span></a> problems of being able to automate exercise recording on our web sites? Some folks were spinning ideas about doing that, though we couldn't actually come up with anything definitive as far as I'm aware.</p>",
"text": "I wonder if the new workout API that Apple is coming up with will solve some #Indieweb problems of being able to automate exercise recording on our web sites? Some folks were spinning ideas about doing that, though we couldn't actually come up with anything definitive as far as I'm aware."
},
"published": "2023-06-06T14:56:08+00:00",
"post-type": "note",
"_id": "37736207",
"_source": "7235",
"_is_read": false
}
Is there a better way of finding #RSS feeds than by typing <site in question> RSS Feed into Bing? #Indieweb #openweb
{
"type": "entry",
"author": {
"name": "@cambridgeport90",
"url": "https://social.platypush.tech/@cambridgeport90",
"photo": null
},
"url": "https://social.platypush.tech/@cambridgeport90/110497433633933518",
"content": {
"html": "<p>Is there a better way of finding <a href=\"https://social.platypush.tech/tags/RSS\">#<span>RSS</span></a> feeds than by typing <site in question> RSS Feed into Bing? <a href=\"https://social.platypush.tech/tags/Indieweb\">#<span>Indieweb</span></a> <a href=\"https://social.platypush.tech/tags/openweb\">#<span>openweb</span></a></p>",
"text": "Is there a better way of finding #RSS feeds than by typing <site in question> RSS Feed into Bing? #Indieweb #openweb"
},
"published": "2023-06-06T13:10:31+00:00",
"post-type": "note",
"_id": "37733203",
"_source": "7235",
"_is_read": false
}
We need to totally overhaul company's offerings for different products. Way too many features; custom domains stand out to me, but I'm sure there are others, are listed under the "business" offerings for most. What about those geeks who use them for other things aside from a business? I'm one of them, I'm sure most of the #Indieweb community is, too. Not as helpful for nontechnical users, but for once, something does not apply to you.
{
"type": "entry",
"author": {
"name": "@cambridgeport90",
"url": "https://social.platypush.tech/@cambridgeport90",
"photo": null
},
"url": "https://social.platypush.tech/@cambridgeport90/110492767594261979",
"content": {
"html": "<p>We need to totally overhaul company's offerings for different products. Way too many features; custom domains stand out to me, but I'm sure there are others, are listed under the \"business\" offerings for most. What about those geeks who use them for other things aside from a business? I'm one of them, I'm sure most of the <a href=\"https://social.platypush.tech/tags/Indieweb\">#<span>Indieweb</span></a> community is, too. Not as helpful for nontechnical users, but for once, something does not apply to you.</p>",
"text": "We need to totally overhaul company's offerings for different products. Way too many features; custom domains stand out to me, but I'm sure there are others, are listed under the \"business\" offerings for most. What about those geeks who use them for other things aside from a business? I'm one of them, I'm sure most of the #Indieweb community is, too. Not as helpful for nontechnical users, but for once, something does not apply to you."
},
"published": "2023-06-05T17:23:53+00:00",
"post-type": "note",
"_id": "37710822",
"_source": "7235",
"_is_read": false
}
The latest stats over the last six months from #Bridgely - a tool for #Indieweb sites publishing over to various social platforms.
"The other striking trend is the marked uptick in Mastodon account growth since Elon took over back in November. It’s more than doubled in the last 6 months, from 557 on Nov. 1 to 1125 yesterday! Exodus indeed."
cc: @snarfed.org
https://snarfed.org/2023-06-02_bridgy-stats-update-8
{
"type": "entry",
"author": {
"name": "@tchambers",
"url": "https://indieweb.social/@tchambers",
"photo": null
},
"url": "https://indieweb.social/@tchambers/110491987401534087",
"content": {
"html": "<p>The latest stats over the last six months from <a href=\"https://indieweb.social/tags/Bridgely\">#<span>Bridgely</span></a> - a tool for <a href=\"https://indieweb.social/tags/Indieweb\">#<span>Indieweb</span></a> sites publishing over to various social platforms.</p><p>\"The other striking trend is the marked uptick in Mastodon account growth since Elon took over back in November. It\u2019s more than doubled in the last 6 months, from 557 on Nov. 1 to 1125 yesterday! Exodus indeed.\"</p><p>cc: <span class=\"h-card\"><a class=\"u-url\" href=\"https://fed.brid.gy/r/https://snarfed.org/\">@<span>snarfed.org</span></a></span> </p><p><a href=\"https://snarfed.org/2023-06-02_bridgy-stats-update-8\"><span>https://</span><span>snarfed.org/2023-06-02_bridgy-</span><span>stats-update-8</span></a></p>",
"text": "The latest stats over the last six months from #Bridgely - a tool for #Indieweb sites publishing over to various social platforms.\"The other striking trend is the marked uptick in Mastodon account growth since Elon took over back in November. It\u2019s more than doubled in the last 6 months, from 557 on Nov. 1 to 1125 yesterday! Exodus indeed.\"cc: @snarfed.org https://snarfed.org/2023-06-02_bridgy-stats-update-8"
},
"published": "2023-06-05T14:05:28+00:00",
"post-type": "note",
"_id": "37705403",
"_source": "7235",
"_is_read": false
}
@jax I like how #indieweb enacted it with Known or micro.blog, the ability to have a custom post type for Bookmarks that allows you to syndicate it as a blog post to different platforms.
{
"type": "entry",
"author": {
"name": "@rmdes",
"url": "https://mstdn.social/@rmdes",
"photo": null
},
"url": "https://mstdn.social/@rmdes/110491558338406810",
"content": {
"html": "<p><span class=\"h-card\"><a class=\"u-url\" href=\"https://lemmy.cloudhub.social/u/jax\">@<span>jax</span></a></span> I like how <a href=\"https://mstdn.social/tags/indieweb\">#<span>indieweb</span></a> enacted it with Known or micro.blog, the ability to have a custom post type for Bookmarks that allows you to syndicate it as a blog post to different platforms.</p>",
"text": "@jax I like how #indieweb enacted it with Known or micro.blog, the ability to have a custom post type for Bookmarks that allows you to syndicate it as a blog post to different platforms."
},
"published": "2023-06-05T12:16:21+00:00",
"post-type": "note",
"_id": "37702685",
"_source": "7235",
"_is_read": false
}
Love how rapidly fedi software is evolving. Took a month break from upgrades, and had several version upgrades.
Now I have post editing in @pixelfed!
And hashtags on @bookwyrm!
#Fedi #Pixelfed #BookWyrm #IndieWeb #SelfHosting
{
"type": "entry",
"author": {
"name": "@josh",
"url": "https://josh.tel/@josh",
"photo": null
},
"url": "https://josh.tel/@josh/110489311922296586",
"content": {
"html": "<p>Love how rapidly fedi software is evolving. Took a month break from upgrades, and had several version upgrades.</p><p>Now I have post editing in <span class=\"h-card\"><a class=\"u-url\" href=\"https://mastodon.social/@pixelfed\">@<span>pixelfed</span></a></span>!</p><p>And hashtags on <span class=\"h-card\"><a class=\"u-url\" href=\"https://tech.lgbt/@bookwyrm\">@<span>bookwyrm</span></a></span>!</p><p><a href=\"https://josh.tel/tags/Fedi\">#<span>Fedi</span></a> <a href=\"https://josh.tel/tags/Pixelfed\">#<span>Pixelfed</span></a> <a href=\"https://josh.tel/tags/BookWyrm\">#<span>BookWyrm</span></a> <a href=\"https://josh.tel/tags/IndieWeb\">#<span>IndieWeb</span></a> <a href=\"https://josh.tel/tags/SelfHosting\">#<span>SelfHosting</span></a></p>",
"text": "Love how rapidly fedi software is evolving. Took a month break from upgrades, and had several version upgrades.Now I have post editing in @pixelfed!And hashtags on @bookwyrm!#Fedi #Pixelfed #BookWyrm #IndieWeb #SelfHosting"
},
"published": "2023-06-05T02:45:04+00:00",
"post-type": "note",
"_id": "37694879",
"_source": "7235",
"_is_read": false
}
I update the content of my homepage. What do you think?
#IndieWeb
https://vanzasetia.site/
{
"type": "entry",
"author": {
"name": "@vanzasetia",
"url": "https://mastodon.social/@vanzasetia",
"photo": null
},
"url": "https://mastodon.social/@vanzasetia/110486315586386330",
"content": {
"html": "<p>I update the content of my homepage. What do you think?</p><p><a href=\"https://mastodon.social/tags/IndieWeb\">#<span>IndieWeb</span></a> <br /><a href=\"https://vanzasetia.site/\"><span>https://</span><span>vanzasetia.site/</span><span></span></a></p>",
"text": "I update the content of my homepage. What do you think?#IndieWeb \nhttps://vanzasetia.site/"
},
"published": "2023-06-04T14:03:03+00:00",
"post-type": "note",
"_id": "37686900",
"_source": "7235",
"_is_read": false
}
How much does (or should) your personal site reflect what you do elsewhere? It’s your < 10min update on the #IndieWeb community!
This Week in the IndieWeb audio edition for May 27th - June 2nd, 2023.
https://martymcgui.re/2023/06/03/this-week-in-the-indieweb-audio-edition--may-27th---june-2nd-2023/
{
"type": "entry",
"author": {
"name": "#indieweb",
"url": "https://indieweb.social/tags/indieweb",
"photo": null
},
"url": "https://martymcgui.re/2023/06/03/122253/",
"content": {
"html": "<p>How much does (or should) your personal site reflect what you do elsewhere? It\u2019s your < 10min update on the #IndieWeb community!</p><br /><p>This Week in the IndieWeb audio edition for May 27th - June 2nd, 2023.<br /><a href=\"https://martymcgui.re/2023/06/03/this-week-in-the-indieweb-audio-edition--may-27th---june-2nd-2023/\">https://martymcgui.re/2023/06/03/this-week-in-the-indieweb-audio-edition--may-27th---june-2nd-2023/</a></p>",
"text": "How much does (or should) your personal site reflect what you do elsewhere? It\u2019s your < 10min update on the #IndieWeb community!\nThis Week in the IndieWeb audio edition for May 27th - June 2nd, 2023.\nhttps://martymcgui.re/2023/06/03/this-week-in-the-indieweb-audio-edition--may-27th---june-2nd-2023/"
},
"published": "2023-06-03T16:22:53+00:00",
"post-type": "note",
"_id": "37667515",
"_source": "7235",
"_is_read": false
}
How much does (or should) your personal site reflect what you do elsewhere? It’s your < 10min update on the #IndieWeb community!
This Week in the IndieWeb audio edition for May 27th - June 2nd, 2023.
https://martymcgui.re/2023/06/03/this-week-in-the-indieweb-audio-edition--may-27th---june-2nd-2023/
{
"type": "entry",
"published": "2023-06-03T12:22:53-0400",
"url": "https://martymcgui.re/2023/06/03/122253/",
"syndication": [
"https://fed.brid.gy/"
],
"content": {
"text": "How much does (or should) your personal site reflect what you do elsewhere? It\u2019s your < 10min update on the #IndieWeb community!\nThis Week in the IndieWeb audio edition for May 27th - June 2nd, 2023.\nhttps://martymcgui.re/2023/06/03/this-week-in-the-indieweb-audio-edition--may-27th---june-2nd-2023/",
"html": "<p>How much does (or should) your personal site reflect what you do elsewhere? It\u2019s your < 10min update on the #IndieWeb community!</p>\n<p>This Week in the IndieWeb audio edition for May 27th - June 2nd, 2023.\n<a href=\"https://martymcgui.re/2023/06/03/this-week-in-the-indieweb-audio-edition--may-27th---june-2nd-2023/\">https://martymcgui.re/2023/06/03/this-week-in-the-indieweb-audio-edition--may-27th---june-2nd-2023/</a></p>"
},
"author": {
"type": "card",
"name": "Marty McGuire",
"url": "https://martymcgui.re/",
"photo": "https://martymcgui.re/images/logo.jpg"
},
"post-type": "note",
"_id": "37666784",
"_source": "175",
"_is_read": false
}