Skip to content
  • 0 Votes
    1 Posts
    0 Views
    tiagojferreira@bolha.usT
    ActivityPub vs Nostr não é só sobre tecnologia.A tecnologia é produto total da sociedade, pode ser subvertida em favor do bem comum.Mas tecnologia não é neutra, carrega em si os valores, preconceitos e interesses dos seus criadores.Uma é comunitária e emula relações sociais coletivas reais, com suas contradições, mas com proteção mútua.Outra parece ter uma gênese/origem individualista e pautada pelo defesa da privacidade individual, a todo custo. A proteção/moderação recai ao indivíduo/cliente.#activitypub #nostr
  • 0 Votes
    4 Posts
    1 Views
    potatomeow@fosstodon.orgP
    i'll hack around and find out
  • 0 Votes
    1 Posts
    4 Views
    weekinfediverse@mitra.socialW
    Week in Fediverse 2026-01-16Servers- Mobilizon v5.2.2- Owncast v0.2.4- Epicyon v1.7.0- Wafrn v2026.01.03- PieFed v1.5.0- snac v2.88- ActivityPub for WordPress v7.8.3- Sharkey v2025.4.5- NodeBB v4.8.0- NeoDB v0.12.8- Trunk & Tidbits, December 2025 (Mastodon)- WordPress Federation: Recap of 2025Clients- PleromaFE v2.10.1- Mastodon for iOS v2026.1- TangerineUI for Mastodon v2.5.3- Aria v1.4.0- Voyager v2.43.2Tools and Plugins- Fediway: Recommendation engine for MastodonProtocol- FEP-f15d: Context Relocation and Removal- FEP-ee3a: Exif metadata supportArticles- The Forkiverse Experiment and Why Instance Choice Matters- List of RSS feeds distributed by each software on Fediverse- Fediverse Report – #149 – On Protocol Governance- Mastodon for ActivityPub development-----#WeekInFediverse #Fediverse #ActivityPubPrevious edition: https://mitra.social/objects/019ba420-e45f-3802-6e4f-5f0767dcc2d4
  • 0 Votes
    1 Posts
    6 Views
    joshisanonymous@h4.ioJ
    J'essaie de m'abonner à des communautés de #Lemmy à partir de #Mastodon. J'ai peur que tous les commentaires apparaissent individuellement dans mon fil, mais jusqu'ici, ina pas assez d'activité pour que je voie de posts quand même.#fédivers #fediverse #activitypub
  • 1 Votes
    1 Posts
    4 Views
    sl007@digitalcourage.socialS
    #w3c #ActivityPub Esteemed Fediverse, a personal remark it currently matters again to have a chair who knows what is going on, is striving for facts, understanding fascism and having a will to resist imperialism. And the capacity to save net neutrality.#stabil Hey @darius thank you for this: https://lists.w3.org/Archives/Public/public-socialweb/2026Jan/0000.html!---Currently we move our projects to codeberg and so i just published a first document there about our fedi projects. https://codeberg.org/Menschys/fedi-codebase We would really like to have building blocks for ahealthy and fair Client-To-Server supported ActivityPub.Current Issues are linked. If you want, I can give you an overview of the Social CG dev meetings since 2016 and the European Events like fedicamp, fediday, Public Spaces, 3C etc.
  • 0 Votes
    1 Posts
    4 Views
    ?
    Ein von Gemini (by Google) und Nano Banana erstelltes Artikelbild.Wie in einem anderen Artikel schon erwähnt, bin ich gerade am experimentieren, dass ich diesen WordPress-Blog mittels dem ActivityPub-Plugin „Fediverse-tauglich“ mache. Das ist eine recht interessante Reise, bei der es immer wieder Hürden zu nehmen gibt. Aktuell verwende ich das WordPress-Plugin „Indieblocks„, um „Kurzmitteilungen“ (aka „Notes“ für kurze Texte wie bei Twitter) und „Likes“ (für URLs zum Merken) zu veröffentlichen. Diese unterscheiden sich von „normalen WordPress-Posts“ hauptsächlich durch ihre Länge bzw. den Umfang. Das funktioniert für mich schon soweit ganz gut und ich nutze diese „Kurzmitteilungen“ auch oft, um für mich selbst Seiten, Themen oder URLs zu merken. Praktisch ist hierbei auch, das ich direkt über meine Webseite mir auch wieder eine Übersicht der Notes und Links anzeigen lassen kann.Jetzt kommen wir zu meinem Erste-Welt-Problem: Wir hat die Ansicht, wie die Einträge angezeigt werden, nicht gefallen. Zum einen brauche ich bei dieser Art von Mitteilungen keine Überschrift und dann war mir die Trennung zwischen den einzelnen Posts nicht offensichtlich genug. Daher habe ich etwas mittels eigenem CSS-Code rumprobiert und habe die Ansicht für mein Empfinden etwas optimiert. Den zusätzlichen CSS-Code habe ich im WordPress-Backend unter Design → Customizer → zusätzliches CSS eingefügt. Ich füge euch im Anschluss den Code hier ein, welchen ich verwendet habe. Evtl. müsst ihr diesen noch für euch anpassen. Ich verwende das Neve-Theme hier auf meinen Blog und ich kann nicht sagen, ob dieser Code auch mit anderen WordPress-Themes 100%ig funktioniert. Da ich mit CSS auch nicht so richtig fit bin, habe ich mir bei der Erstellung von Gemini helfen lassen. /* Rahmen und Abstände für die einzelnen Notizen auf der Übersichtsseite */ .post-type-archive-note .nv-index-posts .content-wrap, .post-type-archive-indieblocks_note .nv-index-posts .content-wrap, .post-type-archive-note article, .post-type-archive-indieblocks_note article { border: 1px solid #e1e8ed !important; border-radius: 12px !important; padding: 15px !important; margin-bottom: 20px !important; background-color: #ffffff !important; box-shadow: 0 5px 8px rgba(0,0,0,0.1) !important; } /* Entfernt den Standard-Abstand des Themes, damit der Rahmen bündig sitzt */ .post-type-archive-note .nv-index-posts article, .post-type-archive-indieblocks_note .nv-index-posts article { border: none !important; background: transparent !important; } /* --- 1. Auf der Übersichtsseite (Archiv) der Notes --- */ /* Wir sprechen den Body der Note-Archive an */ body.post-type-archive-note .blog-entry-title.entry-title, body.post-type-archive-indieblocks_note .blog-entry-title.entry-title { display: none !important; } /* --- 2. In der Einzelansicht einer Note --- */ /* Falls du den Titel auch öffnen der einzelnen Notiz ausblenden willst */ body.single-note .entry-title, body.single-indieblocks_note .entry-title { display: none !important; } /* 1. TITEL AUSBLENDEN auf Notes und Likes */ .post-type-archive-note .entry-title, .post-type-archive-like .entry-title, .post-type-archive-indieblocks_like .entry-title, .post-type-archive-indieblocks_note .entry-title { display: none !important; } /* Rahmen für Notes und Likes Archiv-Seiten */ .post-type-archive-note .nv-index-posts article, .post-type-archive-like .nv-index-posts article, .post-type-archive-indieblocks_note .nv-index-posts article, .post-type-archive-indieblocks_like .nv-index-posts article { border: 1px solid #e1e8ed !important; border-radius: 12px !important; padding: 20px !important; margin-bottom: 25px !important; background-color: #ffffff !important; box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important; display: block !important; overflow: hidden !important; } /* Verhindert, dass das Theme innere Abstände erzwingt, die den Rahmen sprengen */ .post-type-archive-note .content-wrap, .post-type-archive-like .content-wrap { padding: 0 !important; margin: 0 !important; }
  • 0 Votes
    44 Posts
    36 Views
    trwnh@mastodon.socialT
    @tasket@infosec.exchange @julian with http: and https: the pattern is not to use a protocol handler but to instead use a content-type handler. a different protocol forks the network, and leads to bad UX when you have custom protocol links being copied into apps that don't understand them. also you end up with multiple links for the same thing, and you have to recognize equivalences wherever there might be any.web links have a "type" parameter for this. see firefox for example (pic 1) on SVG or PDF content
  • 0 Votes
    1 Posts
    4 Views
    arunshah240@mastodon.socialA
    Social networking that's not for sale. @Mastodon #Mastodon #ActivityPub #Fediverse
  • 0 Votes
    1 Posts
    3 Views
    vedfolnir@mastodon.socialV
    Next trip I'll scheduled my photos to post to PixelFed a few times a day at sane hours, with consistent captions and #AltText (plus #HashTags). Its going to feel like a proper #Fediverse photo workflow instead of a guilt pile in my camera roll.#Pixelfed #ActivityPub #Fediverse #AltText https://fediversestudio.zero.vedfolnir.org/
  • #mixi2 いいな。

    General Discussion mixi2 activitypub
    1
    0 Votes
    1 Posts
    0 Views
    nibushibu@social.vivaldi.netN
    #mixi2 いいな。#ActivityPub に対応してないことだけが残念だけど応援してる!がんばれ mixi2 生成AIに対するポリシーについて : mixi2 ヘルプhttps://support.mixi.social/support/solutions/articles/154000211984-%E7%94%9F%E6%88%90ai%E3%81%AB%E5%AF%BE%E3%81%99%E3%82%8B%E3%83%9D%E3%83%AA%E3%82%B7%E3%83%BC%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6
  • 0 Votes
    4 Posts
    5 Views
    gugurumbe@mastouille.frG
    @lettosprey sorry that was not clear.
  • 0 Votes
    1 Posts
    8 Views
    frank@blog.futtta.beF
    Pretty sure no-one is waiting for this, but after having spent a couple of years on the Fediverse (Mastodon in my case) I decided to add ActivityPub support to my WordPress installation via the ActivityPub plugin.I have the WP Rest Cache plugin active, so I’m expecting things to gently hum along, without (most likely) or with these posts gaining traction.Kudo’s to Stian and Servebolt for assisting me to get the webfinger endpoint to work, which is … not self-explanatory on hosts that have unoverrideable configuration on the .well-known folder
  • Überschriften im Fediverse

    General Discussion activitypub
    1
    1
    0 Votes
    1 Posts
    5 Views
    blog@blog42.euB
    Wenn meine Posts im Fediverse landen, dann steht die Überschrift einfach nur so am Anfang des Textes:Habe die Überschrift im Screenshot markiert. Das sieht nicht wirklich schön aus. Auch der Text für die Fediverse-Rektionen ist direkt an den Text angehängt worden. Kann man das irgendwie im Plugin anpassen?
  • 1 Votes
    3 Posts
    11 Views
    j12t@j12t.socialJ
    @tokyo_0 Whoever shows up and contributes. So you could!@hongminhee
  • 0 Votes
    5 Posts
    13 Views
    j12t@j12t.socialJ
    @eyeinthesky I post on two accounts, so if you follow by something other than account, you see the same thing twice.
  • 0 Votes
    1 Posts
    9 Views
    jansenspott@ruhr.socialJ
    Und wieder einem Blogs ins Fediverse geholfen, Dank Acitity-Pub-Plugin. Auf das es mehr werden. Willkommen @hexe Bei einem zweiten Blog musste ich passen, da stimmt irgendwas nicht. #activitypub #wordpress
  • 0 Votes
    2 Posts
    6 Views
    pfefferle@mastodon.socialP
    @DigitalNaiv here you go: @fohlenticker.wordpress.com
  • 0 Votes
    1 Posts
    6 Views
    tchambers@indieweb.socialT
    Cool and interesting on LOLA standard: "New Social Web Working Group at W3C" - https://socialwebfoundation.org/2026/01/15/new-social-web-working-group-at-w3c/ #ActivityPub, #Socialcg, #Socialweb, #Socialwg, #W3c, #Workinggroup
  • 0 Votes
    1 Posts
    5 Views
    nibushibu@social.vivaldi.netN
    がもうちょっと一般化するために自分にできることないかなあということを最近考えてる。そもそもそんなことを実現する力は自分にはないし、 とかがソーシャルメディアのメインストリームになるべきだともあまり思ってないけど、いつか時代が多少の後押しになり、また自然と注目が集まるときがポツポツとあるだろうという気はしており、その時まで大きくなりすぎずともその時までこれが続いていてほしいなという気持ちは結構強くある。メールとか #RSS みたいに流行り廃りとは多少距離を取りつつ、しっかり標準技術として世の中に生き残って欲しい #fediverse #ActivityPub #Mastodon
  • 0 Votes
    1 Posts
    7 Views
    xchaos@f.czX
    What would be optimal maximum number of poll options in #Mastodon?(Note: the participative polls, Google Doodle style, would be great for eg. negotiating meetings... but I understand the technical difficulties and risks and it is not supported by #activitypub just now ...)