#!/bin/bash
CERT=$HOME/.mitmproxy/mitmproxy-ca-cert.cer
NAME=$(openssl x509 -in $CERT -subject_hash_old -noout)
cp ${CERT} ${OUT}/system/etc/security/cacerts/${NAME}.0
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
// ==UserScript== | |
// @name SPWN geo bypass | |
// @namespace spwn.geo.bypass | |
// @version 0.3 | |
// @description Bypass SPWN geocheck. | |
// @author PokeGuys | |
// @match *://spwn.jp/* | |
// @match *://virtual.spwn.jp/* | |
// @run-at document-start | |
// @grant none |
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
NGINX_HOST_PORT=8000 | |
PHP_FPM_XDEBUG_PORT=9003 | |
MYSQL_HOST_PORT=3306 | |
MEMCACHED_HOST_PORT=11121 |
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
// ==UserScript== | |
// @name Youtube emoji fix | |
// @namespace youtube.emoji.fix | |
// @version 0.1 | |
// @description Improved Youtube chat performance by replacing SVG emoji to PNG file. | |
// @author PokeGuys | |
// @match *://www.youtube.com/live_chat* | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== |
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
FROM php:7.2.8-fpm | |
RUN apt-get update && apt-get install -my wget gnupg | |
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils | |
RUN apt-get update && apt-get -y --no-install-recommends install apt-transport-https | |
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - | |
RUN curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources.list.d/mssql-release.list | |
RUN apt-get update | |
RUN ACCEPT_EULA=Y apt-get install -y msodbcsql17 |
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
global | |
log /dev/log local0 | |
log /dev/log local1 notice | |
chroot /var/lib/haproxy | |
stats socket /run/haproxy/admin.sock mode 660 level admin | |
stats timeout 30s | |
daemon | |
defaults | |
log global |