Linux #6 2018 – Listing 2 Internet Radio

<?xml version=”1.0″?> <ices:Configuration xmlns:ices=”http://www.icecast.org/projects/ices”>  <Playlist>    <!– This is the filename used as a playlist when using the builtin playlist handler. –>    <File>/etc/ices/Arjan/Arjan.txt</File>      <!– Set this to 0 if you… Lees meer

Linux #5 2018 – Listing 2 E-Ink op Raspberry Pi

import time import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM)   knoppen = [5, 6, 13, 19]   GPIO.setup(knoppen, GPIO.IN, pull_up_down=GPIO.PUD_UP)   def knop_ingedrukt(pin):     print(‘knop %s’%(knoppen.index(pin)+1))   for knop in knoppen:    … Lees meer

Linux #5 2018 – Turtl Listing Server Installatie-script

# Installatie van de Turtl server # zie ook https://www.linode.com/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/   sudo apt install wget curl libtool subversion make automake git m4 sudo wget https://dist.libuv.org/dist/v1.19.2/libuv-v1.19.2.tar.gz   # libuv installeren sudo… Lees meer

Linux #5 2018 – Turtl Listing Installatie-script

# Turtl desktop client installatie script # # Hieronder installeren wij versie 0.6.4., controleer of dit de laatste # versie is   sudo apt-get install libcanberra-gtk-module bzip2 wget https://turtlapp.com/releases/desktop/turtl-linux64-0.6.4.tar.bz2 bzip2… Lees meer