Skip to content

Instantly share code, notes, and snippets.

@aaaler
aaaler / README.md
Created January 9, 2018 16:24
arma 3 server under wine in docker on linux

TBD

@aaaler
aaaler / ExileServer_object_construction_network_upgradeConstructionRequest.sqf
Last active October 7, 2017 16:57
arma 3 exilemod fortification upgrade kit fix. Do not forget to override this file in `CfgExileCustomCode`
/**
* ExileServer_object_construction_network_upgradeConstructionRequest
*
* original version do not remove fortification kit from player inventory
*
* Exile Mod
* www.exilemod.com
* © 2015 Exile Mod Team
*
* This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
@aaaler
aaaler / rpi_aceproxyvlc.sh
Last active January 12, 2018 15:38
install aceproxyvlc
#!/bin/sh
curl -sSL https://raw.githubusercontent.com/aaaler/acestreamproxyvlc-pi/master/acestream.service > /etc/systemd/system/acestream.service
curl -sSL https://raw.githubusercontent.com/aaaler/acestreamproxyvlc-pi/master/aceproxy.service > /etc/systemd/system/aceproxy.service
curl -sSL https://raw.githubusercontent.com/aaaler/acestreamproxyvlc-pi/master/vlc-nox.service > /etc/systemd/system/vlc-nox.service
mkdir /etc/aceproxy
curl -sSl https://raw.githubusercontent.com/aaaler/acestreamproxyvlc-pi/master/etc/torrenttv.py > /etc/aceproxy/torrenttv.py #torrent-tv acestream playlist mentioned here, http://torrent-tv.ru/c_playlist.php
curl -sSl https://raw.githubusercontent.com/aaaler/acestreamproxyvlc-pi/master/etc/p2pproxy.py > /etc/aceproxy/p2pproxy.py #torrent-tv login & passwd here
systemctl daemon-reload
docker pull aaaler/aceproxy-pi
docker pull aaaler/acestream-pi
#!/bin/sh
apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609Dx
apt-key adv -k 58118E89F3A912897C070ADBF76221572C52609D
mkdir -p /etc/apt/sources.list.d
echo deb \[arch=armhf\] https://apt.dockerproject.org/repo raspbian-jessie main > /etc/apt/sources.list.d/docker.list
sleep 3; apt-get update; apt-get install -y -q docker-engine