Azure Functions

Azure Functions - Overview and tutorial

I have been building and deploying Azure functions at work and it is really exciting. However, due to the time constraints, we often have to learn just enough to build the solution. And this makes me sad 馃槩 because I like learning things in depth and understanding every detail. So my solution was to create a tutorial with information to help anyone understand Azure Functions. ...

January 24, 2021 路 1 min 路 207 words 路 eakangk
C#

Quirky Arrays in C#

I have been coding in C# on and off since the end of 2013. You might be wondering why I mentioned that here though. The reason is that, a large part of that time especially between 2015 to 2021, I was pretty much managing a team, rather than coding full-time. Now, does that make a difference? Of course, it does. Being primarily in a managerial role meant that I had less time to code and more time to do non coding tasks. ...

January 14, 2021 路 8 min 路 1559 words 路 eakangk
Hashsets in C#

HashSet in C#

Software engineers are generally familiar with Sets as something that they learn in mathematics at university. They may also have learned about HashTables, a data structure that stores keys and values where keys are unique and values are stored at a location in memory that is the Hash of the key. I recently discovered that C# has a datastructure called HashSet. It is a datastructure that stores unique or distinct elements like a Set, but probably named a HashSet as under the hood it is implemented like a HashMap or a HashTable. ...

January 10, 2021 路 3 min 路 634 words 路 eakangk
Application Insights and .NET Core

Application Insights in .Net Core App

If you work on .NET applications on Azure, you probably might be thinking of how and where you would log information about your application, like telemetry information. I shared this link to the youtube video that gives a good set of instructions to set this up yourself. There are some things that the video doesn鈥檛 cover. ...

December 20, 2020 路 3 min 路 497 words 路 eakangk
Semantic Versioning

Semantic versioning - Semver - An introduction - node package manager syntax and quirks

Featured image from https://devopedia.org/semantic-versioning When I started web development a long time ago, I heard about Semver (semantic versioning) as if it was some complicated jargon. But gradually I learned what it was and understood how relevant it was in web development, especially, when you rely on packages from a global package repository. I recently got asked by one my junior devs to explain it. I couldn鈥檛 explain it elegantly. So I decided to write a post. ...

December 6, 2020 路 6 min 路 1220 words 路 eakangk
NodeJs

Node - Get started

What is it? For a really simple introduction, check out my earlier post on an Introduction to Node and npm. Node is a javascript runtime environment outside your browser. It is a program that embeds Chrome鈥檚 V8 engine into a command line executable that lets you run javascript. You can download and install it from Nodejs.Org So what? Node comes with a package manager - npm, node package manager. that allows you to publish and download packages from npmjs.com, a web portal that allows developers to share their re-usable javascript modules. It has inherent support for both CommonJS and ECMAScript modules. When you download and install node, you鈥檒l get node executable and also the node package manager. ...

December 6, 2020 路 4 min 路 766 words 路 eakangk
NodeJs

Node and npm: The intro I wish, I got when I began web development

There are times in life, when you begin doing something without fully understanding it, simply because, at that point, you didn鈥檛 have the luxury to dig deeper, go further and be in a position where you could explain to a 5 year old, what it is really like to do what you were doing. I have been in this position several times. A lot of times, software development for me has been a journey of reverse engineering, or figuring things backwards. Do it first, based on snippets read here and there online and then connecting the dots gradually as you spend more time doing similar things. Sounds familiar? Probably, the life of every other software engineer on the planet working on a target deadline. ...

December 6, 2020 路 4 min 路 709 words 路 eakangk
Application Insights in DotNetCore

Application Insights, SeriLog and .NET Core

I realised recently that I have always taken application logging for granted. In my previous firm, which was a pretty large company, over a few thousand employees, we had a centralised logging platform and some lovely packages for each language and a team to configure the logging instance for our application and all that luxury. Developers, did just application development. For everything else, there was always somebody you could lean on. So the good thing was, you could spend all your time, polishing your code, applying all sorts of clean-code principles and achieve some coding nirvana and focus on just the business logic and the core problem. ...

November 28, 2020 路 13 min 路 2733 words 路 eakangk

Feature Toggles

How many times have you as a software engineer worked on a large feature, in an isolated branch that only got merged to the mainline branch when it is time to actually release the feature and then struggled for hours and sometimes days with the merge conflicts, simply because many other changes were contributed to the main branch in the meanwhile? If your answer is many times, then you really might benefit from this. ...

November 8, 2020 路 2 min 路 288 words 路 eakangk

A static responsive website as an Azure AppService

I have been working on a simple responsive website that would serve as an online address for my dog-walking/boarding service. This being my first ever official side-hustle as a registered company, it took pretty long to even get here. Registering a private limited company was also an adventure. But I wanted to experience. This isn鈥檛 like a full blown venture intended to become the leader in pet services or anything. We just love dogs and would love to do something that would be different from software. Something that would encourage us to get out of the house and teach us empathy and have some fun with dogs. ...

October 31, 2020 路 7 min 路 1290 words 路 eakangk