Iagon is a leading technology company based in Norway that is developing a decentralised storage & compute protocol. Incorporating advanced machine learning algorithms in conjunction with blockchain technology to provide…
Automating Kontent By Kentico Projects Foundation Using Migrations As Code.
For companies utilizing a headless CMS there are some important items to consider when scaffolding a projects foundation and content structure. Consistency How can a business roll out a consistent…
Reducing The Dockerized Image Size Of A Next.js Kontent Integrated Website with Next.js Standalone Functionality in v12.1.
As a best practice, when containerizing an application, the image outputted needs to be as small as possible. This reduces deployment & image transfer time, whilst also reduces storage costs….
Using Kontent Web Spotlight when developing locally with ngrok & Nextjs Preview Mode without deploying any code.
I really like the way Kontent provides a way of editing your website instantly, without any code changes whilst completely separating the concept of content & application. Kontent’s Web Spotlight…
Using the ‘not’ logical pattern for null checks in C#9
C#9 provides us with additional pattern combinators such as not, and, or to match expressions. One of my favourite is the not pattern. Especially in the following use case. As…
The action can’t be completed because it is open in IIS Express Worker Process.
I’ve been looking into an issue that is caused when saving an image to a local folder, the image is locked by an IIS Worker Process, meaning the delete functionality…
Say goodbye to static void main in c#9 & .NET 5
With .NET 5 projected in November 2020, the compiler will determine the new C# 9 language version as it’s default, allowing some very nice improvements, one of which gives us…
Terraform v0.13 – Introducing Custom Variable Validation
Custom variable validation is now a production ready feature in the new Terraform v0.13 (Announced On June 22nd 2020 by HashiCorp)Source – https://www.hashicorp.com/blog/announcing-the-terraform-0-13-beta/This is great news because you can now…
SQL Server 2019 – String or Binary Data Would be Truncated – New Helpful Error Message.
If you have worked with SQL in the past you have likely seen this error when inserting data, it’s always a tricky one to investigate as the error message doesn’t…
Invoke-WebRequest response empty when calling Azure function URL using Powershell.
Whilst working on a project that required an event driven platform, we decided to create an Azure Function that would handle Event Grid Events, and be deployed using Octopus Deploy….