User contributions for Woozle
Jump to navigation
Jump to search
17 September 2024
- 14:3714:37, 17 September 2024 diff hist +332 AI/LLM No edit summary
- 14:3414:34, 17 September 2024 diff hist +77 AI No edit summary
- 13:5713:57, 17 September 2024 diff hist +35 N Category:AI Created page with "pages related to any form of AI" current
- 13:5613:56, 17 September 2024 diff hist +9 m Humanities Computing Facility No edit summary current
- 13:5513:55, 17 September 2024 diff hist +7 m Humanities Computing Facility No edit summary
- 13:5413:54, 17 September 2024 diff hist +16 m GenAI No edit summary
11 September 2024
- 17:0817:08, 11 September 2024 diff hist +216 Public key No edit summary
12 August 2024
- 16:4916:49, 12 August 2024 diff hist −1,671 Hoard meant to delete the stuff that got moved to a subpage current
- 16:4816:48, 12 August 2024 diff hist +196 Hoard/Data No edit summary current
- 16:4416:44, 12 August 2024 diff hist +274 Hoard No edit summary
11 August 2024
- 19:0219:02, 11 August 2024 diff hist +167 GenAI No edit summary
- 15:1915:19, 11 August 2024 diff hist +565 N GenAI Created page with "notes on "Generative AI" (which I sometimes call Gen3AI, for Generation 3 AI, because there were at least two previous iterations of things called "AI" including expert systems and just computing in general) ==LLMs== Large Language Models -- which I often use for answering questions (usually technical, occasionally political) * [https://chatgpt.com/gpts ChatGPT] (by OpenAI, which is neither open nor AI) * [https://copilot.microsoft.com/ Copilot] (Microsoft) * [https://ww..."
3 August 2024
- 19:1419:14, 3 August 2024 diff hist +3,157 N Hoard/Data Created page with "=Data Schemae= ==Things== This yable keeps track of All The Things -- a branching {{l/wp|hierarchy}}. <syntaxhighlight lang=SQL> CREATE TABLE `things` ( `ID` int(10) unsigned NOT NULL AUTO_INCREMENT, `WhenNew` timestamp NOT NULL DEFAULT current_timestamp(), `ID_Base` int(11) DEFAULT NULL COMMENT 'ID of parent record', `ID_Extern` int(11) DEFAULT NULL COMMENT 'external reference, if any', `Name` varchar(255) DEFAULT NULL COMMENT 'label,..."
30 July 2024
- 13:5913:59, 30 July 2024 diff hist +122 FinanceFerret/v3 →Transactions current
- 13:5313:53, 30 July 2024 diff hist +805 FinanceFerret/v3 No edit summary
7 July 2024
- 21:5721:57, 7 July 2024 diff hist +68 Ferret File System No edit summary current
- 21:5621:56, 7 July 2024 diff hist +1,775 N 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 <..." current
- 21:4821:48, 7 July 2024 diff hist +11 Ferret File System/concept No edit summary current
- 21:4821:48, 7 July 2024 diff hist 0 m Ferret File System/concept Woozle moved page Ferret File System/design to Ferret File System/concept without leaving a redirect: reorganizing
6 July 2024
- 13:4013:40, 6 July 2024 diff hist +1,203 N FinanceFerret/v3 Created page with "==SQL== ===Accounts=== <syntaxhighlight lang=SQL> CREATE TABLE `Account` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `ID_Parent` int(11) DEFAULT NULL, `ID_Owner` int(11) DEFAULT NULL, `Name` varchar(127) DEFAULT NULL, `isTxactable` tinyint(1) DEFAULT NULL, `Abbr` varchar(63) DEFAULT NULL, PRIMARY KEY (`ID`) ) ENGINE = InnoDB </syntaxhighlight> ===Owners=== <syntaxhighlight lang=SQL> CREATE TABLE `Owner` ( `ID`..."
- 13:3613:36, 6 July 2024 diff hist +54 FinanceFerret →Technical current
- 12:1112:11, 6 July 2024 diff hist +87 Hoard No edit summary
5 July 2024
- 14:0914:09, 5 July 2024 diff hist +834 Hoard No edit summary
- 13:5113:51, 5 July 2024 diff hist +670 N Hoard Created page with "==About== All the things I need to track tie together in various ways. This is the database that ties them together. It also has a number of ''ad hoc'' uses. ==Schemae== ===Extern=== This tracks external data repositories. <syntaxhighlight lang=SQL> CREATE TABLE `extern` ( `ID` int(10) unsigned NOT NULL AUTO_INCREMENT, `WhenNew` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'when this record was added', `SID_Type` varchar(255) DEFAULT NULL C..."
- 13:4613:46, 5 July 2024 diff hist +56 Projects No edit summary current
24 April 2024
- 21:1421:14, 24 April 2024 diff hist +97 Software Uprising →Obstacles current
- 21:1121:11, 24 April 2024 diff hist +173 Software Uprising →Obstacles
13 April 2024
- 13:5613:56, 13 April 2024 diff hist +121 Software Uprising No edit summary
29 February 2024
- 16:4916:49, 29 February 2024 diff hist +32 Ferret File System/app No edit summary current
26 February 2024
- 01:2601:26, 26 February 2024 diff hist +51 Ferret File System No edit summary
25 February 2024
- 14:3714:37, 25 February 2024 diff hist +350 Ferret File System/app No edit summary
- 14:2614:26, 25 February 2024 diff hist +25 Ferret File System/concept No edit summary
- 14:2614:26, 25 February 2024 diff hist −5,183 Ferret File System No edit summary
- 14:2514:25, 25 February 2024 diff hist +36 Ferret File System/app No edit summary
- 14:2114:21, 25 February 2024 diff hist +3,086 N Ferret File System/app Created page with "It seems like it should be doable to implement FFS as a userland/desktop application rather than a core filesystem feature. This should make it possible to gain the benefits of these services without investing as much development time, allowing them to be tested and refined before being attempted as a kernel-level service. ==Description== * There is a database of all files in a one or more folders (could be the entire filesystem, or just selected folders). I'll call thes..."
- 14:1914:19, 25 February 2024 diff hist +2,789 N Ferret File System/concept 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..."
- 13:4213:42, 25 February 2024 diff hist +90 Ferret File System No edit summary
- 13:4013:40, 25 February 2024 diff hist +50 N FileFerret/terms/fideal Woozle moved page FileFerret/terms/fideal to Ferret File System/v0.1/terms/fideal: obsolete current Tag: New redirect
- 13:4013:40, 25 February 2024 diff hist 0 m Ferret File System/v0.1/terms/fideal Woozle moved page FileFerret/terms/fideal to Ferret File System/v0.1/terms/fideal: obsolete current
- 13:4013:40, 25 February 2024 diff hist +43 N FileFerret/terms Woozle moved page FileFerret/terms to Ferret File System/v0.1/terms: obsolete current Tag: New redirect
- 13:4013:40, 25 February 2024 diff hist 0 m Ferret File System/v0.1/terms Woozle moved page FileFerret/terms to Ferret File System/v0.1/terms: obsolete current
- 13:4013:40, 25 February 2024 diff hist +45 N FileFerret/process Woozle moved page FileFerret/process to Ferret File System/v0.1/process: obsolete current Tag: New redirect
- 13:4013:40, 25 February 2024 diff hist 0 m Ferret File System/v0.1/process Woozle moved page FileFerret/process to Ferret File System/v0.1/process: obsolete current
- 13:4013:40, 25 February 2024 diff hist +45 N FileFerret/archive Woozle moved page FileFerret/archive to Ferret File System/v0.1/archive: obsolete current Tag: New redirect
- 13:4013:40, 25 February 2024 diff hist 0 m Ferret File System/v0.1/archive Woozle moved page FileFerret/archive to Ferret File System/v0.1/archive: obsolete current
- 13:4013:40, 25 February 2024 diff hist +48 N FileFerret/SQL/volume Woozle moved page FileFerret/SQL/volume to Ferret File System/v0.1/SQL/volume: obsolete current Tag: New redirect
- 13:4013:40, 25 February 2024 diff hist 0 m Ferret File System/v0.1/SQL/volume Woozle moved page FileFerret/SQL/volume to Ferret File System/v0.1/SQL/volume: obsolete current
- 13:4013:40, 25 February 2024 diff hist +54 N FileFerret/SQL/maps/archive Woozle moved page FileFerret/SQL/maps/archive to Ferret File System/v0.1/SQL/maps/archive: obsolete current Tag: New redirect
- 13:4013:40, 25 February 2024 diff hist 0 m Ferret File System/v0.1/SQL/maps/archive Woozle moved page FileFerret/SQL/maps/archive to Ferret File System/v0.1/SQL/maps/archive: obsolete current
- 13:4013:40, 25 February 2024 diff hist +53 N FileFerret/SQL/map/archive Woozle moved page FileFerret/SQL/map/archive to Ferret File System/v0.1/SQL/map/archive: obsolete current Tag: New redirect