jpereira's comments

jpereira | 2 days ago | on: Moss is a pixel canvas where every brush is a tiny program

Love this! A couple things it'd be really fun to see:

- timelapses of things being drawn

- a list of brushes used in a drawing

To get even wilder, what if you could record brush strokes and then retroactively change the brush code and replay them?

jpereira | 23 days ago | on: Communities are not fungible

I guess I got my language wrong here. Maybe what I'm talking about is about portability more than global vs local. Identities should exist at a layer higher than any given social context, and should be "materialized" into that context with local information. It's not about using the same identity everywhere, it's about being able to take the identity where you want to. Similarly it's not about the same information being available everywhere, but information being relative to durable identities, not ephemeral ones.

jpereira | 23 days ago | on: Communities are not fungible

When thinking about online communities I think the lack of "global" identities has dramatically hampered community migration and evolution. I fully agree with the author that you can't just pick up and move a community wholesale but irl we do see patterns of migration, disaporas, etc that bring along with them relationships and trust networks. That's been basically impossible to do online. The networks where most of us hang out are even straightforwardly antagonistic towards people leaving and maintaining their identities and relationships in anyway.

I don't quite know how to articulate it but I really feel the social fabric of the internet has been limited hugely by this, and it's hard to seperate what is fundamental about community migration with what's an outcome of this limited circumstance.

jpereira | 3 months ago | on: Unison 1.0

I'm curious about how the persistence primitives (OrderedTable, Table, etc) are implemented under the hood. Is it calling out to some other database service? Is it implemented in Unison itself? Seems like a really interesting composable set of primitives, together with the Database abstraction, but having a bit of a hard time wrapping my head around it!

jpereira | 4 months ago | on: Tangled, a Git collaboration platform built on atproto

The fact that all the data is open means not only that you could plausibly exit to other providers and keep all your projects data, (issues, prs, etc), but also that it's dramatically easier to build other tools that work on that same data. Triage, labelers, bots, etc, I know these are all possible on GitHub today with their API, but I think the programming model of ATProto removes a lot of friction in building and composing them.

jpereira | 5 months ago | on: Open Social

In my view the atproto approach asks the users to make fewer required complex decisions, but gives them the freedom to make many voluntary ones. If someone wants to use a particular application, they basically just need to sign in. If they don't have an existing ATProto account, they can just make one, in the flow of the application they're signing into. Later they can chose different clients, or different infrastructure, or move their account, to their own hosting even if they want.

Mastodon requires a complex decision upfront, which server do I trust, which is analogous to where you create your account on ATProto, but unlike ATProto, doesn't give the tools to seamlessly transition later.

The trust lens I think is a good one. You want to let different users make different tradeoffs in effort without having that leading to a worse experience..

jpereira | 5 months ago | on: Slow social media

I wrote a lil blog post after reading this this morning: https://awarm.leaflet.pub/3lyzchme2d22b

tl;dr: people have a huge diversity of preferences for social media, we need to rearchitect social networks to allow them to express those preferences while still connecting with each other, I think atproto enables this and is where I'm betting on.

jpereira | 6 months ago | on: Next.js is infuriating

Agh, sorry about this! I'm one of the people building leaflet.pub, which this blog is running on. Just pushed a fix for this (ironically on nextjs/vercel). The redirect loop is to handle sharing auth between our "main" domain, and people's various custom subdomains. Auth, via the ATProtocol, is used for things like subscribing and commenting!

jpereira | 6 months ago | on: Substack just killed the creator economy

disclosure: building a substack competitor on atproto

I'm really excited for ATProto as a way to build applications that let you have the benefits of substack (a unified network, recommendations, social features like comments, etc) without the eventual path to lock in.

It's particularly exciting because the incentive is actually there to build an application this way. Whether Bluesky is growing or not, there are currently 30M accounts that you can reach (with one of the best auth systems I've interacted with), AND atproto gives you the building blocks for others to build on your work. Both these things make the bootstrapping problem for any social application way down.

There's still a lot of stuff missing, payments being a big (and gnarly one), notification management being another, but both the bluesky team and the overall ecosystem has been moving at a solid pace, and things are getting more viable by the day.

jpereira | 7 months ago

Super early days, but we've been building a substack alternative on top of atproto, you can check out some publications people have made at leaflet.pub/discover.

I think atproto offers a pretty compelling way to get the benefits of substack, like discovery, native social features like comments, quotes etc, integration into a microblogging network; without locking into a closed network.

The extensibility story is also really good, opening interesting opportunities for individual publishers to augment their experiences.

Moderation, which is the main point of this article, is a bit of an open question, but diffusing responsibility the way bluesky does is a more promising direction imo than hoping a single trust and safety department can make everyone happy.

jpereira | 1 year ago | on: Show HN: Leaflet.pub – a web app for creating and sharing rich documents

Leaflet looks like an amazing library. We only came across it and the naming collision after we got started, and so far haven't had too much confusion, but definitely a good idea to be aware when we do an SDK. Would love to make the confusion worse by including a map block in leaflet.pub via leafletjs someday though!

jpereira | 1 year ago | on: Show HN: Leaflet.pub – a web app for creating and sharing rich documents

There's actually a fair amount going on server side. For one, we have server authoritative sync. There's a lot of mutations that would be tricky to reason about in purely p2p sync, and just applying them to an authoritative source makes that a lot simpler (and is what let's us use Replicache!). Beyond that though we have a bunch of features, custom domains, polls, rsvp blocks, that depend on us being able to control permissions.

It's definitely possible to do all if this in a p2p context, but it's much harder and increases the complexity a ton. It also makes it harder to be fast, you're naturally increasing the amount that needs to be done client side, and server rendering is out the door. There's a bunch of client-side editors that I think are great, and end-to-end encryption is definitely something I want to work towards, but it's out of scope for us right now.

jpereira | 1 year ago | on: Show HN: Leaflet.pub – a web app for creating and sharing rich documents

Super helpful thanks!

The leaflet icon is our little watermark (which can be disabled!). Just updated it to point to https://about.leaflet.pub instead of just leaflet.pub, it was just creating a new doc every time you clicked it.

Useful feedback on strikethrough! Will review our implementation of it.

As for dark mode, you can theme your documents, and use existing documents as templates for others, so you can get dark mode that way. We could do a lot to make it easier to share and get basic themes though.

jpereira | 1 year ago | on: Show HN: Leaflet.pub – a web app for creating and sharing rich documents

Very fair question! Honestly the main reason it's source available rn instead of open source is we haven't decided on a license internally, as opposed to business reasons. As for monetization, the two areas we're exploring are publication, subscriptions to blogs, a la substack, and a "pro" tier, with better tools for managing lots of documents.

jpereira | 1 year ago | on: Show HN: Leaflet.pub – a web app for creating and sharing rich documents

In our last product (hyperlink.academy) we went through a lot of iterations on multipage designs, from carousels, to stacking decks, to a kind of 2-pane view, and eventually settled on the side scrolling view. Really useful for drilling down into things, looking at things side-by-side, etc. Glad to hear you like it!

jpereira | 1 year ago | on: Show HN: Leaflet.pub – a web app for creating and sharing rich documents

They are not and while basic privacy and security is definitely a focus (making sure random external people can't get access to your docs and account) end-to-end encryption and privacy is not. There are tools that focus on that that seem great. I think proton mail has a product in that space, and https://docs.fileverse.io/ seems interesting, and there are many more on the more notion side. We wanted to focus our efforts on the interface and experience.

All that being said, I'd love at some point to manage to get everything end-to-end encrypted, but it'll be a big lift!

page 1