Resources  
  • How to Identify Code Is Running on Client or Server in Vue.jsMar 28, 2024. In Vue.js, distinguishing between client and server-side execution is vital, especially in SSR scenarios. By checking for windows or process.server, developers tailor code for respective environments, ensuring seamless operation.
  • Activate & Deactivate Account Record in Dynamic 365 with PowerShell Mar 28, 2024. InteractiveMode prompts user for login in Dynamics CRM, storing connection in $conn. BypassPluginExecution set to true avoids plugin execution.Set-CrmRecordState modifies record state in CRM using specified entity, ID, and state/status codes.
  • What is Blazor WebAssembly?Mar 24, 2024. Blazor WebAssembly, a client-side web framework powered by .NET and C#, empowers developers to craft dynamic and interactive web applications directly in the browser. In this article, we'll explore the capabilities, advantages, and potential of Blazor WebAssembly in revolutionizing web development.
  • 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.
  • Business Rules in ServiceNow and Its Automation PotentialsMar 21, 2024. In this article, we will learn automation and efficiency are important in IT service management. ServiceNow provides an effective toolkit for streamlining corporate procedures and increasing output. Business Rules are one of the core elements of automation in ServiceNow.
  • 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.
  • 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.
  • 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.
  • .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.
  • Establishing Communication Between Executable Files Using TCP/IPMar 19, 2024. WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Steps include server/client development, execution instructions. Use CommonHelper for collaboration.
  • 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.
  • 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.
  • 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.
  • Activate Business Rules Using Powershell in D365Feb 07, 2024. In this article, we will discuss how Powershell can be used to Activate Business Rules. and Automating the reactivation of inactive business rules in Dynamics CRM is crucial for maintaining optimal system performance.
  • 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.
  • 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 Generate Curl Script of the HttpClient in .NETJan 29, 2024. The HttpClientToCurl is a NuGet package for generating the curl script of HttpClient in C# (.Net) supported features: Post, Get, Put and Delete. content types: application/json, text/xml, application/x-www-form-urlencoded
  • 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.
  • 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.
  • How to Restrict Clients Desktop Settings in ServerJan 08, 2024. Learn to restrict client desktop settings on Server 2019 efficiently. Understand the benefits, reduce risks, protect sensitive data, and follow a step-by-step guide for proper implementation.
  • IndexedDB and Its Basic ConceptJan 05, 2024. In this article, we will learn about IndexedDB, a powerful client-side storage API for storing and retrieving structured data asynchronously. Explore its key features, concepts, and a practical example for efficient data management in web applications.
  • 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.
  • Activate Azure Resource-Based PIM Assignment in PIMJan 04, 2024. Activate your Azure resource-based PIM assignment with these steps. Log in, access PIM, navigate to "My roles," choose "Azure Resources," and activate your desired RBAC role. Fill in details, and if approval is needed, follow the process outlined in the article.
  • 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.
  • Azure Key Vault Secret Client Library for Python SDKJan 02, 2024. This module speaks about accessing Key Vault secrets through Python code. Key Vault is a service offered by Azure to store secrets such as passwords, certificates, keys etc in a safe and secure manner.
  • 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.
  • 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!
  • 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.
  • 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.
  • ValidateAntiForgeryToken in ASP.NET CoreDec 13, 2023. In web development, security is a crucial aspect that demands meticulous attention. Cross-Site Request Forgery (CSRF) is a type of attack where unauthorized commands are transmitted from a user trusted by a web application. ASP.NET Core provides a built-in defense mechanism against CSRF attacks called ValidateAntiForgeryToken.
  • How to Share a Drive and Mapping for Client User?Dec 01, 2023. Learn the proper and easy method to share and map a drive for client users. Follow clear steps from creating a shared folder to setting up permissions in this insightful guide.
  • 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.
  • .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.
  • Microsoft Kiota Command Line ToolOct 16, 2023. The Microsoft Kiota Command Line Tool is a software utility designed by Microsoft that aids developers in generating code for Microsoft's Kiota API client libraries. It offers a command line interface (CLI) for streamlined code generation, allowing developers to efficiently create client libraries that interact with various Microsoft services and APIs. This tool assists in enhancing productivity by automating the process of generating the necessary code for interacting with the Kiota-based APIs, ultimately expediting the development of robust applications and services in the Microsoft ecosystem.
  • How To Activate Eligible Membership To A Privileged (PIM) Group?Oct 16, 2023. This article provides instructions on how to activate one’s eligible membership to a privileged (PIM) group.
  • Upload Files to SharePoint Online Library using POSTMANOct 09, 2023. In this article we will go thorugh the steps needed to test the Graph API endpoints against the client application.
  • 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.
  • Enhancing ASP.NET Core Web API Responses with Consistent and Predictable Wrapper ClassesSep 27, 2023. In ASP.NET Core Web API, you can use wrapper classes to standardize the format of your API responses. A wrapper class typically contains a status code, a message, and the actual data payload. This helps in providing a consistent structure for your API responses, making it easier for clients to understand and handle them.
  • Software Architecture TypesSep 26, 2023. Software architecture is the foundation of any software system, determining its structure, component interactions, and trade-offs. It significantly influences application quality, performance, scalability, and maintainability. This comprehensive guide delves into various software architecture types, offering insights into their strengths and weaknesses and guiding you on when to deploy them.
  • 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.
  • Server-Side Rendering (SSR) and Client-Side Rendering (CSR) in React.jsSep 18, 2023. In this article we will learn what is the Server-Side Rendering (SSR) and Client-Side Rendering (CSR) in React Js
  • 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.
  • RabbitMQ Implementation for ASP.NET CoreSep 15, 2023. Learn how to implement RabbitMQ in an ASP.NET Core application, covering prerequisites, establishing connections, sending and receiving messages, and building reliable, scalable message-driven applications.
  • 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.
  • Sending Messages with RabbitMQ in .NET CoreSep 11, 2023. Here we will learn how to use RabbitMQ for sending message in dotnet core
  • 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.
  • Keeping Secrets Safe in .NET/ASP.NET Core Applications with Azure Key VaultSep 07, 2023. Securing secrets in .NET/ASP.NET Core applications using Azure Key Vault is crucial for maintaining the confidentiality and integrity of sensitive information such as API keys, connection strings, and certificates. In this example, I'll walk you through the steps to integrate Azure Key Vault into an ASP.NET Core application to keep secrets safe in real time.
  • 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.
  • SignalR to enable real-time communication between clients and the serverSep 04, 2023. SignalR to enable real-time communication between clients and a server. SignalR is a library for ASP.NET that allows you to build real-time, interactive web applications. In this example, we'll create a simple chat application where clients can send and receive messages in real-time.
  • Registering Applications with Certificates, Secrets, and Federated CredentialsSep 02, 2023. Discover the process of registering applications using certificates, secrets, and federated credentials in this informative guide. Unlock powerful authentication methods for your digital endeavors.
  • 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.
  • Enhancing Client Responses: Crafting Custom Middleware for Effective Error HandlingAug 27, 2023. Designing a robust error handling mechanism and returning meaningful error responses to clients is crucial for enhancing the reliability and user experience of your ASP.NET Core Web API. Here's a concise guide on how to achieve this using custom middleware:
  • 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.
  • Effective API Versioning with Custom MiddlewareAug 22, 2023. API versioning with custom middleware, enables clients to access different versions of your API based on the version specified in the request header. This allows you to manage backward compatibility while rolling out new features or changes in a controlled manner. Custom middleware provides a central point for extracting and validating version information, making your versioning logic more modular and maintainable.
  • 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.
  • 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.
  • Implementing Content Negotiation for Flexible Data FormatsAug 16, 2023. Content negotiation in ASP.NET Core is crucial for serving different data formats like JSON, XML, etc., based on the client's preferences. Here's a complete example of how to implement content negotiation in an ASP.NET Core Web API:
  • Salesforce REST API: The Login Request (Authentication Step)Aug 02, 2023. In this article, we will discuss the detailed steps on how to authenticate REST-based requests against Salesforce Org. We will explore the REST payloads for the Request & Response cycle for the request.
  • Source Control (4-9-2), Git - Merge in Client SideAug 01, 2023. Explore a comprehensive series of articles on Source Control, ranging from standalone apps like MS SourceSafe to web services like GitHub, Azure DevOps, and Git. Understand merging methods, integration, and comparisons for effective version control.
  • 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.
  • 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.
  • 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 CRUD Operations with ElasticSearch and .NET Core APIMay 29, 2023. ElasticSearch is a powerful and highly scalable open-source search and analytics engine built on top of Apache Lucene.

About Client-Activated-Objects

NA

OUR TRAINING