<?xml version="1.0" encoding="UTF-8"?>
<!-- RSS generated by rss.network v0.5.31 on Sat, 18 Jul 2026 03:15:52 GMT -->
<rss version="2.0" xmlns:source="https://source.scripting.com/">
	<channel>
		<title>Ricardo</title>
		<link>https://rmendes.net</link>
		<description></description>
		<pubDate>Sat, 18 Jul 2026 03:15:53 GMT</pubDate>
		<language>en-us</language>
		<generator>rss.network v0.5.31</generator>
		<docs>http://cyber.law.harvard.edu/rss/rss.html</docs>
		<lastBuildDate>Sat, 18 Jul 2026 03:15:52 GMT</lastBuildDate>
		<cloud domain="rpc.rsscloud.io" port="5337" path="/pleaseNotify" registerProcedure="" protocol="http-post" />
		<image>
			<title>Ricardo</title>
			<url>https://rmendes.net/images/rick.jpg</url>
			<link>https://rmendes.net</link>
			<description></description>
			</image>
		<source:account service="rss.chat">rmdes</source:account>
		<source:localTime>Fri, July 17, 2026 11:15 PM EDT</source:localTime>
		<source:self>https://rss.chat/users/rmdes/rss.xml</source:self>
		<item>
			<description>Well... &lt;a href=&quot;http://rss.chat&quot;&gt;rss.chat&lt;/a&gt; has a sibling or a cousin, not sure :) &lt;a href=&quot;https://textcaster.app&quot;&gt;https://textcaster.app&lt;/a&gt;</description>
			<pubDate>Sat, 18 Jul 2026 03:15:53 GMT</pubDate>
			<guid>https://rss.chat/?id=345</guid>
			<source:markdown>Well... rss.chat has a sibling or a cousin, not sure :) https://textcaster.app</source:markdown>
			</item>
		<item>
			<description>that was the case for him and me, until I cleared my browser cache. now its working neat</description>
			<pubDate>Fri, 17 Jul 2026 19:40:20 GMT</pubDate>
			<guid>https://rss.chat/?id=338</guid>
			<source:markdown>that was the case for him and me, until I cleared my browser cache. now its working neat</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=337</source:inReplyTo>
			</item>
		<item>
			<description>Clear your cache, I did so and I can reply without title or add new posts without title..</description>
			<pubDate>Fri, 17 Jul 2026 19:38:53 GMT</pubDate>
			<guid>https://rss.chat/?id=336</guid>
			<source:markdown>Clear your cache, I did so and I can reply without title or add new posts without title..</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=330</source:inReplyTo>
			</item>
		<item>
			<description>Test new post after cache clear in the browser.</description>
			<pubDate>Fri, 17 Jul 2026 19:38:25 GMT</pubDate>
			<guid>https://rss.chat/?id=335</guid>
			<source:markdown>Test new post after cache clear in the browser.</source:markdown>
			</item>
		<item>
			<description>Hmm this is odd..but after clearing my cache I'm able to reply without adding a title</description>
			<pubDate>Fri, 17 Jul 2026 19:38:11 GMT</pubDate>
			<guid>https://rss.chat/?id=334</guid>
			<source:markdown>Hmm this is odd..but after clearing my cache I'm able to reply without adding a title</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=331</source:inReplyTo>
			</item>
		<item>
			<title>I was obliged to add this title to be able to publish</title>
			<description>Test without title</description>
			<pubDate>Fri, 17 Jul 2026 19:36:06 GMT</pubDate>
			<guid>https://rss.chat/?id=333</guid>
			</item>
		<item>
			<title>Test</title>
			<description>Oh this is new, was not like this when I did my other reply</description>
			<pubDate>Fri, 17 Jul 2026 19:35:14 GMT</pubDate>
			<guid>https://rss.chat/?id=332</guid>
			<source:inReplyTo>https://rss.chat/?id=330</source:inReplyTo>
			</item>
		<item>
			<description>&lt;div&gt;from what I can tell from the client code :&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;1. ✅ Flat list of all posts, replies included, sorted by timestamp. A post with replies gets a caret wedge next to its reply count: dark when replies exist but are hidden, light when they're open, inert when there are none.&lt;/div&gt;&lt;div&gt;&lt;br&gt;2. ✅ First click on the wedge (toggleReplies) fetches one level of replies and nests them under the post. If a reply was already on screen as its own timeline row, that row is folded away so nothing shows twice — that's the &quot;moving items to avoid duplicates&quot; you noticed. Each nested reply carries its own wedge, so you walk deeper one click at a time.&lt;/div&gt;&lt;div&gt;&lt;br&gt;3. ⚠️ A second click on the same wedge doesn't hoist — it collapses (closeReplies) and restores the folded rows. Hoisting is a different control: the Hoist icon in the left bar, which acts on the selected post and replaces the timeline with that post as a temporary root showing its whole reply tree (Dehoist backs out). The code tags this #104, MORE/Drummer lineage.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;So: wedge = expand/collapse in place; Hoist icon = swap the whole view to one thread.&lt;/div&gt;</description>
			<pubDate>Fri, 17 Jul 2026 19:26:24 GMT</pubDate>
			<guid>https://rss.chat/?id=329</guid>
			<source:markdown>from what I can tell from the client code :&#10;&#10;&#10;&#10;1\. ✅ Flat list of all posts, replies included, sorted by timestamp. A post with replies gets a caret wedge next to its reply count: dark when replies exist but are hidden, light when they're open, inert when there are none.&#10;&#10;&#10;2\. ✅ First click on the wedge (toggleReplies) fetches one level of replies and nests them under the post. If a reply was already on screen as its own timeline row, that row is folded away so nothing shows twice — that's the &quot;moving items to avoid duplicates&quot; you noticed. Each nested reply carries its own wedge, so you walk deeper one click at a time.&#10;&#10;&#10;3\. ⚠️ A second click on the same wedge doesn't hoist — it collapses (closeReplies) and restores the folded rows. Hoisting is a different control: the Hoist icon in the left bar, which acts on the selected post and replaces the timeline with that post as a temporary root showing its whole reply tree (Dehoist backs out). The code tags this #104, MORE/Drummer lineage.&#10;&#10;&#10;&#10;So: wedge = expand/collapse in place; Hoist icon = swap the whole view to one thread.</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=328</source:inReplyTo>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/329.xml"/>
			</item>
		<item>
			<description>&lt;p&gt;Doubt you can move Bluesky out of its current track, the direction they seem to take is to expand their lexicon to all kinds of usage (blogs, instagram clones, livestreaming, even federated code repositories etc) this &lt;a href=&quot;https://atstore.fyi&quot;&gt;link &lt;/a&gt;gives an overview of the current diversity being built in the open ecosystem&amp;nbsp;&lt;/p&gt;&lt;p&gt;overview of shared data types here : &lt;/p&gt;&lt;a href=&quot;https://atstore.fyi/apps/lexicons&quot;&gt;https://atstore.fyi/apps/lexicons&lt;/a&gt;&lt;p&gt;&lt;br&gt;&lt;p&gt;But that being said, the community is very open, its easy to build uppon and even to diverge from the current protocol akin to what&amp;nbsp;&lt;a href=&quot;https://standard.site&quot;&gt;https://standard.site&lt;/a&gt;&amp;nbsp;is doing&amp;nbsp;&lt;/p&gt;&lt;/p&gt;</description>
			<pubDate>Fri, 17 Jul 2026 13:34:51 GMT</pubDate>
			<guid>https://rss.chat/?id=321</guid>
			<source:markdown>Doubt you can move Bluesky out of its current track, the direction they seem to take is to expand their lexicon to all kinds of usage (blogs, instagram clones, livestreaming, even federated code repositories etc) this [link](https://atstore.fyi) gives an overview of the current diversity being built in the open ecosystem&#10;&#10;overview of shared data types here :&#10;&#10;[https://atstore.fyi/apps/lexicons](https://atstore.fyi/apps/lexicons)&#10;&#10;&#10;&#10;But that being said, the community is very open, its easy to build uppon and even to diverge from the current protocol akin to what [https://standard.site](https://standard.site) is doing</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=319</source:inReplyTo>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/321.xml"/>
			</item>
		<item>
			<description>&lt;p&gt;You guys know about /init command for claude right ? usually you do this in our own repo, claude will fabricate a &lt;a href=&quot;http://claude.md&quot;&gt;claude.md&lt;/a&gt; mostly for him, even tho you, as a human, can obviously drive what's in it, this is where you can specify some preferences too and if you commit it to the repo, then your contributors also get to work under the same paradigm with their claude&lt;/p&gt;&lt;p&gt;there you can have a docker or deploy section, where you define how the code should be run either node native way or docker based approach, once everything is in place, you can have custom /commands to actually deploy your code the way you want and claude will follow the exact instruction, you can grab a coffee instead of teaching claude the same stuff over and over again :)&lt;/p&gt;</description>
			<pubDate>Thu, 16 Jul 2026 15:58:13 GMT</pubDate>
			<guid>https://rss.chat/?id=305</guid>
			<source:markdown>You guys know about /init command for claude right ? usually you do this in our own repo, claude will fabricate a claude.md mostly for him, even tho you, as a human, can obviously drive what's in it, this is where you can specify some preferences too and if you commit it to the repo, then your contributors also get to work under the same paradigm with their claude&#10;&#10;there you can have a docker or deploy section, where you define how the code should be run either node native way or docker based approach, once everything is in place, you can have custom /commands to actually deploy your code the way you want and claude will follow the exact instruction, you can grab a coffee instead of teaching claude the same stuff over and over again :)</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=303</source:inReplyTo>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/305.xml"/>
			</item>
		<item>
			<description>You should try &lt;a href=&quot;https://github.com/obra/superpowers&quot;&gt;https://github.com/obra/superpowers&lt;/a&gt; and &lt;a href=&quot;https://github.com/DietrichGebert/ponytail&quot;&gt;https://github.com/DietrichGebert/ponytail&lt;/a&gt; for claude, both of these tools are excellent to support your work with claude and superpower is also very good at writing docs from the source code in a way that is easy for humans to read !</description>
			<pubDate>Thu, 16 Jul 2026 14:53:41 GMT</pubDate>
			<guid>https://rss.chat/?id=301</guid>
			<source:markdown>You should try https://github.com/obra/superpowers and https://github.com/DietrichGebert/ponytail for claude, both of these tools are excellent to support your work with claude and superpower is also very good at writing docs from the source code in a way that is easy for humans to read !</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=300</source:inReplyTo>
			</item>
		<item>
			<description>It seems this has not landed on github yet ? origin/main has theme 0.5.322, and the live/deployed S3 has 0.5.328 ?</description>
			<pubDate>Thu, 16 Jul 2026 14:43:29 GMT</pubDate>
			<guid>https://rss.chat/?id=296</guid>
			<source:markdown>It seems this has not landed on github yet ? origin/main has theme 0.5.322, and the live/deployed S3 has 0.5.328 ?</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=294</source:inReplyTo>
			<source:comments count="3" feedUrl="https://rss.chat/users/rmdes/comments/296.xml"/>
			</item>
		<item>
			<description>Much better approach !&lt;br&gt;same for dropping S3 and having Feeds in the database !</description>
			<pubDate>Thu, 16 Jul 2026 13:55:38 GMT</pubDate>
			<guid>https://rss.chat/?id=293</guid>
			<source:markdown>Much better approach !&#10;same for dropping S3 and having Feeds in the database !</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=290</source:inReplyTo>
			</item>
		<item>
			<description>I'm already changing the deploy/ overlay in my fork to adapt to your changes :)</description>
			<pubDate>Thu, 16 Jul 2026 13:54:53 GMT</pubDate>
			<guid>https://rss.chat/?id=292</guid>
			<source:markdown>I'm already changing the deploy/ overlay in my fork to adapt to your changes :)</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=290</source:inReplyTo>
			</item>
		<item>
			<description>&lt;!--StartFragment--&gt;check your email for login detail&amp;nbsp;&lt;a href=&quot;https://indiekit-demo.rmendes.net/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;https://indiekit-demo.rmendes.net&lt;/a&gt;&lt;!--EndFragment--&gt;</description>
			<pubDate>Thu, 16 Jul 2026 12:05:42 GMT</pubDate>
			<guid>https://rss.chat/?id=288</guid>
			<source:markdown>check your email for login detail [https://indiekit-demo.rmendes.net](https://indiekit-demo.rmendes.net/)</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=281</source:inReplyTo>
			</item>
		<item>
			<description>yes definitely coming your way over email, gimme a few hours</description>
			<pubDate>Thu, 16 Jul 2026 00:10:45 GMT</pubDate>
			<guid>https://rss.chat/?id=286</guid>
			<source:markdown>yes definitely coming your way over email, gimme a few hours</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=281</source:inReplyTo>
			</item>
		<item>
			<description>Yes this one is answered, I'll implement &amp;lt;source&amp;gt; usage in my own clients UI</description>
			<pubDate>Tue, 14 Jul 2026 22:37:53 GMT</pubDate>
			<guid>https://rss.chat/?id=280</guid>
			<source:markdown>Yes this one is answered, I'll implement &lt;source&gt; usage in my own clients UI</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=279</source:inReplyTo>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/280.xml"/>
			</item>
		<item>
			<description>&lt;p&gt;It means this :&amp;nbsp;&lt;/p&gt;&lt;!--StartFragment--&gt;&lt;p&gt;A comprehensive &lt;a href=&quot;https://github.com/rmdes/indiekit-endpoint-microsub&quot;&gt;Microsub &lt;/a&gt;social reader plugin for Indiekit. Subscribe to feeds (RSS, Atom, JSON Feed, h-feed), organize them into channels, and read posts in a unified timeline interface with a built-in web reader UI.&lt;br&gt;&lt;br&gt;It's a built-in RSS reader with integrated Micropub actions buttons, so this means that from the backend UI RSS items reader view I can Like, Repost, Bookmark, Reply-to, or simply write a note or an article (a note with a title) but no matter the post type on indiekit, It'll be pre-filled with the source, usually, the RSS item in question, coming from one of my Microsub (think RSS reader) channels (think Category) within the Interface, in my case the microsub reader UI is behind auth, but if I would open it to the public, it would look like your river of news UI, with buttons to interact with RSS items&lt;/p&gt;&lt;div&gt;&lt;h2&gt;Features&lt;/h2&gt;&lt;a href=&quot;https://github.com/rmdes/indiekit-endpoint-microsub#features&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Microsub Protocol&lt;/strong&gt;: Full implementation of the&amp;nbsp;&lt;a href=&quot;https://indieweb.org/Microsub&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;Microsub spec&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Multi-Format Feeds&lt;/strong&gt;: RSS, Atom, JSON Feed, h-feed (microformats)&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Smart Polling&lt;/strong&gt;: Adaptive tiered polling (2 minutes to 17+ hours) based on update frequency&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Real-Time Updates&lt;/strong&gt;: WebSub (PubSubHubbub) support for instant notifications&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Web Reader UI&lt;/strong&gt;: Built-in reader interface with channel navigation and timeline view&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Feed Discovery&lt;/strong&gt;: Automatic discovery of feeds from website URLs&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Read State&lt;/strong&gt;: Per-user read tracking with automatic cleanup&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Compose Interface&lt;/strong&gt;: Post replies, likes, reposts, and bookmarks via Micropub&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Webmention Support&lt;/strong&gt;: Receive webmentions in your notifications channel&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Media Proxy&lt;/strong&gt;: Privacy-friendly image proxying&lt;/li&gt;&lt;li&gt;&lt;strong&gt;OPML Export&lt;/strong&gt;: Export your subscriptions as OPML&lt;/li&gt;&lt;li&gt;&lt;b&gt;OPML Import:&lt;/b&gt; Import your OPML&amp;nbsp;&#10;&lt;!--StartFragment--&gt;subscriptions&lt;!--EndFragment--&gt;&lt;/li&gt;&lt;/ul&gt;&lt;!--EndFragment--&gt;</description>
			<pubDate>Tue, 14 Jul 2026 18:30:31 GMT</pubDate>
			<guid>https://rss.chat/?id=278</guid>
			<source:markdown>It means this :&#10;&#10;A comprehensive [Microsub](https://github.com/rmdes/indiekit-endpoint-microsub) social reader plugin for Indiekit. Subscribe to feeds (RSS, Atom, JSON Feed, h-feed), organize them into channels, and read posts in a unified timeline interface with a built-in web reader UI.&#10;&#10;It's a built-in RSS reader with integrated Micropub actions buttons, so this means that from the backend UI RSS items reader view I can Like, Repost, Bookmark, Reply-to, or simply write a note or an article (a note with a title) but no matter the post type on indiekit, It'll be pre-filled with the source, usually, the RSS item in question, coming from one of my Microsub (think RSS reader) channels (think Category) within the Interface, in my case the microsub reader UI is behind auth, but if I would open it to the public, it would look like your river of news UI, with buttons to interact with RSS items&#10;&#10;Features&#10;--------&#10;&#10;[](https://github.com/rmdes/indiekit-endpoint-microsub#features)&#10;&#10;*   **Microsub Protocol**: Full implementation of the [Microsub spec](https://indieweb.org/Microsub)&#10;*   **Multi-Format Feeds**: RSS, Atom, JSON Feed, h-feed (microformats)&#10;*   **Smart Polling**: Adaptive tiered polling (2 minutes to 17+ hours) based on update frequency&#10;*   **Real-Time Updates**: WebSub (PubSubHubbub) support for instant notifications&#10;*   **Web Reader UI**: Built-in reader interface with channel navigation and timeline view&#10;*   **Feed Discovery**: Automatic discovery of feeds from website URLs&#10;*   **Read State**: Per-user read tracking with automatic cleanup&#10;*   **Compose Interface**: Post replies, likes, reposts, and bookmarks via Micropub&#10;*   **Webmention Support**: Receive webmentions in your notifications channel&#10;*   **Media Proxy**: Privacy-friendly image proxying&#10;*   **OPML Export**: Export your subscriptions as OPML&#10;*   **OPML Import:** Import your OPML  subscriptions</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=277</source:inReplyTo>
			</item>
		<item>
			<description>&lt;!--StartFragment--&gt;I will make my microsub&amp;nbsp; indiekit plugin read it/display it properly, so that it can display handles as a source, with avatar if any, it would make the whole thing much more natural from an external reader point of view&amp;nbsp;&lt;br&gt;&lt;br&gt;It will also benefit my other RSS feeds, because i'll be able to show the name of the source with a favicon or logo/avatar of the source&lt;!--EndFragment--&gt;</description>
			<pubDate>Tue, 14 Jul 2026 16:22:01 GMT</pubDate>
			<guid>https://rss.chat/?id=276</guid>
			<source:markdown>I will make my microsub  indiekit plugin read it/display it properly, so that it can display handles as a source, with avatar if any, it would make the whole thing much more natural from an external reader point of view&#10;&#10;It will also benefit my other RSS feeds, because i'll be able to show the name of the source with a favicon or logo/avatar of the source</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=274</source:inReplyTo>
			<source:comments count="2" feedUrl="https://rss.chat/users/rmdes/comments/276.xml"/>
			</item>
		<item>
			<description>&lt;p&gt;Another Idea, this time regarding authentification :&amp;nbsp;&lt;/p&gt;&lt;p&gt;it would be probably trivial to enable IndieAuth authentification on &lt;a href=&quot;http://rss.chat&quot;&gt;rss.chat&lt;/a&gt;, this would allow me for example to auth with my own website, using my own h-card to provide, email, username, etc. this would allow anyone supporting indieweb building blocks to login without bothering with email or with more complex SSO dependency (github, google, etc)&lt;/p&gt;</description>
			<pubDate>Tue, 14 Jul 2026 11:10:49 GMT</pubDate>
			<guid>https://rss.chat/?id=273</guid>
			<source:markdown>Another Idea, this time regarding authentification :&#10;&#10;it would be probably trivial to enable IndieAuth authentification on rss.chat, this would allow me for example to auth with my own website, using my own h-card to provide, email, username, etc. this would allow anyone supporting indieweb building blocks to login without bothering with email or with more complex SSO dependency (github, google, etc)</source:markdown>
			</item>
		<item>
			<description>&lt;p&gt;Another idea that I'm thinking out loud as I write this down :&amp;nbsp;&lt;/p&gt;&lt;p&gt;What if I could get a notification if/when someone directly replies to me, either using websub or perhaps an external notification provider (ie: &lt;a href=&quot;http://ntfy.sh&quot;&gt;ntfy.sh&lt;/a&gt;)&lt;/p&gt;</description>
			<pubDate>Tue, 14 Jul 2026 11:06:51 GMT</pubDate>
			<guid>https://rss.chat/?id=272</guid>
			<source:markdown>Another idea that I'm thinking out loud as I write this down :&#10;&#10;What if I could get a notification if/when someone directly replies to me, either using websub or perhaps an external notification provider (ie: ntfy.sh)</source:markdown>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/272.xml"/>
			</item>
		<item>
			<description>Just thinking out loud, but... if I subscribe to the &quot;everyone's feed&quot; &lt;a href=&quot;https://users.rss.network/rss.xml&quot;&gt;https://users.rss.network/rss.xml&lt;/a&gt; in my RSS reader, I obviously see each entry, but there is no way to know who is the owner of the post.. if we'd push this idea further down the road of a &quot;social network powered by RSS&quot; I would love to be able to see right upfront &quot;who&quot; is the author of the post, a bit like we do in the &lt;a href=&quot;http://rss.chat&quot;&gt;rss.chat&lt;/a&gt; UI, i guess this is why the &quot;client&quot; exist, but I was wondering if we could make ANY rss feed reader able to display &quot;&lt;a href=&quot;http://rss.chat&quot;&gt;rss.chat&lt;/a&gt;&quot; streams with proper user attribution</description>
			<pubDate>Tue, 14 Jul 2026 11:04:27 GMT</pubDate>
			<guid>https://rss.chat/?id=271</guid>
			<source:markdown>Just thinking out loud, but... if I subscribe to the &quot;everyone's feed&quot; https://users.rss.network/rss.xml in my RSS reader, I obviously see each entry, but there is no way to know who is the owner of the post.. if we'd push this idea further down the road of a &quot;social network powered by RSS&quot; I would love to be able to see right upfront &quot;who&quot; is the author of the post, a bit like we do in the rss.chat UI, i guess this is why the &quot;client&quot; exist, but I was wondering if we could make ANY rss feed reader able to display &quot;rss.chat&quot; streams with proper user attribution</source:markdown>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/271.xml"/>
			</item>
		<item>
			<description>&lt;p&gt;I like when I can contribute with approaches I do at work but for open-source projects :)&amp;nbsp;&lt;/p&gt;&lt;p&gt;and Yes Claude is a great team mate to have around !!&lt;/p&gt;</description>
			<pubDate>Mon, 13 Jul 2026 17:02:58 GMT</pubDate>
			<guid>https://rss.chat/?id=269</guid>
			<source:markdown>I like when I can contribute with approaches I do at work but for open-source projects :)&#10;&#10;and Yes Claude is a great team mate to have around !!</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=266</source:inReplyTo>
			</item>
		<item>
			<title>Feel free to test</title>
			<description>Here is the localhost/vps deployment if anyone wants to test it : &lt;a href=&quot;https://github.com/scripting/rss.chat/issues/2&quot;&gt;https://github.com/scripting/rss.chat/issues/2&lt;/a&gt;&amp;nbsp;</description>
			<pubDate>Mon, 13 Jul 2026 15:48:04 GMT</pubDate>
			<guid>https://rss.chat/?id=265</guid>
			<source:markdown>Here is the localhost/vps deployment if anyone wants to test it : https://github.com/scripting/rss.chat/issues/2</source:markdown>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/265.xml"/>
			</item>
		<item>
			<description>You could use unfurling/opengraph to even display a nice embed card of these links if the origin has it :p</description>
			<pubDate>Mon, 13 Jul 2026 14:48:58 GMT</pubDate>
			<guid>https://rss.chat/?id=263</guid>
			<source:markdown>You could use unfurling/opengraph to even display a nice embed card of these links if the origin has it :p</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=259</source:inReplyTo>
			</item>
		<item>
			<title>Why two domains in Dave's architecture?</title>
			<description>&lt;!--StartFragment--&gt;&lt;div&gt;partly history, partly deliberate design.&amp;nbsp;&lt;/div&gt;&lt;div&gt;History: &lt;a href=&quot;http://rss.network&quot;&gt;rss.network&lt;/a&gt; was the project's earlier name — the server is still rssnetwork.js and calls itself that; the client later became &lt;a href=&quot;http://rss.chat&quot;&gt;rss.chat&lt;/a&gt; (his worknotes from July 3 mark the split).&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Design: &lt;a href=&quot;http://rss.chat&quot;&gt;rss.chat&lt;/a&gt; is the dynamic app — the Node server, the API, the websocket — while &lt;a href=&quot;http://users.rss.network&quot;&gt;users.rss.network&lt;/a&gt; is just a domain pointed at an S3 bucket of static feed files (and &lt;a href=&quot;http://data.rss.network&quot;&gt;data.rss.network&lt;/a&gt; for the OPML).&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Feed readers poll relentlessly, so serving feeds as static files means that traffic never touches the app server, feeds stay up even if the app is down, and it embodies his core claim: your feed is a durable artifact anyone can fetch, not an API response.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;My instance keeps that same static/dynamic split — it just does it with one domain and a /feeds/ path on Caddy instead of a second domain, since there's no S3 in the picture.&lt;/div&gt;&lt;!--EndFragment--&gt;</description>
			<pubDate>Mon, 13 Jul 2026 14:47:41 GMT</pubDate>
			<guid>https://rss.chat/?id=262</guid>
			<source:markdown>partly history, partly deliberate design.&#10;&#10;History: rss.network was the project's earlier name — the server is still rssnetwork.js and calls itself that; the client later became rss.chat (his worknotes from July 3 mark the split).&#10;&#10;&#10;&#10;Design: rss.chat is the dynamic app — the Node server, the API, the websocket — while users.rss.network is just a domain pointed at an S3 bucket of static feed files (and data.rss.network for the OPML).&#10;&#10;&#10;&#10;Feed readers poll relentlessly, so serving feeds as static files means that traffic never touches the app server, feeds stay up even if the app is down, and it embodies his core claim: your feed is a durable artifact anyone can fetch, not an API response.&#10;&#10;&#10;&#10;My instance keeps that same static/dynamic split — it just does it with one domain and a /feeds/ path on Caddy instead of a second domain, since there's no S3 in the picture.</source:markdown>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/262.xml"/>
			</item>
		<item>
			<description>I got it running in localhost :))</description>
			<pubDate>Mon, 13 Jul 2026 14:38:52 GMT</pubDate>
			<guid>https://rss.chat/?id=261</guid>
			<source:markdown>I got it running in localhost :))</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=260</source:inReplyTo>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/261.xml"/>
			</item>
		<item>
			<description>&lt;!--StartFragment--&gt;I'm reading this and I'm thinking... there is definitely better ways to deploy this, I'm going to submit an issue on the &lt;a href=&quot;http://rss.chat&quot;&gt;rss.chat&lt;/a&gt; repo to propose a deploy/ folder that would orchestrate deploying this either localhost or with a domain in a very easy way&lt;!--EndFragment--&gt;</description>
			<pubDate>Mon, 13 Jul 2026 13:10:36 GMT</pubDate>
			<guid>https://rss.chat/?id=257</guid>
			<source:markdown>I'm reading this and I'm thinking... there is definitely better ways to deploy this, I'm going to submit an issue on the rss.chat repo to propose a deploy/ folder that would orchestrate deploying this either localhost or with a domain in a very easy way</source:markdown>
			<source:inReplyTo>https://rss.chat/?id=251</source:inReplyTo>
			<source:comments count="1" feedUrl="https://rss.chat/users/rmdes/comments/257.xml"/>
			</item>
		<item>
			<description>Testing testing :)</description>
			<pubDate>Mon, 13 Jul 2026 13:00:35 GMT</pubDate>
			<guid>https://rss.chat/?id=256</guid>
			<source:markdown>Testing testing :)</source:markdown>
			</item>
		</channel>
	</rss>
