I hereby claim:
- I am smb on github.
- I am sbuehl (https://keybase.io/sbuehl) on keybase.
- I have a public key ASDsqprgdtObhIyJuo0B8D1N8YankEqNvZIv2bT4PKmhTAo
To claim this, I am signing this object:
| /* in A1 muss die Jahreszahl stehen, z.B. 2025 */ | |
| =LET( | |
| y;$A$1; | |
| a;MOD(y;19); | |
| b;INT(y/100); | |
| c;MOD(y;100); | |
| d;INT(b/4); | |
| e;MOD(b;4); | |
| f;INT((b+8)/25); |
| #!/bin/sh | |
| # Enable/Disable LLDP on vSwitch ports on VMWare ESXi | |
| # Tested with ESXi 6.0.0 3620759 | |
| # Doesn't need vCenter, only SSH access to the ESXi machine | |
| # (c) Pekka "raspi" Jarvinen 2016 http://raspi.fi/ | |
| SWITCH=$1 | |
| OPERATION=$2 | |
| if [ "$SWITCH" = "" ] || [ "$OPERATION" = "" ]; then |
| CLASS ztools_installer DEFINITION | |
| PUBLIC | |
| FINAL | |
| CREATE PUBLIC . | |
| PUBLIC SECTION. | |
| CLASS-METHODS pull | |
| IMPORTING | |
| !iv_url TYPE string |
| #!/bin/sh | |
| echo $@ | |
| sudo setfacl -R -m u:"www-data":rwX -m u:`whoami`:rwX $@ | |
| sudo setfacl -dR -m u:"www-data":rwX -m u:`whoami`:rwX $@ |
| testtest | |
| test | |
| t |
I hereby claim:
To claim this, I am signing this object:
| adb shell | |
| adb> su | |
| adb> sqlite3 /data/data/com.google.android.apps.authenticator2/databases/databases | |
| adb> select 'otpauth://totp/' || email || '?secret=' || secret from accounts; | |
| for-each $result: | |
| qrcode.exe -s 10 -o qrCode.png $result |
| #!/usr/bin/ruby | |
| # REQUIRES: | |
| # * rooted android, as otherwise you can't read the applications private data | |
| # qrcode: https://code.google.com/p/qrencode-win32/downloads/list | |
| # This script "decrypts" the token from the internal state of the | |
| # Battle.net Mobile Authenticator on android application, converting | |
| # it into an "otpauth" url (https://code.google.com/p/google-authenticator/wiki/KeyUriFormat) | |
| # and (using qrencode and display) displays it as QR code on the screen |
| input { | |
| file { | |
| path => "/home/.../irclogs/*/#*/*.log" | |
| start_position => "end" | |
| type => "irssi_logs" | |
| } | |
| } | |
| filter { | |
| if [type] == "irssi_logs" { |
| Disable the WordPress Admin Bar for all Users and Visitors | |
| Turn off the toolbar with one simple line. | |
| view plain | |
| /* | |
| * Disable the WordPress Admin Bar for all Users and Visitors | |
| */ | |
| remove_action( 'init', '_wp_admin_bar_init' ); | |
| ^ top | |
| Enable the WordPress Admin Bar for admins only |