-
Dev Ops – API Function From Scratch
Introduction Recently I was asked by a friend to help demonstrate some functionality in a proof of concept. The idea was to make an API endpoint that could check the name of an individual against a pre-loaded list. Commercial applications for this kind of thing are nearly endless but in general its a way of…
-
Automate the Boring Stuff – DevOps
Introduction The fun part of being able to code is well… the coding right? (provided it works) but in reality so many developers spend a minority of their working day writing code, there are meetings, phone calls, lunch (ok that bit isn’t bad), and all the work around building, testing and deploying software. An approach…
-
Fake it Till you Make it
Unit testing is part of the development process, where a developer will write some tests to check if the basic functionality of their code is correct or not. Lets have a look at some very basic functions. Here we have 2 methods; so lets write some unit tests for these – we want a test…