Skip to content

Instantly share code, notes, and snippets.

View nmeum's full-sized avatar

Sören Tempel nmeum

View GitHub Profile
@nmeum
nmeum / coffee-grinder-lid.scad
Last active July 13, 2023 19:13
aeg-coffee-grinder-lid
// body
top_width = 95;
bottom_width = 80;
total_length = 122;
depth = 11;
thickness = 1.5;
// bottom circle
bottom_radius = 60;
y_off_bot = sqrt(exp(ln(bottom_radius)*2) - exp(ln(bottom_width/2)*2));
Operating System Environment
----------------------------
Operating System: "Debian GNU/Linux"
Kernel: Linux 5.4.18-0-lts x86_64 unknown
System shell: /usr/bin/dash (probably dash)
make's shell: /usr/bin/dash (probably dash)
Installed compiler toolchains
-----------------------------
@nmeum
nmeum / INSTALL.md
Last active December 14, 2018 22:11
Using Alpine Linux v3.8 as an IEEE 802.15.4 border router

IEEE 802.15.4 on Alpine Linux

Hardware: RPI2, AT86RF233 from openlabs Software: Alpine Linux 3.8

Disclaimer

Most changes initially made by myself to different Alpine packages required for using the RPI as a border router are already part of the latest stable release. Unfortunately, wpan-tools is not packaged for

@nmeum
nmeum / coap-server.go
Last active November 5, 2017 18:19
CoAP server writting payloads to a file
package main
import (
"flag"
"github.com/dustin/go-coap"
"log"
"net"
"os"
"path/filepath"
)