Skip to content

Instantly share code, notes, and snippets.

View Simon-Laux's full-sized avatar
:octocat:
[Insert deep quote here]

Simon Laux Simon-Laux

:octocat:
[Insert deep quote here]
View GitHub Profile
@Simon-Laux
Simon-Laux / erstattungsforderung.typ
Created December 19, 2025 14:45
German: Erstattungsforderung um Arbeitsausgaben vom Arbeitgeber zurückzufordern.
// ---- Stammdaten ------
#let my_name = "Otto Normalverbraucher"
#let my_iban = "DE49201202005467194628"
#let my_address = ("Sesamstr. 7", "Stuttgart, BW 70173")
#let your_name = "Max Muster"
#let your_address = ("Musterfirma", "Sesamstr. 5", "Stuttgart, BW 70173")
#let anrede = "Sehr geehrter Herr Muster"
#let currency = (
@Simon-Laux
Simon-Laux / code
Last active September 24, 2016 20:49
OpenSCAD bevelcube module
module bevelcube(x,y,z,insert){
Cubepoints=[[insert,0,insert],//Fläche 1 front
[insert+x,0,insert],
[insert+x,0,insert+z],
[insert,0,insert+z],
[insert,y+insert*2,insert],//Fläche 2 hinten
[insert+x,y+insert*2,insert],
[insert+x,y+insert*2,insert+z],
[insert,y+insert*2,insert+z],//Fläche 3 unten
[insert+x,insert,0],