Skip Navigation
wintermute wintermute @feddit.de

dev / chess / veg / botanist

Wintermute is a distinct entity from the physical mainframe; its mind is only a part of another "potential entity", an aspect of its brain.

Posts 629
Comments 318
www.spiegel.de Österreich: Streng geschützter Fisch in ORF-Sendung gebraten

Es gab Fischfrikadellen und ein Gläschen Weißwein: Eine Kochshow bringt den ORF in Bedrängnis. Der dort zubereitete Fisch hätte nie in der Pfanne landen dürfen.

Österreich: Streng geschützter Fisch in ORF-Sendung gebraten
2
www.pharmazeutische-zeitung.de Robustes Immunsystem: 217-mal gegen Covid-19 geimpft

»Private Gründe« gab ein 62-jähriger Mann an, der sich laut eigener Aussage nach und nach ganze 217 Covid-19-Impfungen verpassen lie&...

Robustes Immunsystem: 217-mal gegen Covid-19 geimpft
0
www.tagesschau.de Fachleute werben für Zustimmung zu Cannabis-Teil-Legalisierung

Die Diskussion über die geplante Teil-Legalisierung von Cannabis reißt nicht ab: Nun haben etwa 30 Forscher und Fachleute in einem offenen Brief Bundestagsabgeordnete aufgefordert, dem Gesetzentwurf in dieser Woche zuzustimmen.

Fachleute werben für Zustimmung zu Cannabis-Teil-Legalisierung
5
Was ist mit der Instanz los?
  • Guten Morgen, Ich bin gerade GMT+7 ;)

  • Was ist mit der Instanz los?
  • Gibt es irgendein Update oder Lebenszeichen, dass daran gearbeitet wird, den Laden wieder auf Vordermann zu bringen?

    Ich bin dran, nach dem 19.2 Update läuft der Server am Limit, 5000 Instanzen sind out of sync, ich habe ihn gerade rescaled um den Prozess zu beschleunigen, danach sollte es endlich wieder flüssiger laufen, also bitte habt noch etwas Geduld.

  • Federation issues still after upgrade to 19.2?
  • about 5k instances have to be synced.

    Give it some time to catch up.

  • Downtime

    Leider gab es technische Probleme mit dem Server, weshalb ich ein ca. 24h altes Backup einspielen musste, um die Kiste wieder ans Laufen zu bringen. Tut mir wirklich Leid ¯\\(ツ)

    16
    Blockierung von Threads
  • Ich habe weder die Zeit noch die Motivation es dir zu erklären.

    Lebe damit oder wechsel zu einer anderen Instanz. Besser noch, hoste selbst eine, die deinen Vorstellungen entspricht :)

  • Blockierung von Threads
  • Ich denke die Formulierung erlaubt einen gewissen Interpretationsspielraum ;)

    Die Intention dahinter sollte klar sein, du kannst es natürlich auch krampfhaft missenterpretieren, kein Problem!

  • Blockierung von Threads
  • Ich zitiere mal aus der Instanz-Beschreibung:

    Hier entsteht ein alternativer, unabhängiger und selbstverwalteter Raum zum freien Meinungsaustausch, jenseits der Kontrolle großer Tech-Unternehmen.

  • Lemmy v0.19.0 Release - Instance blocking, Scaled sort, and Federation Queue

    cross-posted from: https://lemmy.ml/post/9347983

    > ## What is Lemmy? > > Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top. > > ## Major Changes > > This release is very large with almost 400 commits since 0.18.5. As such we can only give a general overview of the major changes in this post, and without going into detail. For more information, read the full changelog and linked issues at the bottom of this post. > > ### Improved Post Ranking > > There is a new scaled sort which takes into account the number of active users in a community, and boosts posts from less-active communities to the top. Additionally there is a new controversial sort which brings posts and comments to the top that have similar amounts of upvotes and downvotes. Lemmy's sorts are detailed here. > > ### Instance Blocks for Users > > Users can now block instances. Similar to community blocks, it means that any posts from communities which are hosted on that instance are hidden. However the block doesn't affect users from the blocked instance, their posts and comments can still be seen normally in other communities. > > ### Two-Factor-Auth Rework > > Previously 2FA was enabled in a single step which made it easy to lock yourself out. This is now fixed by using a two-step process, where the secret is generated first, and then 2FA is enabled by entering a valid 2FA token. It also fixes the problem where 2FA can be disabled without passing any 2FA token. As part of this change, 2FA is disabled for all users. This allows users who are locked out to get into their account again. > > ### New Federation Queue > > Outgoing federation actions are processed through a new persistent queue. This means that actions don't get lost if Lemmy is restarted. It is also much more performant, with separate senders for each target instance. This avoids problems when instances are unreachable. Additionally it supports horizontal scaling across different servers. The endpoint /api/v3/federated_instances contains details about federation state of each remote instance. > > ### Remote Follow > > Another new feature is support for remote follow. When browsing another instance where you don't have an account, you can click the subscribe button and enter the domain of your home instance in the popup dialog. It will automatically redirect you to your home instance where it fetches the community and presents a subscribe button. Here is a video showing how it works. > > ### Authentication via Header or Cookie > > Previous Lemmy versions used to send authentication tokens as part of the parameters. This was a leftover from websocket, which doesn't have any separate fields for this purpose. Now that we are using HTTP, authentication can finally be passed via jwt cookie or via header Authorization: Bearer <jwt>. The old authentication method is not supported anymore to simplify maintenance. A major benefit of this change is that Lemmy can now send cache-control headers depending on authentication state. API responses with login have cache-control: private, those without have cache-control: public, max-age=60. This means that responses can be cached in Nginx which reduces server load. > > ### Moderation > > Reports are now resolved automatically when the associated post/comment is marked as deleted. This reduces the amount of work for moderators. There is a new log for image uploads which stores uploader. For now it is used to delete all user uploads when an account is purged. Later the list can be used for other purposes and made available through the API. > > ### Cursor based pagination > > 0.19 adds support for cursor based pagination on the /api/v3/post/list endpoint. This is more efficient for the database. Instead of a query parameter ?page=3, listing responses now include a field "next_page": "Pa46c" which needs to be passed as ?page_cursor=Pa46c. The existing pagination method is still supported for backwards compatibility, but will be removed in the next version. > > ### User data export/import > > Users can now export their data (community follows, blocklists, profile settings), and import it again on another instance. This can be used for account migrations and also as a form of backup. The export format is designed to remain unchanged for a long time. You can make regular exports, and if the instance becomes unavailable, register a new account and import the data. This way you can continue using Lemmy seamlessly. > > ### Time zone handling > > Lemmy didn't have any support for timezones, which led to bugs when federating with other platforms. This is now fixed by using UTC timezone for all timestamps. > > ### ARM64 Support > > Thanks to help from @raskyld and @kroese, there are now offical Lemmy releases for ARM64 available. > > ### Activity now includes voters > > - Previously, site and community activity counts were only based on people who commented, or posted. Those counts now include anyone who voted on a comment or post as well. Thanks to @Ategon for this change. > > ## Upgrade instructions > > Follow the upgrade instructions for ansible or docker. The upgrade should take less than 30 minutes. > > If you need help with the upgrade, you can ask in our support forum or on the Matrix Chat. > > Pict-rs 0.5 is also close to releasing. The upgrade takes a while due to a database migration, so read the migration guide to speed it up. Note that Lemmy 0.19 still works perfectly with pict-rs 0.4. > > ## Thanks to everyone > > We'd like to thank our many contributors and users of Lemmy for coding, translating, testing, and helping find and fix bugs. We're glad many people find it useful and enjoyable enough to contribute. > > ## Support development > > We (@dessalines and @nutomic) have been working full-time on Lemmy for over three years. This is largely thanks to support from NLnet foundation, as well as donations from individual users. > > This month we are running a funding drive with the goal of increasing recurring donations from currently €4.000 to at least €12.000. With this amount @dessalines and @nutomic can each receive a yearly salary of €50.000 which is in line with median developer salaries. It will also allow one additional developer to work fulltime on Lemmy and speed up development. > > Read more details in the funding drive announcement.

    10
    Lemmy v0.19.0 Release - Instance blocking, Scaled sort, and Federation Queue
  • Patience, my friend, I'm travaling off-grid lately

  • Does an unfulfilled promise become a lie?
  • An unfulfilled promise should return an object that is rejected with a given reason. (source)

    ;)

  • Threads testet Mastodon-Integration - was bedeutet das für Lemmy/Feddit?
  • Threads wurde vorsorglich geblockt. Zucker kann mir mal den Berg runter rutschen.

  • EBook Management
  • Calibre-Web can be used remotely just fine...?

  • Spenden an Feddit.de
  • Sollte ich durch die Seite Einnahmen generieren gälte zudem die Impressumspflicht

  • www.spiegel.de Synchron seit acht Milliarden Jahren: Das seltsam stabile Planetensystem um Stern HD110067

    Astronomen zeigen sich verblüfft von einem fernen Planetensystem: Im Gleichschritt umkreisen sechs Himmelskörper den Stern HD110067 – seit etwa acht Milliarden Jahren.

    Synchron seit acht Milliarden Jahren: Das seltsam stabile Planetensystem um Stern HD110067
    0

    Forgejo v1.21 is available and comes with significant improvements to Forgejo Actions and the Forgejo runner. It also brings better user blocking, many documentation improvements, a shortcut button to open new PRs, mail notifications when new users are created and more.

    21
    www.heise.de Weltraumteleskop James Webb zeigt einzelne Sterne im Zentrum der Milchstraße

    Das James Web Space Telescope hat einen Teil des Zentrums der Milchstraße aufgenommen. Für Astronomen eine Datengoldgrube.

    Weltraumteleskop James Webb zeigt einzelne Sterne im Zentrum der Milchstraße
    0
    www.n-tv.de Cannabis-Legalisierung verschiebt sich voraussichtlich

    Die ursprünglich für den Jahreswechsel geplante Legalisierung von Cannabis verschiebt sich voraussichtlich. Das erfuhr die Deutsche Presse-Agentur aus Kreisen der Ampel-Fraktionen. Demnach ist zwar geplant, das Gesetz in der letzten Sitzungswoche des Jahres zwischen dem 13. und 15. Dezember im Bunde...

    Cannabis-Legalisierung verschiebt sich voraussichtlich
    4
    www.spiegel.de Österreich: Soldaten und Soldatinnen kollabieren reihenweise bei Vereidigung in Wien

    Bei einer Vereidigung bekamen in Wien knapp hundert Soldatinnen und Soldaten beim Strammstehen Kreislaufprobleme, einer brach sich beim Sturz gar den Kiefer. Nun wird Kritik an der Verteidigungsministerin laut.

    Österreich: Soldaten und Soldatinnen kollabieren reihenweise bei Vereidigung in Wien
    10
    lichess.org Exploring how Lichess' players spend their playing time, Part 1 of 2

    While my original intention was to gather data on Chess addiction, it has evolved into a broader investigation into how players typically spend their time on Lichess.

    Exploring how Lichess' players spend their playing time, Part 1 of 2
    0

    "Cannabis ist kein Brokkoli"

    Bundesdrogenbeauftragte über Legalisierung &amp; Entkriminalisierung

    0
    www.mopo.de Cannabis-Pflanze führt zu „Marihuanawolke“ auf Bahnhof bei Hamburg

    Der Geruch hat den Züchter überführt: Die Bundespolizei spricht von einer ganzen „Marihuanawolke“, die einen 48-Jährigen umweht habe, der auf dem Bahnhof

    Cannabis-Pflanze führt zu „Marihuanawolke“ auf Bahnhof bei Hamburg
    1

    Philosophin im Podcast Warum ist »woke sein« nicht links, Susan Neiman?

    www.spiegel.de Warum ist »woke sein« nicht links, Susan Neiman? - Podcast Moreno+1

    Die Moralphilosophin Susan Neiman hält die Woke-Bewegung im Kern nicht für progressiv, sondern für reaktionär. Hier erklärt sie, wie sie dazu kommt.

    Warum ist »woke sein« nicht links, Susan Neiman? - Podcast Moreno+1
    0
    www.br.de Weltvegetariertag: Fakten zur vegetarischen Ernährung

    Gesundheit, Tierwohl, Klima: Es gibt zahlreiche Gründe, warum immer mehr Menschen Vegetarier sind. Kritiker monieren, dass Fleischersatzprodukte dem Klima ebenso oder gar mehr schadeten als Fleisch. Behauptungen zum Thema Vegetarismus unter der Lupe.

    Weltvegetariertag: Fakten zur vegetarischen Ernährung
    0
    mars.nasa.gov Mars Audio Recordings - NASA

    Gallery of audio clips captured by the Mars Perseverance rover.

    Mars Audio Recordings - NASA

    Listen to Audio From Perseverance

    0

    Schafherde frisst mehr als 100 Kilogramm Cannabis

    web.archive.org Sie entwickelten "seltsames Verhalten" – Schafe in Griechenland fressen Hunderte Kilogramm Cannabis

    Das "seltsame Verhalten" seiner Tiere führte einen griechischen Schäfer auf die Spur eines tragikomischen Falls: Weil sie wohl an Hunger litten, hatten die Schafe mehr als 100 Kilogramm Cannabis gefressen.

    Sie entwickelten "seltsames Verhalten" – Schafe in Griechenland fressen Hunderte Kilogramm Cannabis
    2