C# Asyc await

C# Asynchronous Programming with async / await

Asynchronous Programming. One of the things that confuses most developers is asynchronous versus synchronous execution model. So, in this article, I’m going to explain the difference between synchronous and asynchronous execution model and then explain how we can do asynchronous programming with C#. Synchronous and Asynchronous execution model Synchronous program execution- In a synchronous program…Continue reading C# Asynchronous Programming with async / await

Javascript this

The mysteries of ‘this’ keyword in Javascript

‘This’ is a very straightforward concept in other languages. Not so in javascript. It can point to pretty much anything depending on the context. What the hell is this? If you are coming from another language, which is Object Oriented, such as Java, you are no doubt familiar with the concept of this. This keyword is used inside of…Continue reading The mysteries of ‘this’ keyword in Javascript

C++ logo

The ‘Pointer’ in C++, demystified. [Part-2]

In Part 1 of this series we explored the conceptual landscape of Pointer in C++. We discussed Pointer definition, how a Pointer variable declare, reference and some primary concepts on Pointer .  In this article I’ll share a some additional intermediate level examples from the Docker ecosystem that you need to know. At first write following program …Continue reading The ‘Pointer’ in C++, demystified. [Part-2]

C++ logo

The ‘Pointer’ in C++, demystified. [Part-1]

When I first started learning C++, it took me some time to understand the Pointer in C++ and be able to quickly identify Pointer is a variable that point to another variable’s memory address. I found that the hardest thing about understanding the Pointer is that you usually forget the different cases and situations that you have read…Continue reading The ‘Pointer’ in C++, demystified. [Part-1]