Wo ist die Satire von VirusHauptquartier.de hin?


Ich binb ja nun ein grosser Fan von echter und guter #Satire, und nicht diese langweilige wie sie von so manchen Komikern kommt. Ich kenne die Webseite virushauptquartier.de nun schon ziemlich lange und habe heute nochmals nachgeschaut, ob sie bereits #COVID-19 und das ganze Tramtram drumherum satiert hat. Leider musste ich festellen, dass die Webseite komplett eine andere ist.

Wo ist nun die schoene Satire hin? Ich denke, der Web-Archivar wird wohl noch eine Kopie davon haben, aber im Original ist sie verschwunden. Zum Beispiel hatte der Macher der Satire den Satz "Doch ich sage nur: Ab 5:45 Uhr wird zurueckgeimpft!" gebracht, wo hier zweifelsfrei die Ansprache von Adolf Hitler satiert wurde (im damaligen Bezug auf die #Schweinegrippe meine ich, was ja auch doppelsinnig passte ;-) ).

Also, wo ist die schoene Satire hin?

Zebra DS2278 barcode scanner arrived


Cool! Today my ordered barcode scanner has just arrived and #Linux has happily detected it:

[5415724.653044] usb 2-6.1: new full-speed USB device number 36 using xhci_hcd
[5415726.189043] usb 2-6.2.1: new full-speed USB device number 37 using xhci_hcd
[5415726.290946] usb 2-6.2.1: New USB device found, idVendor=05e0, idProduct=1200, bcdDevice= 0.03
[5415726.290949] usb 2-6.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[5415726.290950] usb 2-6.2.1: Product: Symbol Bar Code Scanner::EA
[5415726.290951] usb 2-6.2.1: Manufacturer: Symbol Technologies, Inc, 2008
[5415726.290952] usb 2-6.2.1: SerialNumber: S/N:B8BC5A23C069EA479E223DC43B13F757:3
[5415726.298240] input: Symbol Technologies, Inc, 2008 Symbol Bar Code Scanner::EA as /devices/pci0000:00/0000:00:14.0/usb2/2-6/2-6.2/2-6.2.1/2-6.2.1:1.0/0003:05E0:1200.0016/input/input49
[5415726.357180] hid-generic 0003:05E0:1200.0016: input,hidraw1: USB HID v1.10 Keyboard [Symbol Technologies, Inc, 2008 Symbol Bar Code Scanner::EA] on usb-0000:00:14.0-6.2.1/input0

I already did test scans here and I'm happy to say it works neatly!

in reply to Roland Häder🇩🇪

I still have to manually enter a lot receipts here, scanning may happen not so soon. Still I had some more test scans by putting the cursor into the search field and scan a product. The encoded number then appears in the search field and the onchange event causes the #AJAX request to update the product table.

I cannot share any screenshots with you here as they contain real data (my bought products). So you have to live with the description here.

#Ajax



03.03.2021 Der Tagesspiegel: Corona-Gipfel im Kanzleramt läuft: Lockerungen sollen schon ab 100er-Inzidenz möglich sein

#Coronavirus

Der wichtigste Satz in dem Artikel:

Vor dem inzwischen laufenden Gipfel - seit kurz nach 14:30 Uhr sprechen die Kanzlerin und die Länderchefs - gab es diesmal kein Expertengespräch mit Virologen vor einer Bund-Länder-Schalte, sondern mit der Wirtschaft.


Dann ist ja klar, wo die Reise hingeht. Fröhliches Sterben allerseits, und viel Spaß noch mit LongCovid.





"Briar is a messaging app


designed for activists, journalists, and anyone else who needs a safe, easy and robust way to communicate. Unlike traditional messaging apps, Briar doesn't rely on a central server - messages are synchronized directly between the users' devices. If the internet's down, Briar can sync via Bluetooth or Wi-Fi, keeping the information flowing in a crisis. If the internet's up, Briar can sync via the Tor network, protecting users and their relationships from surveillance."

Assuming one's phone is secure (data and voice cannot be collected before Briar encrypts them), this app could be help users who want privacy. Does anyone here have experience using this? h/t to @rosenfeld@diasp.org

briarproject.org

#briar #im #messenger #internet #wireless #wifi #bluetooth #crypto #elliptic-curves #onion #tor #mesh #peer-to-peer #privacy #security #anonymity #web #android #droid #f-droid #rss #chat #forum #blog



Ach wisst ihr, …


… so langsam habe ich keinen #Bock mehr, da drauf.

Bitte nehmt dem #Horst mal #1984 und ähnliche #Bücher weg und verbietet ihm #Brazil zu gucken und und und … und überhaupt wäre etwas #Hirn für den jetzt auch nicht das Schlechteste. Ich würde sogar eine #Modelleisenbahn spenden, (Aber nur eine die im #Kreis fährt , damit er immer alles unter #Kontrolle hat) damit er endlich ruhig gestellt ist.

2FA Bash script


I would like to share a simple #2FA #Bash script with you, you. it is a #wrapper script around the oathtool program. You only have to then memorize simple names, such as 2fa.sh itchio or so.

Some examples:

$ 2fa.sh itchio
$ 2fa.sh friendica

So you only have to memorize itchio instead of your secret key.

Here is the script, public domain:

#!/bin/bash

# Helper script to easier store your secret keys for 2FA, needs
# oathtool being installed
#
# Author: Roland Haeder / Fediverse: roland@f.haeder.net

# Variables:
OATHTOOL_BIN=$(which oathtool)
BASE_PATH="${HOME}/.2fa"
SECRET_FILE="${BASE_PATH}/.secrets"
SECRET_KEY=""

# Check conditions, requires one parameter, oathtool and create base path
if [ -z "$1" ]
then
	echo "Usage $0 <service>"
	exit 1
elif [ -z "${OATHTOOL_BIN}" ]
then
	echo "Program 'oathtool' is not in your path or installed."
	exit 1
elif [ ! -d "${BASE_PATH}" ]
then
	mkdir "${BASE_PATH}"
	chmod 0700 "${BASE_PATH}"
fi

if [ ! -f "${SECRET_FILE}" ]
then
	touch "${SECRET_FILE}"
	chmod 0600 "${SECRET_FILE}"
fi

echo "Looking up secret key for service '$1' ..."
SECRET_KEY=$(grep "$1" ${SECRET_FILE} | cut -d " " -f 2)

if [ -z "${SECRET_KEY}" ]
then
	echo "Secret key for service '$1' not found."
	while [ -z "${SECRET_KEY}" ]
	do
		read -s -p "Please enter it: " SECRET_KEY
	done

	echo "Adding secret key ..."
	echo "$1 ${SECRET_KEY}" >> "${SECRET_FILE}"
fi

echo "TOTP code is:"
${OATHTOOL_BIN} -b --totp "${SECRET_KEY}"

Have fun!

This entry was edited (4 years ago)