Resources  
  • Boost Coding Productivity with Yield Keywords in C#Mar 28, 2024. In today's programming landscape, continuous learning is essential for developers to enhance productivity and efficiency. C# introduces new features like yield return and yield break, optimizing code execution and memory usage. Let's explore their significance through practical examples.
  • Explain Null Handling in TypeScriptMar 21, 2024. Null handling in TypeScript involves managing null and undefined values effectively to prevent runtime errors. Techniques like nullable types, optional chaining, type guards, and non-null assertion operators help ensure code reliability.
  • JavaScript WeakMap in ES8 and TypeScriptMar 11, 2024. WeakMap object stands out as a specialized entity, closely related to the Map object but with a unique twist. In this article, we'll unravel the syntax, characteristics, and methods of the JavaScript WeakMap, shedding light on its applications. How to harness its capabilities in ES8 and TypeScript.
  • JavaScript Date Formats in TypeScriptMar 07, 2024. When it comes to handling dates in JavaScript, understanding various date formats is essential for creating dynamic and user-friendly applications. The JavaScript Date object empowers developers to work with dates, and this guide explores three common date formats: ISO Date, Short Date, and Long Date.
  • Boosting Web Page Performance with the Defer AttributeMar 06, 2024. JavaScript plays a vital role in enhancing the interactivity and functionality of web pages. However, the way scripts are loaded can significantly impact the user experience and overall performance of a website. In this article, we'll delve into the defer attribute in JavaScript.
  • Power of Typescript Scroll EventsMar 06, 2024. The onscroll event in JavaScript is a powerful tool that gets triggered when a scrollbar is used for an element. This event is particularly useful for creating dynamic and interactive web experiences, allowing developers to respond to user interactions with scrolling.
  • Master Scroll Events: ECMAScript 8 (ES8) and TypeScriptMar 05, 2024. We'll explore how to adapt and extend the scroll event examples using ECMAScript 8 (ES8) features and the TypeScript language. These advanced techniques provide developers with additional tools and benefits for handling scroll events in modern web development.
  • Reactive Forms In Angular with Practical Example Mar 01, 2024. Angular is a popular framework for building dynamic web applications, and one of its key features is its powerful Forms module. Angular offers two types of forms: template-driven forms and reactive forms. In this article, we'll delve into reactive forms in Angular, exploring their benefits, how to create them, and how to work with them effectively.
  • Auto Detect Responsive Screen Sizes Using Angular and BootstrapFeb 19, 2024. This document provides a comprehensive guide on implementing screen size detection and achieving responsive behavior in Angular applications. It outlines steps to utilize the HostListener decorator for detecting changes in the window size, allowing for dynamic adjustment of screen dimensions.
  • What is List Rendering in Vue.js?Jan 23, 2024. Vue.js provides an elegant and powerful way to render lists of data dynamically with the v-for directive. This feature allows you to iterate over an array or an object, creating and updating HTML elements effortlessly. In this guide, we'll explore the ins and outs of list rendering in Vue.js with practical examples.
  • Synchronous vs Asynchronous Programming in ASP.NET Core Web APIJan 21, 2024. Synchronous Programming: In synchronous programming, tasks are executed one after the other, in a sequential manner. When a request is made to a synchronous API, the server processes the request and waits for it to be completed before moving on to the next task. This means that if one operation takes a long time to finish, it can block the execution of subsequent operations, potentially leading to slower response times for clients.Asynchronous Programming: On the other hand, asynchronous programming allows tasks to be executed concurrently. When a request is made to an asynchronous API, the server can initiate tasks and continue processing other requests without waiting for the previous tasks to be completed. This can lead to better scalability and responsiveness, especially in scenarios where certain operations, such as I/O operations, may take some time.ASP.NET Core Web API: In ASP.NET Core Web API, you have the flexibility to choose between synchronous and asynchronous programming models. The framework supports both approaches. Asynchronous programming is particularly useful when dealing with I/O-bound operations, such as accessing a database or making external API calls, where the application can continue processing other tasks while waiting for the I/O operation to complete.To implement asynchronous programming in ASP.NET Core Web API, you can use the `async` and `await` keywords in your controller methods, allowing you to write non-blocking code. This helps improve the overall performance and responsiveness of your API, especially in scenarios with high concurrency.
  • Simulating Sleep/Wait Functionality in TypeScriptJan 21, 2024. In many programming languages, developers often utilize a sleep or wait function to introduce a pause in the execution of a program for a specific duration.
  • Understanding Page Redirection in TypeScriptJan 20, 2024. Page redirection is a crucial mechanism in web development that involves directing search engines and users to a different URL from the original one. This process can occur within the same server, across different servers, or even on distinct websites. Unlike refreshing a page, redirection is a deliberate action, often implemented using JavaScript to enhance user experience.
  • TypeScript Odyssey Through Global, Local, and Block ScopesJan 20, 2024. JavaScript scope is a fundamental concept that defines the region of execution where variables, expressions, and values can be referenced. There are two main scopes in JavaScript: global and local.
  • What are JavaScript Closures?Jan 18, 2024. JavaScript closures are a powerful and often misunderstood feature that plays a pivotal role in creating flexible and efficient code. In this comprehensive guide, we will delve into the depths of closures, exploring their characteristics, scope chains, and practical implementations through four illustrative examples.
  • Date Differences in JavaScriptJan 17, 2024. In JavaScript, calculating the difference between two dates is a common task that arises in various scenarios, ranging from determining the duration between events to computing age. This comprehensive guide explores the intricacies of date differences using JavaScript.
  • Power of Callbacks in ES8 and TypeScriptJan 17, 2024. Callbacks in JavaScript play a pivotal role in handling asynchronous operations, enabling developers to execute code after the completion of a specific task. In this article, we'll explore the concept of callbacks, and delve into examples showcasing their utility.
  • A Symphony of ES7 Features and TypeScript EleganceJan 16, 2024. JavaScript strings are fundamental components in web development, representing sequences of characters. This article explores advanced string manipulation using ES7 features and TypeScript, enhancing your ability to wield this crucial data type.
  • TypedArray in ES7 and TypeScriptJan 16, 2024. JavaScript TypedArray objects provide a fascinating way to work with binary data buffers. In this article, we'll delve into the intricacies of TypedArray and its various types, and methods, and how you can leverage it using the ES7 features and TypeScript for a more structured approach.
  • Set Object in ES7 and TypeScriptJan 16, 2024. The JavaScript Set object is a versatile tool for managing collections with unique values, accommodating various data types, including both primitive values and object references. In this article, we'll dive into the capabilities of the Set object in ES7 (ECMAScript 2016) and explore its usage in TypeScript.
  • JavaScript Map Object in ES7 and TypeScriptJan 16, 2024. The JavaScript Map object is a versatile tool for mapping keys to values, offering efficient operations for searching, updating, and deleting elements based on specified keys. In this article, we will explore the capabilities of the Map object in ES7 (ECMAScript 2016) and delve into its application in TypeScript.
  • WeakSet Object in ES7 and TypeScriptJan 16, 2024. The WeakSet object emerges as a unique entity designed specifically for storing weakly held objects. Unlike its counterpart, Set, WeakSet exclusively deals with objects, offering distinct advantages. This article delves into the intricacies of the JavaScript WeakSet object.
  • How to Create a Vue Project?Jan 06, 2024. Creating your first Vue.js project doesn’t have to be daunting. This step-by-step guide walks you through the process, starting from setting up the development environment to running your Vue.js application. Learn how to initiate a Vue.js project using npm, make essential choices during project creation, install dependencies, and launch your project locally.
  • RxJS Observables, Subjects, and BehaviorSubjects in AngularDec 20, 2023. In this article we will learn what are the ways of doing asynchronous programming in angular with the help of RxJS library. And the difference among them and there use cases.
  • Beyond Keywords: Decoding the Hidden Meaning - Semantic SearchDec 20, 2023. Semantic Search represents a significant shift in how we interact with information. As technology advances, Engines will become even better at grasping complex concepts and nuances in language. As voice assistants become more sophisticated, semantic search will be crucial for accurate and natural interactions. Search engines will become personal knowledge hubs, anticipating our needs and offering relevant information even before we ask.
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web APIDec 19, 2023. Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focus on implementing functionality rather than managing low-level HTTP communication.By breaking down each operation—POST, PUT, DELETE, GET, PATCH—and providing corresponding code snippets, the process of creating, retrieving, updating, and deleting resources becomes more accessible. The RestClientHelper class encapsulates RESTSharp configuration, promoting code reusability and maintainability.
  • Enabling GitHub CoPilot in Visual Studio CodeDec 07, 2023. Generative AI, GitHub Co PIlot, VS Code, Python, C#, typescript, Devops, Code Generation. Code debugging, Code Refactoring, Code Cleanup
  • How To validate Appsetting.json Configuration Values In .NETOct 16, 2023. In .NET applications, the appsettings.json file is commonly used to store configuration settings. It's essential to validate the values stored in this file to ensure that they meet the required format, data type, or specific constraints defined by the application. Validation of appsettings.json configuration values in .NET involves implementing checks and safeguards to confirm that the values are valid and usable by the application. This validation process helps prevent runtime errors and ensures the application behaves as intended, adhering to the specified configuration guidelines.
  • React (1) - Installation and Environment SetupSep 05, 2023. This series of articles delves into React, a popular choice for Single Page Applications (SPAs). As a former Angular developer, I found React's training courses beneficial in understanding key concepts and skills. The articles cover essential aspects such as installation, JSX, parameters, library usage, CSS, HTTP, routing, and more. This initial article provides an introduction to React, its installation, prerequisites, and the creation of your first project. Additionally, it addresses common issues like the choice between TypeScript and JavaScript and whether React is a compiled language.
  • What are forms in Angular?Aug 26, 2023. In this article, we will learn about angular forms.
  • What is the Basics of Angular?Aug 25, 2023. Discover the complete journey of Angular development with this in-depth guide. From building a strong foundation in Angular basics to delving into advanced topics like state management, authentication, and deployment, this blog equips you to create robust and feature-rich web applications.
  • Auth Guards in AngularAug 21, 2023. Discover Angular's auth guards basics and their step-by-step implementation through diverse use cases. Explore routing protection and authentication nuances for robust web applications.
  • Passing an argument by reference in C#Aug 20, 2023. This article contains useful information about how to use ref keyword in your C# program with the proper and easy to understand example.
  • HTTP Interceptors in AngularAug 12, 2023. Explore the essential concepts of HTTP Interceptors in Angular, their benefits, and practical applications using step-by-step examples with Angular 15, improving HTTP request handling and enhancing functionality.
  • Observable and Subjects in AngularAug 05, 2023. In this article, we are going to discuss the basics of observable and subject. Also, the difference between them is explained with the help of practical examples and the different types of subjects.
  • Feature Module with Lazy Loading in AngularJul 24, 2023. Learn how to utilize feature modules in Angular, streamline your codebase, and benefit from lazy loading for improved performance. Follow a step-by-step example using Angular CLI and Node.js.
  • Routing in AngularJul 16, 2023. This article will discuss What is Angular, What is Routing, Benefits of Routing, Routing in Angular, and Routing examples.
  • How To Use Order By in MySQLJun 23, 2023. Order by is a useful feature in MySQL that allows you to sort query results based on one or more columns in ascending or descending order. In this article, we will discuss how to use order by in MySQL with step-by-step examples.
  • Multi-Threading (3), async, await in C#Jun 21, 2023. This article will discuss Async, Wait key words in C#
  • Create Collapsible Accordions Using Ant Design UI In ReactJSJun 16, 2023. In this article, we will learn how to create Collapsible Accordions using Ant Design UI with React JS and Typescript.
  • How To Create Autocomplete Using Ant Design UI In ReactJSJun 15, 2023. In this article, we will learn how to create autocomplete using Ant Design UI with React JS and Typescript.
  • How To Create DatePicker Using Ant Design UI In ReactJSJun 14, 2023. In this article, we will learn how to create a date picker using Ant Design UI with React JS and Typescript.
  • How To Create Popover Using Ant Design UI In ReactJSJun 14, 2023. In this article, we will learn how to create a popover using Ant Design UI with React JS and Typescript.
  • How To Create ColorPicker Using Ant Design UI In ReactJSJun 13, 2023. In this article, we will learn how to create a Color Picker using Ant Design UI with React JS and Typescript.
  • How To Create Segments Using Ant Design UI In ReactJSJun 12, 2023. In this article, we will learn how to create segmented using Ant Design UI with React JS and Typescript.
  • How To Create TimePicker Using Ant Design UI In ReactJSJun 12, 2023. In this article, we will learn how to create timepicker using Ant Design UI with React JS and Typescript.
  • How To Create Tabs Using Ant Design UI In ReactJSJun 09, 2023. In this article, we will learn how to create Tab using Ant Design UI with React JS and Typescript.
  • How To Create timeline Using Ant Design UI In ReactJSJun 08, 2023. In this article, we will learn how to create timeline Ant Design UI with React JS and Typescript.
  • How To Create Table Using Ant Design UI In ReactJSJun 07, 2023. In this article, we will learn how to create a Table using Ant Design UI with React JS and Typescript.
  • How To Create Tree/Hierarchical list structure Using Ant Design UI In ReactJSJun 05, 2023. In this article we will learn how to create a Tree using Ant Design UI with React Js and type script.
  • How To Create QRCode Using Ant Design UI In ReactJSJun 04, 2023. In this article we will learn how to create QR Code using Ant Design UI with React Js and type script.
  • Personalization Unleashed: Supercharge User Experiences with Azure Personalizer💥May 24, 2023. Discover the game-changing potential of Azure Personalizer! This powerful tool empowers developers to create personalized experiences that captivate and engage users like never before. By leveraging cutting-edge technologies like reinforcement learning, Azure Personalizer enables you to deliver tailor-made recommendations and content that leave a lasting impression
  • Unleashing the Power of valueOf in JavaScriptMay 22, 2023. In this article, we will explore the potential of valueOf() through a practical example, showcasing how this method can be leveraged to enhance code functionality and flexibility.
  • Native Keyword In JavaMay 19, 2023. In this article, you will learn Native Keyword in java
  • What is Default Keyword in JavaMay 11, 2023. In this article, you will learn about What is Default Keyword in Java
  • What Is Short keyword In C#May 10, 2023. In this article, you will learn about What is Short Keyword in C#
  • How to Use Clear Keyword An Array in C#May 10, 2023. In this article, you will learn about what is a Clear Keyword an array in C#
  • Angular Reactive FormMay 08, 2023.
  • Simplifying Your C# Code: Why You Should Avoid Using 'Else' keywordMay 01, 2023. In this article will be seeing the benefits of avoiding else keyword in C# programming.
  • Match in RustApr 26, 2023. match control flow in rust
  • This keyword in JavaApr 25, 2023. In this article, you will learn about This Keyword in Java
  • What is Abstract Keyword in javaApr 22, 2023. In this article, you will learn about What is abstract Keyword in Java
  • Byte Keyword in JavaApr 21, 2023. In this article, you will learn Byte keyword in java.
  • How to Remove An Element from An Array In C#Apr 21, 2023. In this article, you will learn about How to Remove An Element from An Array In C#?
  • Mastering Angular Best Practices: Tips and Tricks for Building Large-Scale ApplicationsApr 21, 2023. Boost Your Angular Game: Best Practices for Large-Scale Applications. From code optimization to server-side rendering, learn the top tips and tricks to master Angular development and build maintainable, high-performance web applications.
  • Mastering React: Best Practices for Building Robust and Scalable ApplicationsApr 21, 2023. This article provides practical guidance on how to build high-quality React applications that are both robust and scalable. By following best practices such as using TypeScript, automated testing, code reviews, and performance optimization, you can ensure the reliability and maintainability of your projects. Whether you are a beginner or an experienced developer, this article will help you enhance your React skills and deliver exceptional results.
  • Regular function vs Arrow function in JavaScriptApr 20, 2023. In this article, we will learn the difference between the regular function and the arrow function in JavaScript
  • What Is Boolean Keyword In JavaApr 07, 2023. in this article, you will learn What is the boolean keyword in Java
  • Observable And Promise In AngularMar 13, 2023. In this article, you will learn about Observable and Promise in Angular.
  • What is the purpose of the 'async' and 'await' keywords in JavaScript?Mar 12, 2023. Learn what the 'async' and 'await' keywords are in JavaScript and how to use them in async code.
  • Content Child And Content Children In AngularFeb 27, 2023. We are going to discuss ContentChild and ContentChildren decorators in angular and their practical implementation.
  • View Child And View Children In AngularFeb 20, 2023. In this article, you will learn about View Child and View Children in Angular.
  • How To Check If A Variable Is An Array In JavaScript?Feb 16, 2023. In this tutorial, we'll take a look at various ways we can determine if an object is an array in JavaScript
  • Component Communication In AngularFeb 13, 2023. In this article, you will learn about component Communication in Angular.
  • Difference Between Var, Dynamic And Object type In C#Feb 13, 2023. In this article, I am going to explain var, dynamic, and object keywords in detail.
  • Yield Keyword In C#Feb 13, 2023. In this article, we will learn about the Yield keyword in C#
  • How to use Virtual Scrolling using Angular CDKJan 16, 2023. In this tutorial, we're going to learn the Virtual Scrolling feature that comes bundled with the Angular CDK library.
  • WhatsApp Message Using CommandLineJan 10, 2023. In this article, you will learn about WhatsApp Message Using CommandLine.
  • Handling Waits In WebdriverIODec 26, 2022. This article will explain different waits and how to use it in webdriverio automation scripts.
  • Email Yourself New Tweet With Specific Keyword Using Azure Logic AppDec 21, 2022. In this article, we are going to learn about how to Email yourself a new tweet with specific keywords Using Azure Logic App
  • SQL KeywordDec 13, 2022. In this article we will learn about SQL Keyword
  • Using The New Required Keyword In .NET 7Dec 01, 2022. In this article, you will learn how to use the new required keyword in .NET 7.
  • Search A String Entire Database (SQL Server)Oct 20, 2022. Searching a string in all the tables available in the SQL Server database
  • Enforce Code Commit Rules Using Git HooksOct 18, 2022. Get started with using git hooks to execute scripts at certain points during git actions.
  • Writing Tests In Playwright Test Automation ProjectOct 18, 2022. In this article, you will learn how to write tests in playwright Test Automation Project.
  • Type Checking in C#Sep 27, 2022. In this article you will learn about type checking in C#.
  • TypeScript For Beginners Sep 09, 2022. In this article, you will learn TypeScript from scratch using a simple guide.
  • TypeScript Best PracticesSep 09, 2022. In this article, we are going to learn about few best practices for TypeScript.
  • Microservices Async Communication Using Ocelot Gateway, RabbitMQ, Docker, And Angular 14Aug 22, 2022. In this article, you will learn about Microservices Asynchronous Communication using Ocelot Gateway, RabbitMQ, Docker, and Angular 14.
  • SignalR Introduction And Implementation Using The .NET Core 6 Web API And Angular 14Jul 25, 2022. In this article, you will learn about SignalR introduction and implementation using the.NET Core 6 Web API and Angular 14.
  • Typescript Express Node ServerJul 03, 2022. This article explains how to make use of the typescript features in node and how to set up a basic node server app using express package with typescript.
  • Var, Final And Dynamic Keywords In Flutter 😎Jul 02, 2022. In this article, we will learn about var, final and dynamic keywords it’s more important in dart.
  • SETS In PythonJun 27, 2022. This article is dedicated to concepts of SETS in Python. Sets are one the built-in Data Structure of Python.
  • Angular Installation and Environment SetupJun 17, 2022. This article will introduce npm and node.js.
  • Show File Upload Progress With Multiple Files In AngularJun 07, 2022. In Angular application, if you want to upload file on server but also want to show the progress indicator of how many bytes has been uploaded or how many percentage of file upload has been completed.
  • How To Check If A File Exists In NodeJSMay 22, 2022. In this tutorial, we'll understand how we can check if a file exists in a file system using Node.js
  • Lazy Loading In Angular With ExampleMay 16, 2022. In this article we will see abut lazy loading concept in angular with an example.
  • Dependency Injection In ReactJSMay 10, 2022. In this article, you will learn about dependency Injection in ReactJS using logger example
  • A Fix To Typescript TS7006: Parameter 'xxxx' Implicitly Has An 'Any' TypeDec 27, 2021. In this article, you will learn about a fix to Typescript TS7006: Parameter 'xxxx' Implicitly Has An 'Any' Type.
  • Working With CSV In PythonDec 16, 2021. In this article, you will learn about CSV In Python.

About TypeScript-super-keyword

NA

OUR TRAINING