Object-oriented programming (OOP) is a programming paradigm that uses objects, which are instances of classes, to represent and manipulate data. The basic idea behind OOP is to encapsulate data and behavior into self-contained objects, which can then interact with one… Read More ›

code
Clean code
Writing maintainable, readable code is an essential skill for software engineers. Not only does it make it easier to maintain and debug existing code, but it also improves collaboration and productivity within teams. Here are some top tips for writing… Read More ›
VS Code Prelaunch Tasks
To create a prelaunch task in Visual Studio Code, follow these steps: { “version”: “2.0.0”, “tasks”: [ { “label”: “build”, “type”: “shell”, “command”: “gulp build”, “isBackground”: true, “problemMatcher”: [] } ] } { “version”: “0.2.0”, “configurations”: [ { “type”: “node”,… Read More ›
The Simple Web Service in AWS CDK
The Simple Web Service is one of the best simple patterns that you will often see in a serverless architecture. Coined by Jeremy Daly – https://www.jeremydaly.com/serverless-microservice-patterns-for-aws/#simplewebservice this stack is a great one to build for a fundamental web application. The… Read More ›
Catch DynamoDB TTL Events
DynamoDB, AWS’s fast, flexible NoSQL serverless database service that provides single-digit millisecond performance at any scale, has many useful built-in features. In this article we are going to look at how the Time to Live (TTL) feature can be enable… Read More ›
AWS CDK Lambda Scheduler Write to DynamoDB
The following stack will be a simple example of a triggered schedular that will call a lambda function that writes to a DynamoDB table. The stack, seen below, contains 3 main elements. Starting at the bottom; The first element comes… Read More ›
Productive Day Off – Ionic 24hr App Build
Today I had a nice day off but due to the warm weather we was done with walking the dogs by 6AM and that left me the whole day to do nothing. So I got building. I wanted to have… Read More ›
Why go serverless?
Introduction Serverless computing is a new way of building and running applications. It promises to reduce cost, improve speed and simplify maintenance, making it easier for developers to build better apps faster. Reduce cost and increase speed There are a… Read More ›
Out with the old in with the new
This is still in progress but the new menu service is now in place and the old title bar is gone and has started to be replaced by a more modern looking sidebar.
Big Update to the ezConsole landing page
This morning I have worked on a new landing page concept and deployed the page for feedback. I think the new page has a more modern feel and will work weel when the landing page moves out of just pre-launch… Read More ›