Skip to content

Instantly share code, notes, and snippets.

View rguhr's full-sized avatar

Robért rguhr

View GitHub Profile
@rguhr
rguhr / helm-vdiff
Created February 18, 2026 19:23
helm-vdiff: A shell script to compare Helm chart values across versions, whether remote, OCI, or installed releases
helm-vdiff() {
local namespace="default" values="" value_key=""
local diff_cmd=(dyff between --omit-header)
local positional=()
# argument parsing
while [[ $# -gt 0 ]]; do
case "$1" in
-n|--namespace) namespace="$2"; shift 2;;
-v|--values) values="$2"; shift 2;;
@rguhr
rguhr / userscript-inoreader-open-all-unread
Last active September 21, 2024 17:39
UserScript: Inoreader Open All Unread Articles
// ==UserScript==
// @name Inoreader Open All Unread Articles (New Design)
// @namespace http://tampermonkey.net/
// @version 2.0
// @description Adds a button to open all unread articles in new tabs
// @match https://*.inoreader.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=inoreader.com
// @grant none
// ==/UserScript==