New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 12:55, 2 October 2024Syncthing (hist | edit) ‎[1,014 bytes]Woozle (talk | contribs) (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")
  • 15:19, 11 August 2024GenAI (hist | edit) ‎[488 bytes]Woozle (talk | contribs) (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 2024Hoard/Data (hist | edit) ‎[3,353 bytes]Woozle (talk | contribs) (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 2024Ferret File System/design (hist | edit) ‎[1,775 bytes]Woozle (talk | contribs) (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 <...")
  • 13:40, 6 July 2024FinanceFerret/v3 (hist | edit) ‎[2,130 bytes]Woozle (talk | contribs) (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 2024Hoard (hist | edit) ‎[194 bytes]Woozle (talk | contribs) (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...")