Guides

Fix Chat Bubbles Not Working On Samsung Phones

29 Jan, 2023

Settings -> Advanced features -> Labs -> Enable Multi window for all apps


Compress Images With cwebp

30 Nov, 2022

Simple way to compress images for web usage. So simple in fact the only reason I have this post is because I forget about the tool every now and then.


Copy an ISO to a USB for an installer on macOS

28 Feb, 2022

dd if=image.iso of=/dev/ridentifier bs=1m


Rockbox Rsync

05 Oct, 2021

rsync -ah –inplace –progress /Volumes/Samsung_T5/Music/* /Volumes/IPOD/Music


Transfer a PGP key to another device

05 Oct, 2021

gpg –decrypt myKey.pgp | gpg –import


Seed Jobs in Jenkins

06 Aug, 2021

Using Job DSL


Create a Jenkins Library

06 Aug, 2021

Create groovy files in a git repo under /vars/


Host a PGP Web Key Directory on a Static Site

27 Jul, 2021

A quick guide on how to host a WKD on a static website for automatic key discovery. You can give it a shot with my email gpg –locate-keys t@svw.au


Print all parameters in a jobs description

21 Jul, 2021

def paramsStringBuilder = new StringBuilder() params.each { param -> paramsStringBuilder.append("${param.key}: ${param.value} “) } currentBuild.description = paramsStringBuilder.toString()


Find AMI ID without launching an EC2 Instance

15 Jul, 2021

Go to the AWS Marketplace, search for the image you need. Select it. Click “Continue to Subscribe” (You may need to log in if you’re not already). Click “Continue to Configuration”. Configure “Delivery Method”, “Software Version”, and “Region” - All of these will change the AMI ID. Your AMI ID will be towards the bottom.