Stefano Marinelli - littleFedi

@stefano Created:

Barista at BSD Cafe and illumos Cafe - @stefano@bsd.cafe / @stefano@illumos.cafe
Spreading weather forecasts all over the Fediverse via FediMeteo - @admin@fedimeteo.com

Testing littleFedi here on littleOne, its first instance open to outside users. Small ActivityPub server, single Go binary, still in active development.

I will also use this account to provide information about this instance and the development of littleFedi.

#littleFedi #Fediverse #OwnYourData

Visit blog
RSS
Pinned posts

Do you want to chat about littleFedi on Matrix?

We have a space, we have a room!

Join us at https://matrix.to/#/#littlefedi-general:bsd.cafe

See you there!

#littleFedi #littleOne #Matrix

πŸ‘€ 1

littleFedi: a Fediverse Server That Doesn't Need a Data Centre

I was fifteen, and there were no BBSes in my city. So every call was long distance, once a day, sometimes twice. I'd start the dialer and wait for that sound - the handshake, the negotiation, the hiss settling into a carrier - and then I was connected to a computer sitting in somebody's bedroom, a few hundred kilometres away. I was a co-sysop of a local board and a national moderator of a FidoNet area. None of my friends understood what I was doing, and they'd stopped asking to avoid an incomprehensible monologue. But I liked it, and that was enough for me.

Here's the thing about that computer in someone's bedroom. There was no data centre. No domain, no certificate authority, no hosting provider, no cloud. Just a machine, a phone line, and a person who'd decided to run it. If you wanted to reach it, you called it.

Now look at what it takes today to put a small server on the network so other people can talk to it. A public address, which most home connections no longer have. A domain, which you rent. A certificate, which somebody has to issue you. And, increasingly, a VPS somewhere, because the software won't fit on the hardware you already own.

We've added a lot of infrastructure between two people who just want to talk. That's what littleFedi is about.

What it is

A single Go binary. No Ruby, no Sidekiq, no Redis, no separate worker processes to babysit. You run init, answer a few questions, and you've got a working instance. It speaks ActivityPub, and it speaks the Mastodon client API well enough that existing apps just work.

It also runs on hardware that would make Mastodon - or even Akkoma - struggle. Most software in this space assumes a VPS with a few gigabytes of RAM and a database server next to it. We assumed a Raspberry Pi Zero W behind a home router. There's a low_power mode that tunes memory use, image decoding and thumbnail generation for exactly that kind of box, and it's tested on that kind of box, not just on a fast dev machine.

In spirit this puts littleFedi close to snac, which I've always liked a lot. Same conviction: a personal server shouldn't need a fleet of services behind it.

Federating without a public address

littleMesh is the part I'm most attached to, and it's the part that goes back to the modem.

Your instance generates an Ed25519 key pair. That key is its identity - the node's address is derived from the public key, so reaching that address means reaching the holder of that key and nobody else. No registrar, no certificate authority, nobody to ask permission from.

A small set of public lighthouse nodes help two instances find each other. Once they're introduced, the traffic runs over a second TLS session pinned to both node IDs. The lighthouse copies encrypted bytes back and forth. It never sees plaintext, and it can't impersonate either side. And if the two nodes can reach each other directly, they drop the relay after the introduction and talk peer to peer.

Which is, more or less, calling the BBS directly. Just without the phone bill.

The gateway into ordinary HTTPS

Mastodon and other regular servers can't resolve a mesh address on their own. There's no domain and no certificate for them to find.

That's what the optional HTTPS gateway is for. A lighthouse operator can run one alongside the relay, and it bridges the mesh into ordinary HTTPS for the rest of the web. The gateway has to terminate TLS to do that, so it can technically see the traffic passing through it. Which is exactly why it's a separate, opt-in piece and not something every node exposes by default.

It has two independent settings: one controls what the gateway lets ordinary internet visitors reach at all, and a second one applies again at the destination node. Left at their defaults, both allow only federation traffic - ActivityPub delivery, discovery, public media. Web login, API and media proxy stay closed unless an operator deliberately opens them.

Mesh peers talking to each other directly never touch the gateway at all. That exposure only applies to the bridge into the wider web. And all of this can be self-hosted.

Chronological timelines

Timelines are chronological. Nothing gets reordered by an engagement model.

If you want something closer to "what did I miss", there's a separate /catchup page you visit on purpose. It ranks posts using signals your own instance already has - how many people you follow boosted something, whether it continues a conversation you took part in. No external popularity score, no telemetry, nothing leaves the machine. You press "mark as read", it moves a divider, and that's the only thing it remembers.

Self-expiring posts

You can set a post to expire, with its own timer, instead of a fixed instance-wide setting.

This isn't a client-side trick that hides the post from view. The expiry goes on the same durable job queue that runs the rest of littleFedi's background work, so the deletion survives restarts and isn't lost if the process happens to be down at the moment the timer fires. When it does fire, the post is deleted and a real Delete activity goes out to everyone who received it - so it actually disappears from remote instances too, not just locally. Editing the post before then can push the timer back or cancel it.

Static blogs, with real threaded replies

littleFedi can take a Fediverse post and publish it as a page on a plain static blog, with its own Atom feed and permalinks that don't move even if you edit the post later. No JavaScript, no database hit on page load.

The part I find more interesting is that the replies aren't left out. If the author turns the option on, littleFedi pulls the public replies that were actually federated to the post, threads them the same way the timeline does, and bakes the whole tree into the generated HTML at build time. So a blog post can show a real comment thread, in the same static file, with the same guarantee as the rest of the page - no JavaScript, no live queries. Only public and unlisted replies qualify, obviously. Anything followers-only or direct never enters the picture.

Why it looks like this

This isn't minimalism for its own sake. It's about how many people simply can't run their own server today, because the requirements are too steep. The hardware, the ops complexity, or just needing a domain and a public address before you can start. We're trying to remove those barriers one at a time, while still shipping a real, federating, reasonably complete server: polls, quotes, scheduled posts, MFA, PostgreSQL and S3 if you want to scale up later.

I've written before about taking a semi-truck to buy salad. Hardware keeps getting more expensive and the software running on it keeps asking for more of it every year. That's backwards. If the machines cost more, the operational cost of what sits on them should go down, not up. Same with complexity: the default direction is to keep adding it, and we'd rather strip it out.

And there's the other half, which is closer to why any of us are doing this at all. It's the same thing that drew me to snac and to the way grunfink works on it, and the same thing that had me dialing a stranger's computer at fifteen. People building tools so that people can talk to each other. Nothing more dressed up than that. We'd rather show the servers running, talk about the Pi sitting in the corner, share a tiramisu photo if it comes up. The joy in this was never about the money it brings in. It's about what we end up building, humanly, because of it.

It's beta software, still short of a first release, and I'd rather say that plainly than oversell it. But it runs, and it federates. That's the part I wanted to write about.

#littleFedi #Fediverse

Hi everyone, I'm Stefano

Also known as the BSD Cafe and illumos Cafe barista - @stefano@bsd.cafe and @stefano@illumos.cafe

This is the first post from littleOne (littleone.littlefedi.social), the first littleFedi instance open to outside users.

littleFedi is a new ActivityPub server, still in active development, written in Go and shipped as a single binary. It speaks standard ActivityPub, so it federates normally with Mastodon, snac, GoToSocial, Akkoma and the rest of the fediverse, and it exposes a Mastodon-compatible API, so most existing apps already work with it.

A few things about it that aren't the usual fediverse defaults:

  • Catch-up instead of an algorithm. Timelines stay chronological, full stop. There's a separate /catchup page, visited on demand, that ranks what you missed using only signals this instance already has locally - who you follow boosted it, replies and favourites delivered here, hashtags you follow. No external popularity data comes in, nothing about what you read is tracked. It answers "what did I miss" without turning into a feed that decides for you.

  • Static blogging built in. Any post can be marked as a blog post and gets published as a plain static page under /@username/blog/, with its own permalink, Atom feed, and no JavaScript or database hit per view, while still being a normal federated post underneath. A proper home for longer writing that doesn't need to compete with a timeline.

  • Self-expiring posts. Any post can be given a timer and auto-delete on its own.

  • Bubble timeline. A middle ground between local and federated: a timeline scoped to a set of instances you've chosen to group together, not just your own or everything.

  • littleMesh. A way to federate without a public domain, certificate, or open port at all - meant for something like a Raspberry Pi behind NAT. Instances get an address derived from an Ed25519 key pair and reach each other through pinned relays that never see plaintext.

  • No trends, no suggestions. These are intentionally left empty. Nothing here is trying to surface "popular" content or keep anyone scrolling longer.

  • Security defaults taken seriously. Signed federation (HTTP Signatures), optional Object Integrity Proofs, TOTP MFA, audit logs, and full account export, migration and deletion if you ever want your data to live somewhere else.

This instance is here to test all of that with real accounts, not just a small group ones'. In the next few days I'll be reaching out to everyone who already told me they were interested, to set the first accounts up - an invite is coming. If you'd rather just follow along and see how it goes, that works too.

It's a test instance, so expect the occasional rough edge. If something breaks or feels wrong, tell me - that's exactly what this phase is for.

#littleFedi #littleOne #Fediverse #Introduction

Replying to @pluvialgeist

@pluvialgeist it's a littleOne limit, that can be set.

Hello from littleFedi πŸ‘‹

This is the official account for littleFedi.

littleFedi is a lightweight, efficient and Mastodon-compatible platform for the Fediverse.

The idea behind it is simple: software should adapt to the machine and the community, not the other way around.

littleFedi can run on modest hardware, but it is not designed only for small machines. The same approach is meant to scale with you, from a tiny personal instance to a larger community.

Our priorities are:

  • Efficiency, without unnecessary resource usage
  • Simplicity, both for users and administrators
  • Interoperability, with the wider Fediverse
  • Accessibility, including a usable no-JavaScript baseline
  • Control, because your instance should remain yours
  • No AI features, no magic black boxes, just predictable software and transparent algorithms

The project is still evolving, and we are deliberately taking the time to test federation, scalability and the rough edges before calling it ready.

This account will be used for releases, development updates, technical notes, demos and everything related to littleFedi.

🌐 https://littlefedi.org

πŸ§ͺ Demo: https://littleone.littlefedi.social

Small footprint when you need it. Room to grow when you need that too.

Welcome to littleFedi.

#littleFedi

πŸ‘€ 1 :obkcn_aww@ms.obak-key.com: 2 ❀️ 3 :tiken@mi.mieux.cc: 1 ❀ 2 :blobcat_is_always_watching_you@misskey.blue: 1 :4d6b_kininaru_news@misskey.flowers: 1 :blobcat_nozokikomi@misskey.gamelore.fun: 1 :otoge_hantei_great@seiran-beta.org: 2 πŸ†’ 1 πŸ‘ 1
Replying to @francois

@francois could you please logout and re-login?

Replying to @francois

@francois still showing issues? I tested it on my devices and it's working. Which error are you experiencing?

Hello!
I've just pushed a new build and it should fix the Icecubes (on iOS) and Tusky (on Android) compatibility issues. If you were affected, could you please test?

#littleFedi #littleOne

r1w1s1
@r1w1s1 @snac.bsd.cafe
GEFS on OpenBSD, a very early preview.

Ori Bernstein is porting GEFS, the crash-safe, snapshotting, copy-on-write filesystem originally written for 9front, to OpenBSD.

https://marc.info/?l=openbsd-tech&m=178948744271633&w=2

#openbsd #bsd
Replying to @lilpoes

@lilpoes how's the ram usage going with lighthttpd? I've used it in the past, but not recently.

mosspiglet
@pluvialgeist
A clear, shallow river curves through a forested landscape under a bright blue sky. The water reveals smooth stones and pebbles beneath its surface. Gravel banks line the river’s edge, flanked by tall evergreens and leafy deciduous trees in fresh spring green.
A clear, shallow river curves through a forested landscape under a bright blue sky. The water reveals smooth stones and pebbles beneath its surface. Gravel banks line the river’s edge, flanked by tall evergreens and leafy deciduous trees in fresh spring green.

The summertime North Fork Calawah River is clear and beautiful πŸ©΅πŸ’š

@photography@fedigroups.social @nature@fedigroups.social
#Cascadia #PNW #Nature #Photography #Rivers #Water #Forests #Trees #Sky #Summer

Replying to @crp

@crp writing about what you love is the best thing to improve your mood. And we'll love it.

Hello, friends at littleOne!

I'm slowly recovering from the "after EuroBSDCon" queue of things to do, and I'll put some time and effort on littleFedi in the coming days.

I've forwarded a list of bugs & features to the team and they worked on it, so I'll merge them in the coming days. Stay tuned!

#littleFedi #littleOne

🫠 1 πŸ€— 1
Replying to @francois

@francois @crp πŸ˜€πŸ˜€πŸ˜€πŸ˜€
That was nice - I immediately got the irony and... yes, it was nice πŸ˜€πŸ˜€πŸ˜€

Replying to @fd0

I just attended a great talk by @stefano about disaster recovery (with capitals)… One cannot give enough credit to his wife for the support she gave during the whole process.
This is very often forgotten…
❀️
#eurobsdcon2026

Stefano Marinelli
@stefano @mastodon.bsd.cafe
The NetBSD dev summit room
The NetBSD dev summit room

The #NetBSD dev summit is about to start!

#EuroBSDCon #RunBSD

Replying to @fd0

@fd0 @EuroBSDCon@bsd.network it was great to see you, even if just for a few minutes. See you later!

Heading to Brussels in less than 12 hours \o/ ... for @EuroBSDCon@bsd.network

Replying to @fasnix

@fasnix anzi, buon compleanno!

Replying to @fasnix
Parade du Grotesque πŸ’€
@ParadeGrotesque @mastodon.sdf.org

If all of you all (you know who you are) currently exploring #NetBSD (for, uh, reasons*) would donate a little bit of money to the NetBSD Foundation, I am sure that sad little gauge under the logo would look a lot better.

netbsd.org/donations/#how-to-d

Because right now, it stands at about 12K out of a goal of 50K and it makes me sad. πŸ˜”

Donate! πŸ’Ά πŸ’΅ πŸ’·

(* good reasons, I might add)

:netbsd:

Hello, littleFedi friends!

Some days ago, I created an official account for the littleFedi project. It's still almost empty and I'm planning to populate and starting to post from it after EuroBSDCon.

If you want to receive the official communications about littleFedi, you can already follow that user: @littlefedi_official

Enjoy!

#littleFedi #littleOne

πŸ‘ 1 :fediverse@seiran-beta.org: 2
Load older posts