View php-upgrade-5.5.x.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm | |
yum install yum-plugin-replace -y | |
yum replace php-common --replace-with=php55w-common |
View root.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -it --rm --security-opt=seccomp:unconfined \ | |
--security-opt=apparmor:unconfined \ | |
--privileged --pid=host --userns=host \ | |
debian:jessie@sha256:51cd80bb935b76fbbf49640750736abc63ab7084d5331e198326b20063e7f13c \ | |
nsenter -t 1 -m -u -n -i -F /bin/sh |
View dns.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DNS w/ (not so) reasonable privacy & ad-blocking | |
# Local-caching DNS via dockerd on xhyve/LinuxKit, for the default wifi interface on MacOSX, using | |
# Pi-hole 5.6 https://pi-hole.net/ and pointing to the DNS service offered by LibreOps RadicalDNS https://libreops.cc/radicaldns.html | |
# Admin-interface at http://127.0.0.1:8082/admin/ | |
# | |
# Use https://libredns.gr/ for DoH/DoT to achieve reasonable privacy over the wire | |
docker run -d --name pihole \ | |
-e ServerIP=127.0.0.1 \ | |
-e WEBPASSWORD="mypihole" \ | |
-e DNS1=88.198.92.222 \ |
View payoneer.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Payoneer API integration | |
* | |
* @date 27/11/12 | |
* @name $payoneer | |
* @author Panagiotis Moustafellos | |
*/ | |
class Payoneer | |
{ |
OlderNewer