@jabu I think it depends on whom you want to sell it to.

- If #CyberSix hat like an #FSK rating (it doesn't but I'm shure it could easily get rated 12+ based off other cartoon ratings) then certainly the 2nd one would be more indicative of it being a teen-targeting cartoon.

https://en.wikipedia.org/wiki/Freiwillige_Selbstkontrolle_der_Filmwirtschaft
https://rubber.social/@F3715H/116235482164187832

Hans Henschel, Christoph A. Klimke – „Geister“ (2024)

Trauer wird im Film oft wie ein psychologisches Rätsel behandelt. Wer hat Schuld am Tod des/der Anderen? Wer hätte vorher etwas merken müssen? Wer hat nicht genug gefragt? In der Realität sind solche Fragen aber selten produktiv. Denn sie gehören zu einer Kultur der Individualisierung von Leid, die gesellschaftliche Ursachen lieber ausblendet. Genau hier bewegt sich der Debütfilm Geister von Hans Henschel nach einem Drehbuch von Christoph A. Klimke. Das ist, ganz unzweifelhaft, sehr persönlich. (ARD, Neu!)

Zum Blog: https://nexxtpress.de/mediathekperlen/hans-henschel-christoph-a-klimke-geister-2024/
Sebastian Hilger – „Eine bessere Welt“ (2026)

Digitale Öffentlichkeit verkauft sich gern als demokratisches Wunder. Davon sind „wir“ im Fediverse ja auch nicht ganz frei. Jede Stimme kann Gehör finden. Jede Perspektive ihren Raum. Wer sich jedoch durch andere Kommentarspalten aktueller Debatten liest, stößt auch auf etwas anderes. Aggressive Echokammern, in der Empörung zur Währung geworden ist. In genau diesem Klima taucht dieser Fernsehfilm von Sebastian Hilger auf. Und noch bevor er überhaupt ausgestrahlt wurde, erfüllte sich seine Prämisse bereits in der Realität. (ZDF, Neu!)

Zum Blog: https://nexxtpress.de/mediathekperlen/sebastian-hilger-eine-bessere-welt-2026/

@agowa338 @EUCommission seriously, that's kinda #discrimination and a violation of #GDPR & #BDSG's "necessary only data collection"

  • Espechally in that case cuz that movie is literally rated 0+ by #FSK (Germany's Movie Rating Board) so even an elementary school kid could buy it for cash at a retail store.

I'd recommend to connect with the applicable #ConsumerProtection agency in your state and/or tip off competitiors so they can send a costly "Cease and Decist" to that shop…

@Yahooru Social Media von TechBros komplett abschalten wäre eine Möglichkeit, die man nutzen könnte, wenn man es wollte, sofern sie sich nicht an die Vorgaben halten. Und sie halten sich nicht an die Vorgaben – sie versuchen sie entweder zu umgehen oder daegegen zu klagen.

Die Beschränkung bis zu einem bestimmten Alter ändert doch nichts an dem was dort an Inhalten feilgeboten wird.

Warum gilt der Schutz nur bis 16 Jahre - 1 Tag, was ich mit den Menschen, die 16 Jahre und mehr alt sind. Wieso müssen diese nicht geschützt werden?

Wir haben doch bei den TechBros nicht so etwas wie die #FSK, die Kinder und Jugendliche von schädlichen Inhalten warnen kann – warnen, nicht verbieten!

Ohne eine Einstufung von Inhalten nach Altersklassen oder -kohorten ist doch diese Einteilung völlig willkürlich und nicht geeignet, etwas Positives bei den Inhalten zu bewirken.

Oder anders gesagt:
Du eine Alterskontrolle verschreiben wir Medikamente, welche die Symptome zu mildern versuchen anstatt die Krankheit zu bekämpfen.
Das hat auf lange Sicht noch nie funktioniert.

Ansonsten kann ich mich der Argumentation von Linus anschließen:
https://www.ardmediathek.de/video/phoenix-der-tag/gefahren-von-social-media-gro-e-probleme-auch-fur-erwachsene/ard/Y3JpZDovL3Bob2VuaXguZGUvNTE3NDY4NA

phoenix der tag: Gefahren von Social Media: 'Große Probleme auch für Erwachsene' - hier anschauen

Schaltgespräch mit Linus Neumann (Chaos Computer Club) u.a. zur Debatte über das Social-Media-Verbot

Quote from Hammer2 page

Because HAMMER2 is a block copy-on-write filesystem, the "atime" field is not supported and will typically just reflect local system in-memory caches or mtime.

The radix tree is dynamic in that each entry can dynamically control how many bits it chops off. This allows small files to be contained in just one or two levels regardless of the block seek positions. The depth of the radix tree is increased as needed via a splitting mechanism, and will also be recombined if it grows smaller. All block references are 64-bit aligned-byte-indexed references and thus portable regardless of physical sector size changes between underlying block devices.

Inodes are 1KB of which 512 bytes are used for the top-level radix tree OR 512 bytes of data. Any file less than or equal to 512 bytes stores its data directly in the inode. Files up to 256KB can be accommodated with direct inode block references.

Directory entries are hashed (semi-sorted hash algorithm), and directly embedded in the radix table's blockref structure for maximum performance. Files with very long filenames will contain a dataref, otherwise filenames are embedded in the directory entry itself. Because directory entries are hashed, seeking and lookups are able to use a radix search and no linear scan of the directory is needed.

The inode and directory entry structure is extremely well suited for any file size or directory size, from tiny to huge.

Because of the block-copy-on-write nature of the filesystem, the filesystem is able to create a snapshot trivially simply by copying the volume header's root block table (4 blockref entries). The directory topology actually starts with a SUPERROOT, and volume ROOTs are directory entries under the SUPERROOT. Though the entries are actually special-cased a bit and actually part of the root inode for each filesystem root. And since physical freeing of space is handled via a bulk meta-data scan, destroying a snapshot or volume can be done simply by wiping the inode and ignoring everything under it... the next bulkfree scan will reclaim any reclaimable space. Similarly with file deletions... the top-level data blockrefs can simply be removed. The inode can simply be removed from the radix tree.

Performance is very good. HAMMER2 uses a variable-sized block in powers of two, starting at 1KB, up to 64KB, for the last block of the file (straddling EOF). All earlier blocks in the file, if any, use 64KB blocks. The freemap is organized by domain to cluster various meta-data types together. Indirect blocks can be one of two sizes: 16KB or 64KB, allowing medium-sized files and directories to be optimally allocated. In addition, file data compression of a logical block can result in a smaller physical block. The physical layer always does 64KB I/O and can cluster the I/O on top of that.

https://www.dragonflybsd.org/hammer/

#filesystem #programming #BSD #dragonflyBSD #freeBSD #OpenSource #technology #no #FSK

DragonFlyBSD: hammer

The amazing DragonFlyBSD has the fantastic
Hammer2 filesystem:

* Block copy-on-write filesystem
* Instant recovery on mount
* Instant snapshots
* Mounted snapshots are writable
* Automatic snapshotting can be enabled at the system level via periodic scripts
* Default Periodic also does daily bulk pass on the meta-data to free space
* Automatic compression (controllable on directory recursion and per-file basis)
* Automatic de-duplication
* Future master/slave mechanism
* Utilizes a dynamic radix tree
* 64-bit hardlink counter
* 2^63 logical file size limit
* Recursive check codes to detect corruption
* Any number of pseudo-filesystem volumes for each physical hammer2 disk image (also used by snapshots).

https://www.dragonflybsd.org/hammer/

#filesystem #programming #BSD #dragonflyBSD #freeBSD #OpenSource #technology #no #FSK

Wenn man in Kreuzberg Silvester feiert, kann man auch zu #FSK tanzen.
Perfect example on why I don’t give a fuck about #film ratings when I choose if my kid can see a film or not. There are no real comparable guidelines out there and they don’t know my kid better than me. My general rule of thumb is always go with the lowest rating though …
#fsk #bbfc #mpaa #movie