Ubuntu Driver WLAN TP-Link Archer T3U Plus

Ubuntu Driver WLAN TP-Link Archer T3U Plus

Installation The following steps worked with Ubuntu 22.04 sudo apt update; sudo apt install git linux-headers-generic dkms wget https://github.com/RinCat/RTL88x2BU-Linux-Driver/archive/master.zip unzip master.zip cd RTL88x2BU-Linux-Driver-master sudo make uninstall make clean make sudo make install sudo modprobe 88x2bu sudo reboot Update driver on....
read more
Shopware 6 Cheat Sheet

Shopware 6 Cheat Sheet

Open cookie settings again Create a custom link with target /cookie/offcanvas To open the canvas in the correct language, use e.g. /en/ as link prefix Reverse proxy mixed content error ERROR: Mixed Content: The page at 'https://domain.de/admin' was loaded over...
read more
Ubuntu increase SWAP file

Ubuntu increase SWAP file

From https://askubuntu.com/a/1066362 sudo swapoff /swapfile sudo fallocate -l 8G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile Verify: sudo swapon --show Make permanent: echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fsta...
read more
The Docker Compose Cheatsheet

The Docker Compose Cheatsheet

3. Volumes Mounting volumes is essentially required but can cause insane performance issues. Therefore it is very important to configure them correctly to prevent bottlenecks. This issue affects mainly Docker for Mac and Docker for Windows as Linux hosts can.....
read more
htaccess force SSL/HTTPS

htaccess force SSL/HTTPS

RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Permanent 301 Temporary 302
read more
htaccess for Angular 2+ (probably other JS) apps

htaccess for Angular 2+ (probably other JS) apps

allow from all <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.html [L] </IfModule>
read more
Laravel: Generate IDE helpers

Laravel: Generate IDE helpers

Add a composer command in the scripts section, so you can run composer run laravel:helper to update all Laravel IDE helpers: "scripts": { "laravel:helper": "php artisan ide-helper:generate && php artisan ide-helper:meta && php artisan ide-helpe...
read more
Ubuntu adjust scrollbar thickness

Ubuntu adjust scrollbar thickness

https://superuser.com/questions/1272428/how-do-you-configure-the-appearance-of-scrollbars-in-firefox-57/1273053#1273053
read more
Fix ^ and < swapped keys in macOS

Fix ^ and < swapped keys in macOS

1) Delete /Library/Preferences/com.apple.keyboardtype.plist 2) Reboot 3) For MacOS Monterey or newer, you must then open Settings -> Keyboard -> “Change Keyboard Type” and then identify your keyboard
read more
WordPress htaccess config

WordPress htaccess config

Default .htaccess entries for wordpress: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </If...
read more