-- Header -->

Weight Tracking
Visualisation

An exploration of my daily weight log. Using Python, within a Google Colab Notebook, I import, clean, manipulate and visualise my weight log data. The result is a confirmation of my weight loss, as well as some additional investigation into other features. I will be adding some forecasting and modelling in the future.

Personal Finance
Exploration

The first post of many exploring my personal finance system and how Python can help me eplore my situation further. This article sets up the premise for the project, including explaining a little about the current system, and some of the questions I would like answers to.

My Personal Finance Setup

How I use Google Sheets to track my personal finances. I look at why I need the system, how it started and has evolved to meet my needs, and what extra features I'd like to add in the future. I breakdown each sheet in the workbook and how they interact, as well as how the workbook interacts with other services.

Sudoku Solver

I've always enjoyed Sudoku, but sometimes I'd come up against one I couldn't solve. I decided to build a program to check my answers and help me figure out the solutions.
This uses a simple back-tracking alogrithm to solve a 2D-array input. A simple Tkinter GUI is used to input, solve and display puzzles.