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