Posts getagged mit "FTTH"

von c.kuetbach am November 20, 2014

I just bought my first Amazon Fire TV

A small set-top box for browsing Amazon Instant Video or
Netflix.

This box is really tiny, but powerful: A Quad Core CPU with 2GB RAM.

After viewing an annoying intro video, which I couldn't skip, everything worked as expected.

There is a SPMC App in the Amazon App Store, but this was not compatible with the Fire TV.

I really wanted a XBMC App on this device. I googled a lot. This is the way to do it:

  • Load the actual spmc.apk from
  • Load adbFire
  • Install the apk with adbFire
  • Buy the spmc App from the Amazon App Store for 0,00€. This app is marked as not compatible wit the Fire TV, but (the cake) is a lie. It will work.
  • Now you have to sync all bought items. This will create a shortcut on the launcher.
  • Some tweaks: You should disable Hardware Acceleration, this will increase the Framerate.
von c.kuetbach am September 25, 2014
#!/bin/sh
DOMAIN=""     # Your domain
DEVICE=""     # Your device (eth0, wlan0)
PASSWORD=""   # Your has from afraid.org


### No changes beyond this line

SERVER="http://freedns.afraid.org/dynamic/update.php?$PASSWORD&address="
INET6_OLD=$(nslookup -q=AAAA $DOMAIN | grep AAAA | awk -F "address " '{print $2}')
INET6_NEW=$(ip -6 addr show dev $DEVICE | grep inet6 | grep global | awk '$1 == "inet6" {gsub(/\/.*$/, "", $2); print $2}')

if [ "$INET6_OLD" = "$INET6_NEW" ]; then
        echo "Not changed => Not updating"
else
        echo "Changed from '$INET6_OLD' to '$INET6_NEW'"
        curl -k $SERVER$INET6_NEW
fi