Skip to content

Instantly share code, notes, and snippets.

View Aries0d0f's full-sized avatar
🐈

Aries Cs Aries0d0f

🐈
View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"foreground": "#b2bec3",
"style": "plain",
"template": "\u256d\u2500",
@Aries0d0f
Aries0d0f / timberborn-download-mods.ps1
Last active July 2, 2023 16:01
Auto download subscribed Timerborn mods from Mod.io
# Used to simplify y/n prompts further in the script
function User-Confirm {
param ([string]$msg)
do {
$yn = Read-Host "$msg [y/n]";
if ($yn -eq 'n') {
return $false
}
elseif ($yn -ne 'y') {
Echo "Enter y fer yes or n for no"
@Aries0d0f
Aries0d0f / download.sh
Last active February 13, 2026 11:19
Download all macOS Sonoma Aerial wallpaper
#!/bin/zsh
# This script helps those who want to
# get all Aerial wallpapers on macOS Sonoma
# all at once instead of clicking on settings one by one.
# Dependencies: jq, parallel
# Install all dependencies via `brew install jq parallel`
# After `parallel` installed run `sudo parallel --citation` first to read citation notice (IMPORTANT)
@Aries0d0f
Aries0d0f / certificate.plugin.sh
Last active December 25, 2025 05:03
Quick preview X509 Certificate via Firefox-based browser
#!/bin/zsh
# This script helps you use a Firefox-based browser's
# built-in certificate inspection feature to
# preview certificate files without actually serve it.
# It's particularly useful for debugging self-signed
# certificate chains and examining certificate details.
view-cert() {
# Script to convert certificate files to Firefox certificate viewer URLs
@Aries0d0f
Aries0d0f / k3s.plugin.sh
Last active December 25, 2025 05:02
K3s remote kubeconfig management plugin for quick multiple k3s cluster configurations. Perfect for managing multiple Kubernetes clusters.
#!/bin/bash
# This plugin provides convenient functions to
# fetch and manage kubeconfig files from remote k3s clusters.
# It simplifies the process of connecting to multiple k3s clusters
# by automatically retrieving, modifying, and loading kubeconfig files
# from remote servers.
k3s-save-remote-config() {
USER=$1