9 followers
Software Engineer, #100Devs alum, and former conservation staff at Americorp. Interested in Climate-tech and contributing to solutions that work towards a better tomorrow.
The Benchmark DigitalOcean's Deploy24 was a digital conference that showcased the company's latest offerings and provided a platform for developers...
A new series documenting my interview questions. · Kicking things off! Welcome to the first entry in my new blog post series, where I'm taking a leaf out...
Planting seeds at RenderATL (🍑) A Year in the Making: From First-Timer to Familiar Face Last year, RenderATL was my first ever conference, and it was...
A common interview question for data structures and Algorithms. · The Code: Queues are a simple, yet very effective algorithm to implement. Commonplace...
Understanding Static Analysis · Overview Static analysis is a critical aspect of software development that helps to catch errors and improve code...
A foundational algorithm for sorting an Array. · The Code 🖥️: Here is the code with comments: function quickSorting(array) { //loop through array ...