View pico_w.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
substitutions: | |
devicename: 'picow' | |
upper_devicename: 'PicoWireless' | |
logger_level: 'INFO' | |
esphome: | |
name: ${devicename} | |
project: | |
name: "jitter.eu" |
View gosundstrip.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#$ esphome -s devicename kitchenstrip -s upper_devicename KitchenStrip -s restore_from_flash True run gosund_strip.yaml --device /dev/cu.usbserial-2230 | |
--- | |
substitutions: | |
devicename: 'gosundstrip' | |
upper_devicename: 'GosundStrip' | |
devicecomment: 'https://www.amazon.de/gp/product/B09JVSB9LD?psc=1' | |
logger_level: 'WARN' | |
restore_from_flash: 'False' | |
esp8266: |
View yunshanesp8266.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#$ esphome -s devicename bathmirrorheating -s upper_devicename BathMirrorHeating run yunshanesp8266.yaml --device /dev/cu.usbserial-2230 | |
--- | |
substitutions: | |
devicename: 'yunshanesp8266' | |
upper_devicename: 'Yunshan ESP8266' | |
devicecomment: 'https://arduinoplusplus.wordpress.com/2018/08/28/home-automation-and-the-internet-of-things-the-start/' | |
logger_level: 'INFO' | |
esphome: | |
name: ${devicename} |
View resume.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Tom Hensel", | |
"label": "Belastbare Konzepte, technische Innovation, qualitative Exzellenz", | |
"image": "", | |
"email": "linkedin@hensel.consulting", | |
"phone": "0157-35234208", | |
"url": "", | |
"summary": "Spezialisiert auf die Bereiche Technische Beratung (Consultant) 📚 Betrieb von Informationstechnik (DevOps) 🤖 Ausbildung von Fachkräften (Training) 👨🏫", |
View smtpd.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $OpenBSD: smtpd.conf,v 1.9 2016/05/03 18:43:45 jung Exp $ | |
# tables | |
table aliases file:/etc/mail/aliases | |
table domains file:/etc/mail/domains | |
table passwd file:/etc/mail/passwd | |
table secrets file:/etc/mail/secrets | |
table deny db:/etc/mail/deny.db | |
table receip db:/etc/mail/receip.db |
View printer.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[stepper_x] | |
step_pin: P2.2 | |
dir_pin: !P2.6 | |
enable_pin: !P2.1 | |
microsteps: 16 | |
rotation_distance: 40 | |
endstop_pin: P1.29 # P1.28 for X-max | |
position_endstop: 0 | |
position_max: 320 | |
homing_speed: 50 |
View GP2Y1010AU0F.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://gist.github.com/gretel/3add6f08774f930ef0eaff03b847db64 | |
#include "esphome.h" | |
static const char *TAG = "GP2Y1010AU0F.sensor"; | |
// measure while the sensor is running | |
#define VOLTAGE_VREF 4.62 | |
#define PIN_ADC A0 |
View httpd.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $OpenBSD: httpd.conf,v 1.20 2018/06/13 15:08:24 reyk Exp $ | |
chroot "/zfs/videos" | |
logdir "/var/log" | |
server "*" { | |
listen on 10.0.100.20 port 8442 | |
tcp nodelay | |
tcp sack | |
tcp socket buffer 65536 |
View nonstatic.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# | |
from flask import Flask, request | |
#from waitress import serve | |
from pid.decorator import pidfile | |
import ipaddress | |
import setproctitle | |
import subprocess |
View codesign_osx.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# tom hensel <code@jitter.eu> | |
# | |
# | |
# variables and composition | |
# | |
CERTIFICATE_P12="sign/SomeCert.p12" |
NewerOlder