Multipass is pretty useful but what a pain this was to figure out, due to Ubuntu's Node.js package not working with AWS-CDK. Multipass lets you manage…
Dougie Richardson
The Psychology of Money
The Psychology of MoneyĀ by Morgan Housel is a captivating exploration of financial decision-making through the lenses of history and psychology. Here are five takeaways from the book: * Financial…
Setup a Multipass CDK Environment
I want to be able to connect to the environment using Visual Studio Code, so first we need to create a SSH key: ssh-keygen -t rsa We need a…
Rust
Picked up a book, Programming Rust (2nd Edition) by Jim Blandy, and have been working through it over the holidays (non-stop party here). Published in late 2021, it'…
Renew SSL certificate in Plesk with IONOS
Log in to IONOS - you need three files: * private key (.key) * certificate (.cer) * intermediate certificate (_INTERMEDIATE.cer) If you don't have the private key, Revoke Old Certificate, then…
The Horn
Overlooks M8 and periodically "speaks" although I've never made out what it says. Sculpted by Dalziel and Scullion and commissioned by West Lothian Council.…
Tech for Good - Volunteers Assemble
The message at this year's Tech for Good Summit was that as a society we face significant challenges, only by working together can we have an impact on…
Rainbows, decorators arguments & threads
Playing with Rainbow Hat I learned a few things about Python as a result I found out what a decorator is, the difference between args and kwargs and threads. I…
Python List Comprehension
Iāve been spending time with Python recently and am beginning to really like some of the languageās features. List comprehension creates a list by evaluating an expression on…
Using Threading rather than Thread
In an earlier post, I used Threads but the thread module in Python when I should be using threading. TheĀ documentationĀ for threading says it builds upon the thread module…