abiodunjames.hashnode.devUsing Simple Queue Service From Your Node.Js ApplicationIn the previous post, we talked in detail about queue systems and why they're essential in scaling applications. Today, we'll take it a bit further. We'll look at AWS Simple Queue Service (SQS), a managed queue system provided by AWS, and how you ca...Mar 14, 2020
abiodunjames.hashnode.devA gentle guide to message queuesToday, I'm on a queue trail, Ok? The word "queue" is used everywhere. It has all kinds of meanings in the real world and even in the world of software development. Last night, a friend pulled me aside and whispered, "Why do you hate queues so much?"...Jan 30, 2020
abiodunjames.hashnode.devRapid code prototyping in IDE with Quokka.jsToday I want to talk about one of my favorite plugins for prototyping Javascript in visual studio code: Quokka.js. Quokka.js is a rapid prototyping playground in your editor, with access to your project files and provides instant inline reporting. It...Jan 15, 2020
abiodunjames.hashnode.devHow to build better API productsIn the 19th century, Le Corbusier, a French architect, made public a visualization that changed how we live. Image credit citylab.com This plan opened the door to modern urban planning today. Around 1930, public health became a significant conce...Jan 15, 2020
abiodunjames.hashnode.devLinked List : Singly Linked ListA linked list is a collection of nodes connected by pointers. In a singly linked list, each node contains a value and a pointer to the next node. The first node in a linked list is the root, and the last node in the list is tail. A linked list ...Jan 3, 2020