Don Page

I enjoy growing software and experiencing life.

How To 5g Proof Your Bedroom

Coincidence? On September 26, 2019, 5G technology was introduced in Wuhan, China, and its rollout seemed to oddly coincide with […]

Trolley Problem Solved

Problem: Let’s say you see a trolley headed towards a track with 5 people tied on the tracks. You have […]

Merge Sort Example in C++

A merge sort is a O(n log n) sorting algorithm. I show in this example how to implement a merge sort in c++ using recursion. This algorithm is a divide & conquer based algorithm.