Hypercipient

Programming

Priority Queue in Go - Part 2 of n

This is Part 2 in an n part series on building a priority queue in Go. In this part I will explore how to pull items from the queue.

Priority Queue in Go - Part 1 of n

On my road to learning Go, I am implementing various data structures. One I have never implemented is a Priority Queue, so I thought I would give it a try. Here is the first installment: Adding items to the queue and getting in them in the correct order in the backing array.

Python Notes - Part 1 of n

A few things I learned about Python as a Java programmer: Loading modules dynamically, creating objects of dynamically loaded types, parsing CLI arguments and operator overloading.

Reading Files With Go

There are different ways to read files, depending on your needs. This guide shows different ways to read files using go and which approach is appropriate for a given situation.