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 20 | ) (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 -->")
(newest | oldest) View (newer 20 | ) (20 | 50 | 100 | 250 | 500)