CCXT library drops AAX Exchange

Quick solution notes for people who still use Laravel/PHP's "ccxt/ccxt" library to access AAX exchange. The exchange's API was delisted due to the likely insolvency, but for those who still need that for code #!/bin/sh curl -o vendor/ccxt/ccxt/php/aax.php https://raw.githubusercontent.com/ccxt/ccxt/2.2.63/php/aax.php if [ -z `cat vendor/ccxt/ccxt/php/Exchange.php | grep aax` ]; then #…

Laravel 6.0 is out!

Just when I'm getting started on getting used to stuff, Laravel 6.0 is out. Time for the control panel to retake a new twist again! PHP has been upgraded to 7.3 for much better performance, now Laravel to add LazyCollections to speed things even more!

puppet fun

Starting to get into more puppetizing the 'production' servers - but then this means some things break more often. Currently gotten a nice nginx setup which creates configurations based on a heira file. Also, thrown in is mod_security, and a customized PHP 7.2/7.3 script - per site in PHP-FPM mode.…