π˜‹π˜ͺ𝘳𝘬

Somewhere between Linux woes, gaming, open source, 3D printing, recreational coding, and occasional ranting.

πŸ”— Me, but elsewhere

πŸ‡¬πŸ‡§ / πŸ‡©πŸ‡ͺ

  • 1 Post
  • 22 Comments
Joined 1Y ago
cake
Cake day: Jun 09, 2023

help-circle
rss

Daily reminder to defederate from and block threads.net (and optionally all instances that do not do the same).



They slowly start it. When Google killed XMPP they also didn’t do it within a week.



The thing is, Meta does not care about community safety, or moderation, or protecting user data. (Fun fact: they don’t have a data protection agreement, but a data usage agreement.) All they care about is how they can get the most money out of something. Killing off things left and right of their path.

The question is not IF Meta kills the Fediverse but only WHEN they do it.



I cannot see anything bad here. Blocking an actively malicious actor should be the norm.



I know about muenster.im which is a Mastodon instance specific to the city of MΓΌnster. There is also mastodon.hamburg for example.

Those are not local-by-default social media services, though. But I guess it’s easier to find an instance with a local focus instead of β€œJodel but federated”.





To be honest? At β€œInfanty”. In the Fediverse it has relevance, but the impact on the whole Internet is basically zero.


They aren’t. They use the same protocol as a base, and you can have limited interaction, but that’s it.


Why would they undo those changes. They did r/place, that should be enough. And yes, the protests have ended.


lemmy.ml was also down recently for half a day or so. But lemmy.ml was never knwon for being reliable, even it it works fine since some time now.


Yeah. Since Reddit is back to normal, the majority of people who left it due to protest now returns.


So you want to centralize the decentralized nature of the Fediverse through a company running off venture capital?


This happens very often here. lemmy.ml isn’t reliable and the performance is very bad.


I still don’t get their target audience for Threads.

Facebook users don’t want to leave their weird boomer Internet bubble. Instagram users will continue posting pictures on Instagram and advertise their linktr.ee account where they link to their 18+ content because they’re not allowed to link in directly from Instagram, and 𝕏 users … well … they will continue using 𝕏.

Ironically the only ones wo really care about Threads is people in the Fediverse.


TIL: you can define different users in your global Git config depending on remote URL
I was in need of using different signing keys (but same mail address) and had a little adventure in the advanced Git documentation I'd like to share. ______________ In your `~/.config/git/config`` remove the [user] section and add this instead: ``` [includeIf "hasconfig:remote.*.url:https://your-remote-url/**"] path = ~/.config/git/user_a ``` And in `~/.config/git/user_a` use this: ``` [user] email = username@example.com name = User Name signingkey = the_16_digit_GPG_key_ID ``` Repeat as often as you need. Just add another `includeIf` section for each of your remote hosts. You can also keep a β€œstub” user section in your `~/.config/git/config` if you always use the same user name and mail address but want to use different keys. ``` [user] email = dirk@0x7be.de name = Dirk ``` In your `includeIf`’d files simply set the signingkey: ``` [user] signingkey = the_16_digit_GPG_key_ID ``` Git automatically combines the two as needed. A minimal working example: File `~/.config/.git/config`: ``` [user] email = username@example.com name = User Name [commit] gpgsign = true [tag] gpgsign = true [includeIf "hasconfig:remote.*.url:https://hostname_A/**"] path = ~/.config/git/config-A [includeIf "hasconfig:remote.*.url:https://hostname_B/**"] path = ~/.config/git/config-B ``` File `~/.config/git/config-A`: ``` [user] signingkey = 16_digit_key_id_used_for_a ``` File `~/.config/git/config-B`: ``` [user] signingkey = 16_digit_key_id_used_for_b ``` Now when you push commits or tags to `hostname_A` or `hostname_B` the correct key is used to sign those (in the example, using same name and mail address) without having to manually edit this for all your local repositories.
fedilink