I hereby claim:
- I am pmoust on github.
- I am pmoust (https://keybase.io/pmoust) on keybase.
- I have a public key ASDQgNASpHW0HAnGumPc9_Rk9M5UGOmICSCEe1WrMwtNCwo
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Payoneer API integration | |
| * | |
| * @date 27/11/12 | |
| * @name $payoneer | |
| * @author Panagiotis Moustafellos | |
| */ | |
| class Payoneer | |
| { |
| """ | |
| No-op password hasher for tests that performs absolutely no encryption. | |
| This hasher stores passwords in plain text (with a simple prefix to identify them) | |
| to maximize test performance. It should ONLY be used during tests. | |
| """ | |
| from django.contrib.auth.hashers import BasePasswordHasher | |
| # 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 \ |
| 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 |
| rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm | |
| yum install yum-plugin-replace -y | |
| yum replace php-common --replace-with=php55w-common |
| HTOP_VERSION="2.0.0" | |
| brew remove htop 2>/dev/null | |
| rm -rf `which htop` 2>/dev/null | |
| cd /tmp | |
| wget http://hisham.hm/htop/releases/${HTOP_VERSION}/htop-${HTOP_VERSION}.tar.gz | |
| tar zxvf htop-${HTOP_VERSION}.tar.gz | |
| cd htop-${HTOP_VERSION} | |
| ./configure && make && make install && rm -rf /tmp/htop-${HTOP_VERSION}* | |
| popd |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/php | |
| <?php | |
| $scheme='tcp'; | |
| $host='www.kernel.org'; | |
| $port=80; | |
| $path='/'; | |
| if(isset($argv[1])) { | |
| $parsedUrl=parse_url($argv[1]); |
| <?php | |
| /** | |
| * Returns the active language. | |
| * @return string the locale. | |
| */ | |
| public function resolveActiveLanguage() | |
| { | |
| $user = user(); | |
| $matches = array(); | |
| if ($user->hasState('__locale')) { |