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 (newer 100 | ) (20 | 50 | 100 | 250 | 500)
  • 21:37, 18 May 2024 Will talk contribs created page Quadlet syntax (Created page with "= Overview = <blockquote> <syntaxhighlight lang="yaml"> # ~/.config/containers/systemd/${name}.${ext} # systemd unitfile generator files *.container: for a single container # podman run *.kube: from kubernetes yaml files using # podman kube play *.pod: for a single pod within kubernetes yaml files # ? is this correct? *.yml: a kubernetes yaml file # resources *.image: ensures a docker image is pulled *.network:...")
  • 21:36, 18 May 2024 Will talk contribs created page Quadlet usage (Created page with "= Overview = <blockquote> While quadlet is technically an executable, it's designed to work with systemd commands directly. After adding your files to <code>~/.config/containers/systemd/*</code> or <code>/etc/containers/systemd/*</code>,<br> you can run daemon-reload and your generated systemd services will be made available. TL;DR <syntaxhighlight lang="bash"> mkdir -p /etc/containers/systemd cp foo.container /etc/containers/systemd/ systemctl daemon-reload...")
  • 21:30, 18 May 2024 Will talk contribs created page Quadlet install (Created page with "quadlet is installed automatically with podman.")
  • 20:30, 18 May 2024 Will talk contribs created page Quadlet example: single container with volume (Created page with "= 1. Configurations = <blockquote> First, add the configs: == ntfy.container == <blockquote> <syntaxhighlight lang="systemd"> # ~/.config/containers/systemd/ntfy.container # vim: ft=systemd [Install] WantedBy=default.target [Container] # https://hub.docker.com/r/binwiederhier/ntfy/tags Image=docker.io/binwiederhier/ntfy:2.11.0 Volume=ntfy.volume:/etc/ntfy Environment=TZ=UTC PublishPort=127.0.0.1:9800:80 EntryPoint=["ntfy", "serve"] </syntaxhighlight> </blockquote><!--...")
  • 17:49, 18 May 2024 Will talk contribs created page Jquery selectors (Created page with "= Documentation = <blockquote> {| class="wikitable" |- | official docs || https://api.jquery.com/category/selectors/ |- |} </blockquote><!-- Documentation --> = Examples = <blockquote> <syntaxhighlight lang="javascript"> $("#element-id") $('div .some-class[some-attr="foo"]') </syntaxhighlight> </blockquote><!-- Examples -->")
  • 00:05, 16 May 2024 Will talk contribs created page Ntfy configuration (Created page with "A self hosted pub/sub server wtih a FOSS app (iOS/android) that will issue push notifications. = Documentation = <blockquote> {| class="wikitable" |- | official docs || https://docs.ntfy.sh/ |- | sample config || https://github.com/binwiederhier/ntfy/blob/main/server/server.yml |- |} </blockquote><!-- Documentation --> = Locations = <blockquote> {| class="wikitable" |- | <code>${PREFIX}/etc/ntfy/server.yml</code> || config |- |} </blockquote><!-- Locations -->")
  • 00:04, 16 May 2024 Will talk contribs created page Ntfy usage (Created page with "= Usage = <blockquote> <syntaxhighlight lang="bash"> curl \ -d "Backup successful 😀" \ ntfy.sh/mytopic </syntaxhighlight> </blockquote><!-- Usage -->")
  • 00:04, 16 May 2024 Will talk contribs created page Ntfy install (Created page with " = FreeBSD = <blockquote> <syntaxhighlight lang="bash"> pkg install ntfy # FreeBSD </syntaxhighlight> NOTE: doesn't ship with a service </blockquote><!-- FreeBSD -->")
  • 22:18, 12 May 2024 Will talk contribs created page Scala anatomy (Created page with "Scala cli allows you to skip some legwork. = Examples = <blockquote> == Helloworld == <blockquote> === scala === <blockquote> <syntaxhighlight lang="scala"> object Hello { def main(args: Array[String]) = { println("Hello, world") } } </syntaxhighlight> <syntaxhighlight lang="bash"> scala helloworld # build and run </syntaxhighlight> </blockquote><!-- scala --> === scala-cli === <blockquote> <syntaxhighlight lang="scala"> #!/usr/bin/env -S scala-cli sh...")
  • 21:56, 12 May 2024 Will talk contribs created page Make conditionals (Created page with "= Documentation = <blockquote> {| class="wikitable" |- | official docs || https://www.gnu.org/software/make/manual/html_node/Conditional-Syntax.html |- |} </blockquote><!-- Documentation --> = if statement = <blockquote> Make conditionals are not indented. <syntaxhighlight lang="make"> install: ifdef PKG @echo PKG envvar was assigned! else ifdef GRP @echo GRP envvar was assigned! else @echo neither PKG nor GRP were assigned! endif </syntaxhighlight> <syntax...")
  • 21:51, 12 May 2024 Will talk contribs created page Make syntax (Created page with "= Syntax = <blockquote> {| |- | make conditionals |- |} </blockquote><!-- Syntax -->")
  • 21:12, 12 May 2024 Will talk contribs created page Scala install (Created page with "= Archlinux = <blockquote> <syntaxhighlight lang="bash"> aur sync scala </syntaxhighlight> </blockquote><!-- Archlinux -->")
  • 21:11, 12 May 2024 Will talk contribs created page Scala (Created page with "scala is a strongly typed compiled functional language, that can also be run in an interpreter. = Documentation = <blockquote> {| class="wikitable" |- | |- |} </blockquote><!-- Documentation --> = Intro/Reference = <blockquote> {| class="wikitable" |- | scala install |- |} </blockquote><!-- Intro/Reference -->")
  • 17:00, 12 May 2024 Will talk contribs created page Refind ext: reboot to os (Created page with "Here's a set of scripts that lets you choose which OS to reboot to. https://gist.github.com/Darkhogg/82a651f40f835196df3b1bd1362f5b8c")
  • 17:48, 11 May 2024 Will talk contribs created page Chatgpt (Created page with "Apparently API access requires a monthly subscription of 20$USD/mo.")
  • 15:27, 11 May 2024 Will talk contribs created page Chatgpt-cli (Created page with "A golang interface for chatgpt. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/kardolus/chatgpt-cli?tab=readme-ov-file#installation |- |} </blockquote><!-- Documentation --> = Locations = <blockquote> {| class="wikitable" |- | <code>~/.chatgpt-cli/config.yaml</code> || config |- |} </blockquote><!-- Locations --> = Install = <blockquote> <syntaxhighlight lang="bash"> aur sync chatgpt-cli-git </syntaxhighlight> </blockquote><!-- I...")
  • 15:18, 11 May 2024 Will talk contribs created page Programs: ai (Created page with "= CLI interfaces = <blockquote> {| class="wikitable" |- | chatgpt-cli |- |} </blockquote><!-- CLI interfaces -->")
  • 22:18, 5 May 2024 Will talk contribs created page Archlinux package management strategies (Created page with "The painful parts of arch are mostly related to libraries: * python updates take a while to reach all packages (so they get installed to the wrong site-packages) * libva updates may be too new for makemkv etc * qt updates are sometimes problematic as well To mitigate this, I've been exposing old versions of the libraries to my package-repo * ex. installing python-311 when python-3.12 became default")
  • 18:10, 5 May 2024 Will talk contribs created page Quadlet (Created page with "Quadlet is a tool for generating systemd services from podman containers. {{ TODO | can you also run podman-compose projects this way? }} = Documentation = <blockquote> {| class="wikitable" |- | src || https://github.com/containers/podman/tree/main/pkg/systemd/quadlet |- |} </blockquote><!-- Documentation -->")
  • 15:11, 27 April 2024 Will talk contribs created page Metaflac (Created page with "Edit flac file music tags from the commandline. = Usage = <blockquote> <syntaxhighlight lang="bash"> metaflac '--set-tag=NAME=VALUE' foo.flac </syntaxhighlight> </blockquote><!-- Usage -->")
  • 00:48, 11 April 2024 Will talk contribs created page Pdftk (Created page with "= Install = <blockquote> <syntaxhighlight lang="bash"> pacman -S pdftk </syntaxhighlight> </blockquote><!-- Install --> = Usage = <blockquote> == Add password to pdf == <blockquote> <syntaxhighlight lang="bash"> pdftk in.pdf \ output out.pdf \ userpw your-password </syntaxhighlight> </blockquote><!-- Add password to pdf --> </blockquote><!-- Usage -->")
  • 13:39, 10 April 2024 Will talk contribs created page Zsh-async (Created page with "A library for running async jobs in your shell. = Documentation = <blockquote> {| class="wikitable" | github || https://github.com/mafredri/zsh-async |} </blockquote><!-- Documentation -->")
  • 13:38, 10 April 2024 Will talk contribs created page Programs: zsh libraries (Created page with " = Async = <blockquote> {| | zsh-async |} </blockquote><!-- async -->")
  • 16:36, 7 April 2024 Will talk contribs created page Recipe: Soda Bread (Created page with "= Ingredients = <blockquote> <syntaxhighlight lang="yaml"> - self-raising flour - soda water - butter </syntaxhighlight> </blockquote><!-- Ingredients --> = Tools = <blockquote> <syntaxhighlight lang="yaml"> - mixing bowl - bread pan </syntaxhighlight> </blockquote><!-- Tools --> = Directions = <blockquote> <syntaxhighlight lang="yaml"> - preheat oven to 375*F - grease the inside of the breadpan with butter - Add flour to mixing bowl - Gradually add soda water, kneadin...")
  • 16:19, 7 April 2024 Will talk contribs created page Noto-fonts (Created page with "google's emoji font. = Install = <blockquote> <syntaxhighlight lang="bash"> pacman -S \ noto-fonts \ noto-fonts-extra </syntaxhighlight> </blockquote><!-- Install -->")
  • 00:11, 6 April 2024 Will talk contribs created page Poppler-utils (Created page with "= Install = <blockquote> <syntaxhighlight lang="bash"> pacman -S poppler </syntaxhighlight> </blockquote><!-- Install --> = Remove password from pdf = <blockquote> <syntaxhighlight lang="bash"> pdftops -upw <yourpassword> <path-to-protected-filename>.pdf <path-to-newfilename>.pdf </syntaxhighlight> </blockquote><!-- Remove password from pdf -->")
  • 01:42, 10 March 2024 Will talk contribs created page Samsung UN43J5200AF (Created page with "= Disable Adaptive Brightness = <blockquote> So far I've still been unable to do this successfully <syntaxhighlight lang="yaml"> Picture: Picture Mode: Standard Advanced Settings: Dynamic Contrast: OFF Black Tone: OFF RGB Only Mode: OFF Color Space: NATIVE Motion Lighting: OFF Picture Options: Color Tone: STANDARD Digital Clean View: OFF MPEG Noise Filter: OFF HDMI Black Level: LOW LED Clear Motion: OFF...")
  • 03:18, 27 February 2024 Will talk contribs created page Cloudflare (Created page with "= Tutorials = <blockquote> {| class="wikitable" |- | cloudflare free-tier tunnel homeserver || https://habet.dev/blog/self-hosting-and-securing-web-services-out-of-your-home-with-cloudflare-tunnel/ |- |} </blockquote><!-- Tutorials -->")
  • 18:38, 24 February 2024 Will talk contribs created page Nextcloud (Created page with "nextcloud rolls several business apps into one. * mail * contacts * calendar * chat * video conferencing = Documentation = <blockquote> {| class="wikitable" |- | official docs || https://docs.nextcloud.com/ |- |} </blockquote><!-- Documentation -->")
  • 15:01, 24 February 2024 Will talk contribs created page Pantheon (Created page with "Pantheon is elementary OS's suite of WM, calendar, calculator, .. etc.<br> It's components can be installed and used independently. = Documentation = <blockquote> {| class="wikitable" |- | |- |} </blockquote><!-- Documentation --> = Applications = <blockquote> == Calendar / Notifications == <blockquote> <syntaxhighlight lang="bash"> pacman -S pantheon-calendar # the 'maya' calendar pacman -S wingpanel-indicator-datetime # the clock/calendar widget </syntaxhi...")
  • 14:49, 24 February 2024 Will talk contribs created page Focal (Created page with "A lightweight caldav supporting calendar program. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/ohwgiles/focal |- |} </blockquote><!-- Documentation -->")
  • 23:35, 23 February 2024 Will talk contribs created page NvimPlugin: telescope (Created page with "Extendable search. Can be powered by fzf. <source lang="vim"> :Telescope lsp_workspace_symbols query=Foo::Bar::Baz </source>")
  • 01:52, 22 February 2024 Will talk contribs created page Nvim plug: nvim-ufo (Created page with "A plugin for neovim that allows syntaxhighlighting within folds. {{ NOTE | this does not appear to respect my custom fold treesitter-queries }} = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/kevinhwang91/nvim-ufo |- |} </blockquote><!-- Documentation --> = Troubleshooting = <blockquote> == Code keeps folding on save or exiting insert mode == <blockquote> '''TL;DR''' return <code>''</code> for that language's provider-selector. Se...")
  • 16:50, 19 February 2024 Will talk contribs created page Sc-im (Created page with "A cli spreadsheet editor.<<br> An improved fork of <code>sc</code>. Supports: * .sc * .csv * .tsv * .md * .txt Imports from: * .ods * .xls * .xlsx = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/andmarti1424/sc-im |- |} </blockquote><!-- Documentation --> = Tutorials = <blockquote> {| class="wikitable" |- | gentoo wiki || https://wiki.gentoo.org/wiki/Sc-im |- |} </blockquote><!-- Tutorials --> = Locations = <blockquote> {| class...")
  • 16:22, 19 February 2024 Will talk contribs created page Aerc (Created page with "A terminal mail client. = Documentation = <blockquote> {| class="wikitable" |- | home || https://aerc-mail.org/ |- |} </blockquote><!-- Documentation -->")
  • 16:19, 19 February 2024 Will talk contribs created page Thunderbird lightning (Created page with "A calendar addon for thunderbird.<br> Supports CalDav synchronization.<br> I think this may ship with thunderbird now.. = Documentation = <blockquote> {| class="wikitable" |- | addon || ? |- |} </blockquote><!-- Documentation --> = Configuration = <blockquote> == Sync CalDAV == <blockquote> <syntaxhighlight lang="yaml"> # Thunderbird Lightning - Calendar Icon: # Square with '7' beneat minimize button - Calendar Dropdown > Rclick > New Calendar: - On the Net...")
  • 16:17, 19 February 2024 Will talk contribs created page Thunderbird lightning calendar tabs (Created page with "Displays quick navigation links between time periods in thunderbird lightning. = Documentation = <blockquote> {| class="wikitable" |- | addon || https://addons.thunderbird.net/en-US/thunderbird/addon/lightning-calendar-tabs/?src=ss |- |} </blockquote><!-- Documentation -->")
  • 16:15, 19 February 2024 Will talk contribs created page Thunderbird cardbook (Created page with "CardDav and vcard contact synchronization = Documentation = <blockquote> {| class="wikitable" |- | addon || https://addons.thunderbird.net/en-US/thunderbird/addon/cardbook/ |- |} </blockquote><!-- Documentation --> = Configuration = <blockquote> <syntaxhighlight lang="bash"> # Install thunderbid addon: cardbook # Tools > CardBook # Address Books > Add Address Book # - Remote # # - Type: CardDav # - URL: http://lavos.ddns.net:8614/card.php/...")
  • 16:14, 19 February 2024 Will talk contribs created page Thunderbird muttator (Created page with "vi-keybindings for thunderbird = Documentation = <blockquote> {| class="wikitable" |- | home || https://addons.thunderbird.net/en-US/thunderbird/addon/muttator/ |- |} </blockquote><!-- Documentation -->")
  • 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 -->")
  • 02:45, 2 February 2024 Will talk contribs created page Refind setup (Created page with "<syntaxhighlight lang="bash"> refind-install # replaces systemd-boot, automatically finds EFI stubs </syntaxhighlight> You'll need to re-run refind-install on refind updates.<br> This will do it automatically. <syntaxhighlight lang="bash"> # /etc/pacman.d/hooks/refind.hook [Trigger] Operation=Upgrade Type=Package Target=refind [Action] Description = Updating rEFInd on ESP When=PostTransaction Exec=/usr/bin/refind-install </syntaxhighlight>")
  • 02:44, 2 February 2024 Will talk contribs created page Refind configuration (Created page with " = Documentation = <blockquote> {| class="wikitable" |- | official docs: configuration || http://www.rodsbooks.com/refind/configfile.html |- |} </blockquote><!-- Documentation --> = Locations = <blockquote> {| class="wikitable" |- | <code>/boot/EFI/refind/refind.conf</code> || config |- | <code>/boot/EFI/refind/themes/${theme}/*</code> || theme files |- |} </blockquote><!-- Locations --> = Setup = <blockquote> <syntaxhighlight lang="bash"> refind-install # replaces sy...")
  • 02:43, 2 February 2024 Will talk contribs created page Refind install (Created page with "= Archlinux = <blockquote> <syntaxhighlight lang="bash"> pacman -S refind </syntaxhighlight> </blockquote><!-- Archlinux -->")
  • 23:25, 1 February 2024 Will talk contribs created page Tmux plugin: tmux-thumbs (Created page with "Another variation of tmux plugin: tmux-fingers.<br> This one written in rust. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/fcsonline/tmux-thumbs |- |} </blockquote><!-- documentation -->")
  • 15:49, 1 February 2024 Will talk contribs created page Ruby ffast (Created page with "A library and cli tool for searching/matching nodes within ruby's AST. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/jonatas/fast |- |} </blockquote><!-- Documentation --> = Install = <blockquote> <source lang="bash"> gem install ffast </source> </blockquote><!-- install --> = Usage = <blockquote> <source lang="bash"> fast '(const _ _)' some/file.rb </source> </blockquote><!-- usage -->")
  • 15:53, 31 January 2024 Will talk contribs created page VimPlugin: vim bookmarks (Created page with "Store and browse bookmarks in codebase. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/MattesGroeger/vim-bookmarks |- |} </blockquote><!-- documentation --> = Usage = <blockquote> <syntaxhighlight lang="vim"> </source> </blockquote><!-- usage -->")
  • 22:28, 30 January 2024 Will talk contribs created page File:Strained margherita pulp 2.png
  • 22:28, 30 January 2024 Will talk contribs uploaded File:Strained margherita pulp 2.png
  • 22:26, 30 January 2024 Will talk contribs uploaded File:Strained margherita pulp.png
  • 22:26, 30 January 2024 Will talk contribs created page File:Strained margherita pulp.png
  • 22:24, 30 January 2024 Will talk contribs created page File:Finished tacos.png
  • 22:24, 30 January 2024 Will talk contribs uploaded File:Finished tacos.png
  • 22:18, 30 January 2024 Will talk contribs uploaded File:Garnish tacos.png
  • 22:18, 30 January 2024 Will talk contribs created page File:Garnish tacos.png
  • 22:15, 30 January 2024 Will talk contribs created page File:When tortillas are cooked.png
  • 22:15, 30 January 2024 Will talk contribs uploaded File:When tortillas are cooked.png
  • 22:10, 30 January 2024 Will talk contribs uploaded File:Prepare tacos for oven.png
  • 22:10, 30 January 2024 Will talk contribs created page File:Prepare tacos for oven.png
  • 22:01, 30 January 2024 Will talk contribs created page File:Guacamole texture.png
  • 22:01, 30 January 2024 Will talk contribs uploaded File:Guacamole texture.png
  • 21:44, 30 January 2024 Will talk contribs uploaded File:Pico de gallo chopped.png
  • 21:44, 30 January 2024 Will talk contribs created page File:Pico de gallo chopped.png
  • 21:42, 30 January 2024 Will talk contribs created page File:Pico de gallo ingredients.png
  • 21:42, 30 January 2024 Will talk contribs uploaded File:Pico de gallo ingredients.png
  • 21:33, 30 January 2024 Will talk contribs created page Recipe: Fish Tacos (Created page with "= Ingredients = <blockquote> * Recipe: Pico de Gallo * Recipe: Guacamole <syntaxhighlight lang="yaml"> - 1x fish-fielet # 1x person (3-4 tacos) - shredded jack cheese - tortillas - haut sauce </syntaxhighlight> </blockquote><!-- Ingredients --> = Tools = <blockquote> </blockquote><!-- Tools --> = Directions = <blockquote> <syntaxhighlight lang="yaml"> - preheat oven at 400*F - put shredded cheese on tortilla - put protein on tortilla - leave in oven until bl...")
  • 21:29, 30 January 2024 Will talk contribs created page Recipe: Guacamole (Created page with "= Ingredients = <blockquote> <syntaxhighlight lang="yaml"> - 2-3 ripe avocados </syntaxhighlight> Either add 2-3tbsp of Recipe: Pico de Gallo, or <syntaxhighlight lang="yaml"> - 1 clove of garlic - 1 tbsp red pepper - 1 tbsp tomato - 1 tbsp red onion - 1 tbsp lime juice # if avoados are woody, stay low on lime-juice, otherwise increase - salt and pepper to taste </syntaxhighlight> </blockquote><!-- Ingredients --> = Tools = <blockquote> </blockquote><!-- Tools --...")
  • 21:25, 30 January 2024 Will talk contribs created page Recipe: Pico de Gallo (Created page with "= Ingredients = <blockquote> <syntaxhighlight lang="yaml"> - 1 1/2 tomato - 3 cloves of garlic - 1/2 red onion - 1 full red pepper - salt/pepper to taste # 3x shakes or 1/4 tsp each - 3 tsp of lime juice (squeezed or juice) </syntaxhighlight> Optionally <syntaxhighlight lang="yaml"> - mango - jalapeno - cilantro - romaine lettuce or cabbage </syntaxhighlight> </blockquote><!-- Ingredients --> = Tools = <blockquote> </blockquote><!-- Tools --> = Directions = <blockqu...")
  • 03:16, 20 January 2024 Will talk contribs moved page Nfty to Ntfy without leaving a redirect
  • 02:55, 20 January 2024 Will talk contribs created page Nfty (Created page with "A self hosted pub/sub server wtih a complementary FOSS app that will issue push notifications. = Documentation = <blockquote> {| class="wikitable" |- | home || https://ntfy.sh/ |- | github || https://github.com/binwiederhier/ntfy |- | ios app || https://github.com/binwiederhier/ntfy-ios |- | android app || https://play.google.com/store/apps/details?id=io.heckel.ntfy |- |} </blockquote><!-- Documentation --> = Usage = <blockquote> <syntaxhighlight lang="bash"> curl \...")
  • 00:10, 18 January 2024 Will talk contribs created page Rofi-keepassxc (Created page with "dmenu-like access to keepassxc = Install = <blockquote> <syntaxhighlight lang="bash"> aur sync rofi-keepassxc </syntaxhighlight> </blockquote><!-- Install -->")
  • 16:16, 2 January 2024 Will talk contribs created page Smile (Created page with "Smile is a graphical emoji picker for X11. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/mijorus/smile |- |} </blockquote><!-- Documentation --> = Install = <blockquote> <syntaxhighlight lang="bash"> aur sync smile </syntaxhighlight> </blockquote><!-- Install -->")
  • 16:14, 2 January 2024 Will talk contribs created page Fontconfig (Created page with "Provides utils for configuring your font. * fc-list * fc-list ... etc ...")
  • 16:12, 2 January 2024 Will talk contribs created page Programs: text (Created page with "= Fonts = <blockquote> {| class="wikitable" |- | fontconfig |- |} </blockquote><!-- Fonts -->")
  • 23:02, 29 December 2023 Will talk contribs created page Coreutils tee (Created page with "Tee reads from standard input,<br> and writes to a file(s)<br> in addition to the standard output. = Usage = <blockquote> <syntaxhighlight lang="bash"> # write input to multiple files echo foo | tee /out/file1 /out/file2 # pipe input to multiple commands echo foo | tee >(cat /dev/stdin) >(cat /dev/stdin) </syntaxhighlight> </blockquote><!-- Usage -->")
  • 00:36, 29 December 2023 Will talk contribs created page Tt-rss usage (Created page with " = Keybindings = <blockquote> {{ NOTE | Remember in qutebrowser to <code>Ctrl + V</code> to use passthrough mode,<br> so that raw keystrokes are sent to te browser }} == Navigation == <blockquote> <syntaxhighlight lang="yaml"> # feeds j/k # prev/next J/K # prev/next unread # articles c p # mark below as read c n # mark above as read n/p # prev/next article o # open in new window </syntaxhighlight> </blockquote><!-- Navigation --> </blockquote><!-- Keybindings -->")
  • 19:10, 21 December 2023 Will talk contribs created page Recipe: jalapeno margarita (Created page with " = Ingredients = <blockquote> <syntaxhighlight lang="yaml"> - 16oz El jimador tequila-gold or silver - 1x jalapeno sliced - 8oz fresh lime juice - 1tbsp sugar - kosher salt - lime wedges </syntaxhighlight> </blockquote><!-- Ingredients --> = Tools = <blockquote> - blender or food processor - potentially possible with a martini shaker, if marinate overnight (will spice come through?) </blockquote><!-- Tools --> = Directions = <blockquote> <syntaxhighlight lang="yaml"> -...")
  • 03:45, 19 December 2023 Will talk contribs created page Librum reader (Created page with "An ebook reader. Looks nice! = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/Librum-Reader/Librum |- |} </blockquote><!-- Documentation -->")
  • 16:59, 16 December 2023 Will talk contribs created page Yt-dlp (Created page with "Fork of youtube-dl with additional features. = Install = <blockquote> <syntaxhighlight lang="bash"> pkg install yt-dlp pkg install ffmpeg # otherwise videos capped at 720p </syntaxhighlight> </blockquote><!-- Install --> = Usage = <blockquote> <syntaxhighlight lang="bash"> yt-dlp 'https://www.youtube.com/watch?SOME_PLAYLIST' # archive an entire youtube-playlist </syntaxhighlight> </blockquote><!-- Usage -->")
  • 02:35, 30 November 2023 Will talk contribs created page Wintermute 2023 (Created page with "= Specs = <blockquote> <syntaxhighlight lang="yaml"> wintermute: MOBO: Asus ROG STRIX Z790-A Gaming Wifi CPU: Intel Core-i7 14700k CPU-cooler: Deepcool AK400 Series RAM: 32gb (2x 16gb) Corsair Vengeance DDR5 6400Mhz (can go up to 7800Mhz) HDDs: NICs: PSU: corsair RM850e GPU: nvidia RTX-2070 super CASE: Corsair 4000D Airflow </syntaxhighlight> </blockquote><!-- Specs -->")
  • 02:13, 30 November 2023 Will talk contribs created page Golang ez (Created page with "A golang library for error-wrapping. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/Vanclief/ez |- |} </blockquote><!-- Documentation -->")
  • 02:10, 30 November 2023 Will talk contribs created page Golang errtrace (Created page with "Experimental project to trace an error's returnpath through your program.<br> so that you get information about an error's origin. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/bracesdev/errtrace |- |} </blockquote><!-- Documentation -->")
(newest | oldest) View (newer 100 | ) (20 | 50 | 100 | 250 | 500)