These are my personal install scripts for just downloading and executing all shell scripts on new computers.
Like downloading in a exclusive folder for these scripts, then chmod +x * && bash *
This file contains hidden or 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
$url = "https://datapass.de/" | |
$dataPassText = "Für den Aufruf dieser Seite ist eine Internetverbindung über das Mobilfunknetz notwendig" | |
$sevenIoKey = "" # API Key from SevenIO | |
$sevenIoPhone = "49176123456" # Telephone number | |
$sevenIoName = "FritzBox Fallback" | |
$sevenIoText = "The cable modem switched to the LTE fallback mode, this message repeats until script turned off" | |
Write-Host "Checking if $($url) contains a hint for beeing on LTE mode" | |
try { | |
$response = Invoke-WebRequest -Uri $url |
This file contains hidden or 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
# Ensure script runs as Administrator | |
if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
Write-Host "Please run this script as Administrator." -ForegroundColor Red | |
exit | |
} | |
# List of applications to install | |
$apps = @( | |
"Valve.Steam", | |
"WinSCP.WinSCP", |
This file contains hidden or 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
85 pnpm i -g asar | |
86 cd /opt/Notion\ Enhanced/resources/ | |
87 asar extract app.asar app | |
88 cp app.asar app.asar.bak | |
89 cd app/renderer/ | |
90 sed -i "s/require('notion-enhancer')('renderer\/preload', exports, (js) => eval(js))/&;/" preload.js | |
91 cat <<EOL >>preload.js | |
(function __polyfill_2() { | |
function getClientHints(navigator) { | |
let { userAgent } = navigator; |
This file contains hidden or 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
echo "Start installing lazydocker..." | |
apt install sudo -y | |
cd /tmp | |
LAZYDOCKER_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazydocker/releases/latest" | grep -Po '"tag_name": "v\K[0-9.]+') | |
curl -Lo lazydocker.tar.gz "https://github.com/jesseduffield/lazydocker/releases/latest/download/lazydocker_${LAZYDOCKER_VERSION}_Linux_x86_64.tar.gz" | |
mkdir lazydocker-temp | |
tar xf lazydocker.tar.gz -C lazydocker-temp | |
sudo mv lazydocker-temp/lazydocker /usr/local/bin | |
lazydocker --version | |
rm -rf lazydocker.tar.gz lazydocker-temp |
This file contains hidden or 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
Ich verkaufe diesen Artikel, da ich diesen nicht mehr benutzte. | |
Zustand: Funktionsfähig, gebraucht | |
Rauchfreier Haushalt: Ja | |
** Stöbern Sie doch auch gerne in meinen anderen Angeboten ** | |
====> Lieferumfang 📦 | |
☐ |
This file contains hidden or 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
# ionCube Loader (for PHP 5.6) | |
ADD ./ioncube/ioncube_loader_lin_5.6.so /usr/lib/php/20131226 | |
RUN echo "zend_extension=/usr/lib/php/20131226/ioncube_loader_lin_5.6.so" > /etc/php/5.6/fpm/php.ini |