Amazon Kindle Paprwhite Hard Reset

Probleme mit dem Amazon Kindle Paperwhite? Ist ein Software update des Kindles abgebrochen oder stehen geblieben?
Stürzt der Kindle Paperwhite beim Starten ab oder hat er Probleme, dass er statt in den Standby, wieder in den normalen Modus wechselt?

Der Amazon Kindle Paperwhite kann durch folgenden Kniff Hard Resettet werden:

20 Sekunden den Ein-/Ausschalter gedrückt halten

Dann startet das Gerät kalt durch.

Viel Erfolg

Kippo Honeypot stop

To stop Kippo Honeypot, you could use two options, first you could check your connections:


netstat -l -p

and then kill the process with the PID via


kill -9 $PID

Or you could use the small script available at github (https://github.com/beardyjay/bHoneypot/issues/15):

#!/bin/sh

PIDFILE=kippo.pid

if ! [ -f $PIDFILE ]
then
echo „Kippo is not running ..“
exit
fi

PID=$(cat $PIDFILE)

echo „Stopping Kippo ..“
kill -TERM $PID
rm -f $PIDFILE

with the result:


pi@raspberrypi ~/kippo-read-only $ ./stop.sh
Stopping Kippo ..

Raspberry Pi with Amazon Prime Video Flatrate

Nachdem Amazon einen neuen Bestandteil von Amazon Prime angekündigt hat, stellt sich natürlich die Frage, ob auch ein Plugin für Amazon Prime Video on Demand für den Raspberry Pi bzw. raspbmc / XBMC kommen wird.

Vermutlich haben viele Nutzer einen Raspberry Pi als Mediacenter an ihrem Fernseher und würden sich darüber freuen, den Pi als Streaming client für Amazon Prime nutzen zu können.

Ein Plugin für den Raspberry Pi und Lovefilm, die Amazon Tochter, gibt es meines Wissens nach auch schon. Eine Ankündigung, dass Kindle Fire unterstützt wird, hab es schon.

Update 28.02.2014:
Evtl. hilft dieses Repo aus diesem Artikel.

grep Kung Fu

Some nice grep tricks:

search for mail adresses within a given file:
grep -E -o "\b[a-zA-Z0-9.-._]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9.-]+\b"

Search for multiple words given in a file with one keyword each line:
cat inputfile.txt | grep -Ff file_with_keywords.txt > results.txt

Search multiple words given by command line:
cat inputfile.txt | grep -iE "(keywords1|keyword2|keyword2)" > results.txt

Threema – Whattsapp with encryption

Whattsapp the popular smartphone app has several „privacy issues“ due to lack of encryption.

but there is an alternative solution with end to end encryption: Threema.
The company behind Threema is based in switzerland.

They have a special section within their FAQ for security questions: FAQ

Threema is at the moment only available for Android and iOS, so no Blackberry nor Windows Mobile support, but that should only be a question of time.

Another blogpost about threema: http://damienclayton.co.za/2013/09/threema-secure-mobile-messaging-for-everyone/

But there are some concerns as the messages are stored plain on the device: article on hetzel.net (german only)

Download iOS app
Download android version

Raspberry Pi USV UPS

Raspberry Pi, the cheap computer for various stuff like a surveillance cam gets another cool toy: The PI USV from CW2.

While pis are used in more and more aspects, it gets critical to ensure power supply. A normal USV / UPS (unterbrechungsfreie Stromversorgung / uninterruptible power supply) is fine, but a spcial USV for the PI has some benefits:
– propper shutdown
– power supply monitoring to check the supply (batterie only, no batteries given, etc.)

The USV / UPS will be attached via the „normal“ micro USB

It will send signals like BATLOW, BATPOW, PIREADY via GPIO.
Even without using the GPIO ports, three LEDs are indicating the status of the USV.

Cw2. is based in Germany

Costs? 29,99 €.

or at Amazon:

PI USV can also be used as an Arduino USV and a Beaglebone USV (Arduino UPS / Beaglebone UPS)