Minecraft Tekkit Server
Server
Tekkit SMP (2025)
Server Status
Checking server status...
Server Address
Loading server data...
Players Online
Loading player data...
Tracking
Car tracking project in Python with CV2 & Yolo.
Snowflake
An example project setup for managing Snowflake resources using Terraform.
Terraform
Kubernetes
# set default namespace (no need to supply -n namespace every time)
kubectl config set-context --current --namespace=namespace
# exec into a pod
kubectl exec --stdin --tty <pod> -- /bin/bash
# exec into MariaDB pod
kubectl exec --stdin --tty mariadb-cli -- /bin/bash
# port forward to localhost
kubectl port-forward <pod> 8080 -n namespace
kubectl port-forward svc/kafka-connect 8083 -n namespace
# scale deployment (with xargs)
kubectl scale deployment/kafka-connect --replicas=0
kubectl get deployment -n namespace | grep APPNAME | cut -d' ' -f 1 | xargs kubectl scale --replicas=1 deployment -n namespace
# delete pods in Error state
kubectl get pods | grep Error | cut -d' ' -f 1 | xargs kubectl delete pod
kubectl get pods -n namespace | grep Error | cut -d' ' -f 1 | xargs kubectl delete pod -n namespace
# delete pvc with specific name
kubectl get pvc | grep custom-pod-v1-0 | cut -d' ' -f 1 | xargs kubectl delete pvc
# pod readiness gate info
kubectl get pod metabase-58cd4fc47b-b6pd7 -o yaml | grep -B7 'type: target-health'
kubectl quick reference