All public logs

From wikinotes

Combined display of all available logs of wikinotes. 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 ( | ) (20 | 50 | 100 | 250 | 500)
  • 16:13, 19 February 2024 Will talk contribs created page Thunderbird addons (Created page with "= Addons = <blockquote> {| class="wikitable" |- | thunderbird cardbook || carddav contacts synchronization |- | thunderbird lightning || calendar |- | thunderbird lightning calendar tabs || |- | thunderbird muttator || vi keybindings within thunderbird |- |} </blockquote><!-- Addons -->")
  • 16:10, 19 February 2024 Will talk contribs created page Thunderbird configuration (Created page with "== TimeZones == <blockquote> Thunderbird does not detect your system timezone. <syntaxhighlight lang="yaml"> - Rclick menubar > Check MenuBar - Edit > Preferences > Calendar: TimeZone: America/Toronto </syntaxhighlight> </blockquote><!-- Timezones -->")
  • 16:09, 19 February 2024 Will talk contribs created page Thunderbird backups (Created page with "= Profiles = <blockquote> Thunderbird stores all of your information in profiles. It is possible to move profiles between computers, and operating systems. == Deleting Profiles == <blockquote> On windows, you can delete your thunderbird settings by deleting the following folder. Note that removing individual components does not seem to work. <syntaxhighlight lang="bash"> C:\Users\will\AppData\Roaming\Thunderbird ~/.thunderbird/ </syntaxhighlight> </blockquote><!-- Dele...")
  • 00:14, 19 February 2024 Will talk contribs created page Space nerds in space (Created page with "Looks fun! A linux game.<br> A multiplayer spaceship bridge simulator. = Documentation = <blockquote> {| class="wikitable" |- | repo || https://github.com/smcameron/space-nerds-in-space |- |} </blockquote><!-- Documentation -->")
  • 00:12, 19 February 2024 Will talk contribs created page Lure (Created page with "A linux distro agnostic repo for building packages from src.<br> Inspired by archlinux AUR = Documentaiton = <blockquote> {| class="wikitable" |- | repo || https://gitea.elara.ws/lure/lure |- |} </blockquote><!-- Documentaiton -->")
  • 14:49, 16 February 2024 Will talk contribs created page Pkl (Created page with "schemas for json, yaml etc https://github.com/apple/pkl")
  • 14:49, 16 February 2024 Will talk contribs created page Cue (Created page with "schemas for json, yaml etc. https://cuelang.org/")
  • 00:31, 16 February 2024 Will talk contribs created page Radio-cli (Created page with "A simple tui to search for and listen to internet radio stations. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/margual56/radio-cli |- |} </blockquote><!-- Documentation --> = Install = <blockquote> <syntaxhighlight lang="bash"> aur sync radio-cli-bin sudo pacman -S radio-cli-bin </syntaxhighlight> </blockquote><!-- Install --> = Usage = <blockquote> <syntaxhighlight lang="bash"> radio-cli </syntaxhighlight> </blockquote><!-- Us...")
  • 20:32, 15 February 2024 Will talk contribs created page Javascript preact (Created page with "= Documentation = <blockquote> {| class="wikitable" |- | home || https://preactjs.com/ |- |} </blockquote><!-- documentation -->")
  • 23:10, 14 February 2024 Will talk contribs created page Python packaging (Created page with "= Documentation = <blockquote> {| class="wikitable" |- | pypi (package index) || https://pypi.org/search/ |- |} </blockquote><!-- Documentation --> = Packaging Systems = <blockquote> There have been a few packaging systems for python over the years.<br> Here's a few that I've tried {| class="wikitable" |- | python pyproject.toml |- | python setuptools |- | python setup.cfg |- |} </blockquote><!-- Packaging Systems -->")
  • 22:49, 13 February 2024 Will talk contribs created page VimPlugin: indent-blankline (Created page with "A neovim specific plugin that marks the indentation lines.<br> When treesitter is enabled, it can also highlight the innermost scope. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/lukas-reineke/indent-blankline.nvim |- |} </blockquote><!-- Documentation -->")
  • 21:03, 11 February 2024 Will talk contribs created page Lua operators (Created page with "= Operator Overloading = <blockquote> Every object type in lua has a lua metatable.<br> The metatable can define custom methods like <code>__add</code> to perform addition. </blockquote><!-- Operator Overloading -->")
  • 20:57, 11 February 2024 Will talk contribs created page Lua errors (Created page with "lua errors are essentially untyped exceptions.<br> errors couple an embedded error object, with stack info.<br> lua itself returns errors with string error objects.<br> programs may bind any object as the error object.")
  • 20:42, 11 February 2024 Will talk contribs created page Lua datatypes (Created page with "= Documentation = <blockquote> {| class="wikitable" |- | |- |} </blockquote><!-- Documentation --> = Primitives = <blockquote> == Nil == <blockquote> * <code>nil</code> is the absence of a value * <code>nil</code> within a table represents an absent key <syntaxhighlight lang="lua"> nil </syntaxhighlight> </blockquote><!-- Nil --> == Boolean == <blockquote> <syntaxhighlight lang="lua"> true false </syntaxhighlight> </blockquote><!-- Boolean --> == Number == <blockquot...")
  • 20:27, 11 February 2024 Will talk contribs created page Lua (Created page with "= Documentation = <blockquote> {| class="wikitable" |- | |- |} </blockquote><!-- Documentation --> = Intro/Reference = <blockquote> {| class="wikitable" |- | lua anatomy |- | lua toolchains |- | lua packaging |- |} </blockquote><!-- Intro/Reference --> = Libraries = <blockquote> {| class="wikitable" |- | lua libraries |- |} </blockquote><!-- Libraries --> = Concepts = <blockquote> {| class="wikitable" |- | |- |} </blockquote><!-- Concepts --> = Syntax...")
  • 23:37, 10 February 2024 Will talk contribs created page Zsh plugin: zsh-easy-motion (Created page with "vim's easy-motion plugin ported to your zsh commandline = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/IngoMeyer441/zsh-easy-motion |- |} </blockquote><!-- Documentation --> = Install = <blockquote> Install using zsh antigen </blockquote><!-- Install --> = Configuration = <blockquote> <syntaxhighlight lang="zsh"> # ~/.zshrc bindkey -M vicmd ' ' vi-easy-motion </syntaxhighlight> </blockquote><!-- Configuration -->")
  • 17:02, 10 February 2024 Will talk contribs created page VimPlugin: lightline (Created page with "lightweight viml powerline clone w/ api for hooking other plugin info. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/itchyny/lightline.vim |- |} </blockquote><!-- documentation -->")
  • 15:50, 10 February 2024 Will talk contribs created page Vim shell (Created page with "You can interact with the commandline from vim's command mode. = Piping to Commandline = <blockquote> <source lang="vim"> :w !sh " execute the current file using /bin/sh :w !less " pipe entire file to less :'<,'>!less " pipe visual-selection to less system('xclip', @") " pipe register '@"' to xclip executable's stdin " pipe register '@"' to xclip (preserving NULLs if binary data) let formatted = getreg('r', 0, 1) + (getregtype('r') isnot# 'v' ? [''] : [])...")
  • 00:26, 10 February 2024 Will talk contribs created page Vim profiling (Created page with "<source lang="vim"> :profile start profile.log :profile func * :profile file * " At this point do slow actions :profile pause :noautocmd qall! </source>")
  • 16:08, 7 February 2024 Will talk contribs created page Ruby rails: dates and times (Created page with "= timezones = <blockquote> <source lang="ruby"> tzinfo = ActiveSupport::TimeZone.find_tzinfo("America/Toronto") timezone = ActiveSupport::TimeZone.new(tzinfo) Time.parse("1970-01-01T10:00:00Z").in_timezone(timezone) </source> </blockquote><!-- timezones -->")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)