Recently Updated Pages
Migrate Github Repository to Gitea
GITHUB_AUTH_TOKEN=1234 GITEA_AUTH_TOKEN=5678 GITEA_URL=https://git.example.com _payload=$(mktemp...
Rebuild Python Packages
When new versions of python is released there are packages that are needing to be rebuilt. yay -S...
Web
Working with remote APIs Check status of a website that is locked behind an authorization cookie....
Gitlab
Working with the API Get CSV of all open issues on instance #!/bin/bash TOKEN=get_your_token URL=...
Import / Export
Export Data from Synapse Make sure that there is access to the Synapse DB and the Synapse media_s...
YAML
Scratchpad 1 yq -n ' .listeners =[ { "type": "htt...
XML
JSON
Variables
Uppercase VAR="vaRiAbLe" echo "Uppercase ${VAR^^}" VARIABLE Lowercase echo "Lowercase ${VAR,,}" ...
Delete older than..
Find directories and delete recursively find /path/ -mtime +7 -type d -exec rm -rf {} + Find file...
Dates
date +'%Y-%m-%d' 2023-02-28 date --date='2 days ago' +'%Y-%m-%d' 2023-02-26 date +'%s' 1677607151...