Resources  
  • What is JSON Serialization and Deserialization in C# Mar 27, 2024. JSON (JavaScript Object Notation) has become a ubiquitous data interchange format, especially in web development. In C#, developers have multiple options for serializing C# objects to JSON and deserializing JSON strings back to C# objects
  • Namespace for Authentication Routes in MVC and Its ImportanceMar 19, 2024. The System.Web.Mvc namespace in ASP.NET MVC is crucial for authentication routes, aiding in code organization, readability, and integration with framework features for seamless authentication and authorization tasks.
  • Handling JSON in C#Mar 16, 2024. C# provides seamless JSON handling with System.Text.Json. Easily parse JSON strings into C# objects and vice versa for efficient data manipulation.
  • Enable Microsoft Teams Chat in Dynamics 365Mar 06, 2024. Enable Microsoft Teams chat in Dynamics 365 by navigating to Power Platform admin center, selecting an environment, accessing integration settings, and turning on "Sync Teams chat data with Dynamics 365 records." Save changes.
  • How to Do Distributed File System (DFS) In ServerMar 04, 2024. In this article, we will learn a distributed File System (DFS) as the name suggests, is a file system that is distributed on multiple file servers or multiple locations.
  • How to Do Zone Transfer in Windows ServerMar 01, 2024. Zone transfer is a crucial process for synchronizing DNS zone data across multiple servers, ensuring all DNS servers responsible for a domain remain updated with the latest information. By following the step-by-step instructions outlined in the article, users can configure zone transfer between primary and secondary DNS servers effectively.
  • SendEmailFromTemplate to Send Emails to Unresolved AddressesFeb 28, 2024. This article delves into the process of streamlining communication in Dynamics 365 CE using Power Automate, specifically focusing on sending emails to unresolved addresses.
  • Converting Classic SharePoint Team Sites to Modern Communication SitesFeb 27, 2024. Converting Classic SharePoint Team Sites to Modern Communication Sites to better collaboration and productivity. Enhanced feature, customized web part and extension.
  • How to Install WDS in Server?Feb 26, 2024. This article provides a comprehensive guide on installing Windows Deployment Services (WDS) on Server 2019, detailing each step in the process.
  • MS Teams and Email Approval Configuration in D365 CRMFeb 22, 2024. Automate the approval process for creating CRM account records with Microsoft Teams and Email notifications using Power Automate. Follow step-by-step instructions for configuring flows and notifications seamlessly.
  • Rate Limits for Efficient Resource ManagementFeb 19, 2024. Rate limits are crucial for efficient resource management. Rate limits restrict the frequency of requests or actions within a defined timeframe, preventing system overload and ensuring fair resource distribution. It is essential for maintaining optimal performance and reliability in various computing environments.
  • How to Send Approvals in Microsoft Teams Using Power Automate?Feb 18, 2024. Discover how to easily send approvals in Microsoft Teams using Power Automate. This article will walk you through the process, helping you automate tasks and improve teamwork efficiency. Say goodbye to manual approval hassles and hello to seamless workflow management!
  • How to Implement Approval in Teams Using Adaptive CardsFeb 13, 2024. This article introduces Adaptive Cards, versatile user interface components formatted in JSON, capable of seamless integration across various platforms. It delves into their significance in enabling lightweight UI exchange between applications and outlines.
  • Create In-App Notifications in D365 Through Power Automate FlowFeb 07, 2024. Transform Dynamics 365 Communication Enable In-App Notifications effortlessly. Get real-time updates on leads, opportunities, and cases. Follow simple steps to activate a feature, create notifications with JavaScript, and enhance user engagement.
  • Multithreading in C#: Processes, Threads, and Performance OptimizationFeb 07, 2024. In this article, we will learn to Explore how threads are managed, synchronized, and executed at the kernel level, shedding light on the core mechanisms of concurrency and parallelism.
  • Create Cloud Architecture Diagrams in Python with Diagrams LibraryFeb 06, 2024. The Diagrams library by Mingrammer provides a Pythonic approach to creating cloud system architecture diagrams. It allows developers to define components and their interactions using Python code
  • Local Storage System In the AngularFeb 02, 2024. Learn how to use Locostorage in Angular for efficient data storage. Create components, add a dropdown or button, and manage data in the localStorage with step-by-step instructions.
  • Top 5 CRM Systems In 2024Jan 31, 2024. CRM, or Customer Relationship Management, is a technology and strategy that businesses use to manage and analyze interactions with their customers and potential customers throughout the customer lifecycle. Here is a list of the top 5 CRM systems.
  • Sharing Data Gateway in Microsoft Fabric Portal with DemoJan 30, 2024. This article dives into how to share data gateway with users and resource groups in Microsoft Fabric. The Sharing Data Gateway in Microsoft Fabric Portal streamlines access and data transfer between on-premises and the cloud, promoting collaboration, optimizing resource usage, ensuring security, and enhancing scalability.
  • Stars Rating System with Dapper in .NET CoreJan 29, 2024. This tutorial teaches ASP.NET Core MVC web application development with controllers and views. Implementing a star rating system with Dapper in .NET Core involves several steps. First, you need to set up your database schema to store ratings.
  • Working with SQL Lite Database in Asp.NET Core Web API Jan 21, 2024. SQLite is a self-contained, serverless, and zero-configuration relational database management system (RDBMS). It is a lightweight, open-source, and embedded database engine that does not require a separate server process and operates directly on the client's device
  • Building a Secure PHP MySQL Signup/Login Website with Email VerificationJan 15, 2024. Creating a secure signup/login system is essential for any web application that involves user authentication. In this article, I'll guide you through building a PHP MySQL login/signup website with email verification. I'll focus on security best practices, including password encryption using PHP's built-in functions.
  • Comparing Vertical Scaling and Horizontal Scaling in System DesignJan 11, 2024. Certainly! This article delves into the critical aspect of system design known as scalability, exploring two primary approaches: Vertical Scaling and Horizontal Scaling. Vertical Scaling involves enhancing the capabilities of a single server by adding more resources, while Horizontal Scaling achieves scalability by distributing the workload across multiple servers.
  • Power Automate Flow To Send Personalized Reminders To TeamsDec 20, 2023. So, I created My 1st Power Automate Flow To Send Personalized Reminders To Teams. Discover a citizen developer's journey using Power Automate to streamline a coffee-sharing tradition in the workplace. Witness the simplicity and effectiveness of this solution and explore potential improvements.
  • NodaTime Vs System.Datetime Types in .NetDec 13, 2023. This Article gives the comparison between NodaTime and System.datetime types in .NET. Discover the differences between NodaTime and System.DateTime in .NET, from handling time zones to serialization. Learn when to choose NodaTime for complex scenarios and how to implement it.
  • NodaTime Vs System.datetime in .NETDec 10, 2023. Noda Time and System.DateTime in .NET offers distinct approaches to date and time handling. Compare their features, immutability, time zone support, precision, and safety for your application's requirements.
  • System.Speech in .NET MAUIDec 06, 2023. Demonstration calling System.Speech .NET 8 in .NET MAUI. Explore the integration of voice functionality into .NET MAUI applications for WinUI devices using the System.Speech NuGet package. Enhance user interaction and accessibility with speech capabilities on Windows platforms.
  • Power Automate: Multiple Users Participation Involved in Collaborative WorkflowNov 22, 2023. Power Automate: Multiple users Participation involved in a collaborative workflow.
  • Bulkhead Pattern for Robust Software Systems in C#Nov 17, 2023. The Bulkhead Pattern in software architecture, inspired by ship bulkheads, involves segregating resources to contain failures and enhance system stability. In C#, it can be implemented for scenarios like thread pool isolation. The provided example uses SemaphoreSlim to limit concurrent service calls, preventing widespread issues if an external service fails.
  • VS 2022 Reveals System.Runtime.CompilerServices.Unsafe VulnerabilityNov 15, 2023. The recent version of Visual Studio 2022 revealed a vulnerability in ASP.NET WebForms.while updating Windows on Patch Tuesday and releasing the latest version of Visual Studio 17.8 and .NET 8 LTS, I upgraded some legacy systems developed with ASP.NET WebForms, now utilizing C# 12. During this procedure, I encountered a significant problem thanks to a new feature of Visual Studio.
  • Difference Between Concurrency and Parallelism in C#Nov 09, 2023. The article you provided gives a comprehensive overview of the concepts of concurrency and parallelism and their relevance in C# programming. It highlights the distinctions between the two concepts and provides clear examples and use cases for each. The discussion of best practices and considerations for managing concurrency and parallelism effectively is a valuable addition, as it helps developers avoid common pitfalls and make informed decisions when implementing these concepts in their applications.
  • How To Use Notion Efficiently For Project Management?Nov 02, 2023. Notion is a digital workplace that helps you manage all of the chores and work for your business.
  • How to Set Up the Flutter Environment in Visual Studio Code on Windows SystemOct 30, 2023. This article will discuss about setting up Flutter on a Windows system is comprehensive and user-friendly. It covers the essential steps for installing Git, setting up the Flutter SDK, updating the system environment variables, installing Visual Studio Code, and integrating the necessary Flutter and Dart extensions. The inclusion of specific links to download Git, Flutter SDK, and Visual Studio Code enhances the practicality of the guide and simplifies the setup process for readers.
  • Connect to Microsoft Teams & Create a Team with PowerShellOct 25, 2023. In this article, let see how to install PowerShell Module to connect to Microsoft Teams and create a team using PowerShell
  • How to Create a Ticketing System using Power Automate?Oct 21, 2023. In this article, I'm explaining step by step How to Create a Ticketing System using Microsoft Lists & Outlook by Power Automate?
  • .NET Task Parallel Library vs System.Threading.ChannelsOct 18, 2023. Concurrency in modern software development is vital for applications to efficiently manage multiple tasks simultaneously. In the .NET ecosystem, developers have two powerful tools for concurrency: the Task Parallel Library (TPL) and System.Threading.Channels. This article provides a practical comparison of these tools, illustrating their usage and advantages.
  • What are Temporal Tables in SQL Server?Oct 16, 2023. A temporal table, also known as a system-versioned temporal table, is a type of database table designed to track changes to data over time automatically. It accomplishes this without the need for complex custom code or triggers. Temporal tables are particularly useful in scenarios where you need to maintain a historical record of changes made to your data.
  • NServiceBus In .NET 7: Simplifying Distributed Systems CommunicationOct 11, 2023. NServiceBus in .NET 7: Simplifying Distributed Systems Communication
  • Webhooks in .NETSep 20, 2023. Explore webhooks in modern web applications. Learn what webhooks are, their benefits, and how to implement them in .NET with practical examples. Keep your systems in sync effortlessly.
  • Security ASP.net Core MVC (C#) Encryption and DecryptionSep 19, 2023. On the topic of "Security in ASP.NET Core MVC (C#): Encryption and Decryption," Ziggy Rafiq has written an insightful article. As Ziggy explores encryption and decryption techniques, he offers valuable insights for developers as well as security enthusiasts about how to secure web applications built on ASP.NET Core MVC.
  • Update to the Microsoft Teams ToolkitSep 15, 2023. Visual Studio 17.8 Preview 2 Update to the Microsoft Teams Toolkit
  • How to Send Teams Messages with Mentions/Tag a User in Power Automate?Sep 08, 2023. Unlock the full potential of Microsoft Teams and Power Automate by learning how to send messages with mentions or tag users in your workflows. Discover the step-by-step process to automate communication, streamline collaboration, and keep your team informed in real time.
  • Exploring the Versatility of LinuxSep 04, 2023. In today's digital age, choosing the perfect operating system for your computing needs is akin to selecting the right tool for the job. With a multitude of options available, including the familiar Windows, the elegant macOS, and the intriguing Linux, it's essential to understand what makes each platform distinct. In this journey, let's delve into the fascinating world of Linux and explore how it distinguishes itself among the available choices.
  • Cloning Class Using System.Text.Json in .NET 8Aug 21, 2023. .NET 8 Preview 7 allows cloning internal properties
  • Deploy the Microsoft Teams Bot in Azure and Test in Web ChatAug 12, 2023. In this article we shall see how to deploy the Microsoft Teams bot in Azure Cloud and test in the web chat and also the SDKs used to develop the same.
  • Integrate Azure OpenAI into Microsoft Teams with the Teams ToolkitAug 10, 2023. This Article Demonstrate How to Use the Power of Azure Open AI into Microsoft Teams By leveraging the Teams Toolkit to achieve greater success, innovation, and efficiency in daily operations.
  • Types of cyberattacksAug 01, 2023. Explore the world of cyber attacks, from web-based threats like phishing to system-based ones like viruses and worms. Stay vigilant against evolving cybersecurity challenges.
  • Empowering Azure using AI BuilderAug 01, 2023. AI Builder in Microsoft Power Apps and Power Automate offers prebuilt AI models for automation, data analysis, and decision-making without extensive coding.
  • What are Functional Requirements? Jul 31, 2023. Functional Requirements of the system are a very critical part of the system in which we defined the overall functionality of the system. Functional Requirements define the behavior of the system means what the system should do Like, and Code Compiler should complete the Machine Code.
  • What are Essential Requirements and Accidental Requirements?Jul 28, 2023. Software Requirements Engineering is the systematic process of gathering, documenting, analyzing, and managing the requirements for a software system. It is a crucial phase in the software development life cycle as it lays the foundation for the entire software development process. The primary goal of requirements engineering is to understand and define what the software system needs to accomplish, how it should behave, and what constraints and limitations it must adhere to.
  • Create a Microsoft Teams Bot using Node JSJul 23, 2023. how to create a chatbot in Microsoft Teams using the Teams Toolkit which could use the basic template from Teams Toolkit, this article focuses on how to run from Microsoft Teams or how to run from Bot Framework Emulator and create a node project with the environment token key to authenticate the bot
  • Implementing Pipeline Design Pattern using C#Jul 18, 2023. Learn about the Pipeline design pattern and its implementation using C#. Discover how this powerful pattern breaks down complex tasks into modular steps for efficient and maintainable code.
  • What is WebView2 and How it is Linked to Microsoft Teams 2.0?Jul 14, 2023. Now everywhere in the market the latest buzz word is the new version of Microsoft Teams 2.0 release. But as a tech enthusiast we would like to know what is the change and why we need that change for the newer version of the Teams
  • How to Access AWS Systems Manager Parameter Store using Python?Jul 02, 2023. Learn how to access AWS Systems Manager Parameter Store using Python. Set up the project folder, install required packages, and retrieve parameter values using the boto3 library. Test the code to access parameter values from the Parameter Store.
  • System Sequence Diagram Used in Software DevelopmentJun 30, 2023. A System Sequence Diagram (SSD) is a UML (Unified Modelling Language) diagram used in software development to depict the interactions between an external actor and the system being developed. It illustrates the sequence of messages exchanged between the actor and the system to achieve a particular functionality or use case. Here's an example of how a System Sequence Diagram may look: 18.6 System Sequence Diagram: The system sequence diagrams are based on the “Unified Modelling Language” This diagram visualizes the use case against the canaries.
  • Hello World in RUST Jun 14, 2023. Hello World in Rust: A Journey into Safe and Efficient Systems Programming.
  • How to get Azure Open AI Keys and EndpointJun 13, 2023. In this article we will discuss the steps on how to get Open AI keys and end point using Azure Portal.
  • Google Workspace (1) --- IntroductionMay 31, 2023. This article introduces Google Workspace.
  • Google Workspace (2) --- vs. Microsoft OfficeMay 31, 2023. This artice introduces Google Space vs. Microsoft Office
  • 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.
  • AWS Service - Booking System ArchitectureMay 23, 2023. In this article, we are going to look at a ticket booking system using AWS architecture
  • How to Use Packages and Crates in RustMay 16, 2023. Introduction of Packages and Crates.
  • Developing a Conversational AI ChatBot in 5 minutesMay 03, 2023. In this article describes about creating and deploying Conversational AI Chatbot in 5 minutes.
  • Singleton Design Pattern Evolution and implementation C#May 03, 2023. Learn how to implement the Singleton Pattern in C# and its evolution through four different approaches.
  • Make the most of Viva learning by Upskilling, Collaborating, Learning and DevelopmentMay 01, 2023. This article will briefly guide you on the following capabilities of Viva learning,
  • 4C Principle Behind Microsoft Team Apr 27, 2023. We will learn about 4C principle behind Microsoft Teams, How to create a project-based team, Channel for sub teams, Add apps and resources in a channel.
  • Scrum - Roles, Events And Artifacts Apr 21, 2023. This is an article on Scrum Roles, Events, & Artifacts.
  • How to use Microsoft Teams channel as a ChatGPTApr 14, 2023. How to use Microsoft Teams channel as a ChatGPT
  • Exploring The Key Components Of .NET - CLR, CTS, And CLSApr 06, 2023. The article explores the three key components of the .NET Framework: the Common Language Runtime (CLR), Common Type System (CTS), and CLS
  • How To Get Members Of M365 GroupMar 31, 2023. This article explains the steps to get members of Microsoft 365 group.
  • How To Send Microsoft Teams Self-Message Using Graph SDKMar 19, 2023. Learn how to send Microsoft Teams self-messages using Graph SDK in a .NET 6 console application with this step-by-step tutorial.
  • AWS Systems Manager (SSM) Parameter Store In .NET 3.1 Web APIMar 16, 2023. Grab all the AWS Systems Manager (SSM) Parameter store in .NET 3.1 Web API and use them in entire project through Configuration
  • Power Automate Flow To Post Scheduled Message In Microsoft TeamsFeb 27, 2023. In this blog post, we will discuss the process of scheduling messages in Microsoft Teams using Power Automate.
  • Simplifying Flutter App Development with GetX's Dependency Injection SystemFeb 24, 2023. Managing dependencies is essential to building maintainable and scalable code in Flutter applications. A dependency injection (DI) solution like GetX can make this process much more efficient and effective than Flutter's essential dependency management tools.
  • Learn About UMLFeb 08, 2023. Unified Modeling Language - UML is a language modeling for software business.
  • How To Create A Deep Link To A Specific Record In The Teams PowerAppsJan 30, 2023. A deep link is important when you need to navigate the user to a specific record or a screen through a link. Here we will create a deep link through Power Automate and send it via email. The recipient can click on that deep link to directly navigate to a particular PowerApps screen.
  • Microsoft Teams, Team Collaboration And Teams CommunicationsJan 23, 2023. In this article, you will learn about Microsoft Teams, Team collaboration and Teams communications.
  • 25 Powerful Points To Understand System DesignJan 17, 2023. 25 Powerful points to understand System Design that can help in system design interviews.
  • Using System.Speech With .NET 7Jan 16, 2023. In this article, you will learn how to use System.Speech for .NET 7 using Extensions.
  • Microsoft Teams Incoming Webhook Integration With ASP.NET CoreJan 02, 2023. This article explains about integrating Teams Incoming Webhook with ASP.NET Core application.
  • Kafka OverviewDec 26, 2022. In this article, you will learn about Kafka.
  • F#'s System.Char Type BasicsDec 19, 2022. This article introduces the char type using the F# language. It focuses on the char type declaration, and character escape sequences and shows how to represent a numerical value on the char types.
  • How To Use ClickUp Efficiently For Project Management?Dec 17, 2022. ClickUp is a flexible project management application that can be used for a variety of tasks, including team management and goal monitoring.
  • Top 11 Types Of Cyber Attacks Hackers UseDec 02, 2022. In this article, you will learn about types of Cyber Attacks - Web based attacks and System based attacks.
  • Using Teams Toolkit CLI For Creating Teams TabNov 07, 2022. This article will walk you through creating Teams Tab project using Teams Toolkit CLI also known as TeamsFx CLI
  • Teams Toolkit For Creating Microsoft Teams TabNov 03, 2022. This article helps developers create Teams Tabs using Team Toolkit.
  • Simple Architecture DesignOct 18, 2022. This page gives a brief idea about how to design a system.
  • Understanding Design PatternsOct 18, 2022. In this article, you will learn about Design Patterns.
  • Apply Sensitivity Labels To SharePoint Site, Teams, And Microsoft 365 GroupsOct 06, 2022. In this article, you will learn how to apply sensitivity labels to SharePoint Site, Teams, and Microsoft 365 Groups.
  • What Are System Variables In Automation AnywhereSep 13, 2022. In this article, you will learn what are System Variables in Automation Anywhere.
  • Coordination Between The Development And QA TeamsAug 17, 2022. In this article, you will learn how to coordinate between the Development and QA Teams.
  • Add PowerApps As In-Meeting Teams AppAug 08, 2022. In this article, you will learn how to add PowerApps as in-meeting Teams app.
  • Upload Apps In Teams By Enabling Sideloading FeatureAug 01, 2022. Microsoft Teams allows uploading apps in two ways: uploading apps directly to manage apps in Teams admin centre, or by using the sideloading feature.
  • System Group Of Actions In With Desktop Flow Using Microsoft Power AutomateJul 12, 2022. Reading this article, you can learn how to perform a variety of tasks in System group of actions like Perform a variety of tasks in a Windows environment and retrieve information from the system, Ping action, If process action, Run application action, Terminate process action in Desktop flow using Microsoft Power Automate.
  • Complete Signup-Login System Using Dependency Jul 11, 2022. To design a complete signup-login system using a dependency with the dashboard from the beginning.
  • Difference Between Microsoft Teams And ChannelsJul 01, 2022. This article describes should you create a brand new Team or just a Private Channel within an existing Microsoft Team?
  • Overview Of Shared Channels In MS TeamsMay 29, 2022. In this article, you will learn about Shared Channels in MS Teams. The Shared Channels feature in MS Teams is still in preview and is rolling to the M365 tenants.
  • Communicating With Remote Systems Using UDPMay 27, 2022. By now, we know about specifying an Internet destination with the help of the instances of InetAddress class, but the question is how can you communicate with the remote systems? The problem is solved in several ways through java.net package.
  • Replication In Distributed Real Time Database SystemMay 13, 2022. Replication Techniques for increasing the performance of Distributed Real Time Database System.
  • Top Three VS Code Extensions Worth The MoneyMay 09, 2022. They say the best things in life are free, but when it comes to software... well, it’s not always true. Don't get me wrong - there are plenty of excellent free, open source tools I use daily. But tools that help you develop faster or more efficiently can easily pay for themselves in terms of time saved, because, as they also say, time is money.

About Team-System

NA

OUR TRAINING