Skip to content

Instantly share code, notes, and snippets.

View Krockema's full-sized avatar
🎯
Focusing

Martin Krockert Krockema

🎯
Focusing
View GitHub Profile
@Krockema
Krockema / gist:0c53877c1eca6143ea1de5539d975954
Created February 17, 2026 16:49
Generate evenly distributed Colors - generating colors having max distance from one color to another.
const golden_ratio = 0.618033988749895;
function getRandomInt(max)
{
return Math.floor(Math.random() * Math.floor(max));
}
function ColorAbc()
{
var htmlOut = " ";
var randomNr = Math.random();
@Krockema
Krockema / kuka.tex
Last active May 17, 2023 12:09
Kuka like Robot for Latex/tikz as Resuable Icon
% preambel:
\documentclass[tikz]{standalone}% andere Klassen sind möglich
\usepackage{tikz}
\usetikzlibrary{shapes%
,shapes.misc%
,shapes.symbols%
,positioning%
}
\begin{document}