Skip to content

Instantly share code, notes, and snippets.

View squio's full-sized avatar

Johannes la Poutre squio

View GitHub Profile
@squio
squio / genpass.sh
Last active May 7, 2021 15:33
genpass - generate password from command line
#!/bin/sh
### default length
LENGTH=20
### command line
let L="$1"+0
if [ $L -gt 2 ]; then
LENGTH=$L
fi
@squio
squio / gist:a08f75e9d7dd293efc2f42967e0439ed
Created December 6, 2017 09:51
Blockchain verification
Verifying my Blockstack ID is secured with the address 14TZvonGz7CqKcFn7Az4vFovmfEZPoGBy9 https://explorer.blockstack.org/address/14TZvonGz7CqKcFn7Az4vFovmfEZPoGBy9
NOTE: no endorsement!
@squio
squio / AndroidKeystoreAuthenticator.cs
Last active June 12, 2018 22:27 — forked from sttz/AndroidKeystoreAuthenticator.cs
Unity editor script that stores Android Keystore passwords in the macOS Keychain.
using System;
using System.IO;
using UnityEditor;
using UnityEditor.Build;
using UnityEditor.Build.Reporting;
using UnityEngine;
#if UNITY_EDITOR_OSX
/// <summary>
@squio
squio / manage.py
Last active July 15, 2019 10:08
Add hooks to update Allauth email for a user from the Django contrib.auth panel without altering the contrib.auth.models.User model in any way
""" App administration """
from django import forms
from django.contrib import admin
from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
from django.contrib.auth.models import User
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth.decorators import login_required
from django.utils.translation import gettext_lazy as _
from allauth.account.models import EmailAddress
@squio
squio / semver2number.sh
Created September 10, 2019 08:44
Parse a semantic version string to a 32 bit integer and reverse
#!/bin/bash
# NOTE this works only with bash, not dash
# Based on:
# https://gist.github.com/dislick/914e67444f8f71df3900bd77ccec6091
# NOTE: first digit is MSB contrary to the Javascript version linked above.
# This does not work for non-numerical strings but this should be easy to remedy
# https://semver.org/#semantic-versioning-specification-semver
# Semantic Version string to numerical version
semver2num() {

Delete all files from a git commit

Warning this permanently deletes all files from an older commit, regardles if they were added, deleted or modified!

Fitrst, list all files with full paths:

git diff-tree --no-commit-id --name-only -r 39f96f9 > files.txt

Then, for each file from files.txt

@squio
squio / docker-compose.yml
Last active March 25, 2022 18:50
Run HomeAssistant, PiHole, ESPHome and Mosquitto on a Raspberry PI 4
version: '3'
services:
# https://www.home-assistant.io/docs/installation/docker/#docker-compose
homeassistant:
container_name: home-assistant
image: homeassistant/raspberrypi4-homeassistant:stable
volumes:
- './homeassistant/config:/config'
environment:
- TZ=Europe/Amsterdam
@squio
squio / docker-compose.yml
Created December 27, 2020 15:19
Quick & dirty installation of Wordpress on RPI 4 using Docker and Docker Compose
version: '3.1'
services:
wordpress:
image: wordpress
restart: always
ports:
- 8080:80
environment:
@squio
squio / pihole-hiseeu-webcam.txt
Last active December 28, 2020 21:43
A blocklist for all domains used by the Hiseeu webcam
MOVED: https://github.com/squio/oneliners/blob/main/pi-hole/pihole-hiseeu-webcam.txt
// Create a customized SVG pin icon on the fly
// uses vars: lat, lon, color, title
// map is leaflet Map object
const color = '#cc0000';
const svg = `<?xml version="1.0" encoding="UTF-8"?><svg width="27" height="53.5" version="1.1" viewBox="-31 -22 22 18" xmlns="http://www.w3.org/2000/svg"><path d="m-20 8.8889c-2-20-10-22-10-30a10 10 0 1 1 20 0c0 8-8 10-10 30zm-2-30a2 2 0 1 1 4 0 2 2 0 1 1-4 0" fill="${color}" stroke="#000" stroke-width=".8"/></svg>`;
const iconUrl = 'data:image/svg+xml;base64,' + btoa(svg);
const icon = L.icon({
iconUrl: iconUrl,
iconAnchor: [13.5, 53],