Skip to content

Instantly share code, notes, and snippets.

View squio's full-sized avatar

Johannes la Poutre squio

View GitHub Profile
@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() {
@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 / 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 / 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 / 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 / lastexport.py
Last active September 25, 2017 10:58 — forked from bitmorse/lastexport.py
lastfm scrobble exporter (from https://gitorious.org/fmthings/lasttolibre/blobs/master/lastexport.py // changed the script to try more often on failure )
#!/usr/bin/env python
#-*- coding: utf-8 -*-
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@squio
squio / BTSend2Nokia.applescript
Created July 11, 2017 06:29
Send VCARDs one by one from OS X to legacy Nokia s40
property device : "Nokia 515"
tell application "Finder" to set myPath to selection
on sendFile(f)
-- tell application "Finder" to set fileAlias to selection as alias
set fileAlias to f as alias
set fileToSend to fileAlias
tell application "Finder" to open fileToSend using application file id "com.apple.BluetoothFileExchange"
activate application "Bluetooth File Exchange"
tell application "System Events"
/* vim: ts=2 noet ai :
$Id: exifthumbnailfetcher.user.js $
LICENSE
=======
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
@squio
squio / yii2-user-rbac.txt
Created June 16, 2017 12:59
Add User Management permission for Dektrium yii2-user for use with yii2-rbac
Add permission to config
'modules' => [
'user' => [
'class' => 'dektrium\user\Module',
'adminPermission' => 'user_admin', // RBAC permission for administration
...
Add RBAC auth_item
name: 'user_admin'
type: 2
@squio
squio / MongoId.php
Last active August 1, 2016 07:26
Yii2 Legacy MongoRegex, MongoId implementation for backward compatibility with php < 7.0
<?php
use MongoDB\BSON\ObjectID;
/**
* Legacy MongoId implementation for backward compatibility with php < 7.0
* Usage: add this to entry script
* if (version_compare(phpversion(), '7.0.0', '>')) {
* // php v7 uses different MongoDB classes
* Yii::$classMap['MongoId'] = '@app/components/MongoId.php';
* }