A guide to running UO Outlands natively on Apple Silicon Macs (M1/M2/M3/M4) using Wine.
Credit: Based on Vercillo's method from the UO Outlands Discord (
#unofficial-mac-linux-supportchannel).
Required for running Intel-based components:
A guide to running UO Outlands natively on Apple Silicon Macs (M1/M2/M3/M4) using Wine.
Credit: Based on Vercillo's method from the UO Outlands Discord (
#unofficial-mac-linux-supportchannel).
Required for running Intel-based components:
| #!/bin/bash | |
| # VS Code vs VSCodium Benchmark Script | |
| # Tests startup time, memory usage, and file opening performance | |
| # Run on macOS with both editors installed | |
| set -e | |
| # Configuration | |
| VSCODE="code" | |
| CODIUM="/Applications/VSCodium.app/Contents/Resources/app/bin/codium" |
Set up your Mac with essential development tools quickly.
| /* | |
| * http://christian-fei.com/tutorials/how-to-lazy-load-disqus-comments/ | |
| * | |
| * <div class="comments"></div> | |
| */ | |
| var comments = document.getElementsByClassName('comments')[0], | |
| disqusLoaded = false; | |
| function loadDisqus() { |
| # Run with the following: | |
| # curl -s https://gist.githubusercontent.com/samdoidge/55e4d3332448cc7f2f9a2cbe1124c247/raw/7c434cabc84a550dbdb95f2fa4c6ce129e70475a/ubuntu-lamp-laravel-setup.sh | bash -s 1g | |
| # Last argument is swapfile size. 1g = 1 gigabyte. | |
| set -e | |
| sudo fallocate -l $1 /swapfile | |
| sudo chmod 600 /swapfile | |
| sudo mkswap /swapfile | |
| sudo swapon /swapfile | |
| echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab |
| for file in *; do head -n 11 "$file" > ../Test/"$file"; done |
| check permissions on folder - chown'ing to plesk user |
| run | |
| sudo updated | |
| to fix |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteCond %{HTTP_HOST} ^www.samdoidge.com$ [NC] | |
| RewriteRule ^(.*)$ http://samdoidge.com/$1 [R=301,L] | |
| </IfModule> |