Download InstantClient
mkdir -p /opt/oracle
cd /opt/oracle
wget https://download.oracle.com/otn_software/linux/instantclient/218000/instantclient-basic-linux.x64-21.8.0.0.0dbru.zip
unzip instantclient-basic-linux.x64-21.8.0.0.0dbru.zip
mkdir -p /opt/oracle
cd /opt/oracle
wget https://download.oracle.com/otn_software/linux/instantclient/218000/instantclient-basic-linux.x64-21.8.0.0.0dbru.zip
unzip instantclient-basic-linux.x64-21.8.0.0.0dbru.zip
#!/bin/bash | |
## Install Pulumi Linux | |
## Pulumi Links | |
## https://www.pulumi.com/b/ | |
## https://www.pulumi.com/docs/concepts/vs/terraform/ | |
## https://www.pulumi.com/ai/conversations | |
## https://www.pulumi.com/docs/install/ | |
## https://www.pulumi.com/docs/cli/ | |
## https://github.com/pulumi/pulumi | |
## https://www.pulumi.com/docs/get-started/ |
#!/bin/bash | |
## Links | |
## https://github.com/soyersoyer/cameractrls | |
apt-get update | |
apt-get install -y git libsdl2-2.0-0 libturbojpeg | |
git clone https://github.com/soyersoyer/cameractrls.git /opt/cameractrls | |
rm -rf /opt/cameractrls/.git |
#!/bin/bash | |
## Links | |
## https://iriun.com/ | |
## https://github.com/obs-ndi/obs-ndi | |
## https://www.dev47apps.com/obs/ | |
## https://entangle-photo.org/ | |
set -e |
#!/bin/bash | |
## Update Golang (Linux/Mac) | |
go version | |
## Get Last Stable Version | |
LAST_VERSION=$(curl -s 'https://go.dev/VERSION?m=text'|head -n1) | |
OS="linux" | |
ARCH="amd64" |
#!/bin/bash | |
# | |
# https://docs.docker.com/build/buildkit/ | |
# https://github.com/docker/buildx/releases/ | |
# https://github.com/docker/buildx | |
mkdir -p $HOME/.docker/cli-plugins | |
wget https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64 | |
chmod +x buildx-v0.11.2.linux-amd64 | |
mv buildx-v0.11.2.linux-amd64 $HOME/.docker/cli-plugins/docker-buildx |
#!/bin/bash | |
## FIX OPENVPN Ubuntu 22.04 | |
## https://askubuntu.com/questions/1404673/imported-openvpn-ovpn-profile-not-working-anymore-after-update-to-ubuntu-22-0 | |
## https://forums.openvpn.net/viewtopic.php?t=34837 | |
## Problem "solved" by allowing weak algorithm: | |
## openvpn --tls-cipher "DEFAULT:@SECLEVEL=0" --data-ciphers AES-256-GCM:AES-128-GCM:BF-CBC | |
## Or add config file | |
## tls-cipher "DEFAULT:@SECLEVEL=0" | |
## data-ciphers AES-256-GCM:AES-128-GCM:BF-CBC |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"io" | |
"log" | |
"os" |
package main | |
import ( | |
"fmt" | |
"time" | |
"github.com/patrickmn/go-cache" | |
) | |
//https://github.com/patrickmn/go-cache |
package main | |
import ( | |
"database/sql" | |
"fmt" | |
"time" | |
"github.com/go-sql-driver/mysql" | |
"github.com/patrickmn/go-cache" | |
) |