All public logs

Jump to navigation Jump to search

Combined display of all available logs of HTYP. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 13:26, 5 April 2024 Woozle talk contribs created page PHP/inheritance/code (Created page with "<syntaxhighlight lang=php> <?php /** * PURPOSE: The idea is to produce a handy reference-matrix of what the various class-inheritance functions/operators report * under var...")
  • 12:35, 5 April 2024 Woozle talk contribs created page PHP/inheritance (Created page with "==About== PHP includes a few bits of functionality for checking whether an object or class inherits from another classoid (class, interface, or trait). The rules for this func...")
  • 15:29, 25 February 2024 Woozle talk contribs deleted page FileFerret (Moved to another site: content was: "==Introduction== FileFerret is a software system intended to manage large numbers of files, including those on offline media. It can also provide services to other applications which may need to track large numbers of files for their own purposes. Development has so far focused on a web server backend and a CLI front-end for spidering, but a GUI desktop interface is plan...", and the only contributor was "Woozle" (...)
  • 15:29, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/maps/archive (Moved to another site: content was: "#REDIRECT FileFerret/SQL/map/archive", and the only contributor was "Woozle" (talk))
  • 15:28, 25 February 2024 Woozle talk contribs deleted page FileFerret/terms/firev (Moved to another site: content was: ""{{l/fileferret|terms/firev|Firev}}" is short for "file revision". A firev is a particular series of byte values that represents a particular revision, or version, of a {{l/fileferret|terms/file|file}}. A firev can be created either deliberately (as a result of user editing) or accidentally (imperfect transcription, drive corruption, viral infection). * '''Table''': {{l/filefer...", and the only contributor was "Woozle" (...)
  • 15:28, 25 February 2024 Woozle talk contribs deleted page FileFerret/terms/fideal (Moved to another site: content was: "'''Fideal'''s are a concept originally planned as an essential part of FileFerret, but on further thought I think they belong in a higher layer to be implemented after the core application is working. The rule would be that a fideal record is created whenever multiple copies of the same file are found, and could also be created manually in order to track more information about a...", and the only contributor was "Woozle" (...)
  • 15:28, 25 February 2024 Woozle talk contribs deleted page FileFerret/terms (Moved to another site: content was: "==Current== * /entry * /firev ==Future== * /fideal", and the only contributor was "Woozle" (talk))
  • 15:27, 25 February 2024 Woozle talk contribs deleted page FileFerret/process (Moved to another site: content was: "When given a {{l/fileferret/sql|volume}} to scan, there are two sides to the scanning process: # Are there new items? # Has anything been deleted? Both questions can be answered by: * marking every file in the current index as "not found" * scanning the volume to get a list of all files currently present * updating the index for each file found to show that the file has been fou...", and the only contributor was "Woozle" (...)
  • 15:27, 25 February 2024 Woozle talk contribs deleted page FileFerret/archive (Moved to another site: content was: "This page is for discarded pieces of FileFerret -- a map of dead-end paths, possibly. My original notes are on HypertWiki. ===locations=== '''I'm going to try eliminating this.''' It's basically just all folders where ID_Parent IS NULL. <syntaxhighlight lang=mysql>CREATE TABLE `locations` ( `ID` INT NOT NULL AUTO_INCREMENT, `ID_Folder` INT NO...", and the only contributor was "Woozle" (...)
  • 15:27, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/volume (Moved to another site: content was: "==About== * '''Purpose''': record of all known volumes, fixed and removable ===Fields=== * '''Label''': the volume's label, which may not be unique (but may help with identification) * '''isInScan''': if TRUE, a scan is in progress and {{l/same|entry}}.didFind flag may not be accurate ===History=== * '''2013-04-21''' created * '''2013-06-30''' added '''wikipedia:Universally uni...", and the only contributor was "Woozle" ([[...)
  • 15:26, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/map/archive (Moved to another site: content was: "This design made more sense for a Windows-only network, where drive root folders were rarely accessible. * '''Fields''': ** '''ID_Host''': host ID of the computer to whom each map applies ** '''FileSpec''': absolute path to the root of the map (aka mount point) being described <mysql>CREATE TABLE `maps` ( `ID` INT NOT NULL AUTO_INCREMENT, `ID_Folder` INT NOT NULL...", and the only contributor was "Woozle" (...)
  • 15:26, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/map (Moved to another site: content was: "==About== * '''Purpose''': tracks {{l/fileferret|terms/map|methods of accessing volumes}} on local or remote hosts, across different FileFerret clients. It is similar to the concept of "mount points" ** Each FileFerret client looks itself up in the {{l/same|clients}} table to get its client ID, then filters this table by looking only at records whose ID_Client matches. * '''Futur...", and the only contributor was "Woozle" (...)
  • 15:25, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/folder (Moved to another site: content was: "==About== ===fields=== * '''noScan''' is for blacklisting folders whose contents we really don't want to track, such as temp and trash areas which may become full of frequently-changing but useless clutter, or areas where things that aren't really files are kept (e.g. "/dev"), areas where drives are mounted ("/media", "/mnt"), etc. ===history=== * '''2013-06-30''' Added '''ID_Vol...", and the only contributor was "Woozle" (...)
  • 15:25, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/firev (Moved to another site: content was: "==About== * '''Purpose''': tracks revisions to {{l/same|file}}s (see {{l/fileferret|terms/firev}}) * '''Future''': ** We may want to support multiple types of hash, in which case there would be a separate firev_hash table containing the output of each hash-type for each firev hashed. ** not sure if we should be tracking FirstFound and LastFound here. I expect them to be useful, b...", and the only contributor was "Woozle" (...)
  • 15:25, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/file (Moved to another site: content was: "==About== * '''Purpose''': Tracks actual locations of files, and stats which may be different from file to file without affecting the data/content. ===fields=== ===history=== * '''2016-02-27''' Moved many fields to {{l/same|entry}} and replaced them with '''ID_Entry'''. ==SQL== <mysql>CREATE TABLE `file` ( `ID_Entry` INT NOT NULL AUTO_INCREMENT, `ID_Firev` INT...", and the only contributor was "Woozle" ([...)
  • 15:25, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/fideal (Moved to another site: content was: "==About== "{{l/fileferret|terms/fideal|Fideal}}" is short for "ideal file". A fideal represents what the file is supposed to be, e.g. a perfect copy of a particular document or media clip. – i.e. it either ''is'' the original, or it is a perfect copy. ("Original file" might be as good a name, but in some cases the "original" may become corrupted and one of the copies may be...", and the only contributor was "Woozle" (...)
  • 15:24, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/event/entry (Moved to another site: content was: "==About== * '''Purpose''': logs events that relate to {{l/fileferret/sql|entry|directory entries}}. ===Fields=== * '''didSeek''': This entry was found in the filesystem during the ''previous'' scan. * '''didFind''': This entry was found in the filesystem. (didSeek=FALSE, didFind=TRUE: new file found; didSeek=TRUE, didFind=FALSE: file deleted/moved) ==SQL== <mysql>CREATE TABLE `ev...", and the only contributor was "Woozle" (...)
  • 15:24, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/event (Moved to another site: content was: "==About== * '''purpose''': root events table -- all task-specific events tables refer to this one ===fields=== * '''ID_Client''': ID of {{l/same|client}} that generated the event * '''When''': When the event occurred. ** If an event-type has a beginning and end, the auxiliary table for that type may treat '''When''' as "when started" and add a WhenComplete field to indicate when...", and the only contributor was "Woozle" ([...)
  • 15:24, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/entry (Moved to another site: content was: "==About== * '''Purpose''': base table for files, folders, and possibly other types of directory entries ===fields=== * '''ID_Volume''' is the [[../vols|volume]] on which the directory entry appears. ** NULL if volume is unknown -- e.g. we might not know what volume a remote Samba share is on. Not sure if this will be used. * '''Name''' is not the full path, just the entry's f...", and the only contributor was "Woozle" (...)
  • 15:24, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL/client (Moved to another site: content was: "==About== * '''Purpose''': Tracks how each FF client identifies itself to the system. Defaults to machine's netname, but this is not required. ** This is just so each instance of FF knows which machine it is running on, and therefore what volumes that machine can access (and how to do so). * '''History''': ** '''2012-12-25''' Renamed from "machines" to "hosts". ** '''2016-02-27''...", and the only contributor was "Woozle" (...)
  • 15:23, 25 February 2024 Woozle talk contribs deleted page FileFerret/SQL (content was: "==Current== * /client * /entry: directory entry (file, folder, or other) * /event * /file * /firev * /folder * /map - how to access folders which may or may not be local * /volume - storage volumes ==Future Use== * /fideal", and the only contributor was "Woozle" (talk))
  • 00:46, 3 January 2024 Woozle talk contribs moved page xdg-open/notes to xdg-open/how to/add custom protocol without leaving a redirect (reorganizing, now that it's working)
  • 23:36, 2 January 2024 Woozle talk contribs created page cmd/gio/trash (Created page with "* '''Command''': {{l/cmd|gio}} trash [OPTION...] [LOCATION...] * '''Action''': Sends files or directories to the ‘Trashcan’ or restore them from ‘Trashcan’. ==About==...")
  • 23:30, 2 January 2024 Woozle talk contribs created page cmd/gio/set (Created page with "* '''Command''': {{l/cmd|gio}} set {{arg|LOCATION}} {{arg|ATTRIBUTE}} {{arg|VALUE}}... * '''Action''': Sets a file attribute on a file. ==About== File attributes can be specif...")
  • 23:23, 2 January 2024 Woozle talk contribs created page cmd/gio/save (Created page with "* '''Command''': {{l/cmd|gio}} save [{{arg|OPTION}}...] {{arg|DESTINATION}} * '''Action''': Reads from standard input and saves the data to the given location. ==About== This...")
  • 23:11, 2 January 2024 Woozle talk contribs created page cmd/gio/move (Created page with "'''Command''': {{l/cmd|gio}} move [{{arg|OPTION}}...] {{arg|SOURCE}}... {{arg|DESTINATION}} ==About== Moves one or more files from {{arg|SOURCE}} to {{arg|DESTINATION}}. If mo...")
  • 23:06, 2 January 2024 Woozle talk contribs created page cmd/gio/mount (Created page with "'''Command''': {{l/cmd|gio}} mount [OPTION...] [LOCATION...] ==About== Provides commandline access to various aspects of GIO’s mounting functionality. Mounting refers to t...")
  • 22:59, 2 January 2024 Woozle talk contribs created page cmd/gio/monitor (Created page with "'''Command''': {{l/cmd|gio}} monitor [OPTION...] [LOCATION...] ==About== Monitors files or directories for changes, such as creation deletion, content and attribute changes, a...")
  • 22:50, 2 January 2024 Woozle talk contribs created page cmd/gio/list (Created page with "'''Command''': {{l/cmd|gio}} list [OPTION...] [LOCATION...] ==About== Lists the contents of the given locations. If no location is given, the contents of the current director...")
  • 22:44, 2 January 2024 Woozle talk contribs created page cmd/gio/info (Created page with "'''Command''': {{l/cmd|gio}} info [OPTION...] LOCATION... ==About== Shows information about the given locations. Options: {| class="wikitable sortable" |- ! option || descrip...")
  • 22:40, 2 January 2024 Woozle talk contribs created page cmd/gio/copy (Created page with "'''Command''': {{l/cmd|gio}} copy [OPTION...] SOURCE... DESTINATION ==About== Copies one or more files from SOURCE to DESTINATION. If more than one source is specified, the de...")
  • 18:07, 2 January 2024 Woozle talk contribs created page cmd/gio (Created page with "==About== '''gio''' is a command line interface to the GIO subsystem. Commands (incomplete listing): {| class="wikitable sortable" |- ! subcommand || argument(s) || pu...")
  • 16:49, 2 January 2024 Woozle talk contribs created page xdg-open/notes (Created page with "==How To== ===custom protocol=== '''Q:''' How can I add a custom protocol to xdg-open? According to ChatGPT<ref name=chatgpt1 /> (these instructions are either incomplete, in...")
  • 17:59, 1 January 2024 Woozle talk contribs created page xdg-open (Created page with "category:software category:open-source ==About== {{fmt/quote|xdg-open is a command-line utility for opening files and URLs using the default applications as specif...")
  • 20:13, 20 November 2023 Woozle talk contribs created page Discord/101 (Created page with "{{fmt/title|Discord 101|an introduction}} ==About== Discord is a centralized software service which can be accessed on the web or via standalone applications. It's comparable...")
  • 19:34, 20 November 2023 Woozle talk contribs created page Discord/links (split off from main page, to reduce clutter)
  • 19:31, 20 November 2023 Woozle talk contribs created page Discord/notes (split off from main page, to reduce clutter)
  • 13:30, 21 September 2023 Woozle talk contribs created page cmd/ln/bug (Created page with "==2023-09-21== There seems to be a bug in the reporting when a desired link-file already exists. Real-life example: <syntaxhighlight lang=Bash> root@statler ~/dev/git/futilit...")
  • 19:36, 15 September 2023 Woozle talk contribs created page PHP/operator (Created page with "==List== {| class="wikitable sortable" |- ! operator || name || example || meaning || familiarity || docs |- | == || Equal || <syntaxhighlight lang=ph...")
  • 13:27, 16 July 2023 Woozle talk contribs created page PHP/declare (Created page with "{{fmt/title|PHP: declare()}} The [documentation for the <tt>declare()</tt> keyword is somewhat scattered. The [https://www.php.net/manual/en/control-structures.declare.php mai...")
  • 20:35, 2 July 2023 Woozle talk contribs created page Calckey (Created page with "Calckey is a client/server package for the ActivityPub fediverse. ==Notes== * [https://calckey.org/about/#docs documentation] * [https://codeberg.org/calckey/calck...")
  • 02:27, 23 June 2023 Woozle talk contribs created page PHP/string (come back to this later)
  • 13:13, 10 May 2023 Woozle talk contribs created page Git/cherry-pick (Created page with "==Docs== * [https://git-scm.com/docs/git-cherry-pick Git SCM]")
  • 19:38, 29 April 2023 Woozle talk contribs created page The Ready Room (Created page with "category:video series The Ready Room is a series of videos hosted by Wil Wheaton on Paramount Plus's [https://www.youtube.com/@paramountplus YouTube channel]. Unfo...")
  • 16:03, 14 April 2023 Woozle talk contribs created page PHP/ReflectionClass/getParentClass (Created page with "{{fmt/title|ReflectionClass::getParentClass()}} As of 2023-04-14 [https://www.php.net/manual/en/reflectionclass.getparentclass.php the official documentation] says {{fmt/quote...")
  • 19:15, 8 April 2023 Woozle talk contribs created page PHP/enum (Created page with "{{fmt/title|PHP enum support}} ==Methods== {| class="wikitable sortable" |- ! method || defined |- | public static [https://www.php.net/manual/en/unitenum.cases.php cases]():...")
  • 13:16, 9 February 2023 Woozle talk contribs created page quantum physics (Created page with "==Notes== * '''2023-02-06''' [https://www.quantamagazine.org/how-our-reality-may-be-a-sum-of-all-possible-realities-20230206/ How Our Reality May Be a Sum of All Possible Real...")
  • 22:14, 8 January 2023 Woozle talk contribs created page File:2023-01-08.bash git prompt.png (category:screenshot category:CLI)
  • 22:14, 8 January 2023 Woozle talk contribs uploaded File:2023-01-08.bash git prompt.png (category:screenshot category:CLI)
  • 22:11, 8 January 2023 Woozle talk contribs created page Git/color prompt (Created page with "To show the status of the current project in the bash prompt, using color, add this to <code>~/.bashrc</code>: <syntaxhighlight lang=bash> parse_git_branch() { git branch...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)