Keybase proof
I hereby claim:
- I am belphemur on github.
- I am balor (https://keybase.io/balor) on keybase.
- I have a public key ASAAofR_lNOYzKmOkgfa5ZtPCG-tLHrCUrvmTi4afHUVsQo
To claim this, I am signing this object:
interface Hello { | |
foo : World; | |
bar: Number; | |
array: World[] | |
} | |
interface World { | |
greeting: string; | |
} |
# Google Analytics Bypassing Adblockers | |
## Client | |
change www.googletagmanager.com => your.domain.com | |
``` | |
<!-- Global site tag (gtag.js) - Google Analytics --> | |
<script async src="https://your.domain.com/gtag/js?id=UA-123456789-1"></script> | |
``` |
#!/bin/sh | |
REPOSITORY=_SERVER_:_PATH_ | |
BORG_CMD="borg" | |
BACKUP_DIR="/" | |
BACKUP_OPTIONS="--compress zstd,8 -v" | |
BACKUP_PREFIX="ns2" | |
export BORG_PASSPHRASE="_PASS_PHRASE" | |
EXCLUDE="/proc /boot /dev /mnt /sys /tmp" |
#!/bin/sh | |
CONFIG=/etc/wireguard/wg1.conf | |
DEVICE=wg1 | |
IP="10.11.1.115/16" | |
ip netns add vpn | |
ip link add $DEVICE type wireguard | |
wg setconf $DEVICE $CONFIG | |
ip link set $DEVICE netns vpn |
#!/usr/bin/env bash | |
if [ -z "$1" ] | |
then | |
echo "$0 client-name" | |
exit 1 | |
fi | |
#!/usr/bin/env bash | |
# TYPE= argument to the script where 0 = MAJOR, 1 = MINOR, 2 = BUILD. Default to BUILD. | |
GIT_VERSION=$(git describe --tags) | |
CURRENT_VERSION=$(echo ${GIT_VERSION:1} | cut -d'-' -f1) | |
TYPE=${1:-2} | |
function increment_version() { | |
local VERSION="$1" | |
local PLACE="$2" |
0x9ed660978abF96bB7b50DC2a618c7475fFb0f442 |
#!/bin/bash | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
FILE=${1:-instances.yml} | |
DAYS=${2:-36500} | |
BITS=${3-4096} | |
ES_VERSION=5.6.4 | |
ES_DIR=/usr/share/elasticsearch/ | |
CA_CERT=$DIR/certificates/ca/ca.crt | |
CA_KEY=$DIR/certificates/ca/ca.key |
I hereby claim:
To claim this, I am signing this object:
<?php | |
function to18char(string $inputId) { | |
$suffix = ''; | |
for ($i = 0; $i < 3; $i++) { | |
$flags = 0; | |
for ($j = 0; $j < 5; $j++) { | |
$start = $i * 5 + $j; | |
$end = ($i * 5 + $j + 1) - $start; | |
$c = substr($inputId, $start, $end); | |
if (ctype_upper($c) && $c >= 'A' && $c <= 'Z') { |