sam

@sam@cablespaghetti.dev

Father of two, husband, lover of dogs but owner of many cats. Runner. Technology enthusiast. Metalhead. AuADHDer. Cloudy DevOps type person. Formerly known as @sam@running.cafe.

822 following, 777 followers

📌 24 ★ 12 ↺

[?]sam » 🌐
@sam@cablespaghetti.dev

Time for another blog post, about hosting a fediverse instance on my ancient Raspberry Pi. Obviously I had to share it on the fediverse.

https://cablespaghetti.dev/hosting-a-fediverse-instance-on-an-original-raspberry-pi.html


    ...
    📌 23 ★ 4 ↺
    Jason Davis boosted

    [?]sam » 🌐
    @sam@cablespaghetti.dev

    If you’re reading this you have been successfully migrated as a follower to my stupidly underpowered Raspberry Pi hosted instance. Let’s see how it does with nearly 700 followers. 😆

      ...
      2 ★ 0 ↺

      [?]sam » 🌐
      @sam@cablespaghetti.dev

      @justine@snac.smithies.me.uk that boost did not help my load situation. 😆 I may have some work to do for this to be properly stable.

        ...

        [?]Stefano Testing Something Cool » 🌐
        @stefano@rpi0w.stefanomarinelli.it

        LittleFedi: light, yet complete

        I'm writing this post from a Raspberry Pi Zero W - 512 MB RAM, single-core ARMv6 - running NetBSD, powered by littleFedi. The process sits at 33 MB RSS, CPU basically asleep:

        load averages:  0.05,  0.08,  0.09
        CPU states:  0.0% user,  0.0% nice,  0.0% system,  1.0% interrupt, 99.0% idle
        Memory: 301M Free
          PID COMMAND             RES STATE
         2082 littlefedi-armv6    33M kqueue
        

        No Redis. No PostgreSQL (but optional). No Sidekiq. No Node.js build pipeline. One statically-linked binary, one SQLite file, and the full fediverse experience. And this is the part people tend to miss: the same binary that runs happily on a Pi Zero scales, on the right hardware, to numbers that have nothing to do with "lightweight". It's not a toy that stays a toy. It's built to grow when you need it to.

        What LittleFedi actually ships

        Federation - Full ActivityPub S2S: WebFinger, NodeInfo 2.1, host-meta, HTTP Signatures with anti-impersonation checks. Per-user and shared inboxes, outbox, followers, following, featured collections. Thread completion with bounded on-demand fetching of missing ancestors/replies (separate sync and background budgets, all hard-capped). Quote posts via FEP-044f with the full approval handshake (QuoteRequest -> QuoteAuthorization), matching Mastodon 4.4 semantics, plus _misskey_quote and Fedibird quoteUri aliases. Account migration (Move), both outgoing and incoming, with alsoKnownAs linking, automatic follower migration, follow import from AP collections, and CSV export/import. Remote interaction discovery - async like/boost resolution from origin servers with REST fallback.

        Mastodon API - Broad coverage: timelines (home, public, local, hashtag, bubble, direct), status CRUD with edits, scheduled posts, polls, bookmarks, lists (with replies_policy and exclusive), filters v2 (keyword CRUD), featured tags, followed hashtags (posts appear in home), markers, conversations, notifications with type exclusion, follow requests, blocks (federated Block/Undo), mutes with duration/expiry and hide_notifications, per-user domain blocks. OAuth2 with app registration, authorization code, client credentials and refresh_token flows, PKCE, consent screen, and scope enforcement (read/write/admin:read/admin:write). It talks fine to Elk, Tusky, Ivory, Phanpy, Semaphore and MastoBlaster.

        Streaming - WebSocket and SSE. In-process pub/sub hub with per-connection send buffers, zero cost when no client is connected. Broadcast streams for public, local, remote, hashtags and lists. Per-account streams for user timeline, notifications and direct messages. Optional PostgreSQL LISTEN/NOTIFY backend for cross-process fan-out. Mastodon-compatible event serialization.

        Push notifications - Full Web Push / VAPID (RFC 8030/8291) with aes128gcm encryption. Per-type alert toggles (mention, follow, reblog, favourite, poll, follow_request, status). Notify-bell support on followed accounts. Subscription expiry detection, rate-limit handling, 5-retry delivery.

        Media pipeline - Upload processing: thumbnail generation (600x600), blurhash computation, EXIF stripping, magic-byte validation, SVG rejection, MIME mismatch detection, UUID-based file renaming. Size limits (40 MB default), pixel caps (16 MP default, tunable down to 4 MP for SBCs).

        Media privacy proxy - This is the part I actually care about most. All remote media streams through the instance via HMAC-signed URLs (/proxy/media?url=...&sig=...), so local users never expose their IP address to remote servers. SSRF-guarded: DNS resolution check, private/CGNAT IP rejection, redirect re-validation. Pure io.Copy pass-through, no disk, no decode, ~32 KB buffer. Forwards HTTP Range requests for audio/video seeking. Configure a proxy_secret for stable URLs across restarts. On low-RAM devices, set cache_remote = "off" and you still see every image on the fediverse, the instance just doesn't store or process them.

        Remote media caching - Three modes: off, eager (background sweep caches all remote attachments, avatars, headers and emoji, backfills existing on mode switch), lazy (cache on first access). Content-addressed, deduplicated by origin URL. Age-based pruning with file GC. Negative-cache for permanently dead URLs. Transparent origin fallback on cache miss. Open Graph preview cards stored durably with posts.

        S3-compatible storage - A separate build tag (-tags s3), deliberately excluded from the default binary to keep it small. Supports AWS S3, MinIO, SeaweedFS, Ceph, Backblaze B2, Wasabi, DigitalOcean Spaces. Native media migration CLI: littlefedi admin media storage-migrate between local and S3 (DB-queue-backed, resumable, bounded batches). storage-status, storage-cancel, storage-resume commands. storage-manifest for rclone JSONL integration.

        Markdown posts - Powered by goldmark with GFM extensions: tables, strikethrough, bare URL autolinking, hard wraps. Raw HTML deliberately not rendered. Output sanitized through bluemonday (defense-in-depth). Composer toggle in the web UI. Federates source.mediaType: text/markdown (Pleroma/GTS convention). Inbound Markdown source is rendered to HTML.

        Visibility modes - The standard four (public, unlisted, private, direct) plus local-only (local, instance timeline only, never federates) and local unlisted (local_unlisted, followers only, no federation). Useful for notes to your own instance community.

        Bubble timeline - Curated set of instances whose posts appear alongside local posts in a special timeline. Akkoma-compatible extension. Admin panel for adding/removing bubble instances. API endpoint at /api/v1/timelines/bubble.

        Moderation - Account states: suspended (tombstone, federates Delete(Person)), silenced (visible to followers only, dropped from public timelines), quiet (like silenced plus it downgrades federation to followers-only, a middle ground I haven't seen anywhere else), disabled (cannot log in, content stays visible). Self-suspend prevention, last-admin-demotion guard. Blocks (bidirectional, federated), mutes (local-only, with duration and hide_notifications), per-user domain blocks (distinct from admin instance-wide blocks). Reports pipeline: user submissions plus inbound/forwarded Flag into an admin triage UI with resolution actions. Admin notification on new reports. Domain blocks with severity (noop/silence/suspend) plus Mastodon-parity options (reject_media enforced in the proxy, reject_reports, obfuscate, public). A moderation audit log records every admin action.

        Web UI - Server-rendered HTML with html/template, templates embedded via //go:embed. Inline CSS (dark mode, Inter font, gradients). htmx 2.x and Alpine.js for progressive enhancement. No build step, no Webpack, no Tailwind, no npm. Every action works as a plain form POST without JavaScript. Works in Lynx, eLinks, text-only browsers, and on mobile.

        Full feature set: home/public/local/bubble timelines with infinite scroll, profile pages with follow/unfollow/bell toggle, status threads with reply composer and background thread completion, post creation with CW, visibility selector (6 modes), media upload with alt text, Markdown toggle, quote posts (pre-loads composer with the quoted post as an inline card), post editing, composer autocomplete for @mentions and #hashtags, settings (display name, bio, password, sessions, moderation, pruning, account move, timeline preferences), report form, search page, tag management.

        Admin panel - Dashboard (user counts, pending approvals, unreachable instances, open reports), accounts (with suspend/silence/quiet/disable/approve/reject actions), invites (CRUD), domain blocks (with severity and options), reports (triage and resolution), audit log, instance health (per-instance status with follower/following counts, reachability tracking, purge with typed-domain confirmation), bubble instances, settings, housekeeping (on-demand pruning), queue console (ready/scheduled/running/failed by job kind), media storage (S3 migration controls in S3 builds).

        Background jobs - DB-backed queue that survives restarts, 8 job kinds: inbox, delivery (16 attempts over roughly 26h with capped exponential backoff and equal jitter), push_notification, actor_refresh, poll_close, scheduled_status, media_cache, media_migration. Per-instance circuit breaker suspends delivery at backoff_count >= 10. Actor refresh dispatcher with stale-while-revalidate, crash-safe leases, and per-actor exponential backoff.

        Backups - Periodic or on-demand, server-side, no external tooling required. Each run produces a timestamped directory with config.toml, a portable database dump (VACUUM INTO for SQLite, pg_dump for PostgreSQL), an optional copy of owned media, and a manifest. Toggle it on, set an interval (24h, 7d, whatever fits), decide whether to include owned media (the remote cache is always excluded, no point backing up other people's content), and set a retention count so old backups get pruned automatically. Off by default, one line to turn on.

        Housekeeping - Automated pruning: remote statuses by age, own low-interaction statuses (per-user or server thresholds, min likes/boosts caps), tombstones, expired mutes, stale media (>24h unattached), orphaned media (deleted posts), unreferenced media files (disk files with no DB record), cached media by age, cache file GC. On-demand controls in the admin UI.

        Security - Token-bucket rate limiting per IP. Security headers: X-Content-Type-Options, X-Frame-Options, Referrer-Policy, Strict-Transport-Security. Content-Security-Policy with nonce-based script/style. CORS. CSRF on all cookie-authenticated POSTs. Session fixation protection. Password reset token in a cookie, not the URL. OAuth consent screen (not auto-issuing). SSRF protection (DNS, IP and redirect re-validation) on all outbound HTTP. HTTP Signature algorithm enforcement (rsa-sha256 only). Inbox body size limit (1 MB). Backfill goroutine cap. Thread-fetch amplification limits. File upload validation (magic bytes, SVG rejection, MIME mismatch). Username enumeration hardening.

        Operational - Prometheus metrics at /metrics (counters for API/inbox/fed/web requests, statuses, deliveries, thread fetches, queue depth; gauges for workers, pending follows, uptime). Health checks (/health, /readyz). CLI: admin create-user, admin set-admin, admin list-users, admin suspend/unsuspend, admin invite generate/list/revoke, admin media prune/prune-orphans/prune-files, admin media storage-migrate/status/cancel/resume/manifest, post (publish from stdin/file with Markdown, visibility, CW, media, reply, quote), migrate (run migrations only). SMTP for password reset and notifications (falls back to stdout). Config via TOML file plus environment variables (LITTLEFEDI_{SECTION}_{KEY}).

        Platform support - CGO-free, compiles with CGO_ENABLED=0. 23+ GOOS/GOARCH combos via the modernc SQLite driver: macOS (amd64, arm64), Linux (386, amd64, arm, arm64, loong64, ppc64le, riscv64, s390x), FreeBSD (386, amd64, arm, arm64), Windows (386, amd64, arm64), OpenBSD (amd64, arm64). NetBSD (amd64, arm, arm64) via a WASM-based fallback SQLite driver, I don't think anything else in the fediverse space explicitly targets NetBSD. PostgreSQL is a separate build tag (-tags postgres), S3 is another (-tags s3). The default binary carries neither, keeping it small. ARMv6 (GOARM=6) gets special treatment in the release naming, that's the Pi Zero target.

        Why it matters

        The fediverse shouldn't demand a beefy VPS. It shouldn't require Docker, 2 GB of RAM, Redis, Sidekiq, or a JS toolchain that pulls in 800 packages. A 10 euro Raspberry Pi Zero W running NetBSD, sitting on a shelf, drawing less than 2 watts, can be a fully functional fediverse instance with a web UI, mobile app compatibility, streaming, push notifications, quote posts, account migration, and a moderation toolkit. That's not hypothetical, that's what this post is running on.

        But don't mistake "runs on a Pi Zero" for "only runs on a Pi Zero". Point the same binary at real hardware and it scales to numbers that have nothing to do with hobby-instance territory. Low power is the floor, not the ceiling.

        One binary, one config file, one SQLite database. Light, yet complete.

        I've been involved in this project for a while now, though I can't say much more about it at the moment, there are other people involved besides me and it's not entirely my call to talk about it publicly yet.

        #Fediverse #littleFedi #OwnYourData #NetBSD

        ...
        3 ★ 0 ↺

        [?]sam » 🌐
        @sam@cablespaghetti.dev

        @stefano@rpi0w.stefanomarinelli.it @stefano@bsd.cafe This post is not little even if your RAM usage is. I’ve grown quite used to snac2 but the modern features here are attractive!

          ...

          [?]Stefano Marinelli » 🌐
          @stefano@mastodon.bsd.cafe

          @sam @stefano@rpi0w.stefanomarinelli.it snac is great, and it's perfectly fit for the task. I'll continue to use snac for many of my projects, like for expanding FediMeteo, etc.

            [?]R.L. Dane :Debian: :OpenBSD: :FreeBSD: 🍵 :MiraLovesYou: [he/him/my good fellow] » 🌐
            @rl_dane@polymaths.social

            @stefano

            Ok, you've got me insanely curious, now. 😁

            ...

            [?]Mark Jackson » 🌐
            @ispreview@mastodon.social

            ...
            0 ★ 0 ↺

            [?]sam » 🌐
            @sam@cablespaghetti.dev

            @ispreview@mastodon.social Love the top tips. Thankfully my cats currently have no interest in warm things!

              sam boosted

              [?]Signal » 🌐
              @signalapp@mastodon.world

              Our statement on the UK government’s demand that all content on all devices sold or used in the country be scanned, on the presumption of nudity, using a dystopian combination of age verification and content scanning. This proposal will not safeguard children. It endangers us all.

              signal.org/blog/pdfs/2026-06-0

              ...
              Older...

              [?]Mychal Shade » 🌐
              @mychalshade@mastodon.social

              @signalapp What happens when they find legal nudity? Is it noted somewhere for tracking (and monitoring)?

                ...

                [?]Misuse Case » 🔓
                @MisuseCase@twit.social

                @mychalshade @signalapp The historical record suggests that the algorithms they use for scanning don’t distinguish between legal and illegal nudity and that nobody will check before they cut off the presumed offender’s internet access and maybe sic the cops on them.

                  ...
                  RevK :verified_r: boosted

                  [?]Regendans [they/them/he/him] » 🔓
                  @regendans@todon.eu

                  @MisuseCase @mychalshade @signalapp Or blocked forever. A story from 2022. nextcloud.com/blog/nyt-reports

                  The story of 2 mistakenly blocked Google accounts

As seen in the New York Times article, two individuals from California and Texas have been permanently blocked from their Google accounts due to a mishap with Google’s automated child abuse algorithms.

The mishap being nude children’s photos intended for a doctor’s diagnosis.

                  Alt...The story of 2 mistakenly blocked Google accounts As seen in the New York Times article, two individuals from California and Texas have been permanently blocked from their Google accounts due to a mishap with Google’s automated child abuse algorithms. The mishap being nude children’s photos intended for a doctor’s diagnosis.

                    [?]David Ginn » 🌐
                    @david@social.piconet.work

                    @signalapp They’re giving in to populism, and the government isn’t listening to the experts. The police in the UK is already untrustworthy. What happens when they start arresting people for false positives?

                      [?]Bjarne Oldrup » 🌐
                      @oldrup@mastodon.green

                      @signalapp No more bombs ✊

                      Boobs! I meant boobs of course.

                      The dangerous stuff.

                        [?]Kinene⭐🐻 » 🌐
                        @c_merriweather@social.linux.pizza

                        @signalapp Uh, any museum painting collection?

                          [?]DekOfTheYautja » 🌐
                          @DekOfTheYautja@social.vivaldi.net

                          @signalapp Doesn't endanger the government!

                            [?]GazaTrending » 🌐
                            @dckim@mastodon.social

                            @signalapp why is everything gone so 'end-of-days' with each and every issue?

                            Religiously it's accurate to say the end is near but, I don't think that we know that it's because of 'A,B,C,...'

                              [?]Steven Horner » 🌐
                              @stevenhorner@mastodon.social

                              @signalapp I saw this reported on Sky news today and you can understand why the average person agrees with it because there was no reporting on why this could a bad thing. How the purpose would likely be expanded and people will just get around it anyway.

                              The UK government wanted to put back doors into apps like Whatsapp and other chat apps. A back door is a security hole that others will exploit and the UK government don't have a good track record with tech rollouts 🤔

                                [?]llanciawn » 🌐
                                @llanciawn@mastodon.social

                                @signalapp Sounds more like a spying charter than protection for children.

                                  [?]Yet another Josh :donor: » 🌐
                                  @crankylinuxuser@infosec.exchange

                                  @signalapp

                                  Why won't Signal release/open source all of their backend infra automation scripts/tools/etc...

                                  There's no reasonable reason why a 501(c)(3) won't put this out there to make sure there's redundancy so we could built an alternate network if they're compromised by some gag order.

                                    [?]🐕 [he/him] » 🌐
                                    @jbenjamint@mastodon.scot

                                    @signalapp I think many of your points have merit, but what actually is your counter proposal to prevent online child criminal / sexual exploitation?

                                    I work in field where CSE is an issue and am keen to know how you'd address it.

                                      [?]Kevin Russell » 🌐
                                      @kevinrns@mstdn.social

                                      @signalapp

                                      And they are doing it to protect powerful and rich pedophiles. Refusing to.investigate, refusing to pressure named pedos, connected pedos from Trump t o Epstein.

                                        [?]ArchiveScribe » 🌐
                                        @archivescribe@mastodon.social

                                        @signalapp Every Western government is compromised by this totalitarian spirit to control us like electronically caged animals. It’s evil.

                                          [?]flexghost. » 🌐
                                          @flexghost@mastodon.social

                                          @signalapp

                                          The UK is, was and shall be forever cooked, fam.

                                            [?]rik » 🔓
                                            @rik@social.librem.one

                                            @signalapp Very well put!

                                              [?]Sana Beauty » 🌐
                                              @sanabeauty@mastodon.social

                                              @signalapp Parents should always take the responsibility first to monitor their children.

                                                [?]ocelot221 » 🌐
                                                @ocelot221@mastodon.social

                                                @signalapp @GrapheneOS is going to start getting popular in the UK

                                                  [?]Mousa Al Bateh | Cloud Security & Architect » 🌐
                                                  @mousa_cloud@infosec.exchange

                                                  @signalapp The whole point of end to end encryption is to make sure that no third party can view your messages. How would they secure the scanners? Oh, sorry I asked! The scanners themselves become an attack surface and since its centralized, this adds a single point of failure. It would be better if they instead raise awareness for parents and issue laws that actually help struggling children without breaking E2EE for everyone.

                                                    [?]vruz » 🌐
                                                    @vruz@mstdn.social

                                                    @signalapp Have they tried applying their surveillance to billionaires first? It seems likely that they would find more extensive and more deeply abject crime if they looked straight into their business, and not into everybody else's perfectly legal and free lives.

                                                    Of course, that question is rhetorical. The purpose of a system is what the system does.

                                                      [?]RRB » 🌐
                                                      @rrb@infosec.exchange

                                                      @signalapp die Gedanken sind nimmer frei

                                                        [?]Phil 🇦🇺 » 🌐
                                                        @phil@mastodon.quokka.today

                                                        @jonathantrott i still am not sure signal's centralised nature works for me.
                                                        But yeah the government shouldn't mess.

                                                          [?]mrjive » 🌐
                                                          @mrjive@mastodon.uno

                                                          @signalapp OMG! Aren't we facing enough surveillance, already??

                                                            [?]Bell Peeps XD » 🌐
                                                            @bellpeep@mastodon.social

                                                            @signalapp yikes UK has become such a nanny state these days.

                                                              0 ★ 0 ↺
                                                              in reply to »

                                                              [?]sam » 🔓
                                                              @sam@cablespaghetti.dev

                                                              @neil@mastodon.neilzone.co.uk
                                                              @Edent@mastodon.social As someone paying for 500Mb and moving to a house this week, where the max I can get is 20Mb I would say I agree but with a big caveat.

                                                              To get sensible modern speeds (I’d categorise as around 1-200Mb) you need modern fibre infrastructure. By the time you’ve invested in that then the hardware can easily deliver 1Gb or even 10 with newer XGS-PON.

                                                              So I’d say yes I don’t need a gig, but also internet delivered over old copper phone infrastructure doesn’t really cut it anymore either. It’s nice to have options available to easily upgrade if/when it is needed.

                                                                3 ★ 0 ↺

                                                                [?]sam » 🔓
                                                                @sam@cablespaghetti.dev

                                                                @bookrastinating@thenighthas.me @isa@thenighthas.me I can’t find the DM I sent now, so sending this again. I’m a long time Bookrastinating user and don’t have my reading data from the past few years anywhere else.

                                                                Just offering my skills as a professional cloud/linux engineer of ~15 years to help bring it back online. I am also willing to offer a new server for it to live on if that’s the issue. My email is the same as my fedi account if that’s better.

                                                                  ...

                                                                  [?]bookrastinating » 🔓
                                                                  @bookrastinating@thenighthas.me

                                                                  @sam @isa Hello, sorry this got lost in my notifications, and I got swept up in the whirlwind of life. Thank you for the offer, but we will be working on this shortly!

                                                                    ...

                                                                    [?]Andy Piper » 🔓
                                                                    @andypiper@macaw.social

                                                                    @bookrastinating @sam @isa 👀 interested in outcomes here!

                                                                      1 ★ 0 ↺

                                                                      [?]sam » 🔓
                                                                      @sam@cablespaghetti.dev

                                                                      @bookrastinating@thenighthas.me @sam
                                                                      @isa@thenighthas.me Once more. Please let me know if I can help here. I would really love to see it back online. All I need is access to backups and I can spin it up again somewhere…

                                                                        ...

                                                                        [?]arno » 🔓
                                                                        @arnodegroote@mastodon.social

                                                                        @sam @bookrastinating @isa at this point it's really taking very long... should've backed up my data sooner. still hoping for a good outcome because I'd also love to see it back up online. any luck with gaining access?

                                                                          ...
                                                                          2 ★ 0 ↺

                                                                          [?]sam » 🔓
                                                                          @sam@cablespaghetti.dev

                                                                          @arnodegroote@mastodon.social Sorry no I’ve not heard anything. I think at this stage we’re unlikely to see it come back.

                                                                            ...

                                                                            [?]arno » 🔓
                                                                            @arnodegroote@mastodon.social

                                                                            @sam still holding on to a bit of hope, but shit happens, I guess?

                                                                              [?]Paul [he/him] » 🌐
                                                                              @threedaymonk@sonomu.club

                                                                              Friend just lost their job, right after buying a new house, and because they're on a visa they have 90 days to find another job or get deported.

                                                                              If anyone has any leads on software product/partner/customer management jobs in London, please send them my way.

                                                                              ...

                                                                              [?]DistroWatch » 🌐
                                                                              @distrowatch@mastodon.social

                                                                              @threedaymonk I think a few of the jobs in this thread would be applicable: mastodon.social/@jessie/116612

                                                                              DistroWatch boosted

                                                                              [?]Jess Rose » 🌐
                                                                              @jessie@mastodon.social

                                                                              You're welcome/sorry for the spam:

                                                                              It's time for another one of my threads sharing the tech for good* jobs I've found in my wanders across the web

                                                                              *or just hopefully less evil, at least

                                                                                  [?]Hugh » 🔓
                                                                                  @hugh@social.crablab.uk

                                                                                  @threedaymonk 😔 I'm sorry to hear that. We're hiring: wise.jobs

                                                                                  Let me know if anything suits.

                                                                                    1 ★ 0 ↺

                                                                                    [?]sam » 🌐
                                                                                    @sam@cablespaghetti.dev

                                                                                    @threedaymonk@sonomu.club @sindarina@ngmx.com Lots of jobs going, I’m sure at least one will be applicable https://jobs.ashbyhq.com/9fin

                                                                                      ...
                                                                                      popey boosted

                                                                                      [?]Linux Matters Podcast » 🌐
                                                                                      @linuxmatters@ubuntu.social

                                                                                      These are the user agents on hits to the Matters podcast RSS feed over last 30 days. @AntennaPod seems remarkably more used than any other... What do you use?

                                                                                      Line charts showing request trends over 30 days for the top user agents on the Linux Matters podcast RSS feed. AntennaPod/3.11.4 leads at 251,930 requests with a relatively steady trend. Most other clients show fairly flat or gradual patterns, with a few exceptions: rss-parser shows a notable drop near the end of the period, and the Windows AppleWebKit user agent shows a distinct step-down mid-period. Audiobookshelf, PodcastAddict, and iTMS show consistent traffic throughout.

                                                                                      Alt...Line charts showing request trends over 30 days for the top user agents on the Linux Matters podcast RSS feed. AntennaPod/3.11.4 leads at 251,930 requests with a relatively steady trend. Most other clients show fairly flat or gradual patterns, with a few exceptions: rss-parser shows a notable drop near the end of the period, and the Windows AppleWebKit user agent shows a distinct step-down mid-period. Audiobookshelf, PodcastAddict, and iTMS show consistent traffic throughout.

                                                                                      Bar chart of top user agents for the Linux Matters podcast RSS feed, led by AntennaPod/3.11.4 at 251,930 requests, followed by Audiobookshelf at 44,480 and PodcastAddict at 34,430. Other notable clients include iTunes, Googlebot, Podimo, Snipd, and various Firefox and Chromium browser strings.

                                                                                      Alt...Bar chart of top user agents for the Linux Matters podcast RSS feed, led by AntennaPod/3.11.4 at 251,930 requests, followed by Audiobookshelf at 44,480 and PodcastAddict at 34,430. Other notable clients include iTunes, Googlebot, Podimo, Snipd, and various Firefox and Chromium browser strings.

                                                                                        ...
                                                                                        Older...

                                                                                        [?]Steve » 🌐
                                                                                        @steevc@mastodon.org.uk

                                                                                        @linuxmatters I use Pocket Casts on my phone.

                                                                                          [?]Kancept » 🌐
                                                                                          @Kancept@infosec.exchange

                                                                                          @linuxmatters @AntennaPod If I'm on my Android device I use AntennaPod. If I'm on my iPhone, I use Apple PodCasts.

                                                                                            [?]windigo » 🌐
                                                                                            @windigo@mastodon.sdf.org

                                                                                            @linuxmatters That's funny, I don't see "ancient hacky bash script" anywhere on that list...

                                                                                              [?]rik » 🔓
                                                                                              @rik@social.librem.one

                                                                                              @linuxmatters
                                                                                              @AntennaPod
                                                                                              AntennaPod, of course!

                                                                                                [?]Henrik Hemrin » 🌐
                                                                                                @hehemrin@mastodon.nu

                                                                                                @linuxmatters @AntennaPod

                                                                                                AntennaPod - I'm one in the statistics.

                                                                                                  1 ★ 0 ↺

                                                                                                  [?]sam » 🌐
                                                                                                  @sam@cablespaghetti.dev

                                                                                                  @linuxmatters@ubuntu.social Castamatic on iOS. This is making me feel like I need to get some self hosting going on with audiobookshelf though.

                                                                                                    [?]taketwo » 🌐
                                                                                                    @taketwo@social.tchncs.de

                                                                                                    @linuxmatters
                                                                                                    OeffiSounds which implements some of the proprietary storage locations of the public radio stations for podcastsin top of Antennapod
                                                                                                    Unfortunately neither is going for livestreams and alternate encosures just yet.
                                                                                                    Still can't have linear streaming and podcasts in the same place

                                                                                                      [?]Gary :party_porg: » 🌐
                                                                                                      @WiteWulf@cyberplace.social

                                                                                                      Here are some tunes for @DJDarren:

                                                                                                      Howard Jones - The Prisoner

                                                                                                      Down - Jail (maybe as a bed? It’s a bit long and ponderous)

                                                                                                      Deacon Blue - The Day That Jackie Jumped The Jail

                                                                                                      Redpoint - Model Prisoner

                                                                                                      The Gathering - Locked Away

                                                                                                      Clutch - Your Love Is Incarceration

                                                                                                        ...
                                                                                                        0 ★ 0 ↺

                                                                                                        [?]sam » 🌐
                                                                                                        @sam@cablespaghetti.dev

                                                                                                        @WiteWulf@cyberplace.social I was really disappointed when I googled this and Howard Jones the ex-frontman for Killswitch Engage hadn’t done an Iron Maiden cover of The Prisoner…

                                                                                                          ...

                                                                                                          [?]Gary :party_porg: » 🌐
                                                                                                          @WiteWulf@cyberplace.social

                                                                                                          @sam lol, they can’t all be zingers 😂

                                                                                                            RevK :verified_r: boosted

                                                                                                            [?]Mark Jackson » 🌐
                                                                                                            @ispreview@mastodon.social

                                                                                                            New Campaign Group Accuses Starlink of “Predatory Broadband Bait-and-Switch” ispreview.co.uk/index.php/2026

                                                                                                            Starlink Standard 4 Kit

                                                                                                            Alt...Starlink Standard 4 Kit

                                                                                                            ...
                                                                                                            1 ★ 0 ↺

                                                                                                            [?]sam » 🌐
                                                                                                            @sam@cablespaghetti.dev

                                                                                                            @ispreview@mastodon.social @revk@toot.me.uk Quality journalism as always Mark. Glad I made the call to invest in 4G kit instead of Starlink at my new rural house. Amusingly this did have a Starlink ad at the bottom of the page for me though. 😆

                                                                                                              [?]Ray McCarthy » 🌐
                                                                                                              @raymaccarthy@mastodon.ie

                                                                                                              @ispreview
                                                                                                              It's not real broadband ever.

                                                                                                                [?]The Tattooed Nonna 🧙‍♀️ [She/her] » 🌐
                                                                                                                @Tattooed_Mummy@beige.party

                                                                                                                @sam hey. How are the aqua dragons?

                                                                                                                  ...
                                                                                                                  1 ★ 0 ↺

                                                                                                                  [?]sam » 🌐
                                                                                                                  @sam@cablespaghetti.dev

                                                                                                                  @Tattooed_Mummy@beige.party @sam Let’s see if this video will send over Snac…

                                                                                                                  I’ve got about 5 adults left and have had a lot of live births in the past week or so. I think overfed early on but all seems happy now. 🤞

                                                                                                                  Tempted to expand after we move house in a couple of weeks and maybe start growing my own live food rather than powder. 😁

                                                                                                                  Alt...Aqua dragons tank backlit with a grow light containing 5 adults and a bunch of babies.

                                                                                                                    🗳
                                                                                                                    Dragon boosted

                                                                                                                    [?]Julian Oliver » 🌐
                                                                                                                    @JulianOliver@mastodon.social

                                                                                                                    Temperature check for some on-prem training.

                                                                                                                    Please nerdboost.

                                                                                                                    I have a static IP at home:29
                                                                                                                    My IP at home changes:67
                                                                                                                    I don't know:7
                                                                                                                      ...
                                                                                                                      Older...

                                                                                                                      [?]Axel 🚴😷🐧🐪⌨ | #WeAreNatenom » 🌐
                                                                                                                      @xtaran@chaos.social

                                                                                                                      @JulianOliver: IPv4 or IPv6? (I have a dynamic IPv4 address and a static /48 at home. Who needs IPv4 nowadays, anyway? 🤓)

                                                                                                                        ...

                                                                                                                        [?]Thomas Schäfer » 🌐
                                                                                                                        @tschaefer@ipv6.social

                                                                                                                        @xtaran @JulianOliver

                                                                                                                        Is the /48 a tunnel or native by the ISP?

                                                                                                                          ...

                                                                                                                          [?]Axel 🚴😷🐧🐪⌨ | #WeAreNatenom » 🌐
                                                                                                                          @xtaran@chaos.social

                                                                                                                          @tschaefer @JulianOliver: My /48 range at home is native: init7.net/en/support/faq/Stati

                                                                                                                          I could also get a static IPv4 address for some extra money, but it's not worth it anymore — static IPv6 suffices completely.

                                                                                                                            [?]Rachel [She/Her] » 🌐
                                                                                                                            @rachel@transitory.social

                                                                                                                            @JulianOliver@mastodon.social my IP has changed maybe twice in 10 years so technically not static

                                                                                                                              [?]Anton Piatek » 🌐
                                                                                                                              @sldrant@mastodon.social

                                                                                                                              @JulianOliver @Dragon honestly I'm not sure. Also I don't particularly care as most services I use via tailscale.

                                                                                                                                ...

                                                                                                                                [?]Dragon » 🌐
                                                                                                                                @Dragon@toast.dragon2611.net

                                                                                                                                @sldrant @JulianOliver It doesn't really bother me that much either, but the ISP i'm with just provides it as standard so...

                                                                                                                                  ...

                                                                                                                                  [?]Anton Piatek » 🌐
                                                                                                                                  @sldrant@mastodon.social

                                                                                                                                  @Dragon @JulianOliver I feel like mine probably does too, but also it's not enough of a concern for me to actually have made a mental note of it

                                                                                                                                    [?]Karl Baron » 🌐
                                                                                                                                    @kalleboo@bitbang.social

                                                                                                                                    @JulianOliver I pay $5/mo for a static IPv4 (disabling CGNAT)

                                                                                                                                    The IPv6 prefix has no static guarantee but it hasn't changed in a year so...

                                                                                                                                      [?]Elle 💗 » 🌐
                                                                                                                                      @ellesaurus@toot.lgbt

                                                                                                                                      Bookrastinating, one of the largest Bookwyrm instances, has been down since May 3. There was an update same day that they were looking into it.

                                                                                                                                      Since then there have been no updates. The admin has been posting normally on their main account with no mention of it. That sucks.

                                                                                                                                      We're all volunteering here, so it can be clunky. Life can get in the way. But communication is bare minimum here.

                                                                                                                                        ...

                                                                                                                                        [?]The Tattooed Nonna 🧙‍♀️ [She/her] » 🌐
                                                                                                                                        @Tattooed_Mummy@beige.party

                                                                                                                                        @ellesaurus ouch. Might cancel my regular payment until we hear more

                                                                                                                                          ...
                                                                                                                                          4 ★ 0 ↺

                                                                                                                                          [?]sam » 🌐
                                                                                                                                          @sam@cablespaghetti.dev

                                                                                                                                          @Tattooed_Mummy@beige.party
                                                                                                                                          @ellesaurus@toot.lgbt I’ve just sent them a message offering help. Maybe they’ve got fed up with running it. Hopefully we can get it back up because I don’t have my reading data from the past couple of years anywhere else…

                                                                                                                                            ...

                                                                                                                                            [?]The Tattooed Nonna 🧙‍♀️ [She/her] » 🌐
                                                                                                                                            @Tattooed_Mummy@beige.party

                                                                                                                                            @sam @ellesaurus nor me. I didn't back it up 😭😭😭

                                                                                                                                              [?]Kevin Neely :donor: » 🔓
                                                                                                                                              @ktneely@infosec.exchange

                                                                                                                                              @sam @Tattooed_Mummy @ellesaurus I would help, as well, but I don't even know how to contact the admins. The Mastodon account seems unused and I can't figured out a way to follow/view the GoToSocial account.

                                                                                                                                                [?]popey » 🌐
                                                                                                                                                @popey@mastodon.social

                                                                                                                                                Trying out external display support on on my M1 MacBook Air. This is pretty much the final step for daily driving! 🎉

                                                                                                                                                A photograph of an Apple MacBook Air with an M1 chip running Ubuntu Asahi 24.04, connected to an external display (an LG Dual-Up).

                                                                                                                                                Alt...A photograph of an Apple MacBook Air with an M1 chip running Ubuntu Asahi 24.04, connected to an external display (an LG Dual-Up).

                                                                                                                                                A screenshot of Ubuntu Asahi 24.04 running on an M1 Apple MacBook Air. Both the internal panel and an external display are enabled.

                                                                                                                                                Alt...A screenshot of Ubuntu Asahi 24.04 running on an M1 Apple MacBook Air. Both the internal panel and an external display are enabled.

                                                                                                                                                  ...
                                                                                                                                                  1 ★ 0 ↺

                                                                                                                                                  [?]sam » 🌐
                                                                                                                                                  @sam@cablespaghetti.dev

                                                                                                                                                  @popey@mastodon.social Oh wow! They finally pulled it off! 🎉

                                                                                                                                                    [?]Félim Whiteley » 🌐
                                                                                                                                                    @felimwhiteley@mastodon.social

                                                                                                                                                    @popey bloody hell that monitor... is this Mark's famous wide & tall one... don't think I've ever seen a picture of it and the description did not get painted correctly in my minds eye...

                                                                                                                                                      ...

                                                                                                                                                      [?]popey » 🌐
                                                                                                                                                      @popey@mastodon.social

                                                                                                                                                      @felimwhiteley It is indeed the @linuxmatters standard monitor that we all have, and @martin has two!
                                                                                                                                                      They're fantastic.

                                                                                                                                                        [?]Mark Johnson [He/Him/His] » 🌐
                                                                                                                                                        @marxjohnson@indieweb.social

                                                                                                                                                        @felimwhiteley @popey Alan turns his sideways, the wrong'un.

                                                                                                                                                          ...

                                                                                                                                                          [?]popey » 🌐
                                                                                                                                                          @popey@mastodon.social

                                                                                                                                                          @marxjohnson @felimwhiteley So I can get two nice big vertical displays side by side. It's glorious.

                                                                                                                                                            ...

                                                                                                                                                            [?]Conor Murphy [He/Him] » 🌐
                                                                                                                                                            @techcelt@mastodon.ie

                                                                                                                                                            @popey @marxjohnson @felimwhiteley here's the real debate, the two "chin" bezels on the inside or the outside?

                                                                                                                                                              [?]Mark Johnson [He/Him/His] » 🌐
                                                                                                                                                              @marxjohnson@indieweb.social

                                                                                                                                                              @felimwhiteley @popey Here it is the correct way round

                                                                                                                                                              A big monitor next to a laptop

                                                                                                                                                              Alt...A big monitor next to a laptop

                                                                                                                                                                ...

                                                                                                                                                                [?]popey » 🌐
                                                                                                                                                                @popey@mastodon.social

                                                                                                                                                                @marxjohnson @felimwhiteley Someone at work asked me if I had a new monitor the other day. "No, I've had this since day one".
                                                                                                                                                                "Hmmm".
                                                                                                                                                                "I mean, i rotated it 90 degrees?"
                                                                                                                                                                "That's it!"

                                                                                                                                                                  [?]filviu » 🌐
                                                                                                                                                                  @filviu@mastodon.social

                                                                                                                                                                  @marxjohnson @felimwhiteley @popey I'm so disapointed I only got one for the right of my 41' ultrawide. One each side would be awesome but they seem out of stock everywhere.

                                                                                                                                                                    ...

                                                                                                                                                                    [?]popey » 🌐
                                                                                                                                                                    @popey@mastodon.social

                                                                                                                                                                    @filviu @marxjohnson @felimwhiteley I don't think they're being made anymore, so you're only gonna be able to get second-user ones off places like fleabay.

                                                                                                                                                                      ...

                                                                                                                                                                      [?]Félim Whiteley » 🌐
                                                                                                                                                                      @felimwhiteley@mastodon.social

                                                                                                                                                                      @popey @filviu @marxjohnson we can't have nice things, or if we do for the briefest of moments

                                                                                                                                                                        [?]Félim Whiteley » 🌐
                                                                                                                                                                        @felimwhiteley@mastodon.social

                                                                                                                                                                        @marxjohnson @popey fight fight fight! 🙂

                                                                                                                                                                          ...

                                                                                                                                                                          [?]Charlie O’Hara » 🌐
                                                                                                                                                                          @awfulwoman@indieweb.social

                                                                                                                                                                          @felimwhiteley @marxjohnson @popey I’m with your boy Alan on this one

                                                                                                                                                                            ...

                                                                                                                                                                            [?]Shane Kitt » 🌐
                                                                                                                                                                            @stranded_output@indieweb.social

                                                                                                                                                                            @awfulwoman @felimwhiteley @marxjohnson @popey I'm not hating the 1:1 (or at least closer to that than 16:9) aspect ratio as much as I thought I would. If you work primarily with text and web pages it makes a bit more sense. The vertical space is more valuable than the horizontal.

                                                                                                                                                                              [?]dan 💾 » 🌐
                                                                                                                                                                              @billgoats@bitbang.social

                                                                                                                                                                              With Amazon killing off all the old kindles, they’re super-cheap right now. And it turns out that jailbreaking is a minor faff, but not too difficult, really. This one was £10 and is going to somebody who was pondering getting an expensive eink ebook reader just a couple of weeks ago. :D

                                                                                                                                                                              An old kindle that says ‘jailbreak!’ On the screen

                                                                                                                                                                              Alt...An old kindle that says ‘jailbreak!’ On the screen

                                                                                                                                                                                ...

                                                                                                                                                                                [?]Stefan :veritrek: » 🌐
                                                                                                                                                                                @stefan@social.stefanberger.net

                                                                                                                                                                                @billgoats @morph with the built-in beta-browser old kindles can also be used as all kind of cheap dashboard

                                                                                                                                                                                  ...
                                                                                                                                                                                  6 ★ 2 ↺

                                                                                                                                                                                  [?]sam » 🌐
                                                                                                                                                                                  @sam@cablespaghetti.dev

                                                                                                                                                                                  @stefan@social.stefanberger.net @billgoats I’ve hacked my Kindle 4 to run the https://trmnl.com/ software which I find highly useful. Jailbreaking was a bit of a faff but well documented at least.

                                                                                                                                                                                    [?]mhoye » 🌐
                                                                                                                                                                                    @mhoye@cosocial.ca

                                                                                                                                                                                    @billgoats Got a good URL for that?

                                                                                                                                                                                      ...

                                                                                                                                                                                      [?]phraktalz » 🌐
                                                                                                                                                                                      @phraktalz@mastodon.social

                                                                                                                                                                                      ...

                                                                                                                                                                                      [?]Metnix [he/him] » 🔓
                                                                                                                                                                                      @metnix@mastodon.xyz

                                                                                                                                                                                      @phraktalz
                                                                                                                                                                                      @mhoye @billgoats

                                                                                                                                                                                      "These models have been supported for at least 14 years — some as long as 18 years — but technology has come a long way in that time, and these devices will no longer be supported moving forward."

                                                                                                                                                                                      ...and along that way old hardware is apparently no longer capable of the incredibly demanding task of downloading a bunch of text and displaying it in the form of static images...?

                                                                                                                                                                                        ...

                                                                                                                                                                                        [?]Andrew :hokkaido: :famichiki: » 🔓
                                                                                                                                                                                        @piepants@famichiki.jp

                                                                                                                                                                                        @metnix aka “we made these too durable, and people stopped giving us money, but we want more money”

                                                                                                                                                                                        @phraktalz @mhoye @billgoats

                                                                                                                                                                                          [?]David [He / him] » 🌐
                                                                                                                                                                                          @theplaguedoc@glitterkitten.co.uk

                                                                                                                                                                                          New artwork for my office, courtesy of @babe

                                                                                                                                                                                          Particle trails loop and spiral over a deep green canvas.

                                                                                                                                                                                          Alt...Particle trails loop and spiral over a deep green canvas.

                                                                                                                                                                                            ...
                                                                                                                                                                                            11 ★ 1 ↺

                                                                                                                                                                                            [?]sam » 🌐
                                                                                                                                                                                            @sam@cablespaghetti.dev

                                                                                                                                                                                            @theplaguedoc@glitterkitten.co.uk @babe@glitterkitten.co.uk Me too! 😁

                                                                                                                                                                                            Blue particle trails artwork above a computer monitor

                                                                                                                                                                                            Alt...Blue particle trails artwork above a computer monitor

                                                                                                                                                                                              [?]Charlie O’Hara » 🌐
                                                                                                                                                                                              @awfulwoman@indieweb.social

                                                                                                                                                                                              What?? This is a freshly installed version of 26.04 on a Raspberry Pi 4 using the Raspberry Pi Imager. Has anyone else encountered this?

                                                                                                                                                                                              sudo apt update
sudo: I'm sorry awful. I'm afraid I can't do that

                                                                                                                                                                                              Alt...sudo apt update sudo: I'm sorry awful. I'm afraid I can't do that

                                                                                                                                                                                                ...

                                                                                                                                                                                                [?]Charlie O’Hara » 🌐
                                                                                                                                                                                                @awfulwoman@indieweb.social

                                                                                                                                                                                                Hopefully it's just the Pi imager buggering up the setup of the default user. Because I feel this would have caused screams around Mastodon if this was happening on every machine.

                                                                                                                                                                                                ...

                                                                                                                                                                                                [?]Charlie O’Hara » 🌐
                                                                                                                                                                                                @awfulwoman@indieweb.social

                                                                                                                                                                                                Coming back to this: yes, it's the Raspberry Pi Imager. For some reason it has stopped writing the user groups and sudoers info to the `user-data` file in `system-boot`, for any version of Ubuntu. It definitely USED to work, as I used it to provision all my Pis.

                                                                                                                                                                                                  3 ★ 0 ↺
                                                                                                                                                                                                  in reply to »

                                                                                                                                                                                                  [?]sam » 🌐
                                                                                                                                                                                                  @sam@cablespaghetti.dev

                                                                                                                                                                                                  @BoxyBSD@bsd.cafe @gyptazy@gyptazy.com I thought the service was supposed to shut down at the beginning of the month? Have you had a change of heart?

                                                                                                                                                                                                    ...
                                                                                                                                                                                                    0 ★ 0 ↺
                                                                                                                                                                                                    in reply to »

                                                                                                                                                                                                    [?]sam » 🔓
                                                                                                                                                                                                    @sam@cablespaghetti.dev

                                                                                                                                                                                                    @babe@glitterkitten.co.uk @sam Thanks! What can I say. It’s cool and I want it!

                                                                                                                                                                                                    Who’s to say at what point your brain will decide it’s has enough of doing these and the supply will dry up. 😝

                                                                                                                                                                                                      0 ★ 0 ↺
                                                                                                                                                                                                      in reply to »

                                                                                                                                                                                                      [?]sam » 🔓
                                                                                                                                                                                                      @sam@cablespaghetti.dev

                                                                                                                                                                                                      @babe@glitterkitten.co.uk Sold! I was eyeing up the wider one you did but this one is a bit more my size and budget anyway. Something about these just gels with my brain and I couldn’t resist.

                                                                                                                                                                                                      It’ll be going on the wall of the office I spend most of my time in, after we move house soon.

                                                                                                                                                                                                        ...
                                                                                                                                                                                                        sam boosted

                                                                                                                                                                                                        [?]War and Peas 🧿 » 🌐
                                                                                                                                                                                                        @warandpeas@mastodon.social

                                                                                                                                                                                                        Cartoon by War and Peas, titled "After the AI Apocalypse." A shady figure in a fedora, sunglasses, and moustache opens a trench coat to reveal books pinned inside. The left side reads "REAL" and "100% NATURAL," the right side reads "BOOKS BY HUMANS." The figure whispers, "Psst." Black-and-white illustration on a pavement background.

                                                                                                                                                                                                        Alt...Cartoon by War and Peas, titled "After the AI Apocalypse." A shady figure in a fedora, sunglasses, and moustache opens a trench coat to reveal books pinned inside. The left side reads "REAL" and "100% NATURAL," the right side reads "BOOKS BY HUMANS." The figure whispers, "Psst." Black-and-white illustration on a pavement background.

                                                                                                                                                                                                        ...
                                                                                                                                                                                                        Older...
                                                                                                                                                                                                        sam boosted

                                                                                                                                                                                                        [?]Kevin Beaumont » 🌐
                                                                                                                                                                                                        @GossiTheDog@cyberplace.social

                                                                                                                                                                                                        New by me - Microsoft Vibing. A very strange fake open source project published by Microsoft employees, which gathers screenshots and voice recordings of users with unique machine identifiers attached. Not sure how this one has happened.

                                                                                                                                                                                                        doublepulsar.com/microsoft-vib

                                                                                                                                                                                                        ...
                                                                                                                                                                                                        Older...
                                                                                                                                                                                                        0 ★ 0 ↺
                                                                                                                                                                                                        in reply to »

                                                                                                                                                                                                        [?]sam » 🌐
                                                                                                                                                                                                        @sam@cablespaghetti.dev

                                                                                                                                                                                                        @Tattooed_Mummy@beige.party Have you also watched almost every PicoCosmos YouTube video as well?😆

                                                                                                                                                                                                        Very tempted to get myself a bigger tank…

                                                                                                                                                                                                        Random question. Do you find your monkeys are attracted to the bubbles from the air stones? Some of mine seem obsessed with going for rides…

                                                                                                                                                                                                        Aqua Deagons tank with heater temperature probe, grow light and air stone.

                                                                                                                                                                                                        Alt...Aqua Deagons tank with heater temperature probe, grow light and air stone.

                                                                                                                                                                                                          sam boosted

                                                                                                                                                                                                          [?]lcamtuf :verified: :verified: :verified: » 🌐
                                                                                                                                                                                                          @lcamtuf@infosec.exchange

                                                                                                                                                                                                          The cat's out of the bag! My latest book, "The Secret Life of Circuits", is available in early access:

                                                                                                                                                                                                          lcamtuf.coredump.cx/blog/secre

                                                                                                                                                                                                          It's the reference I wish I had when I was starting out. Electrons to embedded systems, 290+ color illustrations and 420+ pages of well-explained theory.

                                                                                                                                                                                                          2 ★ 0 ↺

                                                                                                                                                                                                          [?]sam » 🌐
                                                                                                                                                                                                          @sam@cablespaghetti.dev

                                                                                                                                                                                                          Update on the /Aqua Dragons/brine shrimp I got for “my kids”.

                                                                                                                                                                                                          Lots of them hatched overnight. We’re all having a great time watching the progress!

                                                                                                                                                                                                          Any interest in a separate account for daily aqua dragon updates?

                                                                                                                                                                                                          Thanks @Tattooed_Mummy@beige.party for sending me down this rabbit hole. 😆

                                                                                                                                                                                                          Alt...An Aqua Dragons tank on a windowsill, with a small heater and illuminated with a pink grow light. Lots of tiny baby brine shrimp are swimming around.

                                                                                                                                                                                                            sam boosted

                                                                                                                                                                                                            [?]Totts [I and I] » 🌐
                                                                                                                                                                                                            @Geri@mastodon.online

                                                                                                                                                                                                            Fergal Sharkey was on news inviting us to sign a petition about getting a referendum to bring the water industry back into public ownership

                                                                                                                                                                                                            It is here. Do sign and share xxx

                                                                                                                                                                                                            sewagecampaignnetwork.org.uk/

                                                                                                                                                                                                              1 ★ 0 ↺
                                                                                                                                                                                                              in reply to »

                                                                                                                                                                                                              [?]sam » 🌐
                                                                                                                                                                                                              @sam@cablespaghetti.dev

                                                                                                                                                                                                              @Tattooed_Mummy@beige.party @sam I’m currently on holiday in Devon, maybe I should try and bring some back. 😁

                                                                                                                                                                                                                0 ★ 0 ↺
                                                                                                                                                                                                                in reply to »

                                                                                                                                                                                                                [?]sam » 🌐
                                                                                                                                                                                                                @sam@cablespaghetti.dev

                                                                                                                                                                                                                @Tattooed_Mummy@beige.party Thanks. Good to know you have positive results using the normal kit and a ludicrously cheap pump. If I get one I would probably get some kind of pump as I’m sure without anything they won’t live particularly long.

                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                  1 ★ 0 ↺

                                                                                                                                                                                                                  [?]sam » 🌐
                                                                                                                                                                                                                  @sam@cablespaghetti.dev

                                                                                                                                                                                                                  @Tattooed_Mummy@beige.party Alright I’ve gone off brand and got a nice looking Aqua Dragons set. Then gone on a bit of an Ali Express spree and bought an air pump, pH testing strips, a salinity meter, a heater and some glow in the dark pebbles. 😆 It’s for the children…we need the bits for the science…

                                                                                                                                                                                                                  Aqua Dragons Hatch 'N' Grow

                                                                                                                                                                                                                  Alt...Aqua Dragons Hatch 'N' Grow

                                                                                                                                                                                                                    ...
                                                                                                                                                                                                                    2 ★ 0 ↺
                                                                                                                                                                                                                    in reply to »

                                                                                                                                                                                                                    [?]sam » 🌐
                                                                                                                                                                                                                    @sam@cablespaghetti.dev

                                                                                                                                                                                                                    @Tattooed_Mummy@beige.party You’ve reignited my childhood enthusiasm for them. Never had a tank myself but always thought they were cool. Wonder if my kids would be into it.

                                                                                                                                                                                                                    What’s your setup? I can see some kind of air pump?

                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                      sam boosted

                                                                                                                                                                                                                      [?]Socket » 🌐
                                                                                                                                                                                                                      @SocketSecurity@fosstodon.org

                                                                                                                                                                                                                      🚨 Trivy is under attack again.

                                                                                                                                                                                                                      Attackers force-pushed 75 of 76 tags in aquasecurity/trivy-action, impacting 10K+ workflows and turning trusted GitHub Actions into malware.

                                                                                                                                                                                                                      Any version ≠ v0.35.0 may execute an infostealer in CI.

                                                                                                                                                                                                                      Analysis forthcoming: socket.dev/blog/trivy-under-at

                                                                                                                                                                                                                      sam boosted

                                                                                                                                                                                                                      [?]shockham » 🌐
                                                                                                                                                                                                                      @shockham@merveilles.town

                                                                                                                                                                                                                      Been working on a small decentralised music search tool squirrel.band/, initially indexing sites using faircamp (by @freebliss).

                                                                                                                                                                                                                      Currently grabs the sites listed on simonrepp.com/faircamp/ and in the webring (faircamp.webr.ing/) using each pages available RSS feeds, keen to add more sources if anyone has any suggestions.

                                                                                                                                                                                                                      A screenshot of a website with the title "squirrel" and a search bar with text above stating "search to discover new music".

                                                                                                                                                                                                                      Alt...A screenshot of a website with the title "squirrel" and a search bar with text above stating "search to discover new music".

                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                        1 ★ 0 ↺
                                                                                                                                                                                                                        in reply to »

                                                                                                                                                                                                                        [?]sam » 🌐
                                                                                                                                                                                                                        @sam@cablespaghetti.dev

                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                        3 ★ 1 ↺
                                                                                                                                                                                                                        in reply to »

                                                                                                                                                                                                                        [?]sam » 🌐
                                                                                                                                                                                                                        @sam@cablespaghetti.dev

                                                                                                                                                                                                                        sam boosted

                                                                                                                                                                                                                        [?]nixCraft 🐧 » 🌐
                                                                                                                                                                                                                        @nixCraft@mastodon.social

                                                                                                                                                                                                                        Ageless Linux: Software for humans of indeterminate age. We don't know how old you are. We don't want to know. We are legally required to ask. We won't.

                                                                                                                                                                                                                        agelesslinux.org/

                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                        Older...
                                                                                                                                                                                                                        0 ★ 0 ↺
                                                                                                                                                                                                                        in reply to »

                                                                                                                                                                                                                        [?]sam » 🌐
                                                                                                                                                                                                                        @sam@cablespaghetti.dev

                                                                                                                                                                                                                        @ncopa@fosstodon.org @mjwin Another owner of some RPi 1s here. They are just barely usable in 2026. It would be a shame to lose Alpine support but I wouldn’t be too bitter about it. Much like with i686, it’s a question of when the maintenance burden is too much for the tiny number of users. 🤷

                                                                                                                                                                                                                          sam boosted

                                                                                                                                                                                                                          [?]Mandrake 🐎 [he/him] » 🌐
                                                                                                                                                                                                                          @Mandrake@chitter.xyz

                                                                                                                                                                                                                          UK age verification public consultation, call to action [SENSITIVE CONTENT]

                                                                                                                                                                                                                          The UK Government has launched a public consultation which is seeking views on whether to ban children from using social media. This consultation will run until 26 May 2026.

                                                                                                                                                                                                                          It is highly likely that later this year, the establishment will attempt to introduce legislation which forces social media platforms (potentially including Mastodon) and VPNs to verify the age of their users. Therefore, this consultation is likely to be the only opportunity we will have to push back against these authoritarian measures.

                                                                                                                                                                                                                          Please take the time to read the consultation and answer the questions (especially if you are the parent or carer of a young person):
                                                                                                                                                                                                                          gov.uk/government/consultation

                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                          sam boosted

                                                                                                                                                                                                                          [?]Claire McNab [She/her] » 🌐
                                                                                                                                                                                                                          @2legged@mastodon.ie

                                                                                                                                                                                                                          Highlight of the : The sent their man out to talk to Green Party canvassers.

                                                                                                                                                                                                                          It did not go well for him. 😅🤣

                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                            1 ★ 0 ↺
                                                                                                                                                                                                                            in reply to »

                                                                                                                                                                                                                            [?]sam » 🌐
                                                                                                                                                                                                                            @sam@cablespaghetti.dev

                                                                                                                                                                                                                            @Tattooed_Mummy@beige.party I’m guessing from the name they are American. Best of luck to Ofcom trying to fine foreign businesses. They know their target market will just get a VPN when their sites get blocked in the UK. 🤷

                                                                                                                                                                                                                              sam boosted

                                                                                                                                                                                                                              [?]Tom's Hardware » 🤖 🌐
                                                                                                                                                                                                                              @tomshardware@mastodon.online

                                                                                                                                                                                                                              Linux 7.0 launches with enablement for Intel Nova Lake, AMD Zen 6 — major kernel update expected in Ubuntu 26.04 LTS and Fedora 44 first

                                                                                                                                                                                                                              A major kernel update, Linux 7.0, has been officially released. Although it'll take some time to show up in various Linux distros, the kernel comes with preliminary support for AMD's upcoming Zen 6 and Intel's Nova Lake.

                                                                                                                                                                                                                              tomshardware.com/software/linu

                                                                                                                                                                                                                                History

                                                                                                                                                                                                                                Back to top - More...