- Updated on May 29 to accommodate etcd container not having
/bin/shavailable anymore.
curl -sL https://get.rke2.io | sh
systemctl daemon-reload
systemctl start rke2-server
| // blur shader from https://stackoverflow.com/questions/29030321/unity3d-blur-the-background-of-a-ui-canvas | |
| // added toggle https://forum.unity.com/threads/shader-properties-no-bool-support.157580/#post-3013337 | |
| Shader "Custom/TintedUIBlur" { | |
| Properties { | |
| _Size("Blur", Range(0, 30)) = 3 | |
| [HideInInspector] _MainTex("Masking Texture", 2D) = "white" {} | |
| _AdditiveColor("Additive Tint color", Color) = (0, 0, 0, 0) | |
| _MultiplyColor("Multiply Tint color", Color) = (1, 1, 1, 1) | |
| [Toggle(MAKE_DESATURATED)] _MakeDesaturated ("Desaturate", Float) = 0 |
✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨
SUPPORT MY WORK - Everything Helps Thanks
YouTube 🔗 https://YouTube.GetMeTheGeek.com
Buy Me a Coffee ☕ https://www.buymeacoffee.com/getmethegeek
Hire US 🔗 https://getmethegeek.com
Digital Ocean referral 🔗 https://tiny.cc/plxdigitalocean
✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨
| # Change the path below to your own audit log path. | |
| /var/log/vault/audit.log { | |
| rotate 30 | |
| daily | |
| # Do not execute rotate if the log file is empty. | |
| notifempty | |
| missingok | |
| compress | |
| # Set compress on next rotate cycl to prevent entry loss when performing compression. | |
| delaycompress |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| #!/usr/bin/env bash | |
| #set -x | |
| usage() | |
| { | |
| cat << EOF | |
| remove-expired-index.sh |
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
For example, to delete all images that contains zulh inside the name, run:
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'zulh')
| ### | |
| ### | |
| ### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
| ### https://christitus.com/windows-tool/ | |
| ### https://github.com/ChrisTitusTech/winutil | |
| ### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
| ### iwr -useb https://christitus.com/win | iex | |
| ### | |
| ### OR take a look at | |
| ### https://github.com/HotCakeX/Harden-Windows-Security |