An Intro To Docker VolumeCreating a locally developed containerized service is quite slow. To test every code change, the developer would have to make the code…Jan 17, 2021Jan 17, 2021
An Intro To Docker ContainersBefore trying to understand Docker Containers, it’s good to have a basic grasp of how the operating system on your local machine normally…Jan 10, 2021Jan 10, 2021
Installing Docker on MacThe key aspect of Docker is that it makes it easy to install and run software without worrying about dependencies.Jan 3, 2021Jan 3, 2021
An Intro To DockerPreviously, I’ve been hesitant to veer away from building on my core coding abilities. I’d assumed that to begin to get a basic…Dec 27, 2020Dec 27, 2020
Building A RESTful API: Express.js & MongoDB -Final PartTo get a specific post, you’ll use the Post model and an inbuilt method, “findById”. As it could take some time because it’s pulling from…Dec 20, 2020Dec 20, 2020
Building A RESTful API: Express.js & MongoDB -Part 4To create a post, firstly, import the model that will be receiving the post. At the top of ‘posts.js’, import the model by typing in the…Dec 13, 2020Dec 13, 2020
Building A RESTful API: Express.js & MongoDB -Part 3A key aspect of programming is to always ensure your code is readable and also structured in a way that ensures that there’s flow. The…Dec 6, 2020Dec 6, 2020
Published inThe StartupBuilding a RESTful API: Express.js & MongoDB -Part 2In Part 1, we imported the Express package, executed it and created a route to the home page.Nov 29, 2020Nov 29, 2020
Building A RESTful API: Express.js & MongoDB -Part 1Recently, I was invited to interview for a role. Part of the recruitment process involved a tech assessment that required using Node.js…Nov 22, 2020Nov 22, 2020
Implementing Sorting In A React SPAWhen adding the “sorting” functionality to an already created table in an app, the first thing to avoid is “mixing levels of abstraction”…Nov 14, 2020Nov 14, 2020