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).
- 15:28, 8 November 2024 Woozle talk contribs created page Community (Created page with "==Social Projects== * [https://toot.cat TootCat] (and [https://mew.toot.cat wiki]) ==Hosted Creative Projects== * [https://outside-life.com Outside Life]: a webcomic * [https://roastrabbit.com Roast Rabbit Productions]")
- 14:52, 8 November 2024 Woozle talk contribs deleted page FerretCoin/Marginal Value Tokens (No longer needed: content was: "Members of the issuing cooperative would have privileged access to that co-op's FC thusly: * If your disposable income is below a certain level, you receive regular allocations at no cost * If it's above that level, you have to buy them, but on a sliding-scale cost Looked at more algorithmically, there would be a range of incomes relevant to the price: * below the range, you ge...", and the only contributor was "Woozle" ([[Use...)
- 14:28, 8 November 2024 Woozle talk contribs created page FerretCoin/Marginal Value Tokens (Created page with "Members of the issuing cooperative would have privileged access to that co-op's FC thusly: * If your disposable income is below a certain level, you receive regular allocations at no cost * If it's above that level, you have to buy them, but on a sliding-scale cost Looked at more algorithmically, there would be a range of incomes relevant to the price: * below the range, you get free regular allocations * within the range, the price goes up from zero to full price * ab...")
- 15:57, 4 November 2024 Woozle talk contribs created page AllowTcpForwarding (Created page with "category:notes category:setting ==2024-11-04== * I need to understand how ssh port forwarding works so I can get Beekeeper working on SamTheMachine. * I think the first thing I need to understand is how to see if it's already active. * [https://www.howtouselinux.com/post/exploring-ssh-port-forwarding-with-examples This] tells me that it's something you do on the remote host, not the local machine. * ...but if that's the case, then it's not what's preventing Beeke...")
- 20:14, 2 November 2024 Woozle talk contribs created page Futilities/human/ftm/v0.6 (Created page with "==Notes== The original CLI help-text was: USAGE: ./ftm [<options>] <source folder> <target folder> Options: --comp-found -cf --config-file --do-delete -dd --finish-part --ign-date-chg -id --info-only -io --list-found -lf The "do.info" option (don't actually copy, just show information) was not supported because I'm not sure how it's useful here. Some old config code: <syntaxhighlight lan...")
- 12:55, 2 October 2024 Woozle talk contribs created page Syncthing (Created page with "==Needed Features== * a way to include linked folders in the sync-set/share * ability to connect to specific folders ''within'' a share, and attach them to whichever local folders I want * ability to browse available shares without downloading them or setting them up ** (This would also make it possible/easier to start setting up a synk without having to wait for the invitation to arrive.) ** ability to download/upload specific files without synking")
- 12:51, 2 October 2024 Woozle talk contribs created page SyncThing (Redirected page to Syncthing) Tag: New redirect
- 13:57, 17 September 2024 Woozle talk contribs created page Category:AI (Created page with "pages related to any form of AI")
- 15:19, 11 August 2024 Woozle talk contribs created page 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...")
- 19:14, 3 August 2024 Woozle talk contribs created page 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,...")
- 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)
- 13:40, 6 July 2024 Woozle talk contribs created page 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:51, 5 July 2024 Woozle talk contribs created page 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...")
- 14:21, 25 February 2024 Woozle talk contribs created page 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: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...")
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/process to Ferret File System/v0.1/process (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/archive to Ferret File System/v0.1/archive (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/terms to Ferret File System/v0.1/terms (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/terms/fideal to Ferret File System/v0.1/terms/fideal (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/volume to Ferret File System/v0.1/SQL/volume (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/maps/archive to Ferret File System/v0.1/SQL/maps/archive (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/map/archive to Ferret File System/v0.1/SQL/map/archive (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/map to Ferret File System/v0.1/SQL/map (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/folder to Ferret File System/v0.1/SQL/folder (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/firev to Ferret File System/v0.1/SQL/firev (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/file to Ferret File System/v0.1/SQL/file (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/fideal to Ferret File System/v0.1/SQL/fideal (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/event/entry to Ferret File System/v0.1/SQL/event/entry (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/event to Ferret File System/v0.1/SQL/event (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/entry to Ferret File System/v0.1/SQL/entry (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL/client to Ferret File System/v0.1/SQL/client (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret/SQL to Ferret File System/v0.1/SQL (obsolete)
- 13:40, 25 February 2024 Woozle talk contribs moved page FileFerret to Ferret File System/v0.1 (obsolete)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/docs temp rename to VbzCart/docs without leaving a redirect (moving back into place)
- 01:58, 25 February 2024 Woozle talk contribs deleted page VbzCart/docs (Deleted to make way for move from "VbzCart/docs temp rename")
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vtCartData EmailPhone to VbzCart/docs/v1/class/vtCartData EmailPhone without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vtCartData NameAddress to VbzCart/docs/v1/class/vtCartData NameAddress without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcPageContent ckout/HandlePageRequest to VbzCart/docs/v1/class/vcPageContent ckout/HandlePageRequest without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcPageContent ckout/GetPageKey forData to VbzCart/docs/v1/class/vcPageContent ckout/GetPageKey forData without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcPageContent ckout/OnRunCalculations to VbzCart/docs/v1/class/vcPageContent ckout/OnRunCalculations without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcPageContent ckout/ProcessPage to VbzCart/docs/v1/class/vcPageContent ckout/ProcessPage without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcPageContent ckout/ProcessPage/2019-04-27 to VbzCart/docs/v1/class/vcPageContent ckout/ProcessPage/2019-04-27 without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcShopRecordset to VbzCart/docs/v1/class/vcShopRecordset without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcrAdminCart to VbzCart/docs/v1/class/vcrAdminCart without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcrCart to VbzCart/docs/v1/class/vcrCart without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcrShopCart to VbzCart/docs/v1/class/vcrShopCart without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcPageContent ckout/RenderContent to VbzCart/docs/v1/class/vcPageContent ckout/RenderContent without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcPageContent ckout/DoPage/2019-04-27 to VbzCart/docs/v1/class/vcPageContent ckout/DoPage/2019-04-27 without leaving a redirect (part 5/5)
- 01:58, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/v1/class/vcPageContent ckout/DoPage to VbzCart/docs/v1/class/vcPageContent ckout/DoPage without leaving a redirect (part 5/5)