Skip to content

Instantly share code, notes, and snippets.

View matskiv's full-sized avatar

O. Matskiv matskiv

  • Earth
View GitHub Profile
@negz
negz / kubedump.sh
Last active March 6, 2024 18:42
Dump Kubernetes cluster resources as YAML
#!/usr/bin/env bash
set -e
CONTEXT="$1"
if [[ -z ${CONTEXT} ]]; then
echo "Usage: $0 KUBE-CONTEXT"
exit 1
fi
@hugs
hugs / ik.py
Created December 7, 2012 06:46
Delta robot - Inverse and forward kinematics library - (For @bitbeam bot)
# Original code from
# http://forums.trossenrobotics.com/tutorials/introduction-129/delta-robot-kinematics-3276/
# License: MIT
import math
# Specific geometry for bitbeambot:
# http://flic.kr/p/cYaQah
e = 26.0
f = 69.0