Skip to content

Instantly share code, notes, and snippets.

Me as a Lead/Manager

I believe everyone does their best work in an environment of creativity, clarity, and empathy.

  • Creative thinking leads to innovation and more importantly, fun. Try the weird thing--Embrace the unknown and find new (strategically and ethically reasonable) paths to solve problems. I got your back.
  • Clarity of purpose, plans, and responsibilities are non-negotiables for smooth operations. If at any point things start the get too blurry for comfort, let's get it sorted out.
  • Let's not forget that there is indeed a world beyond the team--we are humans dealing with human things, let's treat eachother with kindness and compassion.
What you can expect from me What I ask from you
@vyta
vyta / kind-azwi.sh
Last active December 5, 2024 02:10
Kind with OIDC issuer tl;dr;
#!/usr/bin/env bash
# Script pre-reqs: az cli (and logged in) and kind (k8s in docker)
export RESOURCE_GROUP="oidc-issuer"
export SUBSCRIPTION_ID="$(az account show --query id -o tsv)"
export AZURE_TENANT_ID="$(az account show --query tenantId -otsv)"
export AZURE_STORAGE_ACCOUNT="oidcissuer$(openssl rand -hex 4)"
export AZURE_STORAGE_CONTAINER="oidc-test"
export SERVICE_ACCOUNT_ISSUER="https://${AZURE_STORAGE_ACCOUNT}.blob.core.windows.net/${AZURE_STORAGE_CONTAINER}/"
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: fortio
name: fortio
spec:
replicas: 1
selector:
matchLabels:
@vyta
vyta / nerdctl-for-dev-containers.md
Last active July 15, 2025 20:47
Using nerdctl instead of docker for VS Code Dev Containers
@vyta
vyta / rootless-containerd-wsl.md
Last active October 29, 2025 12:21
Rootless containerd in WSL2 with Ubuntu 24.04

Rootless containerd in WSL

Ensure systemd is enabled for WSL

sudo apt-get update -y && sudo apt-get install systemd systemd-sysv -y

And ensure /etc/wsl.config contains the following:

#!/bin/bash
# Azure CLI deployment script for k3s cluster with Azure Container Registry
# This script is idempotent and can be run multiple times safely
set -e
# Color codes for output
RED='\033[0;31m'
GREEN='\033[0;32m'