I hereby claim:
- I am abrain on github.
- I am abrain (https://keybase.io/abrain) on keybase.
- I have a public key ASBC838MLHnNY1AzrQwmP9QEFzKl3v1PjeWGfWgsqRPQfAo
To claim this, I am signing this object:
import sys | |
import numpy | |
from PIL import Image | |
if __name__ == "__main__": | |
if len(sys.argv) < 2: | |
print "Please specify a file" | |
exit(1) | |
<?php | |
/* | |
Plugin Name: Unblock Einsatzberichte | |
Description: Zeigt Einsatzberichte aus Einsatzverwaltung trotz Sperre von Beiträgen/Artikel durch wp-members | |
Version: 0.1 | |
Author: Andreas Brain | |
Author URI: http://www.abrain.de | |
License: GPLv2 | |
*/ |
I hereby claim:
To claim this, I am signing this object:
[Unit] | |
Description=Mosquitto MQTT Broker daemon | |
ConditionPathExists=/etc/mosquitto/mosquitto.conf | |
After=network.target | |
Requires=network.target | |
[Service] | |
Type=forking | |
RemainAfterExit=no | |
StartLimitInterval=0 |
<?php | |
/* | |
Plugin Name: Einsatzverwaltung Customisations | |
Description: Benennt in Einsatzberichten den Einsatzleiter zum Gruppenführer um | |
Version: 0.1 | |
Author: Andreas Brain | |
Author URI: https://www.abrain.de | |
License: GPLv2 | |
*/ |
<?php | |
add_filter('the_title', function ($title, $postId) { | |
// Do not change anything while we are in wp-admin | |
if (is_admin()) { | |
return $title; | |
} | |
// Do not alter the title of other post types or outside the main blog overview | |
if (get_post_type($postId) !== 'einsatz' || !is_home() || !in_the_loop()) { |
<?php | |
/* | |
Plugin Name: Einsatzverwaltung Customisations | |
Description: Benennt in Einsatzlisten die Einsatzart zu Meldebild um | |
Version: 0.1 | |
Author: Andreas Brain | |
Author URI: https://www.abrain.de | |
License: GPLv2 | |
*/ |