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
-
How to Build a Blog Comments System Using Go, Postgres, and Vanilla Javascript
To build a comments system for a blog, create a form that allows users to submit comments. Then, on the back end, add some logic that receives those comments and saves them into a database. Then add logic to get comments from the db and display them.
-
Sorting Algorithms in Go
The fundamental sorting algorithms are Bubble Sort, Insertion Sort, Selection Sort, Quick Sort, Merge Sort, and Heap Sort. Out of these, Quick, Merge, and Heap Sort offer the best efficiency. Here's a breakdown of how they work, implemented in Go.
-
Binary Search in Go
Binary Search is an algorithm that is used to find out if a number exists in a list, and if so, what it's position in that list is. The strategy is to "divide and conquer", which makes it much faster and more efficient than checking every single number.