-
Using AWS CDK to deploy a Deno layer and sample Deno application
Overview This is an example project showing: AWS CDK TypeScript Deploying a new layer in a CDK project and deploy a function that will use the layer. Repository Github Link Requirements: AWS CDK npm install -g aws-cdk Node.js - Download Link An AWS account Local credentials ( unless using Cloud...
-
Running COBOL on AWS Lambda
I have spent part of my working career in Financial services, it’s a great industry and anyone who has spent any time there knows Mainframe, COBOL and Fortran do come up. I know of one COBOL programmer personally ( the wife of a friend ), however have never seen COBOL...
-
Faster build times with AWS Codebuild
While assisting my friend Zain with CodeBuild we were both complaining how long the build was taking. This was due to him running jekyll and installing several packages. Now if we look back here one of the steps is to actually build the docker image that “out” build will take...
-
Running Cockroach DB on a Raspberry Pi
I have had my eye on CockroachDB for some time. Put simply Cockroach DB is a Postgres compatible Multi-Master database meaning you can have multiple write nodes. I have set this up locally approximately 6 months ago. It was effortless to get going on MacOS. This weekend I was diving...
-
The repository 'http://ppa.launchpad.net....does not have a Release file.
Ever followed a guide a little to blindly and added a repository and now expereincing issues such as: The repository 'http://ppa.launchpad.net/{something}/archive/ubuntu focal Release' does not have a Release file. Solution: sudo add-apt-repository -r ppa:{reponame} sudo apt update For me this happened to be: sudo add-apt-repository -r ppa:longsleep/golang-backports sudo apt update...