profile image

CODES REALM

A Software & Cloud Engineering Journal.

Quick Tags

C# / .Net

JavaScript / TypeScript

Azure

Kotlin / Java

Notes

Azure Certification Notes


Domain Event Pattern

C#, microservices 5 mins read

Domain Event pattern with in-built .Net Core IoC Container, scrutor and .Net Core console application. Source code for this post can be found here This post focuses on the abstract of Domain Event in Domain Driven Design (DDD) which is also a fundamental building block of microservices or eventing s…

Read more

My journey into SpringBoot with Kotlin

Java, Kotlin, Spring Boot 4 mins read

I have been an adept C# .Net-ter and always will be. One of my favourites is still C# .NET Core as I do C# almost on a daily basis, but a side of me wanted to be platform and framework agnostics as much as I can. I have been taking advantage of tradeoffs in the different languages/framework in devel…

Read more

Call, Apply & Bind

JavaScript 3 mins read

In this blog post, I will quickly discuss the call(), apply() & bind() methods. These methods allows for dynamic change in the JavaScript "this". The this can be changed depending on the context being used. The usefulness of these methods comes when you want to do some method or function borrowi…

Read more

JavaScript OOP : Polymorphism

JavaScript 3 mins read

This post is part of a series of posts on JavaScript object-oriented programming. Link to the series are as follows: This series is as follows: Pillars of Objected-Oriented Programming JavaScript Objects, prototype, constructor, & Object constructor Object Creation in JavaScript JavaScript OOP…

Read more