Oddbean new post about | logout
 curry seems triggered by zaps as well, it’s bizarre. I don’t see them as competing or anything so i don’t get it. 
 Strange because he IS zappable, though he hasn’t been active on nostr for months. 
 It's because they're building a new podcasting platform on ActivityPub. 
 oof 
 They should swallow the hard pill and pivot now. 
 They keep saying that every one on nostr wants to replace podcasts and RSS. I’ve only heard a few people suggest that and it’s dumb. I like RSS but don’t see nostr as a replacement. I don’t get why they look at it the way they do.

I suspect a deep and fundamental flaw in what they think nostr is and I don’t know how to correct that. 
 It's a threat to what they're building, by people who chose to take a different route than the one they were already traveling. I'm not surprised they're salty about that. ActivityPub itself is basically RSS.

Just give it time. People will come around when they realize it's here to stay, and we give them an easy path to join us. 
 We're not fucking leaving. 
nostr:nevent1qqsdg59d0vsgzpjlzznle8hjqzrpek7rwkkf65fsj6k9kre4ayv2jqcpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsygqyv87tanzvxd6y8xfj66u0zynfendhejtn44a9pt3k9kcntfr5m5psgqqqqqqsmz57n0 
 you could build a site that reads podcast notes and serves them statically as rss. nostr subsumes rss and enables realtime use cases 
 Or maybe we should prove them correct and start to take on that functionality.  If we are to be accused, then we have the right to do it. 😛 
 there is nothing wrong with RSS. it has served us well for nearly 25 years. but there are several points worth considering. for this example, I will specify a static html site, something like that generated by Hugo, where the author writes markdown, compiles the static files (including an RSS XML), and then publishes them to a web-server.

RSS:

1) is based on polling, which adds a non-zero cost to the host in having to handle a constant barrage of requests (assuming some popularity...), and also requires that the source be online to serve the content. obviously there are ways to deal with all of this, but the naive setup leads most implementations here.

2) has a limited capacity. in order for a subscriber to have access to content that is not included in the XML, some other means is required. hence, we end up with centralized solutions like feedly and the like. again, this is not a huge problem, as the content of the XML can be limited to URLs and descriptions. a standard approach to RSS implementations is to only include the most recent n items.

3) has a single point of failure, the file server that returns the XML, which is probably the same server that makes the deep linked content available as well.

4) leaves many traces indicating one's interest in the content. there will be a DNS query for the domain the XML is hosted on, and more queries for retrieving the content.

again, these are not horrible tradeoffs for something so valuable, and I use RSS every day to great effect. but #nostr brings some interesting features to the table to address these points. the equivalent in nostr would be an npub that publishes the same markdown files that went into the hugo implementation as NIP-23 Long Form notes.

1) push-style delivery. near-instantaneous delivery to clients with open connections, piggy-backing on network connections that are already there (assuming you are using nostr for anything else).

2) capacity is hard to compare directly since they are different modes of access, but assuming you are reading notes via a client that supports it, you can query the indicated relays for any other long form notes from the same npub to see all content previously published, rather than relying on only those items which are present in the XML. 

3) the long-form notes that make up the content of the nostr version of the feed could just as easily disappear, or be published to a single relay only and forgotten, but much more likely is that the notes end up on several large nodes, and get spread hither and yon from there. and since the notes serve as notification AND content, being notified of content and having the content are the same. 

4) again since the note contains the content itself, the only traces available to the networks you are traversing to talk to relays are that you connected to a relay, not which npubs you searched for or were delivered.

I'd like to know what you think the "deep and fundamental flaw" in what I'm saying here is. there's no magic, just better mechanical sympathy between the use case and the implementation, in my opinion. 
 i already did that, it's called cast.garden and includes more rss in its subscribe features than any other podcast host in the world. runs on peertube too so that should make both those guys damn happy.