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
  • 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()...")