Since modern browsers stopped allowing Java applets if you try and connect to a CAB.de printer with a browser all you will see is But how do you get the same functionality provided by the old browser embedded Java applet? Goto CAB.de goto Support & Downloads =>...
IT Tips
Copy ISO to USB for Installing Windows
https://rufus.ie/en/ Warning: I tried to burn an ISO to a USB with dd on Linux and it simply wouldn't install on my computer telling me it was missing media drivers. The above program on Windows 10 Pro burnt the ISO to the USB key correctly and I was able to start the...
Remotely Start and Connect to VMWare Workstation VMs
This is on a Ubuntu Linux Host Running 22.04 and VMWare Workstation Pro 16.2.4 Prior to starting the VM guest remotely enable VNC make each vm listen on a different port (i.e. 5900, 5901 etc) VPN or get access to the remote VMWare Host and SSH to it and then run cli...
Windows 10/11 Software Packages for Workstation Build
PackagePurpose7z2201-x64.exe7 Zip file archiver and unpackerAuthy Desktop Setup 2.2.1.exeMulti-device authenticator appChromeSetup.exeGoogle Chrome - Developer toolsFileZilla_3.61.0_win64-setup.exeSFTP Clientmysql-workbench-community-8.0.30-winx64.msiMySQL Database...
Perform a MySQL to Postgres Migration with PGLoader docker container and command-file
Datetimes in mysql are stored as below with a Timezone. These dates as diplayed are stored in Australia/Sydney timezone # bb_date production_date id 2024-03-16 2022-09-15 14:26:36 248078 2024-03-16 2022-09-15 14:29:51 248079 2024-03-16 2022-09-15 14:34:30 248080 When...
WordPress site logo repeated on Safari Browser on IPhone and MacOS
If you see your site logo repeated as in the example screen shots below it could be a stale W3-Total-Cache assets cache after an update From the Wordpress Admin Portal Or using wp-cli wp --path=$WP_DIR plugin is-installed w3-total-cache if [ "$?" = "0" ]; then echo...
CakePHP4 Tutorial Videos
So I have been using CakePHP since 2015 and have now started to try and solidify my learning by making Youtube Videos. Similar to Blogging once I create a Video I can refer back to it later. Videos Using Dependency Injection to move Controller Action code to Service...
Animate.css and react-transition-group
Updated animate.css using latest React and react-transition-group
CakePHP 4.4 – PaginatorComponent is Deprecated
I got this deprecation warning after upgrading to CakePHP 4.4 "PaginatorComponent is deprecated, use a Cake\Datasource\Pagination\NumericPaginator instance directly" I thought that meant I had to run the CakePHP 4 upgrade tool and it would fix it but no. Simple Fix...
Electron & React
So I have been using timer apps from the App Store on my Mac to time parts that I run on Zoom. I was using Tempus but the form factor meant that I was clicking start and then having to relocate the window and hiding the control buttons. I also found that sometimes I...
Launching Google Chrome as an app on Windows & MacOS
Making a timer with javascript and want run it with no menus in chrome and a specific canvas / viewport size. But was always opening large. The secret to it not being the same size as an already running window is making --user-data-dir a new random location Windows...
CakePHP 4 multi-value search form
Sometimes you want to provide a multi-value search form This form POST's to http://10.197.3.73:6002/wms/pallets/lookupSearch Thenthe lookupSearch action filters the POST data and redirects to the lookup action with the search terms in the query string The lookup...
SFTP on Linux with chroot
I am currently working on integrating a client internal system with MessageXchange via an SFTP gateway for EDI with Coles, Woolworth and Metcash (when MessageXchange / Colladium - completes their accreditation) So for testing I wanted to emulate their SFTP endpoint....
MacOS USB Creator
Just toasted my Windows 10 Pro install with a Windows 11 upgrade. Think it will be unrecoverable (because of Bitlocker and no recovery keys in AAD) but going to try and recover with Veeam and need to copy the recovery ISO to USB to kick off the restore. This is a nice...
CakePHP 4 development environment with docker compose orchestrated containers
A screencast I did of CakePHP 4 development environment with docker-compose containers. #cakephp https://youtu.be/uoOb6u3_NU8
Cakephp 4 – Display the loaded plugin list in the ui
Handy snippet to include your loaded plugin list in a view // templates/Pages/help.php <tr> <th>Loaded Plugins</th> <td> <?= Text::toList(Plugin::loaded()) ?></td> </tr> Walah!
Cakephp 4 with cakedc/auth and rbac
I have been trying to do a Youtube video coding a CakePHP 4 with Authentication / Authorization using RequestAuthorizationMiddleware tied into CakeDC/auth RBAC After multiple tries I'm just posting it as is. I learnt I'm not currently a video editor....
WordPress database transfer BETWEEN LIVE AND DEVELOPMENT SITES without a plugin
Transfer a Wordpress site between Live and Development environments or domains using the command line Take a database backup mysqldump --databases wpdb -uroot -p > wp.sql From LIVE to Development Environment sed -ibak 's+https://toggen.com.au+http://localhost:8080+g'...