Hello, World. I'm Jason.

Thanks for visiting my website. Check out my thoughts on my blog, or send a message if you'd like to get in touch.

If you wanna know more about me, check out this page. If you'd like for me to work on your software project, check out the different services that I offer.

Latest Blog Posts

  • Binary Trees In Golang

    Binary Trees In Golang

    Binary trees are a fairly simple data structure where you have a node that contains some data, and a max of two child nodes that also contain some data, like this: 1 / \ 2 3 Each child node can also have up to two child nodes, and...

  • Working With Linked Lists In Golang

    Working With Linked Lists In Golang

    A linked list is a linear data structure, which means it is another a way to represent a sequence of things inside computer memory. You're probably already familiar with arrays, so how are they any different? The main thing to understand about arra...

  • Creating the Queue Data Structure in Golang

    Creating the Queue Data Structure in Golang

    Queues are a fundamental data structure used everywhere in programming. They're are a linear structure built on top of arrays, which means they represent sequential data. Queues are basically used to model situations in the real world where a seque...