Radix Sort in Go (Golang)

Radix Sort is a relatively old (discovered in 1887 by Herman Hollerith), non-comparitive integer sorting algorithm, which sorts data by comparing various integers individual digit position and value. In many ways Radix Sort in Go reflects and builds off Counting Sort, and I recommend reviewing that algorithm as well. Radix Sort Essentially, the algorithm is is…

Returning and storing user selected web elements using a basic C++ web browser

I have written two posts recently regarding Selenium Factory. The idea of Selenium Factory being to log all web elements a user interacts with on a website, as well as filling out forms via typing, etc. I recommend reading those two articles first: Building a Simple Web Browser in C++ using Qt Tracking User Selected Web Elements…