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)
  • 00:05, 3 September 2023 Will talk contribs created page Sun Haven (Created page with "A farming game. = Controller Setup = <blockquote> Use <code>KENDRE's SUN HAVEN LAYOUT</code> instead of the officially supported.<br> It does a much better job of binding mouse movements to the controller. </blockquote><!-- Controller Setup -->")
  • 22:50, 2 September 2023 Will talk contribs created page Gocryptfs gec (Created page with "Wrapper for git in gocryptfs encrypted repos. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/impredicative/gec |- | gitee || https://gitee.com/impredicative/gec |- |} </blockquote><!-- Documentation -->")
  • 14:17, 2 September 2023 Will talk contribs created page Windows network (Created page with " = Get current wifi password = <blockquote> <syntaxhighlight lang="yaml"> # https://support.microsoft.com/en-us/windows/find-your-wi-fi-network-password-in-windows-2ec74b2e-d9ec-ade1-cc9b-bef1429cb678 - run: control.exe /name Microsoft.NetworkandSharingCenter - Click your connection - Click Wireless Properties - Security Tab: - Show Characters </syntaxhighlight> </blockquote><!-- Get current wifi password -->")
  • 17:12, 31 August 2023 Will talk contribs created page Gnu ps (Created page with " <source lang="bash"> # show the **current** environment for a pid (more accurate than /proc/${pid}/environ which shows only the STARTING env) ps -xep ${PID} </source>")
  • 21:38, 28 August 2023 Will talk contribs created page Toxiproxy (Created page with "A tool to help test your application for points of failure,<br> by simulating down/bad-network conditions. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/shopify/toxiproxy |- |} </blockquote><!-- Documentation --> = Usage = <blockquote> <source lang="bash"> toxiproxy-cli create \ -l localhost:26379 \ `# proxy` -u localhost:6379 \ `# upstream` my_redis </source> </blockquote><!-- Usage -->")
  • 01:11, 28 August 2023 Will talk contribs created page Steam performance (Created page with "See Also nvidia configuration. = max_map_count = <blockquote> Increase the amount of memory a process is allowed to use. <syntaxhighlight lang="bash"> # see current setting cat /proc/sys/vm/max_map_count # 65530 by default # see all applied settings sudo sysctl --system </syntaxhighlight> <syntaxhighlight lang="bash"> # /usr/lib/sysctl.d/99-vm-max_map_count.conf # 512 * 1024 (choose based on hardware) # I've seen higher amounts listed online as well vm.max_map_c...")
  • 01:05, 28 August 2023 Will talk contribs moved page Steam programming to Steam configuration without leaving a redirect
  • 21:38, 27 August 2023 Will talk contribs created page Steamtinkerlaunch (Created page with "shellscripts to shoehorn reshades and various mod managers into steam on linux = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/sonic2kk/steamtinkerlaunch |- |} </blockquote><!-- Documentation -->")
  • 19:47, 27 August 2023 Will talk contribs created page Gvim (Created page with "A graphical interface for vim.")
  • 19:31, 27 August 2023 Will talk contribs created page Salt (Redirected page to Saltstack) Tag: New redirect
  • 19:29, 27 August 2023 Will talk contribs moved page Salt to Salt game without leaving a redirect
  • 19:22, 27 August 2023 Will talk contribs created page Batch arguments (Created page with "= Arguments = <blockquote> Arguments to a batch-script are accessible as <code>%1</code> to <code>%9</code>.<br> The script itself is <code>%0</code><br> To repeat all params passed to the script, <code>%*</code>. </blockquote><!-- Arguments -->")
  • 17:22, 27 August 2023 Will talk contribs created page Git platform notes (Created page with " = Windows = <blockquote> == git-bash == <blockquote> === Overview === <blockquote> git-bash is an msys2 based environment that ships with enough tools to get productive with git on windows.<br> It includes some common unix tools like: * vim * find-utils * coreutils * linux-utils It runs in the mintty terminal, which is customizable. </blockquote><!-- Overview --> === Adding tmux === <blockquote> You could compiles tmux, or install it to another msys2 envi...")
  • 16:03, 27 August 2023 Will talk contribs created page Gnu column (Created page with "Part of utils-linux, aligns text into columns based on a delimiter = Usage = <blockquote> <syntaxhighlight lang="bash"> # align into columns by whitespace cat << EOF | column -t mediawiki: https://website.com/mediawiki game: https://website.com/game/home EOF # align into columns by delimiter ',' cat << EOF | column -t -s ',' fiona, 6 mom, 22 alex, 7 EOF </syntaxhighlight> </blockquote><!-- Usage -->")
  • 03:12, 27 August 2023 Will talk contribs created page Ascii art (Created page with "= Inline = <blockquote> == Faces == <blockquote> <pre> =^_^= \_(-_-)_/ (=____=) = _ = <(^_^)> (x_x) </pre> </blockquote><!-- Faces --> </blockquote><!-- Inline --> = Complex = <blockquote> == Game Controllers == <blockquote> === PS2 Controller === <blockquote> <pre> _=====_ _=====_ / _____ \ / _____ \ +.-'_____'-.---------------------------.-'_____'-.+ / | | '. S O N Y .'...")
  • 02:35, 27 August 2023 Will talk contribs created page Palia (Created page with "A farming game.")
  • 00:53, 27 August 2023 Will talk contribs created page Xone (Created page with "A driver for the xbox one acessories (including microsoft wireless dongle).<br> Apparently, more modern than xow. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/medusalix/xone |- |} </blockquote><!-- Documentation --> = Install = <blockquote> <syntaxhighlight lang="bash"> sudo aura -A xone-dkms </syntaxhighlight> </blockquote><!-- Install --> = Setup = <blockquote> </blockquote><!-- Setup -->")
  • 20:47, 26 August 2023 Will talk contribs created page Gnu comm (Created page with "<code>comm</code> lets you operate on differences between two files.<br> ex. * only lines that appear in file1 * only lines that appear in file2 * only lines that appear in both file1 and file2 = Usage = <blockquote> <syntaxhighlight lang="bash"> comm -1 file1.txt file2.txt # only lines unique to first file comm -2 file1.txt file2.txt # only lines unique to second file comm -3 file1.txt file2.txt # only lines shared by both first/second file </syntaxhighlight> </blo...")
  • 01:55, 26 August 2023 Will talk contribs created page Rofi (Created page with "Window-switcher, dialog-runner, dmenu alternative. = Install = <blockquote> <syntaxhighlight lang="bash"> sudo pacman -S rofi </syntaxhighlight> </blockquote><!-- Install -->")
  • 01:18, 26 August 2023 Will talk contribs created page Monica (Created page with "Monica is CRM software built for remembering personal details.<br> {{ NOTE | They are working towards a new codebase '''chandler''', but it is still pre-release. }} = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/monicahq/monica |- |} </blockquote><!-- Documentation -->")
  • 01:12, 26 August 2023 Will talk contribs created page Corteza (Created page with "Corteza is low-code CRM software written in go. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/cortezaproject/corteza |- |} </blockquote><!-- Documentation -->")
  • 01:18, 12 August 2023 Will talk contribs created page Pacman aurutils (Created page with "scripts for working with aur, sharing built packages over local network. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/AladW/aurutils |- |} </blockquote><!-- Documentation -->")
  • 00:06, 11 August 2023 Will talk contribs created page Cheese (Created page with "Cheese lets you capture videos, images from a webcam. = Documentation = <blockquote> {| class="wikitable" |- | home || https://wiki.gnome.org/Apps/Cheese |- |} </blockquote><!-- Documentation --> = Locations = <blockquote> {| class="wikitable" |- | <code>~/Pictures/Webcam/*.jpg</code> || images saved here |- |} </blockquote><!-- Locations --> = Usage = <blockquote> <syntaxhighlight lang="bash"> cheese # starts program </syntaxhighlight> </blockquote><!-- Usage -->")
  • 00:53, 8 August 2023 Will talk contribs created page Emacs: simpleclip (Created page with "Simplified access to system clipboard in emacs. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/rolandwalker/simpleclip |- |} </blockquote><!-- Documentation -->")
  • 18:32, 29 July 2023 Will talk contribs created page VimPlugin: vim-matchup (Created page with "highlight and navigate between various language open/close syntax. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/andymass/vim-matchup |- |} </blockquote><!-- Documentation -->")
  • 01:25, 29 July 2023 Will talk contribs created page Zeitwerk outside of rails (Created page with "= In Gems = <blockquote> == initializing zeitwerk== <blockquote> <syntaxhighlight lang="ruby"> # my-project/lib/my_project.rb # load gems that may not load otherwise (ex.) require "sorbet-runtime" require "active_support/all" # load zeitwerk require "zeitwerk" loader = Zeitwerk::Loader.for_gem loader.enable_reloading loader.setup loader.eager_load # define your root module module MyProject end </syntaxhighlight> </blockquote><!-- initializing zeitwerk--> == console s...")
  • 01:16, 29 July 2023 Will talk contribs moved page Ruby zeitworks to Ruby zeitwerk without leaving a redirect
  • 01:14, 29 July 2023 Will talk contribs created page Sorbet syntax (Created page with "The docs for sorbet are really, really good.<br> I'd probably just go there. = Basics = <blockquote> <source lang="ruby"> # person.rb class Person def create(name:, age:, object:); end def speak; "foo"; end end </source> = Common Cases = <blockquote> == attr_reader/writer/accessor == <blockquote> <source lang="ruby"> sig { returns(String) } attr_reader :name </source> </blockquote><!-- attr_reader/writer/accessor --> == include module == <blockquote> {| class="wi...")
  • 01:11, 29 July 2023 Will talk contribs created page Sorbet confguration (Created page with "= Locations = <blockquote> {| class="wikitable" |- | <code>sorbet/config</code> || config |- | <code>sorbet/rbi/shims/*.rbi</code> || add your own custom stubs |- |} </blockquote><!-- Locations --> = Shims = <blockquote> In addition to ruby tapioca, you can write your own shims for your code.<br> Simply add whatever methods you want sorbet to know about.<br> Optionally add sigs to them. </blockquote><!-- Shims --> = Disable sorbet-runtime = <blockquote> You may w...")
  • 01:07, 29 July 2023 Will talk contribs created page Sorbet usage (Created page with " * sorbet-runtime runs with your code * sorbet-static reads your code without evaluating it = Commandline = <blockquote> Static typechecking <source lang="bash"> bundle exec srb tc --help 2>&1 | less -Ri # show help in less bundle exec srb tc 2>&1 | grep -C5 ClassICareAbout # check for errors in specific class </source> </blockquote><!-- Commandline --> = Code = <blockquote> Within your code, syntax is provided by <code>sorbet-runtime</code>. <syntaxhighlig...")
  • 01:14, 27 July 2023 Will talk contribs created page Programming: Language Servers (LSP) (Created page with "= Implementations = <blockquote> {| class="wikinotes" |- | index implementation || https://www.youtube.com/watch?v=ks3tQojSJLU |- |} </blockquote><!-- impelementations -->")
  • 19:06, 25 July 2023 Will talk contribs created page Ruby filesystem (Created page with "= Tempfiles = <blockquote> <source lang="ruby"> Dir.mktmpdir("some_prefix_") do |dirpath| # ... end Tempfile.create("some_prefix_") do |fd| fd.write("hello") end </source> </blockquote><!-- Tempfiles -->")
  • 15:21, 20 July 2023 Will talk contribs created page Portainer (Created page with "A web-UI for docker containers. = Documentation = <blockquote> {| class="wikitable" |- | home || https://www.portainer.io/ |- |} </blockquote><!-- Documentation -->")
  • 23:41, 13 July 2023 Will talk contribs created page Ruby parser (Created page with "An AST parser for ruby, in ruby https://github.com/whitequark/parser")
  • 23:41, 13 July 2023 Will talk contribs created page Ruby rubocop-ast (Created page with "A DSL for ruby parser that simplifies matching AST nodes. = Documentation = <blockquote> {| |- | All AST nodes || https://github.com/rubocop/rubocop-ast/blob/master/docs/modules/ROOT/pages/node_types.adoc |- | official docs || https://docs.rubocop.org/rubocop-ast/ |- |} </blockquote><!-- documentation -->")
  • 14:43, 8 July 2023 Will talk contribs created page VimPlugin: surround (Created page with "Add/Change/Remove markers/tags around text-objects (ex. quotes, html elements, parentheses, ..) = Documentation = <blockquote> {| class="wikitable" |- | repo || https://github.com/tpope/vim-surround |- |} </blockquote><!-- Documentation -->")
  • 18:13, 3 July 2023 Will talk contribs created page Golang echo (Created page with "A minimalist web-server, that is similar to python flask.<br> Some notable features: * middleware * routing * tmeplates = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/labstack/echo |- | official docs || https://echo.labstack.com/guide/ |- |} </blockquote><!-- Documentation -->")
  • 01:36, 25 June 2023 Will talk contribs created page Emacs: neotree (Created page with "A filetree, inspired by VimPlugin: NERDTree. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/jaypei/emacs-neotree |- |} </blockquote><!-- Documentation --> = Configuration = <blockquote> <syntaxhighlight lang="elisp"> (use-package neotree :ensure t) (global-set-key [f3] 'neotree-toggle) </syntaxhighlight> </blockquote><!-- Configuration -->")
  • 01:28, 25 June 2023 Will talk contribs created page Emacs: fzf (Created page with "An emacs plugin that wraps fzf. = Install = <blockquote> <syntaxhighlight lang="lisp"> ;; auto-install fzf (use-package fzf :ensure t) </syntaxhighlight> </blockquote><!-- Install --> = Configuration = <blockquote> <syntaxhighlight lang="elisp"> ;; bind to 'C-t' in evil-mode (define-key evil-normal-state-map (kbd "C-t") 'fzf-find-file) </syntaxhighlight> </blockquote><!-- Configuration -->")
  • 01:01, 25 June 2023 Will talk contribs created page Emacs melpa (Created page with "MELPA is a package index for emacs. = Documentation = <blockquote> {| class="wikitable" |- | getting started || https://melpa.org/#/getting-started |- |} </blockquote><!-- Documentation -->")
  • 01:14, 14 June 2023 Will talk contribs created page Pacman pacredir (Created page with "share pacman packages over local network.<br> Appears to be built overtop of pacman pacredir. = Documentation = <blockquote> {| class="wikitable" |- | repo || https://github.com/eworm-de/pacredir |- |} </blockquote><!-- Documentation --> = Ports = <blockquote> {| class="wikitable" |- | <code>TCP:7078</code> || pacredir coordinates this way |- |} </blockquote><!-- Ports --> = Install = <blockquote> <syntaxhighlight lang="bash"> pacman -S pacredir </syntaxhighlight>...")
  • 15:39, 11 June 2023 Will talk contribs created page Pacman pacserve (Created page with "Share downloaded pacman packages over local network. = Documentation = <blockquote> {| class="wikitable" |- | repo || https://xyne.dev/projects/pacserve/ |- |} </blockquote><!-- Documentation --> = Install = <blockquote> <syntaxhighlight lang="bash"> </syntaxhighlight> </blockquote><!-- Install -->")
  • 17:17, 10 June 2023 Will talk contribs created page Influxdb concepts (Created page with " = Timeseries Data = <blockquote> Influxdb deals with timeseries data.<br> Any data with a timestamp is timeseries data. * datapoints at random intervals are '''events''' (ex. set temp at noon, 4pm, 4:30, 9pm) * '''metrics''' sample '''events''' at regular intervals (ex. check temp every n min) </blockquote><!-- Timeseries Data --> = Components = <blockquote> <syntaxhighlight lang="yaml"> bucket: # a bucket contains multiple measurements. is where data is store...")
  • 22:59, 2 June 2023 Will talk contribs created page Bluebubbles (Created page with "An imessage client for linux, android, linux.<br> Very neat, needs a macos-or-vm for install though. = Documentation = <blockquote> {| class="wikitable" |- | home || https://bluebubbles.app/ |- |} </blockquote><!-- Documentation -->")
  • 22:41, 27 May 2023 Will talk contribs created page Refind (Created page with "An opensource boot manager. = Documentation = <blockquote> {| class="wikitable" |- | home || http://www.rodsbooks.com/refind/ |- | repo || https://sourceforge.net/p/refind/code/ci/master/tree/ |- |} </blockquote><!-- Documentation -->")
  • 01:12, 26 May 2023 Will talk contribs created page Sixels (Created page with "Sixels let you render images, graphs, etc. alongside your work in a terminal. = Documentation = <blockquote> {| class="wikitable" |- | list of terminal emulators supporting sixels || https://www.arewesixelyet.com/ |- |} </blockquote><!-- Documentation --> = Programs = <blockquote> {| class="wikitable" |- | sixel-tmux || intercepts and renders sixels within tmux, never passing them to terminal |- |} </blockquote><!-- Programs -->")
  • 16:03, 16 May 2023 Will talk contribs created page Ruby faraday (Created page with " = Documentation = <blockquote> {| class="wikitable" |- | official docs || https://lostisland.github.io/faraday/usage/ |- |} </blockquote><!-- Documentation -->")
  • 13:50, 13 May 2023 Will talk contribs created page Animal Crossing New Horizons (Created page with " = Tools = <blockquote> {| class="wikitable" |- | NHSE savegame editor || https://github.com/kwsch/NHSE |- |} </blockquote><!-- Tools --> Change your name etc.")
  • 00:06, 7 May 2023 Will talk contribs created page VimPlugin: vim-localvimrc (Created page with "project-specific vimrc files. * all directories in the current CWD are checked for a <code>.lvimrc</code> file to load * they are loaded in order of rootmost-CWD * you are asked for confirmation before loading, allowlists can be created = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/embear/vim-localvimrc |- |} </blockquote><!-- Documentation -->")
  • 17:24, 16 April 2023 Will talk contribs created page Influxdb usage (Created page with "= Commandline Interface = <blockquote> <syntaxhighlight lang="bash"> influx -h </syntaxhighlight> </blockquote><!-- Commandline Interface -->")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)