tk, to fediverse
@tk@bbs.kawa-kun.com avatar
sengi_app, to mastodon
@sengi_app@mastodon.social avatar

Small of what next update might bring. 😉

Still lots of work to do, and it's clearly not really fun stuff. But I know some of you will be happy to get it. 🙂

(If you want to get it sooner, buy me some coffee via my patreon!)

light theme preview

sengi_app,
@sengi_app@mastodon.social avatar

credit of the music extract used in the video:
La foudre entre ses mains - by Uhl

Small French group of black metal, buy their stuff too it's really cheap and really great.
https://uhluhluhl.bandcamp.com/album/habitant-des-temp-tes

crossgolf_rebel, to fediverse

Fediverse-Serie: Pleroma & Akkoma: Einfache Kommunikation im Fediverse - GNU/Linux.ch

Pleroma und Akkoma gehören wegen ihrer Einfachheit zu den beliebtesten Diensten im Fediverse. Gegenüber Mastodon bieten sie default 5000 Zeichen und einige weitere Funktionen.

Herkunft und Einbindung ins Fediverse
Pleroma und dessen Fork Akkoma gehören einerseits neben Mastodon, Calckey/Firefish, Misskey, Foundkey und GoToSocial nicht nur wegen des Aussehens und Handlings zu der Sparte der twitterähnlichnen Microbloggingdienste im Fediverse. Es unterscheidet sich andererseits recht deutlich insbesondere von Mastodon, wobei das klassische Aussehen doch recht ähnlich ist - aber davon später mehr.

Wenn Du gerne eine Art Mastodon mit richtigen Microblogging-Möglichkeiten haben willst, dann würde ich tatsächlich stark zu Pleroma oder Akkoma raten!
Pleroma/Akkoma ist ähnlich wie Mastodon, aber übersichtlicher und mit mehr Funktionen: Es kann zusätzlich längere Posts (default bis 5000 Zeichen Länge) und Textformatierungen wie Markdown, "schöne Links", Zitate, Aufzählungslisten u.v.m. (was allerdings wie alle Textformatierungen nicht von Mastodon, aber von allen anderen Diensten dargestellt wird)....

https://gnulinux.ch/fediverse-serie-pleroma-akkoma-einfache-kommunikation-im-fediverse

ueckueck, to fediverse German
@ueckueck@dresden.network avatar

Ückück und das Fediverse - meine neue Kolumne bei @gnulinux

Ein neues Projekt steht an und ich freue mich sehr. Ab diesem Monat werde ich regelmäßig für GNU/Linux.ch über das Fediverse schreiben, mal spezielle Projekte vorstellen, mal von Veranstaltungen berichten, mal einen Blick auf die Meta-Ebene vagen - es gibt jedenfalls genug zu berichten, dass ich eine Weile beschäftigt bin :D

Mehr dazu erfahrt ihr in diesem Ankündigungs-Artikel der Redaktion:
https://gnulinux.ch/wzs-ueckueck-und-das-fediverse

Die Kolumne wird ab dem 6. Mai 2024 an jedem 1. Montag im Monat erscheinen.

ueckueck,
@ueckueck@dresden.network avatar

@markus
Das freut mich wiederum und mach ich :D
@gnulinux

ueckueck,
@ueckueck@dresden.network avatar

@444b53
Awww, ach du :blobcatfluffpats:
@gnulinux

saria, to fediverse
@saria@social.saria.fun avatar

Just upgraded #Pleroma, which I’d been putting off for a while.

I had been using the packaged, “OTP”, version of Pleroma, but it turned out the package is ancient, and it required an older cryptography library. Because I’d upgraded to a newer version of #Ubuntu, the older crypto library had been removed and replaced with a newer version.

I found all this out when I tried to upgrade and got an error, searched for the error text, and found the bug report with a detailed explanation of the problem and solution.

So, I just backed up my instance, removed the OTP version of Pleroma, and re-installed it directly from the source repository.

The whole process took maybe half an hour, and no more than 10 or so commands. Basically:

  1. Stop Pleroma (so it’s not running while trying to backup/update): sudo systemctl stop pleroma.
  2. Backup my instance.
    1. First make a place to store the backup: mkdir -p ~/backup/pleroma. I made it (temporarily!) world-writable to make things easier: chmod 777 ~/backup/pleroma.
    2. Backup the database: sudo -Hu postgres pg_dump -d pleroma --format=custom -f /home/saria/backup/pleroma/pleroma.pgdump.
    3. Backup the configuration: sudo cp /etc/pleroma/config.exs /home/saria/backup/pleroma.
  3. Delete the Pleroma installation (actually, just put it to one side for now, just in case): sudo mv /opt/pleroma /home/saria/backup/pleroma/old-installation and sudo mv /etc/pleroma /home/saria/backup/pleroma/old-configuration.
  4. Adjust stuff that differs between the OTP installation and the source installation.
    1. Update the pleroma user’s home directory: sudo usermod -d /var/lib/pleroma pleroma (Here I got an error that the pleroma user was still running process 758. No problem, just sudo kill 758, then retry.)
    2. Make the “new” locations: sudo mkdir - /opt/pleroma /var/lib/pleroma. (I think /var/lib/pleroma already existed, and was storing images and uploads, which was fine.)
    3. Make the pleroma user the owner of those locations: sudo chown -R pleroma: /opt/pleroma /var/lib/pleroma.
  5. Change to the pleroma direcory: cd /opt/pleroma.
  6. Download pleroma: sudo -Hu pleroma git clone -b stable <a href="https://git.pleroma.social/pleroma/pleroma" rel="ugc">https://git.pleroma.social/pleroma/pleroma</a> /opt/pleroma.
  7. Build pleroma.
    1. Get the dependencies: sudo -Hu pleroma mix deps.get.
    2. Run the build: sudo -Hu pleroma MIX_ENV=prod mix pleroma.instance gen.
  8. Configure pleroma.
    1. Copy the generated configuration file: sudo -Hu pleroma mv config/generated_config.exs config/prod.secret.exs.
    2. Edit the configuration file config/prod.secret.exs, copying all the important stuff (passwords, salts, personal settings) from the old file at /home/saria/backup/pleroma/old-configuration/config.exs.
  9. Run the database migration: sudo -Hu pleroma MIX_ENV=prod mix ecto.migrate.
  10. Restart Pleroma: sudo systemctl start pleroma. I discovered (using sudo systemctl status pleroma) that Pleroma would not start. I realised that was because the systemd service file was still trying to start the old, OTP version. So I replaced the service file with the one from the source installation (sudo cp -f /opt/pleroma/installation/pleroma.service /etc/systemd/system/pleroma.service) and tried again. Now I got an error from systemd because the service file had changed, telling me I had to do systemd daemon-reload. So I did sudo systemd daemon-reload, and tried to start Pleroma again. Success! 🦸🏾‍♀️

As you can see, I ran into some hiccups, but the documentation and error messages were clear enough that I was able to fix stuff and move on.

Now, I am no expert on any of this stuff! I know literally nothing about Erlang or Elixir (the languages/tools/whatever that Pleroma is made with). But as you can see, if you take the time to carefully read the documentation, and understand what each step is actually doing, it’s really not that hard! 💪🏾

@selfhosted

fediverseobserver, to fediverse

Found 4 new servers and 11 servers died off since 3 hours ago.

22,758 servers checked. 13,059,649 Total Users with 1,574,993 Active Users today. Check out the stats!

New #fediverse servers found:

penaz.cloud a #mastodon server from Portugal
corteximplant.net a #akkoma server from Germany
sk.240517.xyz a #sharkey server from Private
ap.jmuk.org a #pleroma server from United States

Help others find a home, send them to fediverse.observer

fediverseobserver, to fediverse

Found 2 new servers and 11 servers died off since 3 hours ago.

22,748 servers checked. 13,059,649 Total Users with 1,574,993 Active Users today. Check out the stats!

New #fediverse servers found:

sk.240517.xyz a #sharkey server from Private
ap.jmuk.org a #pleroma server from United States

Help others find a home, send them to fediverse.observer

fediverseobserver, to fediverse

Found 2 new servers and 8 servers died off since 3 hours ago.

22,751 servers checked. 14,024,641 Total Users with 1,574,993 Active Users today. Check out the stats!

New #fediverse servers found:

sk.240517.xyz a #sharkey server from Private
ap.jmuk.org a #pleroma server from United States

Help others find a home, send them to fediverse.observer

fediverseobserver, to fediverse

Found 1 new servers and 7 servers died off since 3 hours ago.

22,751 servers checked. 14,024,641 Total Users with 1,574,993 Active Users today. Check out the stats!

New #fediverse servers found:

ap.jmuk.org a #pleroma server from United States

Help others find a home, send them to fediverse.observer

coloco, to threads Spanish
@coloco@mstdn.social avatar
coloco,
@coloco@mastodon.social avatar

@spla @coloco si, perdo, ho dic en un altre toot. Sorry so mucht!

coloco,
@coloco@mastodon.social avatar

@spla @coloco converses, conversaciones seria? La traduccio literal es fils no?

freakazoid, to mastodon
@freakazoid@retro.social avatar

While folks are thinking of leaving , just a friendly reminder that let a known TERF (Alex Gleason) join the project and only kicked him out because of conflict over code.

frigginglorious,
@frigginglorious@freeradical.zone avatar

@freakazoid I have a jewish friend and an anti-semitic friend.

I have even bad them both over to my house once, they debated a bunch of neat things. I don't think they are going to go get beers together any time soon, but... I think everyone came out of the experience with a better understanding.

Anyway, you can't cancel a project just cuz one guy is a Terf. You should befriend that guy, then send him a picture of you wearing a dress, and get him to admit that u look good.

fediverseobserver, to fediverse

Found 2 new servers and 5 servers died off since 3 hours ago.

22,803 servers checked. 14,002,928 Total Users with 1,584,651 Active Users today. Check out the stats!

New servers found:

grass9.com a server from Singapore
fsebugoutzone.org a server from United States

Help others find a home, send them to fediverse.observer

fediverseobserver, to fediverse

Found 3 new servers and 7 servers died off since 3 hours ago.

22,847 servers checked. 13,977,480 Total Users with 1,593,606 Active Users today. Check out the stats!

New servers found:

vanilla.choco.ink a server from Private
majestic12.airforce a server from Luxembourg
fioredon.ysizuku.com a server from South Korea

Help others find a home, send them to fediverse.observer

mima, to lemmy

Tbh I think the #Threadiverse like #Lemmy and #kbin would make a lot more sense if they were simply frontends and perhaps a backend too but just for the forums themselves. IOW, no accounts live in Lemmy or kbin, all users post from their preferred #fediverse account instead.

Sure you can already technically do that from your #Mastodon or #Misskey or whatever fedi you're in, but that means using whatever app you're on right now, which almost certainly means it's not a #linkaggregator UI. Not ideal at all.

If I had any good programming skills I'd make it so that the link aggregator is merely a client that uses the Mastodon (with #Pleroma extensions too) and Misskey APIs, treat (almost) all #ActivityPub actors as their own forums or subs, and each post would be a boost from said actor. Users authenticate from their preferred fedi account. Voting would be tallied by few special actors, which internally receive votes via direct messages (the app will make this transparent, but this also means you can technically vote without the app if you know the exact command), which will effectively make votes secret to non-admins like in #Reddit. Users can also choose which vote counters they want to rely from.

This would make the fediverse-powered link aggregator very flexible and minimal, imo. It may look janky but that's the general idea I have. ​:seija_coffee:​

RE: https://mementomori.social/users/owen/statuses/112285464236904945

fastfinge, to fediverse
@fastfinge@social.interfree.ca avatar

I don't use them, but just for fun, I decided to try and on . They both fail differently. First off, both require that you log out or authorization won't work. But if you log out then log in again while authorizing, they will. But at that point, will just crash. The error in the log says it's trying to do something with Pleroma that it doesn't implement. Tweesecake, on the other hand, pretends to work. It loads the messages and mentions buffers just fine. Then it adds exactly 160 items to the home buffer, all of them blank. If you leave it open, new items will stream into the home buffer. They, also, will be blank. I didn't expect either client to work; I just find the wildly differing failures amusing.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • anitta
  • mdbf
  • magazineikmin
  • Durango
  • Youngstown
  • vwfavf
  • slotface
  • ngwrru68w68
  • khanakhh
  • rosin
  • kavyap
  • thenastyranch
  • PowerRangers
  • DreamBathrooms
  • Leos
  • ethstaker
  • hgfsjryuu7
  • osvaldo12
  • cubers
  • GTA5RPClips
  • modclub
  • InstantRegret
  • everett
  • tacticalgear
  • normalnudes
  • tester
  • cisconetworking
  • provamag3
  • All magazines