All public logs

Jump to navigation Jump to search

Combined display of all available logs of Woozle Writes Code. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:56, 7 July 2024 Woozle talk contribs created page Ferret File System/design (Created page with "{{fmt/title|FFS: let's just make some tables and see what we can get working}} ==Tables== ===Content=== <syntaxhighlight lang=sql> CREATE TABLE `content` ( `ID` int(10) unsigned NOT NULL AUTO_INCREMENT, `WhenFirst` timestamp NOT NULL DEFAULT current_timestamp(), `WhenFinal` timestamp NOT NULL, `HashType` varchar(255) NOT NULL, `HashData` varchar(255) NOT NULL, `Bytes` bigint(20) NOT NULL, PRIMARY KEY (`ID`) ) ENGINE = InnoDB <...")
  • 21:48, 7 July 2024 Woozle talk contribs moved page Ferret File System/design to Ferret File System/concept without leaving a redirect (reorganizing)
  • 14:19, 25 February 2024 Woozle talk contribs created page Ferret File System/design (Created page with "The key concepts in FFS are storage agnosticism and semantic data. The latter can be used further as a way of "unwrapping" file formats. ==Storage Agnosticism== Traditional filesystems present "drives" or "volumes" that more or less correspond to physical devices, each with its own invariable maximum capacity. This is the metaphor used across all interfaces, including user (GUI, CLI) and application (API). FFS presents the user with a single storage space that unifies a...")