Skip to content

Instantly share code, notes, and snippets.

View arvind-iyer's full-sized avatar
⚖️
Listen to what you know instead of what you fear

Arvind Iyer arvind-iyer

⚖️
Listen to what you know instead of what you fear
  • Nokia
  • Bangalore
View GitHub Profile
@arvind-iyer
arvind-iyer / rvrb-relayout.user.js
Created December 7, 2022 15:44 — forked from Chaosmeister/rvrb-relayout.user.js
more efficient rvrb layout
// ==UserScript==
// @name RVRB Relayout
// @namespace https://app.rvrb.one/
// @version 0.2
// @description RVRB relayout
// @author You
// @match https://app.rvrb.one/*
// @icon https://app.rvrb.one/favicon-32x32.png
// @grant none
// ==/UserScript==
@arvind-iyer
arvind-iyer / kube_functions.sh
Created January 30, 2026 06:18
kube shortcuts
function kdesc ()
{
local cmd_args="${@:1:$#-1}"
local pod_prefix="${!#}"
local item_name=$(kubectl get $cmd_args | grep -P "^$pod_prefix"| awk '{ print $1 }')
kubectl describe $cmd_args $item_name
}
function klog ()