Exploring Genkit GenAI in Angular
The post is about building a basic application that uses Genkit Flows, Angular and Gemini 2.0 Flash. We are creating a fun app that suggests the user a car based on the their personality. Foll...
The post is about building a basic application that uses Genkit Flows, Angular and Gemini 2.0 Flash. We are creating a fun app that suggests the user a car based on the their personality. Foll...
Using environment-specific variables in angular, the right way! We have seen environment variables being used in angular projects. They are used to in projects with different build configurations ...
Have you seen something like node!.parent and ever wondered what the post-fix expression ! is doing in the typescript code? That is the non-null assertion operator introduced in TypeScript 2.0. As ...
Here is a short intro on the elusive call, apply, bind in JavaScript Function.prototype.call() The call() method of Function instances calls this function with a given this value and arguments...
Introduction More than often a developer with will have atleast two GitHub accounts, one personal and other work. Let’s see how we can make the two accounts work side by side in windows. First na...
Promises: A brief introduction Promise The Promise object represents the eventual completion (or failure) of an asynchronous operation and its resulting value. A Promise is in one of these sta...
Partial<T> is one of the several utility types available globally in TypeScript. Partial Constructs a type with all properties of T set to optional. This utility will return a type t...
Steps on how to integrate ESLint on VS Code Before integration one will have to install ESLInt by opening the Extensions from inside the VS Code. You can also install it from Visual Studio Marketp...