CensusAtlas: Australia’s Census, Made Easy to Explore

The ABS runs the Census every five years and it’s genuinely one of the best datasets in the country, but actually getting anything useful out of it is painful. Everything’s buried in DataPacks — hundreds of CSVs with column codes like G17C and Tot_P_P (you need a separate metadata workbook just to work out what […]

Read More… from CensusAtlas: Australia’s Census, Made Easy to Explore

DecodeThis: One Tool to Parse Them All

If you’ve worked in web development or DevOps for any length of time, you’ve accumulated a collection of bookmarked online tools. JWT.io for decoding tokens. Various JSON formatters. Base64 decoders. YAML validators. URL parsers. The list goes on. I found myself constantly jumping between these tools, often not even remembering which bookmark was which, and […]

Read More… from DecodeThis: One Tool to Parse Them All

Creating a full maps stack without Google

After Google increased their map prices significantly (by about 100x in my case) I had to set about finding alternatives. It turned out the DIY approach was far easier than I expected and is saving thousands of dollars every month. The end result we came up with looks professional with most people not noticing any […]

Read More… from Creating a full maps stack without Google

Strip all but certain characters from a string in PHP (such as alphanumeric, numeric, etc…)

The #1 result in Google for stripping characters out of strings in PHP is awful and uses the deprecated ereg_replace function so lets make a new search result using preg_replace which is much better, faster and it is fully supported in PHP 5 and 7. Allow only alpha-numeric: Only numeric: Alpha-numeric with whitespace: The ^ […]

Read More… from Strip all but certain characters from a string in PHP (such as alphanumeric, numeric, etc…)