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).
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/clsPackageQueueItem to VbzCart/docs/archive/code/VBA/clsPackageQueueItem without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/clsPackageQueue to VbzCart/docs/archive/code/VBA/clsPackageQueue without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/clsPackageItems to VbzCart/docs/archive/code/VBA/clsPackageItems without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/clsPackageItem to VbzCart/docs/archive/code/VBA/clsPackageItem without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/clsPackage to VbzCart/docs/archive/code/VBA/clsPackage without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/Form sfrmPackages to VbzCart/docs/archive/code/VBA/Form sfrmPackages without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/Form sfrmPackageItems to VbzCart/docs/archive/code/VBA/Form sfrmPackageItems without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/Form frmPackages to VbzCart/docs/archive/code/VBA/Form frmPackages without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA/Form frmPackage to VbzCart/docs/archive/code/VBA/Form frmPackage without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/VBA to VbzCart/docs/archive/code/VBA without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code/SpecialVbzAdmin to VbzCart/docs/archive/code/SpecialVbzAdmin without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/code to VbzCart/docs/archive/code without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive/catalog building 2006 to VbzCart/docs/archive/catalog building 2006 without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart/archive to VbzCart/docs/archive without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:53, 25 February 2024 Woozle talk contribs moved page VbzCart/VbzCart to VbzCart/docs without leaving a redirect (correct naming (was no way to import directly to this name))
- 01:52, 25 February 2024 Woozle talk contribs imported VbzCart/VbzCart by file upload (63 revisions)
- 01:52, 25 February 2024 Woozle talk contribs imported VbzCart/Template:l/ig by file upload (1 revision)
- 16:58, 14 October 2023 Woozle talk contribs created page Futilities/notes (Created page with "==Spidering== {| class=wikitable |- | Folderator::OnPath() | {| class=wikitable |- |→ Folderator::OnFolder() | {| class=wikitable |- | + →Matcher::HandleFolder() |- | + →Folderator::OnWantedFolder() | → for each entry: Folderator::OnPath() |} |- |→ Folderator::OnFile() |} |}")
- 16:38, 5 October 2023 Woozle talk contribs created page Conventions/code (Created page with "Coding practices I use: * /naming: naming of identifiers * /patterns: code patterns I use")
- 16:38, 5 October 2023 Woozle talk contribs created page Conventions/code/patterns (Created page with "Some code-patterns I use, with details: * {{l/sub|config}}uration classes * {{l/sub|singleton}} objects")
- 16:37, 5 October 2023 Woozle talk contribs created page Conventions/code/patterns/config (Created page with "I mainly use classes for storing static configuration data – unlike what Laravel does with array-per-file in a config folder, or what MediaWiki does with LocalSettings.php and global variables. This has multiple benefits, of which the main one is probably that you don't need any special loading mechanism and can refer to a config item from anywhere by invoking the class. Another is that you can set up abstract methods for things that need to be filled in b...")
- 16:32, 5 October 2023 Woozle talk contribs created page Conventions/code/patterns/singleton (Created page with "Singleton objects are a fairly common code-pattern; the following are my conventions for them. The basic idea of a singleton class is that you want to only ever create one object from it. Since much of the usefulness of this method is the ability to have methods that are effectively global functions while still being nicely packaged in a way that makes it clear where they come from (and allows autoloading), it's useful for the class to have a static method (I use "Me()...")
- 15:46, 5 October 2023 Woozle talk contribs moved page Conventions/coding to Conventions/code/naming (reorganizing a bit)
- 22:17, 6 September 2023 Woozle talk contribs created page Fedarchy (Created page with "It's hard to know where to start with explaining this concept; it has evolved a lot. The earlier incarnations were probably easier to explain. I'll put together a {{l/sub|history}} at some point.")
- 12:57, 28 August 2023 Woozle talk contribs created page File:2023-08-27.screen.Caja showing multiple copies of same file.png (category:screenshot category:Nextcloud If Nextcloud gets into a mode where it repeatedly thinks it's seeing a sync conflict, don't tell it to create a backup copy or you get this.)
- 12:57, 28 August 2023 Woozle talk contribs uploaded File:2023-08-27.screen.Caja showing multiple copies of same file.png (category:screenshot category:Nextcloud If Nextcloud gets into a mode where it repeatedly thinks it's seeing a sync conflict, don't tell it to create a backup copy or you get this.)
- 00:38, 21 August 2023 Woozle talk contribs created page Firefox (Created page with "category:review Firefox is mostly a pretty good open-source browser with a few really irritating features. Among the irritants are: * You can't tell it to stop nagging you to turn on DRM on certain sites. I've never had to turn it on, but it always wants me to. * It can import settings from other browsers, but not from itself. That is, if you have an installation of Firefox on another machine, and you've copied the settings data folder over, Firefox will not see...")
- 21:41, 20 August 2023 Woozle talk contribs created page Category:Nextcloud (Created page with "items related to Nextcloud")
- 21:40, 20 August 2023 Woozle talk contribs created page File:2023-08-20-17-18-42-79.screen. 06ea656a9ba653ff96746f477f32d0f9.Nextcloud-stuck.jpg (category:screenshot category:mobile category:Nextcloud)
- 21:40, 20 August 2023 Woozle talk contribs uploaded File:2023-08-20-17-18-42-79.screen. 06ea656a9ba653ff96746f477f32d0f9.Nextcloud-stuck.jpg (category:screenshot category:mobile category:Nextcloud)
- 19:00, 20 August 2023 Woozle talk contribs created page Ferreteria/v0.5/@cls/tRenderableTree (Created page with "{{fmt/title|Ferreteria trait <code>[[../|ferret]]\{{l/ver/class|layout}}\tRenderableTree</code>}} {| style="border: solid 1px grey; background: #eef;" |- | {{l/ver/class|tRenderableTwig}} | → | {{l/ver/class|tExecutableTree}}<br> {{l/ver/class|tRenderableTree}} | → | {{l/ver/class|cElement}} |} * '''file''': {{l/ferreteria/code|layout/elem/trait.php}}")
- 18:54, 20 August 2023 Woozle talk contribs created page Ferreteria/v0.5/@cls/tRenderableTwig (Created page with "{{fmt/title|Ferreteria trait <code>[[../|ferret]]\{{l/ver/class|layout}}\tRenderableTwig</code>}} {| style="border: solid 1px grey; background: #eef;" |- | {{l/ver/class|tExecutableTwig}} → | {{l/ver/class|tExecutableTree}} | → {{l/ver/class|cElement}} |} * '''file''': {{l/ferreteria/code|layout/elem/trait.php}}")
- 17:13, 20 August 2023 Woozle talk contribs created page AI/LLM (Created page with "==Notes== * '''2023-05-24''' [https://www.vice.com/en/article/3akd7y/worried-about-sending-your-data-to-a-chatbot-privategpt-is-here Worried About Sending Your Data to a Chatbot? 'PrivateGPT' Is Here] ** code source: [https://github.com/imartinez/privateGPT privateGPT]")
- 16:23, 20 August 2023 Woozle talk contribs created page AI (Created page with "category:topic category:acronym This is a space-holder for notes on AI. See {{htyp|artificial intelligence}} for older notes. Pages: * /LLM: Large Language Model AI")
- 01:03, 20 August 2023 Woozle talk contribs created page Nextcloud (Created page with "category:review Nextcloud is a self-hosted file-sync application written in PHP. We've used it pretty heavily for many years now (and ownCloud, its predecessor, before that). Despite being a pretty nifty package in a lot of ways (especially as a concept), it increasingly has lots of little problems that are making it more and more difficult to use and maintain. ==Issues== In no particular order: ===Upgrade Button Unresponsive=== When there is an upgrade available...")
- 01:01, 20 August 2023 Woozle talk contribs created page File:2023-08-19 at 20-59-57.screen.Nextcloud start update button.png (category:screenshot category:nextcloud)
- 01:01, 20 August 2023 Woozle talk contribs uploaded File:2023-08-19 at 20-59-57.screen.Nextcloud start update button.png (category:screenshot category:nextcloud)
- 00:56, 20 August 2023 Woozle talk contribs created page Category:Pages using deprecated source tags (Created page with "These probably just need to have {{fmt/code|<source>}} tags changed to {{fmt/code|<syntaxhighlight>}} -- but, like, who thought ''that'' change was a good idea?")
- 00:52, 20 August 2023 Woozle talk contribs created page Category:Vbzcart (Created page with "items relating to VbzCart")
- 00:51, 20 August 2023 Woozle talk contribs created page File:2017-03-17 screenshot.VbzCart.admin.Supplier.LB.png (category:screenshot category:vbzcart '''what''': screenshot of VbzCart admin supplier page for Liquid Blue, showing departments menu item selected)
- 00:51, 20 August 2023 Woozle talk contribs uploaded File:2017-03-17 screenshot.VbzCart.admin.Supplier.LB.png (category:screenshot category:vbzcart '''what''': screenshot of VbzCart admin supplier page for Liquid Blue, showing departments menu item selected)
- 00:47, 20 August 2023 Woozle talk contribs created page Category:Commentary (Created page with "commentary on external articles/posts")
- 00:03, 25 June 2023 Woozle talk contribs created page SpecialPage (Created page with "{{fmt/title/classlike|SpecialPage|class}} * '''defined in''' [https://github.com/wikimedia/mediawiki/blob/master/includes/specialpage/SpecialPage.php [MediaWiki]/includes/specialpage/SpecialPage.php] * '''defined as''' <tt>class SpecialPage implements MessageLocalizer</tt> ** '''implements''' MessageLocalizer ([https://github.com/wikimedia/mediawiki/blob/master/includes/language/MessageLocalizer.php code])")
- 13:32, 24 June 2023 Woozle talk contribs created page MediaWiki/SpecialPage/SpecialPageFactory (Created page with "{{fmt/title/classlike|MediaWiki \ MediaWiki/SpecialPage \ MediaWiki/SpecialPage\SpecialPageFactory|class}} * '''defined in''' [https://github.com/wikimedia/mediawiki/blob/master/includes/specialpage/SpecialPageFactory.php /includes/specialpage/SpecialPageFactory.php] * '''defined as''' <tt>lass SpecialPageFactory { use DebugInfoTrait; ...: }</tt> ** '''uses''' {{l/nspace|Wikimedia\DebugInfo\DebugInfoTrait}}")
- 13:09, 24 June 2023 Woozle talk contribs created page Template:Fmt/title/classlike (Created page with "{| width=100% style="background: #efe; border: 1px solid #9f9;" |- | cellpadding=10 | <div style="font: bold 14pt">{{{1}}} <i>{{{2|}}}</i></div> |}")
- 13:01, 24 June 2023 Woozle talk contribs created page 2023/06/24 (Created page with "{{page/date}} ==Notes== * [https://github.com/wikimedia/mediawiki-libs-ObjectFactory/blob/3558d6630cefa60491e468965752651bc5bf3d3e/src/ObjectFactory.php#L152 ObjectFactory.php line 152] calls static::getObjectFromSpec( $spec, $options ); * [https://github.com/wikimedia/mediawiki-libs-ObjectFactory/blob/3558d6630cefa60491e468965752651bc5bf3d3e/src/ObjectFactory.php#L177 ObjectFactory.php line 177] calls static::validateSpec( $spec, $options ); * [https://github.com/wikime...")
- 12:47, 24 June 2023 Woozle talk contribs moved page 2023/06/23/notes to 2023/06/23 without leaving a redirect (easier navigation)
- 00:54, 24 June 2023 Woozle talk contribs created page 2023/06/23/notes (Created page with "{{subpage/date}} Trying to figure out why MediaWiki is spurning the extension-shell I've created... here's the error: /mw/Special:SpecialPages InvalidArgumentException: Provided specification is a string, not an array. Backtrace: <poem> from /var/www/site/mw/mediawiki-1.39.3/vendor/wikimedia/object-factory/src/ObjectFactory.php(302) #0 /var/www/site/mw/mediawiki-1.39.3/vendor/wikimedia/object-factory/src/ObjectFactory.php(177): {{l/nspace|Wikimedia\ObjectFactory\...")
- 00:54, 24 June 2023 Woozle talk contribs created page Template:Subpage/date (Created page with "<includeonly>{{c/date| {{#sub:{{PAGENAME}}|0|10}} }}</includeonly> <table class=wikitable align=right><tr> <td> [[ {{#time: Y/m/d | {{#sub:{{PAGENAME}}|0|10}} - 1 day}} ]] </td> <td> <b>[[ {{#time: Y/m/d | {{#sub:{{PAGENAME}}|0|10}} }} ]]</b> </td> <td> [[ {{#time: Y/m/d | {{#sub:{{PAGENAME}}|0|10}} + 1 day}} ]] </td> </table>")
- 00:38, 24 June 2023 Woozle talk contribs created page Wikimedia/ObjectFactory/ObjectFactory (Created page with "{{fmt/title|Wikimedia \ ObjectFactory \ ObjectFactory}} * '''defined in''' [https://github.com/wikimedia/mediawiki-libs-ObjectFactory/blob/master/src/ObjectFactory.php GitHub: MediaWiki: libs: ObjectFactory: /src/ObjectFactory.php]")