This is my open door to freely try out, document, and enjoy various aspects of software.
Recent Posts
Binary Trees
Tree Intro In comparison to other data structures, trees can be a little difficult to grasp.
The simpler data structures intuitively make sense after some experience. For instance, when first working with arrays, manipulating strings or character arrays, you may be able to anticipate the results. In contrast, setting up your tree data structure can be confusing.
What will we do? Let us see if we can use recursion to iterate over a tree data structure, sum the values, and store each sum in a list.
read more
Getting Started with Hugo
What is Hugo? Hugo is a “fast and modern static site generator written in Go, and designed to make website creation fun again.”1
Being able to use markdown to generate and add content to a full robust blog template is the main niche/unique solution that Hugo brings to web development specifically in terms of static sites.
Through Hugo, I’ve been able to get up and running - this blog as an example - in minimal time.
read more