Token 786 β€” The Symbol of Prosperity on the Blockchain

Token 786 (T786) is more than a meme coin β€” it’s a symbol of luck, faith, and positive energy on the BNB Chain.Inspired by the sacred number 786, known across cultures as a sign of good fortune and divine blessings, Token 786 brings that timeless spirit into the digital world. πŸŒ™ What Does 786 Mean? … Read more

RxJS Retrieve Related Data Pipeline Explained

Introduction In this series of posts, we will cover few common RxJS pipeline and example code for practical usages. In this post, we’ll cover the Retrieve Related Data Pipeline. Upcoming posts will cover the other topics. So let’s start. Retrieve Related Data Pipeline Example: We have a search-box where we can enter a user-name and … Read more

RxJS Pattern

Introduction In this post we are going to cover few of RxJS pattern which we use often. Declarative Data Access Pattern To understand it better lets first see the Classic Pattern Retrieving Data. Following is a very classic data retrieval code where we have a function inside a service which will fetch the data and … Read more

OpenAPI – Generate and use Angular Client Code

Introduction In one of earlier post, we discussed that An OpenAPI specification is a standard which describes the capabilities of our API, and how to interact with it. We also demonstrated a .NET Core Web API application integrated with OpenAPI/Swagger. If you haven’t already, I’ll suggest to check the previous post for background information, as … Read more

Konva – Transforming Shapes

Introduction In previous post we started with Konva introduction and wired it up in our angular application. Today we’ll continue our journey and learn about another useful feature of konva which helps us implement transformations with very little effort. If you haven’t already, please check the previous post for background information and we’ll be using … Read more

Konva – Basics

Introduction Konva is a wrapper for the HTML5 canvas element. In this post we’ll see a basic introduction of Konva library and we’ll also use it in an Angular application. Konva has very good documentation available, please check it to get more details as needed. Setting Up the Code Solution I will be using an … Read more

NgRx – Strongly Typing the State and Building Selectors

Introduction In an introductory post we started with the basics of NgRx. We covered the first steps towards centralized state management for our application using NgRx which is Redux pattern tailored for Angular. We installed the NgRx store and wired-it up in our application. We saw, how we can structure our application state in small … Read more

AWS ECS Fargate – Deploy and Run Multi-Container Web Application (.NET Core, Angular, Postgres)

Introduction With AWS Fargate, we can run applications without managing servers. Fargate is a serverless compute engine for containers. In previous post, we covered basics of AWS Fargate and took a step by step approach to deploy and run a .NET Core Web API application on AWS Fargate Service. We used AWS Fargate web console … Read more