Skip to content

Instantly share code, notes, and snippets.

View marcelstoer's full-sized avatar
👨‍👩‍👧‍👧
The Earth was made round so that we would not see too far down the road - K.B.

Marcel Stör marcelstoer

👨‍👩‍👧‍👧
The Earth was made round so that we would not see too far down the road - K.B.
View GitHub Profile
import okhttp3.Credentials
import okhttp3.OkHttpClient
import okhttp3.Request
import okhttp3.Response
import org.json.JSONObject
import java.time.Duration
import java.time.Instant
import java.util.logging.Logger
// Inspired by https://www.pimwiddershoven.nl/entry/request-an-api-bearer-token-from-gitlab-jwt-authentication-to-control-your-private-docker-registry
@marcelstoer
marcelstoer / wifimanager.h
Created October 17, 2020 21:02
ESP32 WiFi Manager based on ESPAsync_WiFiManager
/**************************************************************************************************/
/* */
/* Adaptation and simplification of the blue-print sketch at */
/* https://github.com/khoih-prog/ESPAsync_WiFiManager/tree/master/examples/Async_ConfigOnSwitch */
/* */
/**************************************************************************************************/
#include <esp_wifi.h>
#include <WiFi.h>
#include <WiFiClient.h>
@marcelstoer
marcelstoer / SamlAssertionExtractor.java
Created September 7, 2020 13:50
SamlAssertionExtractor.java
import com.google.common.base.Preconditions;
import lombok.extern.slf4j.Slf4j;
import net.shibboleth.utilities.java.support.xml.ParserPool;
import net.shibboleth.utilities.java.support.xml.XMLParserException;
import org.apache.commons.lang3.StringUtils;
import org.opensaml.core.config.InitializationException;
import org.opensaml.core.config.InitializationService;
import org.opensaml.core.xml.config.XMLObjectProviderRegistrySupport;
import org.opensaml.core.xml.io.Unmarshaller;
import org.opensaml.core.xml.io.UnmarshallerFactory;
@marcelstoer
marcelstoer / ref-parser-bundler-overwrite.js
Last active January 13, 2022 20:33
Ugly way to redefine remap() function for SwaggerParser#bundle() from APIDevTools
// *********************************************************************************************************************
// I needed to redefine the remap() function invoked at
// https://github.com/APIDevTools/json-schema-ref-parser/blob/master/lib/bundle.js#L25 due to
// https://github.com/APIDevTools/swagger-parser/issues/127
//
// I'm not versed enough with JavaScript and Node.js to understand if there would be a less invasive way to have my own
// remap(). As far as I understand SwaggerParser (or JSON Schema $Ref Parser for that matter) is not built in a way that
// allows to easily extend it. The only option I found was to redefine the bundle() prototype function and to copy a lot
// of code from bundle.js.
//
# see https://frightanic.com/web-authoring/website-hosting-with-git-a-tutorial/ for the full picture
#
# create remote repository
ssh user@host.com
mkdir repos
cd repos
mkdir example.git
cd example.git
git --bare init
# create local clone on development machine
@marcelstoer
marcelstoer / init.lua
Created June 3, 2018 19:00
NodeMCU Lua initializer with DNS & internet connectivity testing
WIFI_SSID = "--your-value-here--"
WIFI_PASSWORD = "--your-value-here--"
wifi_got_ip_event = function(T)
local site = "wikipedia.org"
-- Note: Having an IP address does not mean there is internet access!
-- Internet connectivity can be determined with net.dns.resolve().
print("WiFi connection is established! IP address is: " .. T.IP)
print("DNS server 1: " .. net.dns.getdnsserver(0))
print("DNS server 2: " .. net.dns.getdnsserver(1))
@marcelstoer
marcelstoer / Arduino-uint64ToString.c
Created April 9, 2018 20:37
Arduino uint64ToString
// source: https://github.com/markszabo/IRremoteESP8266/blob/master/src/IRutils.cpp#L48
String uint64ToString(uint64_t input) {
String result = "";
uint8_t base = 10;
do {
char c = input % base;
input /= base;
if (c < 10)
@marcelstoer
marcelstoer / HtmlPopupTransientWindow.py
Created September 19, 2017 06:30
wxPython transient window with HTML support, selectable text and clickable links
# coding=utf-8
import wx
import wx.html
import webbrowser
class HtmlPopupTransientWindow(wx.PopupTransientWindow):
def __init__(self, parent, style, html_body_content, bgcolor, size):
@marcelstoer
marcelstoer / publish-bme280-data-from-raspberry_pi-to-thingspeak.py
Last active July 24, 2020 21:26
Publish BME280 data from Raspberry Pi to ThingSpeak
import thingspeak # from https://thingspeak.readthedocs.io/en/latest/
import bme280 # from https://www.raspberrypi-spy.co.uk/2016/07/using-bme280-i2c-temperature-pressure-sensor-in-python/
# return the Pi CPU/GPU temperature in degree Celcius; it's a SoC and thus there's no need to read both, see
# https://www.cyberciti.biz/faq/linux-find-out-raspberry-pi-gpu-and-arm-cpu-temperature-command/#comment-796904
def get_temp():
with open('/sys/class/thermal/thermal_zone0/temp', 'r') as infile:
return float(infile.read()) * 1e-3
ch = thingspeak.Channel(275145, "*********", "*********")
@marcelstoer
marcelstoer / nodemcu-execution-time.lua
Created April 15, 2017 21:05
How to measure the execution time of a NodeMCU Lua function
-- all credits go to http://www.esp8266.com/viewtopic.php?p=64968#p64968
function profile(name)
local start = tmr.now()
_G[name]()
local delta = tmr.now() - start
print(name .. " needs " .. (delta / 1000) .. " ms")
end
function longTime()
local sum = 0