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
#!/bin/bash | |
## Links | |
## Ubuntu|Debian | |
# http://www.ccl.net/cca/software/UNIX/oracle/RH6.2/README2.html | |
# https://openacs.org/xowiki/oracle-install | |
# https://www.vivaolinux.com.br/dica/Instalacao-e-Configuracao-do-Oracle-Express-Edition-e-SQL-Developer-no-Ubuntu | |
# https://docs.oracle.com/cd/E16529_01/doc/server.112/e10839.pdf | |
# https://openacs.org/doc/oracle | |
# https://kenny-chlim.medium.com/oracle-18c-xe-installation-debian-10-4-buster-9cbf7f957d9f | |
# https://github.com/oracle/docker-images/tree/main/OracleDatabase/SingleInstance |
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
## Note that this code uses the Tokio runtime for asynchronous I/O. | |
## You'll need to add the following dependencies to your Cargo.toml file: | |
tokio = { version = "1", features = ["full"] } | |
tokio-util = { version = "0.7", features = ["compat"] } |
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
#!/bin/bash | |
## https://github.com/PowerDNS-Admin/PowerDNS-Admin | |
## https://www.howtoforge.com/how-to-install-powerdns-on-ubuntu-22-04/ | |
## https://phoenixnap.com/kb/powerdns-ubuntu | |
## https://geekandnix.com/ubuntu/powerdns/ | |
## https://hub.docker.com/r/powerdnsadmin/pda-legacy | |
## https://gist.github.com/maxivak/1daa03229493e22a7263c83dd52af76f | |
## https://github.com/PowerDNS/pdns |
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
#!/bin/bash | |
## https://github.com/ryanoasis/nerd-fonts/releases | |
version='3.1.1' | |
declare -a fonts=( | |
BitstreamVeraSansMono |
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
#!/bin/bash | |
## Links | |
## Ubuntu|Debian|Linux | |
## https://ziglang.org/documentation/master/ | |
## https://ziglang.org/learn/getting-started/ | |
## https://zig.guide/build-system/build-modes/ | |
## https://zig.guide/ | |
## https://github.com/C-BJ/awesome-zig | |
## https://github.com/zigzap/zap |
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
#!/bin/bash | |
## Links | |
## https://github.com/postfixadmin/postfixadmin | |
## https://github.com/postfixadmin/docker | |
apt update | |
apt install -y git curl wget docker.io | |
wget -O /usr/local/bin/docker-compose https://github.com/docker/compose/releases/download/v2.24.6/docker-compose-linux-x86_64 | |
chmod +x /usr/local/bin/docker-compose |
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
#!/bin/bash | |
## Links | |
## Ubuntu|Debian | |
## https://www.linuxtuto.com/how-to-install-roundcube-on-ubuntu-22-04/ | |
## https://medium.com/@community.vahid/stable-webmail-install-roundcube-webmail-ubuntu-22-04-lts-server-semi-stable-ec4349c1804b | |
## https://caddy.community/t/help-configuring-php-fpm-status-for-caddy2/19737/7 | |
## https://www.atlantic.net/vps-hosting/how-to-install-and-configure-caddy-web-server-with-php-on-rocky-linux/ | |
## https://www.howtoforge.com/tutorial/how-to-install-caddy-web-server-with-php-fpm-on-ubuntu-1604/ | |
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
#!/bin/bash | |
## Links | |
## Ubuntu|Debian|Linux | |
## https://github.com/filebrowser/filebrowser | |
## https://github.com/caddyserver/caddy | |
## https://github.com/tenox7/wfm | |
## https://www.youtube.com/watch?v=W2yZ5_sd9Hc | |
## https://technotim.live/posts/meet-file-browser/ | |
VERSION=v2.30.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
#!/bin/bash | |
## Links | |
## https://stackoverflow.com/questions/11316986/how-to-convert-iso8859-15-to-utf8 | |
TO="UTF-8"; FILE=$1 | |
FROM=$(file -i $FILE | cut -d'=' -f2) | |
if [[ $FROM = "binary" ]]; then | |
echo "Skipping binary $FILE..." | |
exit 0 | |
fi |
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
#!/bin/bash | |
## Links | |
## Ubuntu 23.10, OBS 30.0.1 | |
## https://github.com/iamscottxu/obs-rtspserver | |
## https://www.youtube.com/watch?v=CtoBw96wJnM | |
## https://obsproject.com/forum/resources/obs-rtspserver.1037/ | |
mkdir -p /usr/share/obs/obs-plugins/obs-rtspserver |