<p><a href="/tags/fedicat/" rel="tag">#fedicat</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> support is made possible by admins running servers of various flavors (and interesting names) that I can test on, such as: wizard.casa, catodon.social, functional.cafe, gram.social, miraiverse.xyz, wienermobile.rentals, friendica.opensocial.space, plasmatrap.com, bytes.programming.dev, eggplant.place, and takahe.staging.django-cast.com</p>
fediverse
<p>I've got a quick favour to ask. If you're reading this post on Mastodon (or the Fediverse), please click boost.<br><br>How come?<br><br>I recently moved across to my own self-hosted single-user server (using GoToSocial.org). For a bunch of reasons, including visibility across the Fedi, it would really help out.<br><br><a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/fedihelp/" rel="tag">#FediHelp</a> <a href="/tags/gotosocial/" rel="tag">#gotosocial</a> <a href="/tags/mastohelp/" rel="tag">#mastohelp</a></p>
Edited 1y ago
<p>How PieFed federates “flair” on posts and comments</p><p><a href="https://join.piefed.social/wp-content/uploads/2025/05/flair_examples.webp" rel="nofollow">On the surface flair on PieFed functions very similar to how it does on Reddit</a> – on posts they’re community-specific tags that can be used to filter posts in a community. People can also add flair to themselves which is just a piece of text that appears next to their name whenever they make posts or comments in the community. This can be helpful for giving a hint about someone’s background, interests or expertise.</p><p>However PieFed is federated and there are copies of the communities on multiple servers (instances). The way to use ActivityPub to create and maintain those copies is described in <a href="https://codeberg.org/fediverse/fep/src/branch/main/fep/1b12/fep-1b12.md" rel="nofollow">FEP 1b12</a> which makes no mention of flair. I have made some minimal additions to that FEP, described below:</p><p>For flair on posts, <a href="https://github.com/LemmyNet/lemmy/pull/5636" rel="nofollow">the Lemmy devs have already done quite a bit of work on this</a>, which I added a little to, so that flair can have colors. Community actors have an additional type of tag:</p><p>{<br> "type": "Group",<br> "id": "<a href="https://piefed.social/c/piefed_meta" rel="nofollow"><span class="invisible">https://</span>piefed.social/c/piefed_meta</a>",<br> "name": "piefed_meta",<br> /* ... */<br> "lemmy:tagsForPosts": [<br> {<br> "type": "lemmy:CommunityTag",<br> "id": "<a href="https://piefed.socia1/c/piefed_meta/tag/whatever" rel="nofollow" class="ellipsis" title="piefed.socia1/c/piefed_meta/tag/whatever"><span class="invisible">https://</span><span class="ellipsis">piefed.socia1/c/piefed_meta/ta</span><span class="invisible">g/whatever</span></a>",<br> "display_name": "Some Post Tag Name",<br> "text_color": "<a href="/tags/000000/" rel="tag">#000000</a>",<br> "background_color": "<a href="/tags/dedede/" rel="tag">#dedede</a>"<br> }<br> ]<br> }</p><p>lemmy:tagsForPosts is a list of lemmy:CommunityTag objects. </p><p>So now all the different copies of the community will know which flair can be used there. When creating a post in the community we just need to add one or more lemmy:CommunityTag objects to the Page activity:</p><p>{<br> "id": "<a href="https://piefed.social/post/1" rel="nofollow"><span class="invisible">https://</span>piefed.social/post/1</a>",<br> "actor": "<a href="https://piefed.social/u/rimu" rel="nofollow"><span class="invisible">https://</span>piefed.social/u/rimu</a>",<br> "type": "Page",<br> /* ... */<br> "tag": [<br> {<br> "type": "lemmy:CommunityTag",<br> "id": "<a href="https://piefed.social/c/piefed_meta/tag/whatever" rel="nofollow" class="ellipsis" title="piefed.social/c/piefed_meta/tag/whatever"><span class="invisible">https://</span><span class="ellipsis">piefed.social/c/piefed_meta/ta</span><span class="invisible">g/whatever</span></a>",<br> "display_name": "Some Post Tag Name"<br> },<br> {<br> "href": "<a href="https://piefed.social/post/1" rel="nofollow"><span class="invisible">https://</span>piefed.social/post/1</a>",<br> "name": "asdf",<br> "type": "Hashtag"<br> }<br> ]<br> }</p><p>In this example the post also has a <a href="/tags/asdf/" rel="tag">#asdf</a> hashtag on it.</p><p>User flair is simpler because it’s not managed by the community moderators and is not a fixed list. PieFed simply adds the author’s flair to every comment (federated as a Note activity) they make. When a Note is received the author’s flair is updated on the receiving instances.</p><p>{<br> "id": "<a href="https://piefed.social/comment/1" rel="nofollow"><span class="invisible">https://</span>piefed.social/comment/1</a>",<br> "actor": "<a href="https://piefed.social/u/rimu" rel="nofollow"><span class="invisible">https://</span>piefed.social/u/rimu</a>",<br> "type": "Note",<br> /* ... */<br> "flair": "PieFed dev"<br> }</p><p>This means that when someone changes their flair it will take effect immediately on their instance but until they write a comment it won’t propagate to other instances. As flair is primarily used on comments and the people using flair will tend to be posting a lot of comments this is kinda “good enough”.</p><p>It would be trivial to add a “flair” attribute onto posts too and have receiving instances read that. User flair shows up next to the author’s name on their posts so arguably it makes sense to send it then too. </p><p>Let’s see how it goes.</p><p><a href="/tags/asdf/" rel="tag">#asdf</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/lemmy/" rel="tag">#Lemmy</a> <a href="/tags/piefed/" rel="tag">#piefed</a> <a href="/tags/threadverse/" rel="tag">#threadverse</a></p>
Edited 1y ago
<p>Wenn Euch ein Beitrag gefällt und Ihr deshalb möchtet, dass dieser möglichst vielen Anderen angezeigt wird, dann ist TEILEN das Mittel der Wahl!<br>Favorisieren ist für die/den Verfasser:in nett, bringt darüber hinaus aber gar nichts.<br>Da es im <a href="/tags/fediverse/" rel="tag">#Fediverse</a> keine Algorithmen gibt, die irgendwas thematisch nach oben spülen, erfüllt allein das Teilen die Funktion, lesenswerten Beiträgen Reichweite zu verschaffen.</p>
<p>Do you want to help testing <span class="h-card"><a href="https://badgefed.vocalcat.com/" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>badgefed</span></a></span> and provision your local test instance?</p><p>Easy</p><p>docker pull ghcr.io/tryvocalcat/badgefed:latest &&<br>docker run -v `pwd`/data:/app/data \<br> -p 8080:8080 \<br> -e SQLITE_DB_FILENAME=/app/data/badges.db \<br> -e AdminAuthentication__AdminUsers__0__Id=your-mastodon-username \<br> -e AdminAuthentication__AdminUsers__0__Type=Mastodon \<br> -e MastodonConfig__ClientId=your-mastodon-client-id \<br> -e MastodonConfig__ClientSecret=your-mastodon-client-secret \<br> -e MastodonConfig__Server=your-mastodon-server \<br> ghcr.io/tryvocalcat/badgefed</p><p>And then open a browser and go to http://localhost:8080 or http://localhost:8080/admin</p><p><a href="/tags/docker/" rel="tag">#docker</a> <a href="/tags/badgefed/" rel="tag">#badgefed</a> <a href="/tags/openbadges/" rel="tag">#openbadges</a> <a href="/tags/softwaredevelopment/" rel="tag">#softwaredevelopment</a> <a href="/tags/testing/" rel="tag">#testing</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/activitypub/" rel="tag">#activitypub</a></p>
Edited 1y ago
<p>I wrote up a position statement for <span class="h-card"><a href="https://mastodon.social/@fediforum" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>fediforum</span></a></span>'s unworkshop on March 2. <a href="https://werd.io/growing-the-open-social-web-2/" rel="nofollow" class="ellipsis" title="werd.io/growing-the-open-social-web-2/"><span class="invisible">https://</span><span class="ellipsis">werd.io/growing-the-open-socia</span><span class="invisible">l-web-2/</span></a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/fediforum/" rel="tag">#fediforum</a></p>
<p>We're now in Trakt migration 2.0.</p><p>The move by Trakt that triggered Trakt Migrtation 1.0 was understandable, they have to make money.</p><p>But in this latest move, messing with grandfathered accounts, no, not understandable.</p><p>You just don't mess with grandfathered accounts ever in any service. That's your way of saying, "Thank you for always being with us since the beginning".</p><p>My mobile network plan is a grandfathered account, and the network have been trying to get us to "upgrade" to a "better" plan. Ad that's to mention one such.</p><p>Even in gaming, grandfathered accounts are not touched ever. If they cancel, that's the only time things change. Why? Simple, the current contract/subscription ended. So, the next time the user subscribe, it will be under the current scheme.</p><p>In addition, owners of grandfathered accounts will do everything to keep it. They'll borrow money if it comes to that. You have grandfathered accounts that are paying you but the owners are rarely using it. Compare that to the owners cancelling their grandfathered accounts because it no longer has any value for them.</p><p>Just like right now. Many are cancelling because.</p><p>Time to move to <a href="/tags/neodb/" rel="tag">#NeoDB</a> or <a href="/tags/simkl/" rel="tag">#SIMKL</a> </p><p>Pick NeoDB if you want to be in the <a href="/tags/fediverse/" rel="tag">#Fediverse</a>. Or, pick SIMKL if you want free "Pro" just by logging-in at least 20 days.</p><p>Both NeoDB and SIMKL combines various databases into one easy to use interface.</p><p><a href="/tags/tracking/" rel="tag">#Tracking</a> <a href="/tags/shelf/" rel="tag">#Shelf</a> <a href="/tags/catalogue/" rel="tag">#Catalogue</a> <a href="/tags/library/" rel="tag">#Library</a></p>
Era da un po' che non provavo <a href="/tags/fedilab/" rel="tag">#fedilab</a><br>Quale occasione migliore! Nuovo account <a href="/tags/snac/" rel="tag">#snac</a> , "nuovo" client.<br><br>👋👋👋<br><br><a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/fediverso/" rel="tag">#fediverso</a> <a href="/tags/client/" rel="tag">#client</a><br>
<p>Good Morning - Happy Friday! Here is a fun abstract to start your day: Mood for Yellow and Pink - <a href="https://1-lisas-baker.pixels.com/featured/mood-for-yellow-and-pink-lisa-s-baker.html" rel="nofollow" class="ellipsis" title="1-lisas-baker.pixels.com/featured/mood-for-yellow-and-pink-lisa-s-baker.html"><span class="invisible">https://</span><span class="ellipsis">1-lisas-baker.pixels.com/featu</span><span class="invisible">red/mood-for-yellow-and-pink-lisa-s-baker.html</span></a></p><p><a href="/tags/pink/" rel="tag">#pink</a> <a href="/tags/yellow/" rel="tag">#yellow</a> <a href="/tags/abstract/" rel="tag">#abstract</a> <a href="/tags/abstractart/" rel="tag">#abstractart</a> <a href="/tags/painting/" rel="tag">#painting</a> <a href="/tags/arte/" rel="tag">#arte</a> <a href="/tags/art/" rel="tag">#art</a> <a href="/tags/artwork/" rel="tag">#artwork</a> <a href="/tags/wallart/" rel="tag">#wallart</a> <a href="/tags/homedecor/" rel="tag">#homedecor</a> <a href="/tags/artforhome/" rel="tag">#artforhome</a> <a href="/tags/artforoffice/" rel="tag">#artforoffice</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/mastoart/" rel="tag">#mastoart</a> <a href="/tags/fediart/" rel="tag">#fediart</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/buyintoart/" rel="tag">#buyintoart</a> <a href="/tags/modernart/" rel="tag">#modernart</a> <a href="/tags/contemporaryart/" rel="tag">#contemporaryart</a> <a href="/tags/fun/" rel="tag">#fun</a> <a href="/tags/happy/" rel="tag">#happy</a> <a href="/tags/smile/" rel="tag">#smile</a> <a href="/tags/artprints/" rel="tag">#artprints</a> <a href="/tags/canvasprints/" rel="tag">#canvasprints</a></p>
<p>I just set up an easy to remember link for my <a href="/tags/neodb/" rel="tag">#NeoDB</a> shelf/catalogue/library account:</p><p><a href="https://loomenji.youronly.one" rel="nofollow"><span class="invisible">https://</span>loomenji.youronly.one</a> ( <span class="h-card"><a href="/@youronlyone@eggplant.place/" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>youronlyone</span></a></span> )</p><p>😁</p><p>It's in addition to the following:</p><p>* fediverse.youronly.one - <span class="h-card"><a href="https://c.im/@youronlyone" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>youronlyone</span></a></span> <br>* atmosphere.youronly.one - <span class="h-card"><a href="['https://bsky.brid.gy/r/https://bsky.app/profile/youronly.one', 'https://youronly.one/', 'https://links.youronly.one/', 'http://is.youronly.one/', 'http://at.youronly.one/']" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>youronly.one</span></a></span><br>* gallery.youronly.one - <span class="h-card"><a href="https://pixelfed.social/youronlyone" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>youronlyone@pixelfed.social</span></a></span><br>* wiki.youronly.one - youronlyone.tiddlyhost.com<br>* threads.youronly.one - <span class="h-card"><a href="https://threads.net/@youronly.one.ofcl/" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>youronly.one.ofcl</span></a></span> </p><p>If you have a personal domain name, use it for redirection (301 or 302). Easy to remember.</p><p>Another advantage, if you ever decide to move instances or change your accounts, you don't have to reprint business cards and update links everywhere, just change your redirect target setting. (It won't move your content of course.)</p><p>And if you're bridging to the <a href="/tags/atmosphere/" rel="tag">#ATmosphere</a> network, you can use your own domain as your handle for your <a href="/tags/fediverse/" rel="tag">#Fediverse</a> network accounts (if supported by your bridging platform)!</p><p>Make use of your domain name! Redirect!</p><p>( <a href="/tags/loomenji/" rel="tag">#Loomenji</a> <a href="/tags/루멘지/" rel="tag">#루멘지</a> <a href="/tags/ルーメンジ/" rel="tag">#ルーメンジ</a> <a href="/tags/路明地/" rel="tag">#路明地</a> )</p>
<p>RE: <a href="https://mastodon.social/@Mastodon/116765910384325070" rel="nofollow" class="ellipsis" title="mastodon.social/@Mastodon/116765910384325070"><span class="invisible">https://</span><span class="ellipsis">mastodon.social/@Mastodon/1167</span><span class="invisible">65910384325070</span></a></p><p>Big news!!</p><p>Congratulations to <span class="h-card"><a href="https://mastodon.social/@MastodonEngineering" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>MastodonEngineering</span></a></span> and everyone who has contributed!</p><p><a href="/tags/mastodon/" rel="tag">#mastodon</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a></p>
<p>Peony Frog - a little whimsy to start your day: <a href="https://1-lisas-baker.pixels.com/featured/peony-frog-lisa-s-baker.html" rel="nofollow" class="ellipsis" title="1-lisas-baker.pixels.com/featured/peony-frog-lisa-s-baker.html"><span class="invisible">https://</span><span class="ellipsis">1-lisas-baker.pixels.com/featu</span><span class="invisible">red/peony-frog-lisa-s-baker.html</span></a></p><p><a href="/tags/frog/" rel="tag">#frog</a> <a href="/tags/frogs/" rel="tag">#frogs</a> <a href="/tags/ladybug/" rel="tag">#ladybug</a> <a href="/tags/peony/" rel="tag">#peony</a> <a href="/tags/flower/" rel="tag">#flower</a> <a href="/tags/flowers/" rel="tag">#flowers</a> <a href="/tags/spring/" rel="tag">#spring</a> <a href="/tags/fun/" rel="tag">#fun</a> <a href="/tags/cute/" rel="tag">#cute</a> <a href="/tags/art/" rel="tag">#art</a> <a href="/tags/artwork/" rel="tag">#artwork</a> <a href="/tags/wallart/" rel="tag">#wallart</a> <a href="/tags/homedecor/" rel="tag">#homedecor</a> <a href="/tags/artforhome/" rel="tag">#artforhome</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/mastoart/" rel="tag">#mastoart</a> <a href="/tags/fediart/" rel="tag">#fediart</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/artprints/" rel="tag">#artprints</a> <a href="/tags/canvasprints/" rel="tag">#canvasprints</a> <a href="/tags/kidsroomdecor/" rel="tag">#kidsroomdecor</a> <a href="/tags/interiordecor/" rel="tag">#interiordecor</a> <a href="/tags/cutefrogs/" rel="tag">#cutefrogs</a> <a href="/tags/bug/" rel="tag">#bug</a> <a href="/tags/insects/" rel="tag">#insects</a> <a href="/tags/artforkids/" rel="tag">#artforkids</a> <a href="/tags/monday/" rel="tag">#Monday</a> <a href="/tags/charming/" rel="tag">#charming</a> <a href="/tags/whimsy/" rel="tag">#whimsy</a></p>
<p>Good Morning and Happy Wednesday! Here is Cupcake Mouse to start your day: <a href="https://1-lisas-baker.pixels.com/featured/cupcake-mouse-lisa-s-baker.html" rel="nofollow" class="ellipsis" title="1-lisas-baker.pixels.com/featured/cupcake-mouse-lisa-s-baker.html"><span class="invisible">https://</span><span class="ellipsis">1-lisas-baker.pixels.com/featu</span><span class="invisible">red/cupcake-mouse-lisa-s-baker.html</span></a></p><p><a href="/tags/mouse/" rel="tag">#mouse</a> <a href="/tags/mice/" rel="tag">#mice</a> <a href="/tags/cupcake/" rel="tag">#cupcake</a> <a href="/tags/dessert/" rel="tag">#dessert</a> <a href="/tags/cute/" rel="tag">#cute</a> <a href="/tags/cuteanimals/" rel="tag">#cuteanimals</a> <a href="/tags/cupcakehat/" rel="tag">#cupcakehat</a> <a href="/tags/art/" rel="tag">#art</a> <a href="/tags/arte/" rel="tag">#arte</a> <a href="/tags/artwork/" rel="tag">#artwork</a> <a href="/tags/wallart/" rel="tag">#wallart</a> <a href="/tags/homedecor/" rel="tag">#homedecor</a> <a href="/tags/artforhome/" rel="tag">#artforhome</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/buyintoart/" rel="tag">#buyintoart</a> <a href="/tags/mastoart/" rel="tag">#mastoart</a> <a href="/tags/fediart/" rel="tag">#fediart</a> <a href="/tags/fedigiftshop/" rel="tag">#fedigiftshop</a> <a href="/tags/sweet/" rel="tag">#sweet</a> <a href="/tags/sweettreats/" rel="tag">#sweettreats</a> <a href="/tags/critters/" rel="tag">#critters</a> <a href="/tags/artprints/" rel="tag">#artprints</a> <a href="/tags/canvasprints/" rel="tag">#canvasprints</a> <a href="/tags/artforkids/" rel="tag">#artforkids</a> <a href="/tags/kidsroomdecor/" rel="tag">#kidsroomdecor</a> <a href="/tags/mouseart/" rel="tag">#mouseart</a> <a href="/tags/foodart/" rel="tag">#foodart</a> <a href="/tags/wednesday/" rel="tag">#Wednesday</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/watercolor/" rel="tag">#watercolor</a> <a href="/tags/mixedmedia/" rel="tag">#MixedMedia</a></p>
<p>🥳 Announcing Splinter, your <a href="/tags/fediverse/" rel="tag">#fediverse</a> tool for creating <a href="/tags/mastodon/" rel="tag">#Mastodon</a> threads. </p><p>Splinter is a simple, self-explanatory app. It's a fun, non-profit, open-source side project.</p><p>I use Splinter all the time myself now; There must be others who need it. Please share to help them find it!</p><p><a href="https://splinter.hastily.cc/" rel="nofollow"><span class="invisible">https://</span>splinter.hastily.cc/</a> (1/2)</p>
<p><a href="/tags/maundythursday/" rel="tag">#MaundyThursday</a> Im sorry 4 not able to post <a href="/tags/fediverse/" rel="tag">#Fediverse</a> Signal's going bad & Things are chaotic here too😭There's No Relief Medicines hand-outs, Essential Aid is either Limited or Postponed Distribution. My Asthma attacks in like everyday so I gotta wear mask even indoor. PLEASE UR KIND SUPPORT IS DESPERATELY NEED 4 getting Essentials/Catfood/Water Gallons/Rice etc.</p><p>📌GCash: 09694696854</p><p>[If u GCash any amount lmk pls,Signal works differently]</p><p><a href="/tags/mastodon/" rel="tag">#Mastodon</a> <a href="/tags/support/" rel="tag">#Support</a> <a href="/tags/mutualaid/" rel="tag">#MutualAid</a> <a href="/tags/philippines/" rel="tag">#Philippines</a> <a href="/tags/today/" rel="tag">#today</a></p>
Getting started with ActivityPub on WordPress just got a lot easier. A new guided onboarding experience is now part of the plugin, designed to help you configure key settings and understand how your site connects to the Fediverse—from the moment you activate it.
Whether you're new to ActivityPub or just setting things up again, the onboarding flow helps you make informed choices around visibility, content formatting, and profile setup. It’s built to give you confidence that your […]
<p>If you're interested in building your own <a href="/tags/activitypub/" rel="tag">#ActivityPub</a> server but don't know where to start, I recommend checking out <a href="/tags/fedify/" rel="tag">#Fedify</a>'s <a href="/tags/tutorial/" rel="tag">#tutorial</a> <a href="https://fedify.dev/tutorial/microblog" rel="nofollow">Creating your own federated microblog</a>. It provides a comprehensive, step-by-step guide that walks you through building a fully functional federated application. Perfect for developers who want to dive into the <a href="/tags/fediverse/" rel="tag">#fediverse</a>!</p><p><a href="/tags/fedidev/" rel="tag">#fedidev</a></p>
<p>Hey everyone! Just FYI, I am going to be changing my username on here to @ cyberseckyle. Of course, as y'all know, I am going to have to create a new account. 😒</p><p>Be on the lookout for this change and me refriending you during the upcoming days.</p><p>Thanks!</p><p><a href="/tags/mastodon/" rel="tag">#Mastodon</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/fedifriends/" rel="tag">#FediFriends</a> <a href="/tags/socialmedia/" rel="tag">#SocialMedia</a> <a href="/tags/infosecexchange/" rel="tag">#InfosecExchange</a> <a href="/tags/cyberseckyle/" rel="tag">#CybersecKyle</a></p>
<p>Goaties and Dahlias, now that’s how you kick off a Monday! 😂🐐🌸 Wishing you all a bright and cheerful start to the week. Have a good one! 💛✨ <a href="https://1-lisas-baker.pixels.com/featured/goaties-and-dahlias-lisa-s-baker.html" rel="nofollow" class="ellipsis" title="1-lisas-baker.pixels.com/featured/goaties-and-dahlias-lisa-s-baker.html"><span class="invisible">https://</span><span class="ellipsis">1-lisas-baker.pixels.com/featu</span><span class="invisible">red/goaties-and-dahlias-lisa-s-baker.html</span></a></p><p><a href="/tags/goat/" rel="tag">#goat</a> <a href="/tags/goats/" rel="tag">#goats</a> <a href="/tags/animals/" rel="tag">#animals</a> <a href="/tags/farm/" rel="tag">#farm</a> <a href="/tags/farmanimals/" rel="tag">#farmanimals</a> <a href="/tags/cute/" rel="tag">#cute</a> <a href="/tags/cuteanimals/" rel="tag">#cuteanimals</a> <a href="/tags/art/" rel="tag">#art</a> <a href="/tags/arte/" rel="tag">#arte</a> <a href="/tags/artwork/" rel="tag">#artwork</a> <a href="/tags/wallart/" rel="tag">#wallart</a> <a href="/tags/homedecor/" rel="tag">#homedecor</a> <a href="/tags/artforhome/" rel="tag">#artforhome</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/buyintoart/" rel="tag">#buyintoart</a> <a href="/tags/mastoart/" rel="tag">#mastoart</a> <a href="/tags/fediart/" rel="tag">#fediart</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/dahlia/" rel="tag">#dahlia</a> <a href="/tags/flowers/" rel="tag">#flowers</a> <a href="/tags/floral/" rel="tag">#floral</a> <a href="/tags/artprints/" rel="tag">#artprints</a> <a href="/tags/canvasprints/" rel="tag">#canvasprints</a> <a href="/tags/puzzles/" rel="tag">#puzzles</a> <a href="/tags/stationary/" rel="tag">#stationary</a> <a href="/tags/whimsical/" rel="tag">#whimsical</a></p>
<p>Sharing a fun Southwest piece - Southwest Bloom Bug. Have a good one! 😀 <a href="https://1-lisas-baker.pixels.com/featured/southwest-bloom-bug-lisa-s-baker.html" rel="nofollow" class="ellipsis" title="1-lisas-baker.pixels.com/featured/southwest-bloom-bug-lisa-s-baker.html"><span class="invisible">https://</span><span class="ellipsis">1-lisas-baker.pixels.com/featu</span><span class="invisible">red/southwest-bloom-bug-lisa-s-baker.html</span></a></p><p><a href="/tags/vwbug/" rel="tag">#vwbug</a> <a href="/tags/bug/" rel="tag">#bug</a> <a href="/tags/volkswagen/" rel="tag">#volkswagen</a> <a href="/tags/vw/" rel="tag">#vw</a> <a href="/tags/car/" rel="tag">#car</a> <a href="/tags/vehicle/" rel="tag">#vehicle</a> <a href="/tags/art/" rel="tag">#art</a> <a href="/tags/arte/" rel="tag">#arte</a> <a href="/tags/artwork/" rel="tag">#artwork</a> <a href="/tags/wallart/" rel="tag">#wallart</a> <a href="/tags/homedecor/" rel="tag">#homedecor</a> <a href="/tags/artforhome/" rel="tag">#artforhome</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/mastoart/" rel="tag">#mastoart</a> <a href="/tags/fediart/" rel="tag">#fediart</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/southwest/" rel="tag">#southwest</a> <a href="/tags/desert/" rel="tag">#desert</a> <a href="/tags/cactus/" rel="tag">#cactus</a> <a href="/tags/cacti/" rel="tag">#cacti</a> <a href="/tags/canvasprints/" rel="tag">#canvasprints</a> <a href="/tags/artprints/" rel="tag">#artprints</a> <a href="/tags/buyintoart/" rel="tag">#buyintoart</a> <a href="/tags/fun/" rel="tag">#fun</a> <a href="/tags/whimsical/" rel="tag">#whimsical</a> <a href="/tags/blooms/" rel="tag">#blooms</a> <a href="/tags/flowers/" rel="tag">#flowers</a> <a href="/tags/boho/" rel="tag">#boho</a> <a href="/tags/vintage/" rel="tag">#vintage</a> <a href="/tags/romantic/" rel="tag">#romantic</a></p>
<p>A bit of tea art for this Sunday morning. Have a good one! <a href="https://1-lisas-baker.pixels.com/featured/tea-no-01-lisa-s-baker.html" rel="nofollow" class="ellipsis" title="1-lisas-baker.pixels.com/featured/tea-no-01-lisa-s-baker.html"><span class="invisible">https://</span><span class="ellipsis">1-lisas-baker.pixels.com/featu</span><span class="invisible">red/tea-no-01-lisa-s-baker.html</span></a></p><p><a href="/tags/tea/" rel="tag">#tea</a> <a href="/tags/spotoftea/" rel="tag">#spotoftea</a> <a href="/tags/teatime/" rel="tag">#teatime</a> <a href="/tags/beverage/" rel="tag">#beverage</a> <a href="/tags/drink/" rel="tag">#drink</a> <a href="/tags/hotdrink/" rel="tag">#hotdrink</a> <a href="/tags/breakfast/" rel="tag">#breakfast</a> <a href="/tags/fun/" rel="tag">#fun</a> <a href="/tags/art/" rel="tag">#art</a> <a href="/tags/arte/" rel="tag">#arte</a> <a href="/tags/artwork/" rel="tag">#artwork</a> <a href="/tags/wallart/" rel="tag">#wallart</a> <a href="/tags/homedecor/" rel="tag">#homedecor</a> <a href="/tags/artforhome/" rel="tag">#artforhome</a> <a href="/tags/artprints/" rel="tag">#artprints</a> <a href="/tags/woodprints/" rel="tag">#woodprints</a> <a href="/tags/canavsprints/" rel="tag">#canavsprints</a> <a href="/tags/mastoart/" rel="tag">#mastoart</a> <a href="/tags/fediart/" rel="tag">#fediart</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/buyintoart/" rel="tag">#buyintoart</a> <a href="/tags/pattern/" rel="tag">#pattern</a> <a href="/tags/kitchendecor/" rel="tag">#kitchendecor</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/puzzles/" rel="tag">#puzzles</a> <a href="/tags/stationary/" rel="tag">#stationary</a> <a href="/tags/tealovers/" rel="tag">#tealovers</a> <a href="/tags/cafe/" rel="tag">#cafe</a> <a href="/tags/bakery/" rel="tag">#bakery</a></p>
<p><a href="/tags/hollo/" rel="tag">#Hollo</a> 0.6.0 is coming soon!</p><p>We're putting the finishing touches on our biggest security and feature update yet. Here's what's coming:</p><p>Enhanced <a href="/tags/oauth/" rel="tag">#OAuth</a> <a href="/tags/security/" rel="tag">#security</a></p><p>RFC 8414 (OAuth metadata discovery)<br>RFC 7636 (<a href="/tags/pkce/" rel="tag">#PKCE</a> support)<br>Improved authorization flows following RFC 9700 best practices</p><p>New features</p><p>Extended character limit (4K → 10K)<br>Code syntax highlighting<br>Customizable profile themes<br>EXIF metadata stripping for privacy</p><p>Important notes for update</p><p>Node.js 24+ required<br>Updated environment variables for asset storage<br>Stronger SECRET_KEY requirements (44+ chars)</p><p>Special thanks to <span class="h-card"><a href="https://hachyderm.io/@thisismissem" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>thisismissem</span></a></span> for the extensive OAuth improvements that help keep the <a href="/tags/fediverse/" rel="tag">#fediverse</a> secure and compatible! 🙏</p><p>Full changelog and upgrade guide coming with the release.</p><p><a href="/tags/activitypub/" rel="tag">#ActivityPub</a></p>
<p>☀️ For all the coffee lovers out there — here’s a little splash of coffee art to brighten your morning! ☕🎨 Wishing you a cozy, caffeine-fueled day ahead! 🌿😊 <a href="https://1-lisas-baker.pixels.com/featured/coffee-no-02-lisa-s-baker.html" rel="nofollow" class="ellipsis" title="1-lisas-baker.pixels.com/featured/coffee-no-02-lisa-s-baker.html"><span class="invisible">https://</span><span class="ellipsis">1-lisas-baker.pixels.com/featu</span><span class="invisible">red/coffee-no-02-lisa-s-baker.html</span></a></p><p><a href="/tags/coffee/" rel="tag">#coffee</a> <a href="/tags/drink/" rel="tag">#drink</a> <a href="/tags/cofffeeshop/" rel="tag">#cofffeeshop</a> <a href="/tags/cafe/" rel="tag">#cafe</a> <a href="/tags/beverage/" rel="tag">#beverage</a> <a href="/tags/breakfast/" rel="tag">#breakfast</a> <a href="/tags/kitchendecor/" rel="tag">#kitchendecor</a> <a href="/tags/fun/" rel="tag">#fun</a> <a href="/tags/art/" rel="tag">#art</a> <a href="/tags/arte/" rel="tag">#arte</a> <a href="/tags/artwork/" rel="tag">#artwork</a> <a href="/tags/mastoart/" rel="tag">#mastoart</a> <a href="/tags/fediart/" rel="tag">#fediart</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/buyintoart/" rel="tag">#buyintoart</a> <a href="/tags/artforhome/" rel="tag">#artforhome</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/homedecor/" rel="tag">#homedecor</a> <a href="/tags/coffeelovers/" rel="tag">#coffeelovers</a> <a href="/tags/coffeeart/" rel="tag">#coffeeart</a> <a href="/tags/puzzles/" rel="tag">#puzzles</a> <a href="/tags/woodprints/" rel="tag">#woodprints</a> <a href="/tags/artprints/" rel="tag">#artprints</a> <a href="/tags/canvasprints/" rel="tag">#canvasprints</a></p>
<p>Good Morning! 🌸 Where are my cow lovers at? 🐄💅 Serving up some fancy farm vibes today! <a href="https://1-lisas-baker.pixels.com/featured/peony-cow-lisa-s-baker.html" rel="nofollow" class="ellipsis" title="1-lisas-baker.pixels.com/featured/peony-cow-lisa-s-baker.html"><span class="invisible">https://</span><span class="ellipsis">1-lisas-baker.pixels.com/featu</span><span class="invisible">red/peony-cow-lisa-s-baker.html</span></a></p><p><a href="/tags/cow/" rel="tag">#cow</a> <a href="/tags/cows/" rel="tag">#cows</a> <a href="/tags/cowlovers/" rel="tag">#cowlovers</a> <a href="/tags/bovine/" rel="tag">#bovine</a> <a href="/tags/floral/" rel="tag">#floral</a> <a href="/tags/peony/" rel="tag">#peony</a> <a href="/tags/peonies/" rel="tag">#peonies</a> <a href="/tags/fancy/" rel="tag">#fancy</a> <a href="/tags/art/" rel="tag">#art</a> <a href="/tags/arte/" rel="tag">#arte</a> <a href="/tags/artwork/" rel="tag">#artwork</a> <a href="/tags/wallart/" rel="tag">#wallart</a> <a href="/tags/homedecor/" rel="tag">#homedecor</a> <a href="/tags/artforhome/" rel="tag">#artforhome</a> <a href="/tags/artforsale/" rel="tag">#artforsale</a> <a href="/tags/buyintoart/" rel="tag">#buyintoart</a> <a href="/tags/artprints/" rel="tag">#artprints</a> <a href="/tags/canvasprints/" rel="tag">#canvasprints</a> <a href="/tags/mastoart/" rel="tag">#mastoart</a> <a href="/tags/fediart/" rel="tag">#fediart</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/pink/" rel="tag">#pink</a> <a href="/tags/fancy/" rel="tag">#fancy</a> <a href="/tags/whimsical/" rel="tag">#whimsical</a> <a href="/tags/pretty/" rel="tag">#pretty</a> <a href="/tags/puzzles/" rel="tag">#puzzles</a> <a href="/tags/stationary/" rel="tag">#stationary</a> <a href="/tags/shabbychic/" rel="tag">#shabbychic</a> <a href="/tags/farmhouse/" rel="tag">#farmhouse</a></p>
<p>If a person hadn’t advertised the Fediverse to me on mainstream media, I would not be here. How could I join if I did not know about this place, after all. <a href="/tags/mastodon/" rel="tag">#Mastodon</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a></p>