Resources  
  • How to Learn About Amazon S3Mar 22, 2024. Amazon S3, an AWS service, provides secure, scalable object storage with high durability and availability. Key features include lifecycle policies, versioning, and security measures. Practical applications range from data backup to content delivery.
  • Introduction to 3D Object Control in Power AppsMar 21, 2024. Introduction to 3D Object Control in Power Apps explores integrating 3D objects into user interfaces. Learn how to manipulate objects, design interactions, and enhance user experiences using Power Apps' visual programming capabilities for augmented and virtual reality applications.
  • Decorator Pattern in C# - 3 versionsMar 20, 2024. In this article, we will explore the versatile Decorator Pattern in C#, presented in 3 different versions. Enhance your understanding of object-oriented design with this powerful pattern, offering flexible ways to add functionality to objects dynamically.
  • Singleton Design Pattern In FlutterMar 20, 2024. Learn how and when to use Singletons, implement them effectively, and explore their advantages and limitations. This article also includes a sample implementation using the shared_preferences package to manage user preferences.
  • Folder Structure of .NET ProjectsMar 20, 2024. The folder structure of a .NET project is fundamental for developers navigating the vast ecosystem of .NET development. Whether you're building a console application or a web application, having a clear understanding of the folder structure is organizing and managing your code effectively.
  • .NET internals: Learning Object-Oriented .NET ILMar 19, 2024. .NET IL, or Intermediate Language, serves as a bridge between high-level programming languages and machine code. This article delves into object-oriented .NET IL concepts with detailed explanations and code examples.
  • Sort Array Directive in Vue.jsMar 13, 2024. Custom directives in Vue.js empower developers to extend HTML elements' functionality, enabling direct manipulation of the Document Object Model (DOM) within Vue applications. This example demonstrates creating a directive to sort an array based on a specific property.
  • Abstract Factory Design Pattern In FlutterMar 12, 2024. Learn about the Abstract Factory design pattern in Flutter for creating platform-specific widgets. This pattern centralizes the creation of related objects, making it easier to manage and work with multiple factory methods.
  • How to Install and Configure RODC in ServerMar 12, 2024. In this article, we will explore A read-only domain controller (RODC) is a domain controller that hosts an Active Directory database's read-only partitions.
  • 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.
  • Factory Method Design Pattern In FlutterMar 06, 2024. Factory Method design pattern! Learn how to create objects dynamically, improve code flexibility, and build platform-specific UIs (like buttons) with ease. Explore a practical payment gateway example and overcome common challenges.
  • A Guide To Crafting Immutable Objects With C# 10's Init-Only PropertiesMar 06, 2024. Discover how C# 10's init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates how you can use this powerful feature to create robust and predictable software.
  • Mastering Object Creation in C#Mar 04, 2024. Learn to create objects in C# step-by-step. Define classes, instantiate objects, access members, use constructors, and explore static constructors—master object creation for robust C# applications.
  • A simplified approach to serializing and deserializing objects in C# 10Mar 04, 2024. This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
  • Introduction to Design Patterns in FlutterMar 02, 2024. Explore the importance of design patterns in software development. Learn about different types of patterns, their benefits, and how they can improve code efficiency, readability, and maintainability. Ideal for developers seeking to enhance their coding practices.
  • Why we should learn C#?Feb 26, 2024. This article explores the reasons behind choosing C# over other languages, delving into its evolution, key features like object orientation, lambda expressions, LINQ, generics, and its adaptability for modern development needs.
  • Learn about Reflection in C#Feb 13, 2024. Reflection is a powerful feature in C# that enables you to inspect and interact with types, assemblies, and objects at runtime. It provides a way to dynamically discover and use information about types, invoke methods, and access fields and properties.
  • Switch Between Directories in Power BI ServiceFeb 12, 2024. This content discusses the issue of switching between directories (tenants) within Power BI, highlighting the lack of a direct option to do so in the Power BI portal. It offers a solution involving the use of Customer Tenant ID (CTID) and provides steps to log in to the necessary host Power BI instance.
  • Polymorphism Concept in Object-Oriented ProgrammingFeb 12, 2024. What do you mean by polymorphism? Polymorphism is explained with C# examples, Polymorphism, a concept extending beyond programming, is illustrated in everyday scenarios. Electrical outlets serve as an analogy, supporting diverse devices—an example of polymorphism manifesting in real life.
  • What is Memento Pattern in C#?Feb 09, 2024. In this article, we will learn aboutThe Memento Pattern in C# enables capturing and restoring an object's state. It's crucial for implementing undo/redo functionalities and managing state changes efficiently in object-oriented systems, enhancing code maintainability and flexibility.
  • Understanding the Factory Pattern in .NET CoreFeb 06, 2024. Explore the power of the Factory Pattern in software design, a creational pattern enhancing flexibility. Delve into a real-world example using .NET Core for a car manufacturing system.
  • Override Basic Object of PythonFeb 06, 2024. This article introduces the concept of overriding methods in Python, focusing on the str and repr methods of the base object class. It explains how developers can customize the output when printing objects by overriding these methods.
  • How to Create Folder Redirection on ServerFeb 05, 2024. Under Microsoft Windows, the redirection is often performed by Group Policy, when used in an Active Directory environment. It can also be performed by manually editing the Windows Registry, changing library locations, or with tools such as Tweak UI. Disk quotas can be used to limit the amount of space taken up by users' special folders.
  • Understanding "obj" and "bin" Directories in ASP.NET Core Web APIFeb 05, 2024. These directories are needed because the C# compiler and linker require intermediate files to be generated during the build process to produce the final output file. The "obj" directory contains these intermediate files, which are needed to link and optimize the final executable or library file.
  • What Are Primary Constructors in C# 12?Jan 31, 2024. C# 12 has a number of new features, one of which is Primary Constructors, which offer a simplified and more concise method of constructing objects in C#.
  • JavaScript Destructuring: Arrays, Functions, and ObjectsJan 31, 2024. Destructuring is a powerful feature in JavaScript that allows you to extract values from arrays, objects, and function parameters easily.
  • How to Connect Client Computer to Server DomainJan 22, 2024. For Active Directory Federation Services (AD FS) to function, each computer that functions as a federation server must be joined to a domain. Federation server proxies may be joined to a domain, but this is not a requirement.
  • 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.
  • Azure Directory and API Management Service CommunicationJan 12, 2024. In this article we will focus on how to generate the token using azure active directory with role-based permission and then validate the azure management service using this token.
  • Deep Dive into Classes and ObjectsJan 10, 2024. Welcome, fellow programmers! Here, we will dive into the world of classes and objects. Classes and objects are fundamental in programming. This post unravels the essence of classes, abstract data types, and the concept of objects.
  • What is Protractor in Angular?Jan 04, 2024. Protractor, designed for Angular applications, is an E2E testing framework built on WebDriverJS. With Angular-specific features, automatic waiting, and cross-browser support, it streamlines end-to-end testing for Angular developers.
  • What is Primary Constructors in C# 12?Jan 03, 2024. Ditch the boilerplate and embrace elegant object creation with C# 12's primary constructors. This feature takes the hassle out of initialization, simplifies member assignment, and clarifies your code. Dive into its syntax, power, and practical application for smoother development.
  • Object Creation in C# with the Factory PatternDec 29, 2023. The power of software design with the Factory Pattern in C#. This comprehensive guide explores its role, benefits, and step-by-step implementation, empowering developers to craft modular and scalable code effortlessly.
  • Manage user account in Azure AD B2C with Microsoft Graph Dec 28, 2023. From this article, you will learn how to manage a user account in Azure AD B2C with Microsoft Graph. and the integration of Azure AD B2C with the Microsoft Graph SDK with C#. We’ll discuss the capabilities offered by the Microsoft Graph SDK for Azure AD B2C with a practical example of getting the Azure AD B2C user list using Microsoft Graph to guide you through the process of incorporating these technologies into your applications.
  • API Development Using Dapper and Microsoft Asp.NET Core Web API Dec 24, 2023. ASP.NET Core is a powerful framework for building web applications, and "Dapper" is a popular micro ORM (Object-Relational Mapping) that works well with ASP.NET Core for database operations. Dapper provides a simple way to interact with databases using raw SQL queries while mapping the results to objects.
  • Building a Custom Object Mapper in ASP.NET Core Using C#Dec 21, 2023. Unlock the power of data transformation in ASP.NET Core with a custom object mapper. Delve into the steps—defining mapping configurations, implementing logic, and seamless integration—ensuring tailored, efficient, and maintainable data conversion in your applications. Happy coding!
  • Configure Azure AD Connect Sync and Cloud Sync Tools to Prevent Accidental Object DeletionDec 17, 2023. This blog post is a combination of old and new features of Azure AD Connect Sync and Azure AD Cloud Sync tools. AAD Connect Sync feature was there already and what’s new is the Sync Client’s feature of preventing accidental deletion.
  • Active Directory Migration Fom Windows 2008 to Windows 2016Dec 11, 2023. Active Directory migration from Windows 2008 to Windows 2016
  • How to Create OU and Users Create in ServerNov 29, 2023. Learn the seamless process of creating Organizational Units (OUs) and users in Windows Server 2019 Active Directory. Follow step-by-step instructions to manage your server's organizational structure and user accounts effectively.
  • Reading properties of an object in C#Nov 26, 2023. This article explores two ways to read the properties of an object in C# without knowing its type at compile time: reflection and dynamic keyword. Reflection involves inspecting and manipulating metadata at runtime, providing flexibility but with potential performance drawbacks. On the other hand, the dynamic keyword allows for late-binding, bypassing static type checking, but may result in runtime exceptions and relies on the Dynamic Language Runtime (DLR). The choice between reflection and dynamic depends on specific needs and scenarios.
  • How to Create Active Directory Domain ServicesNov 23, 2023. This article guides readers on solving the Two Sum problem in Java. It illustrates a straightforward implementation using nested loops to find indices of two numbers in an array that sum up to a target. The provided Java code efficiently tackles this common coding challenge.
  • .NET Core: Detail of Lifetime ManagementNov 21, 2023. In .NET Core, lifetime management refers to how objects are created, used, and eventually disposed of within an application. It ensures efficient resource utilization and prevents memory leaks.
  • Creating Consistent ASP.NET Core Web API Responses with AutoMapper and DTOsNov 17, 2023. Developing a robust ASP.NET Core Web API hinges on the subtle yet pivotal details of response structuring. Leveraging AutoMapper in tandem with well-designed Data Transfer Objects (DTOs) not only ensures the separation of concerns but also orchestrates a symphony of consistent and predictable API responses. These intricacies extend beyond mere data mapping; they epitomize a strategic approach in harmonizing the internal model intricacies with the API's outward-facing facade. Unveiling the elegance of these detailed mappings and the orchestration of a uniform response structure not only enhances the developer's workflow but also augments client-side integration, presenting an intuitive and standardized communication channel. Addressing these finer points not only establishes a foundation for resilient error handling but also fuels the API's scalability and ease of maintenance, fostering an environment where agility meets reliability.
  • How to Choose Between Inheritance and Composition?Nov 16, 2023. When to use composition over inheritance and vice versa as a coding best practice.
  • Liskov Substitution Principle (LSP) in .NET 6 CoreNov 15, 2023. As a burgeoning developer delving into the SOLID principles, understanding the Liskov Substitution Principle (LSP) is pivotal for crafting robust and maintainable code. In this article, we'll demystify LSP and illustrate its application in .NET 6 Core through a familiar context—a chain of classes. We'll employ a comparable example to the ones used in our previous discussions on the Single Responsibility Principle (SRP) and the Open-Closed Principle (OCP)
  • Interface Segregation Principle in Object-Oriented DesignNov 10, 2023. This article explains about Interface Segregation Principle (ISP), and its application in C# is clear and well-illustrated through the example of a shape drawing application. Breaking down a generic IShape interface into more specific interfaces like IDrawableShape, IResizableShape, and IRotatableShape aligns well with the principles of ISP, leading to a more modular and maintainable codebase.
  • Object Mapping in .NET with AutoMapperNov 08, 2023. This article on AutoMapper provides a comprehensive overview and introduction to the topic, making it easily accessible for readers who are unfamiliar with the concept. The step-by-step approach in explaining the setup and usage of AutoMapper is particularly helpful for beginners.
  • New Name of Azure Active DirectoryNov 02, 2023. Did you notice Azure Active Directory's exciting new name? The name change from Azure Active Directory (Azure AD) to Microsoft Entra ID signifies an important evolution in the product's capabilities and the broader vision of the Microsoft Entra product family.
  • How To integrate An Azure Storage Account With Azure Active Directory Oct 17, 2023. To integrate an Azure Storage Account with Azure Active Directory, you can use Azure AD authentication for your storage resources. This allows you to control access, implement role-based access control (RBAC), and monitor activities for your storage account within the Azure portal. By doing so, you enhance the security posture of your storage resources and simplify user access management.
  • Array to Object in JavaScript: The Best Way to Manipulate DataOct 04, 2023. Learn how to convert an array to an object in JavaScript with simple examples and methods.
  • Building Flexible And Future-Proof C# Applications With ExamplesSep 27, 2023. This article explores the Open Closed Principle (OCP), one of the SOLID principles of object-oriented design, and how it can help developers build flexible and future-proof C# applications. By adhering to the OCP, you can create software that is easy to extend and maintain without modifying existing code. We'll delve into the theory behind OCP and provide practical C# examples to illustrate its application.
  • SOLID Principle of Object Oriented Programming in C#Sep 21, 2023. The SOLID principles along with examples and explanations. These principles are indeed important for designing maintainable and robust software systems. If you have any specific questions or if there's anything else you'd like to know or discuss related to software development or any other topics.
  • Thread Synchronization in JavaSep 20, 2023. When using two or more threads in a program, it may be so happening that more than one thread wants to access a resource at the same time. For example, one thread might try to read data from a file while the other tries to change data in the same file.
  • Data Transfer Objects (DTOs) in C#Sep 19, 2023. In the world of software development, Data Transfer Objects (DTOs) are vital for efficient data communication and manipulation. This article explains DTOs in C#, their importance, and practical usage.
  • Destructuring in JavascriptSep 18, 2023. Destructuring in JavaScript simplifies the extraction of specific values from arrays and objects. For instance, when dealing with arrays or objects, you might not always need all the values, only specific ones. It streamlines this process by allowing you to assign these values to variables.
  • Mock Testing with MOQSep 18, 2023. This article is about Imporanct and Use of Mock Testing. I have explained Mock Testing in a simple way, and demonstrated the use with the code example.
  • Field vs Property in C#Sep 18, 2023. In C# object-oriented programming (OOP), distinguishing between "fields" and "properties" is fundamental. Fields directly store data, typically with private or protected access modifiers for encapsulation. They're ideal for managing an object's internal state. Properties, on the other hand, provide controlled access to fields via getter and setter methods, allowing validation and logic integration.
  • Effortless Personalized Vision Models with Azure Custom VisionSep 12, 2023. Azure Custom Vision, a Microsoft innovation, merges artificial intelligence and computer vision, reshaping industries with its image analysis capabilities. This article explores Azure Custom Vision's simplicity, offering custom vision models for various needs. It outlines its features, real-world applications, and step-by-step model creation process.
  • Object-Oriented Programming in JavaScriptSep 11, 2023. This article explores JavaScript's Object-Oriented Programming (OOP) fundamentals, covering object creation, constructor functions, methods, inheritance, and ES6 classes, enabling modular and maintainable code in web development.
  • Pillar of OOPS (Object Oriented Programming)Sep 06, 2023. This article explores the fundamental pillars of Object-Oriented Programming (OOP): Encapsulation, Abstraction, Polymorphism, and Inheritance. It provides detailed explanations and real-world examples to enhance your understanding of these critical concepts, making it a valuable resource for developers and interview preparation.
  • Retrieve Dataverse User Details with Power AutomateSep 05, 2023. In this article, we will delve into the process of retrieving user data from Dataverse through the use of Power Automate. Our focus will encompass both System Users and Active Directory (AD) Users, providing a comprehensive understanding of the retrieval process.
  • Exploring C# Tuples: Simplifying Data Structures with ExamplesAug 31, 2023. Discover the Power of C# Tuples: Simplifying Data Structures. Learn how Microsoft's C# language utilizes lightweight Tuples for efficient data grouping, enhancing code clarity, and improving performance.
  • Private Constructor in C# Aug 28, 2023. Explore Private Constructors in C#: Unveiling Their Roles and Significance. Discover how these constructors influence design patterns like Singleton, control object creation, and encapsulate initialization logic for improved C# applications.
  • Simplifying Data Transfer Objects (DTOs) in C# with RecordsAug 27, 2023. C# records provide a more elegant and succinct way to define DTOs. In this article, we will explore the benefits of using C# records for DTOs with a concrete example.
  • A comprehensive overview of Dictionary in C#Aug 25, 2023. Dictionaries are essential tools for managing data efficiently through key-value pairs, offering rapid retrieval and manipulation. The Dictionary<TKey, TValue> class empowers developers to effectively add, access, and update items, enhancing performance and problem-solving capabilities.
  • Learn to add API Permissions in Azure App RegistrationAug 22, 2023. Learn to add API Permissions in Azure App Registration. API permissions to an Azure App Registration is an important step when you want to allow your application to access and use specific APIs or services in Azure. Here's a step-by-step guide on how to add API permissions to an Azure App Registration.
  • Exploring the Diverse Flavors of LINQ with ExamplesAug 22, 2023. LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
  • Best Practices for Creating ASP.NET Core REST API using OpenAPIAug 22, 2023. It seems like you're looking for a description of something specific, but your request is a bit unclear. Could you please provide more context or clarify what you'd like a description of? Whether it's related to ASP.NET Core REST APIs, OpenAPI, or any other topic, I'd be happy to help once I understand your request better.
  • String Methods in JavaScriptAug 22, 2023. Explore essential JavaScript string methods in this guide. Learn to manipulate, extract, and transform strings using functions like charAt, concat, includes, indexOf, and more. Start mastering JavaScript string manipulation today!
  • Convert String into Array in JavaScriptAug 21, 2023. Efficiently transform strings into arrays in JavaScript. Explore split() method, custom delimiters, and JSON conversion.
  • Learn to Setup Azure Active DirectoryAug 18, 2023. Learn how to set up Azure Active Directory: Create a directory, configure a tenant, and register an app. Follow clear steps via Azure Portal to establish these essential components.
  • How to Receive JObject in Post API in C#.NET?Aug 17, 2023. Learn to handle JSON objects in POST APIs using C#.NET. Utilize HttpClient to set up the request, cast the response into a JObject, and deserialize it into a custom class. Streamline your data processing.
  • Learn to add a Custom Domain in Azure Active DirectoryAug 16, 2023. Discover how to integrate a custom domain into Azure Active Directory and establish it as the primary AD. Enhance user authentication and streamline business operations using tailored domains in Microsoft Azure.
  • Adding Users to Active Directory using PowerShell ScriptsJul 24, 2023. Managing user accounts in Active Directory becomes seamless with PowerShell, a robust command-line tool. Learn how to add, modify, and delete users, streamlining administrative tasks for enhanced efficiency and automation.
  • JavaScript DOM Manipulation Techniques: Building Dynamic Web ApplicationsJul 23, 2023. The Document Object Model (DOM) is a fundamental concept in web development that allows developers to interact with and manipulate the content and structure of HTML documents. It serves as a bridge between HTML, CSS, and JavaScript, enabling dynamic and interactive web pages. Mastering HTML DOM is crucial for every web developer, as it provides the foundation for creating powerful, responsive, and user-friendly websites. In this comprehensive guide, we will explore the ins and outs of HTML DOM, its core concepts, and practical examples to solidify your understanding.
  • How to Iterate Over JavaScript Object's Properties and Values?Jul 19, 2023. In this article, we will learn How to Iterate Over JavaScript Object's Properties and Values
  • Client Credentials Flow - Call Web API to API without user interactionJul 18, 2023. This article shows the way to call API to API with user interaction by using Client Credentials Flow.
  • Azure Active Directory: Understanding Different Account TypesJul 17, 2023. Azure Active Directory - Understanding Different Account Types
  • Secure User Authentication in Azure Using Microsoft.Identity.ClientJul 14, 2023. The process of authenticating users securely is essential in Azure applications. Microsoft.Identity.Client (MSAL) is a C# library that simplifies the implementation of secure user authentication in Azure. It provides functionality for integrating Azure Active Directory (Azure AD) and other identity providers, enabling applications to authenticate and authorize users.
  • .NET 8 Preview 6 CreateFromDirectory using StreamJul 12, 2023. .NET 8 Preview 6 new overload to CreateFromDirectory using Stream, at this sample I demonstrate to write a to MS-SQL Server
  • Calling Web API to Web API without User Interaction by using Azure Managed IdentityJun 30, 2023. This article will walk you through connecting two web APIs without any login or user interaction. It is referred to as "Server-to-Server" or "Service-to-Service" communication. You may securely authenticate and authorize the caller web API to access the target web API using Azure Managed Identity, allowing for smooth interaction between the two services. When a Web API with Managed Identity needs to call another Web API, it can use its Managed Identity to authenticate and authorize the request without requiring explicit credentials.
  • How to Map Object-to-Object using Automapper in .NET CoreJun 09, 2023. In this article, we will explore the benefits of Automapper and provide a step-by-step example of how to use it.
  • Azure Custom Vision:Enhancing Vehicle Object Detection with Tailored ModelsJun 05, 2023. This article describes about enhancing vehicle object detection using Azure Custom Vision and its applications.
  • Convert a JSON object into a string in C#Jun 03, 2023. Code example of how to convert an object into a JSON string in C#.
  • Introduction on SQL+Jun 02, 2023. In this article, we will delve into the world of SQL+ and explore its capabilities, advantages, and real-world applications. We will provide code snippets and examples to illustrate the power of SQL+ in action, empowering you to leverage this advanced SQL variant to tackle complex data challenges with ease.
  • Dot Vs Bracket Notation in JavascriptMay 30, 2023. In this article, we will learn Dot Vs Bracket Notation in Javascript
  • Efficient Directory Monitoring Techniques for Windows 10 with C# and .NET Core 7May 26, 2023. Learn how to monitor a directory in Windows 10 using C# and .NET. This guide will walk you through the different approaches and techniques for monitoring directories and the process of implementing a directory monitoring system that allows you to track file changes and take action programmatically.
  • Naming Convention in JavaMay 17, 2023. This article is all about the Naming convention of the Java programming language.
  • Object-Oriented Programming in KotlinMay 16, 2023. This article will explain the fundamentals of OOPs in Kotlin.
  • Important JavaScript Concepts for DevelopersMay 11, 2023. JavaScript Important Concepts for Developers
  • Azure Custom Vision: Object Recognition in .NET ApplicationsMay 01, 2023. In this tutorial, we'll learn how to call an Azure Custom Vision object recognition model from a .NET application.
  • Static Methods Vs. Non-Static Methods In C#Apr 27, 2023. The difference between static and non-static methods in C#.
  • Strings In RustApr 27, 2023. In this article, we discuss what is a string in Rust, the type of string in Rust, and how to use them.
  • How to Use MySQL Workbench?Apr 25, 2023. How to use MySQL workbench.
  • Broadcast Object to Multiple Browser TABS using JavascriptApr 24, 2023. The Broadcast Channel API allows basic communication between browsing contexts (that is, windows, tabs, frames, or iframes) and workers on the same origin.
  • Dapper vs Entity Framework Core vs ADO.NET: Which One Should You Choose?Apr 19, 2023. Dapper vs Entity Framework Core vs ADO.NET: Which One Should You Choose?
  • Power Up Your Automations: Mastering Array and Object Comparison in Power AutomateApr 18, 2023. Learn how to take your Power Automate game to the next level by mastering array and object comparison! Discover the tips and tricks you need to streamline your workflow and supercharge your automation skills in this must-read article
  • Details about Dokcer and it's basic commandsApr 18, 2023. Details about Docker and it's basic commands

About Directory-Objects

NA

OUR TRAINING