Skip to content

Instantly share code, notes, and snippets.

View sparr's full-sized avatar

Clarence "Sparr" Risher sparr

  • Estate of Mind
  • Northbridge MA USA
View GitHub Profile
@sparr
sparr / add_page_numbers.ps
Last active March 17, 2025 14:24
Postscript script to add page numbers to an existing document
%!PS
% originally from https://stackoverflow.com/a/57162167/13675
% Usage to concatentate multiple PDFs, number all the pages sequentially, and output a single PDF:
% gs \
% -dBATCH -dNOPAUSE \
% -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress \
% -sOutputFile=/path/to/merged.pdf \
% -f add_page_numbers.ps -f input1.pdf -f input2.pdf
% modifications by Clarence "Sparr" Risher <[email protected]>
ccafdsse001-dwesanctuary.bsa
ccafdsse001-dwesanctuary.esm
ccasvsse001-almsivi.bsa
ccasvsse001-almsivi.esm
ccbgssse001-fish.bsa
ccbgssse001-fish.esm
ccbgssse002-exoticarrows.bsa
ccbgssse002-exoticarrows.esl
ccbgssse003-zombies.bsa
ccbgssse003-zombies.esl
@sparr
sparr / gist:f3502db3fa6edb9decae9caadd047393
Created December 10, 2024 15:04
Hide non-results from Youtube search results
www.youtube.com##ytd-shelf-renderer.style-scope:has(span:has-text(/For you/i))
www.youtube.com##ytd-shelf-renderer.style-scope:has(span:has-text(/People also watched/i))
www.youtube.com##ytd-shelf-renderer.style-scope:has(span:has-text(/People also search for/i))
www.youtube.com##ytd-shelf-renderer.style-scope:has(span:has-text(/Previously watched/i))
www.youtube.com##ytd-shelf-renderer.style-scope:has(span:has-text(/Explore more/i))
www.youtube.com##ytd-shelf-renderer.style-scope:has(span:has-text(/Related to your search/i))
www.youtube.com##ytd-shelf-renderer.style-scope:has(span:has-text(/From related searches/i))
www.youtube.com##ytd-horizontal-card-list-renderer.ytd-item-section-renderer.style-scope
@sparr
sparr / factorio_entity_heating_energy_cost.csv
Last active November 26, 2024 12:48
Factorio 2.0 Entity Heating Cost
entity name heating_energy/16.667
storage-tank 100
transport-belt 10
fast-transport-belt 10
express-transport-belt 10
turbo-transport-belt 10
underground-belt 50
fast-underground-belt 100
express-underground-belt 150
turbo-underground-belt 200
@sparr
sparr / gist:9861c782956b3eabae3ac9e1bf4ec6ce
Created September 20, 2024 00:42
Steam Proton all games crashing on EndeavourOS due to Vulkan library package choice
When installing AMD drivers on EndeavourOS I was prompted to choose Vulkan packages. I chose `amdvlk lib32-amdvlk` which turns out to have been a mistake. This led to almost every game using Proton crashing on launch with one of the following two error messages in the logs (among much longer more unique stack traces). The "correct" packages which resolved this issue are `vulkan-radeon lib32-vulkan-radeon`.
Error type 1, from games including Craft the World, Ring of Pain, Slipways:
14981.844:0124:0128:err:vulkan:wine_vkCreateInstance Failed to create instance, res=-9
14981.844:0124:0128:trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\winevulkan.dll" : builtin
err: DxvkInstance::createInstance: Failed to create Vulkan 1.1 instance
Error type 2, from games including Banished, Ring of Pain, Slipways:
@sparr
sparr / .Xmodmap
Created September 19, 2024 16:30
xmodmap config to remap unused special keys on Lenovo E15 to audio control
! Remap unused special keys on Lenovo E15 to audio control
! Fn+F9, message box icon, originally XF86Messenger
keycode 224 = XF86AudioPrev NoSymbol XF86AudioPrev
! Fn+F10, phone handset upright icon, originally XF86Go
keycode 226 = XF86AudioPlay NoSymbol XF86AudioPlay
! Fn+F11, phone handset face down icon, originally Cancel
keycode 231 = XF86AudioStop NoSymbol XF86AudioStop
! Fn+F12, star icon, originally XF86Favorites
keycode 164 = XF86AudioNext NoSymbol XF86AudioNext
@sparr
sparr / wait_for_one_process_to_exit.sh
Created September 9, 2024 21:25
Bash script: Wait for one process to exit
#!/bin/bash
#
# This script launches two processes and exits when either of them exits
(
do_thing_1
kill -s SIGHUP $$
) &
(
@sparr
sparr / git-cp.sh
Created August 8, 2024 12:22
Shell script to copy a file in a git repository while retaining its history
#!/bin/sh
#
# Duplicates a file in git, retaining history for the copy
# This requires four commits that cannot(?) be squased
# Inspired by https://stackoverflow.com/q/3887736
# Deprecated by https://github.com/tj/git-extras/blob/main/bin/git-cp
if [ "$#" -ne 2 ]
then
echo "Usage: $(basename "$0") source destination"
@sparr
sparr / gist:008ebfab065bd00c3dd903fa43b9ad55
Created June 13, 2023 16:29
golang proposal for standard tag functionality for json, toml, yaml, etc
This gist is to preserve this proposal draft while I pursue alternate proposals first.
Currently if a package wants to define a struct that can be loaded from arbitrary config files, with encoded/serialized/markup field names different from the struct field names (e.g. changing "FooBar" to "foo_bar" to match conventions, "Miscellaneous" to "misc" for brevity, etc), the package must add separate struct tags for json, toml, yaml, etc. Any encoding not specifically enumerated in the tags will either fall back to using the struct fields directly, or have to implement parsing of another encoding's tags.
While these different encoding packages offer some unique functionality, such as go-yaml's `inline`, encoding/json's `string`, and go-toml's `multiline`, they all share common functionality of specifying the key name and the `omitempty` flag. For use cases where that subset of functionality is sufficient, it would be convenient if most or all of the markup/encoder/serializer/marshaler/etc packages supported a com
@sparr
sparr / test.vue
Last active February 21, 2023 20:11
vue file illustrating github syntax highlight bug
<a>
<b v-if="c?.d" />
</a>