Resources  
  • Feeling Overworked? Meet Your Secret SantaJan 09, 2025. Feeling overwhelmed by work? Discover the magic of a Secret Santa! This article explores how the simple tradition of giving and receiving surprise gifts can boost morale, reduce stress, and foster stronger workplace connections.
  • Apply UI to Enhance Choice Fields with Conditional FormattingJan 02, 2025. Enhance SharePoint lists with UI Conditional Formatting. Use JSON to customize Choice Fields, changing colors, icons, and text dynamically based on values like "Done" or "In progress" for better data visualization.
  • Using Derived Column Task in SQL Server Integration ServicesDec 30, 2024. The Derived Column Task in SQL Server Integration Services (SSIS) allows you to transform or modify data within your ETL process. It enables the creation of new columns or updates to existing ones using SSIS expressions.
  • Create FTP Task in SQL Server Integration Services Dec 19, 2024. Learn how to create and configure an FTP Task in SQL Server Integration Services (SSIS). This task simplifies automated file transfers using the FTP protocol, making it essential for ETL processes.
  • Remove IIS Log Files (2) --- Automation by Windows Task SchedulerDec 17, 2024. This article is to discuss Automation by Windows Task Scheduler
  • Remove IIS Log Files (3) --- Deploy VBScript Automation by PipelineDec 17, 2024. This article is to discuss the deploying VBScript automation by pipeline
  • Implementing Background Tasks in PythonDec 16, 2024. This article covers key concepts like concurrency, task queues, and process management, helping you execute time-consuming tasks efficiently without blocking your main program flow.
  • NVM --- Node Version ManagerDec 14, 2024. This article is to discuss NVM --- Node Version Manager.
  • Enhancing Performance and Responsiveness Using Threading in C# Dec 13, 2024. Discover how to use threading in C# to make your applications faster and more responsive by running multiple tasks at the same time.
  • Efficient Task Scheduling with Round Robin Algorithm in C#Dec 09, 2024. Explore the implementation of the Round Robin scheduling algorithm in C#, designed to ensure fair CPU time allocation among processes, with a practical use case example.
  • How to Use Microsoft Teams for Project ManagementNov 28, 2024. Microsoft Teams simplifies project management by integrating task management, real-time communication, and collaboration. Use Planner for tasks, schedule check-ins, and keep your team organized with chat updates and meetings.
  • Creating a Scheduled Task in SitecoreNov 26, 2024. Learn how to automate tasks in Sitecore by creating scheduled tasks. This involves writing task code, creating commands, and setting up a scheduler. Automating tasks like content publishing or email reminders can save time and streamline operations.
  • .NET 9 : Task.WhenEachNov 18, 2024. In .NET 9, the new Task.WhenEach method enhances asynchronous programming by processing tasks as they complete, allowing for more efficient handling of varying completion times. Happy coding!
  • Data Professionals to LLM/GPT Prompting for Everyday TasksNov 17, 2024. A guide for data professionals on leveraging Microsoft OpenAI with Python for efficient workflows and enhanced data analysis. Focuses on prompt design, including clear instructions, context, and temperature adjustments.
  • Increase Application Performance using Task.Run in .NET CoreNov 15, 2024. Explore the power of Task.Run in .NET Core to efficiently handle background tasks like logging, report generation, and email sending, enhancing application performance and responsiveness without blocking the main thread.
  • Streamline Resource Onboarding with AWS Tag-Sync TaskNov 13, 2024. This guide explores using AWS Tag-Sync tasks to streamline onboarding resources into AWS applications. By automating resource tagging, AWS Tag-Sync helps improve organization, governance, and cost allocation.
  • Build an Interactive Task ManagerNov 12, 2024. Create a simple To-Do List app using HTML, CSS, and JavaScript. Add, edit, delete, and mark tasks as done while storing them in local storage. Learn how to structure, style, and add interactivity to your web app effectively.
  • Dependency Injection & EF Migrations in ASP.NET MVC with AutofacOct 30, 2024. This article demonstrates how to implement Dependency Injection (DI) using Autofac in an ASP.NET MVC application and integrate Entity Framework for database operations, including migrations.
  • Debugging Azure DevOps Pipelines with System.DebugOct 26, 2024. This article explores essential techniques for Azure DevOps pipeline error diagnosis. It discusses how to enable diagnostic logs for individual and all pipeline executions using the "Enable System Diagnostics" checkbox and the system. debug variable.
  • Understanding List Column Data Types in SharePoint Oct 15, 2024. SharePoint allows users to create and manage lists with various column types, such as text, number, date, and lookup fields. These columns help organize and store data effectively, ensuring better reporting and data integrity.
  • Enhancing Task Approval Workflows in SharePoint with Power AutomateOct 12, 2024. Power Automate allows users to create automated workflows between apps and services, streamlining tasks and approvals. In this example, Power Automate integrates with Power Apps and SharePoint to automate task approvals.
  • Custom Copilot: Fetch and Process SharePoint List Data Using Prompt AI BuilderSep 29, 2024. It guides users through creating custom workflows in Copilot Studio, automating data retrieval, and utilizing AI to process and present information efficiently, enhancing task management and decision-making.
  • An overview of the Task Parallel Library (TPL) in C#Sep 17, 2024. The Task Parallel Library (TPL) is a collection of public types and APIs within the .NET framework that facilitates the integration of parallelism and concurrency into applications.
  • Azure Advisor recommendation using Resource Manager REST API Aug 27, 2024. Azure Advisor is a digital assistant that optimizes Azure deployments by offering recommendations to enhance cost, performance, reliability, and security. Learn how to pull Azure Advisor reports, configure permissions, and use REST APIs to fetch recommendations.
  • Mastering Microsoft 365 Copilot PromptsAug 27, 2024. Microsoft 365 Copilot enhances productivity by using AI to streamline workflows in apps like Word, Excel, and PowerPoint. Mastering prompt techniques—ranging from basic to advanced—enables users to achieve more accurate and relevant results. This guide covers prompt clarity, specificity, and multi-step strategies.
  • Artifactory: Simplifying Software Component ManagementAug 26, 2024. Artifactory is a universal repository manager that centralizes the management of binaries dependencies and builds artifacts across formats like Maven, Docker, and npm. It integrates with CI/CD tools, offering version control, security, caching, and scalability, ensuring efficient and reliable software delivery.
  • Multithreading in C# Task Creation Using LoopAug 06, 2024. This article introduces multithreading in C# using the Task class from the Task Parallel Library (TPL). It explains creating and executing tasks serially within a loop, ensuring tasks are completed sequentially. An example demonstrates task creation and simulating work with delays.
  • Exploring ValueTask in C#Aug 05, 2024. xploring ValueTask in C#" delves into the intricacies of the ValueTask type introduced in C#. It compares ValueTask with Task, highlighting performance benefits and appropriate use cases.
  • Async/Await: Beyond the BasicsAug 05, 2024. Error handling in async code involves using try-catch blocks to manage exceptions, ensuring smooth operation. Task chaining, like a relay race, connects tasks so the result of one task feeds into the next.
  • Enhancing Performance and Safety with System.Threading.Lock in .NET 9 and C# 13Jul 22, 2024. Explore the new System.Threading.Lock in .NET 9 and C# 13 for enhanced multithreading performance and safety. This article covers its benefits, compiler warnings for misuse, and best practices for locking in older versions.
  • Task Scheduling with System.Threading.Timer in .NETJul 21, 2024. Efficient task scheduling is essential for many applications, whether you're building background services, automated tasks, or periodic data processing. In .NET, the System.Threading.Timer class provides a powerful and straightforward way to schedule tasks to run at specific intervals.
  • Background Tasks with BackgroundService in .NET 7Jul 17, 2024. In modern software development, background tasks are essential for handling operations that need to run independently of user interactions, such as processing data, sending notifications, or performing periodic maintenance.
  • Hangfire: Simplifying Background Job ProcessingJul 16, 2024. Discover how Hangfire simplifies background job processing in ASP.NET applications. Learn about its robust features for task scheduling, job management, and asynchronous job execution.
  • Synchronous vs Asynchronous: Task.WaitAll and Task.WhenAll in .NETJul 09, 2024. Synchronous vs Asynchronous: Explore the distinctions between Task.WaitAll and Task.WhenAll in .NET programming. Learn how Task.WaitAll synchronously waits for all tasks to complete, while Task.WhenAll asynchronously waits, enabling concurrent task execution.
  • TaskCompletionSource in .NET to Convert Async Non Task to Async TaskJul 09, 2024. TaskCompletionSource<T> in .NET allows manual creation and control of tasks, enabling custom async patterns and adapting non-task-based APIs. With methods like SetResult, SetException, and SetCanceled, it facilitates complex asynchronous operations, event handling, and integration, enhancing code flexibility and readability.
  • Multi-Threading (5), --- SummaryJul 08, 2024. This article will summarize the multi-threading.
  • Centralized Project Updates with Teams Messaging ExtensionJul 02, 2024. Learn how to create a Microsoft Teams Messaging Extension to centralize project updates from multiple project managers into OneNote. From this article, we learn to set up a Power Automate flow to save messages directly to OneNote, providing a consolidated view of project updates for easy access and review.
  • Top Angular Project Ideas for BeginnersJun 28, 2024. Create an Angular project to enhance your skills and portfolio. Ideas include an e-commerce site with product listings and payment integration, a task manager for project organization, a blog platform for user-generated content, a weather app with real-time updates, or a real-time chat application with WebSocket integration.
  • Concurrency and Parallelism in C#Jun 24, 2024. This article introduces concurrency and parallelism in C#, covering key concepts, benefits, and practical examples. Learn how to use async/await for asynchronous programming and the Parallel class for parallel computing, enhancing application performance and responsiveness.
  • Developing a Sturdy Project ScheduleJun 17, 2024. Developing a robust project schedule involves defining goals, breaking tasks into manageable units, establishing dependencies, estimating task durations, allocating resources effectively, and using tools like CPM and Gantt charts.
  • Microsoft Copilot Studio: Your Guide to Conversational AI PowerhouseJun 14, 2024. Discover Microsoft Copilot Studio, a powerful low-code platform for building custom conversational AI applications. Automate tasks, personalize experiences, and streamline workflows within your Microsoft 365 environment with ease. Whether you're a developer or entrepreneur.
  • How to Acquire Project Leadership Skills as a BeginnerJun 06, 2024. Project leadership is a vital skill in today’s collaborative and dynamic work environments. As a beginner, the path to becoming a proficient project leader may seem challenging, but with the right strategies and resources, you can develop the necessary skills to lead successful projects.
  • Essential Tools and Technologies for Project LeadersJun 06, 2024. Essential tools for project leaders include project management software like Trello, communication tools such as Slack, task automation platforms like Zapier, data analytics tools such as Tableau, and document management systems like Google Drive.
  • The One Behind Concurrency in C#Jun 04, 2024. The Thread Pool in C# simplifies concurrency by managing threads for you. Unlike creating and managing threads yourself, the Thread Pool offers a pool of reusable threads, improving performance and reducing complexity. It's ideal for short-lived tasks like calculations or processing data.
  • How to Fulfill the Key Responsibilities of a Product ManagerJun 03, 2024. A Product Manager defines the product vision, creates roadmaps, manages the product backlog, and ensures alignment with business objectives. Key tasks include market research, gathering customer insights, prioritizing requirements, and tracking progress using Agile methodologies and various tools.
  • Advanced Azure Bicep Techniques: Master Infrastructure CodeMay 13, 2024. This article is a comprehensive guide that takes you on a deep dive into the advanced topics of Azure Bicep. It starts with logging into Azure, then moves on to explain the advanced topics in Azure Bicep, complete with code samples and explanations.
  • Concepts of Threads, Thread Pools, and Tasks in C#May 13, 2024. Threads are the smallest units of execution, enabling concurrency but requiring manual management. Thread pools efficiently manage threads for short-lived tasks, while tasks abstract asynchronous operations for responsive applications.
  • Azure Bicep: Deployment and Infrastructure as CodeMay 10, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep deployment. It starts with logging into Azure and then moves on to explain the concept of deployment in Azure Bicep, complete with code samples and explanations.
  • Exploring Azure Bicep Functions: Syntax, Usage, and ExamplesMay 09, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep functions. It starts with logging into Azure and then moves on to explain the concept of functions in Azure Bicep, complete with code samples and explanations.
  • Azure Bicep: Power of Variables for Efficient DeploymentMay 08, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep variables. It starts with logging into Azure, then moves on to explain the concept of variables in Azure Bicep, complete with code samples and explanations.
  • Mastering Azure Bicep ParametersMay 07, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep parameters. It starts with logging into Azure, then moves on to explain the concept of parameters in Azure Bicep, complete with code samples and explanations.
  • Implementing On-Premises Servers into Microsoft Azure ArcMay 03, 2024. Learn how to seamlessly integrate on-premises servers into Microsoft Azure Arc, enabling centralized management and governance for your hybrid infrastructure.
  • Azure Bicep - Introduction to Azure BicepMay 03, 2024. This is a 14-Day series which introduces Azure Bicep Infrastructure as Coding (IaC) to the readers. This will be posted in 14 parts for ease of reading.
  • What is Global Traffic Manager (GTM) in Alibaba Cloud ?Apr 27, 2024. Unleash global application reach & peak performance with Alibaba Cloud GTM! Explore intelligent traffic routing, geo-redundancy & disaster recovery for seamless user experience & business continuity
  • Best Practices for Threading in .NET C#Apr 24, 2024. Threading is a powerful feature in .NET C# that allows developers to execute multiple tasks concurrently. In this article, we'll explore best practices for managed threading in .NET C#, covering topics such as thread safety, synchronization, and performance optimization.
  • Simplifying Background Tasks with WorkManager in AndroidApr 23, 2024. This article guides you on how WorkManager in Android simplifies task scheduling, improves background processing, and optimizes app development across different devices
  • Email Scheduling with Hangfire in .NET Core Minimal APIsApr 19, 2024. In modern web applications, sending recurring emails is a common requirement for tasks such as notifications, reminders, or scheduled reports. Hangfire is a popular library in the .NET ecosystem that provides a simple way to perform background processing tasks, including sending emails, in .NET applications. With the introduction of .NET Core Minimal APIs, building lightweight and efficient web applications has become even easier. In
  • Exploring the Fundamentals of Concurrent Programming in .NETApr 19, 2024. Concurrency is vital for efficient applications. .NET offers Thread, Multithreading, Task, Async & Await, Threadpool, Lock, and Deadlock tools. Understanding them enhances .NET development for scalable and responsive apps.
  • Sending Recurring Emails Using HangFire in .NET Core Minimal APIsApr 10, 2024. Learn how to automate recurring email tasks using Hangfire in .NET Core Minimal APIs. Hangfire offers multi-threaded, scalable task scheduling, perfect for batch email notifications, database maintenance, and more. Configure Hangfire, schedule recurring jobs, and integrate email sending functionality seamlessly.
  • Install and Configure Network Load Balancing Manager in ServerApr 05, 2024. In this article, we will learn Network load balancing is the ability to balance traffic across two or more WAN links without using complex routing protocols like BGP.
  • ASP.NET 8 – Multilingual Application with single Resx file - Part 4 - Resource ManagerApr 02, 2024. ASP.NET 8's Part 4 tutorial explores building multilingual applications using a single Resx file and Resource Manager. This feature facilitates easy localization and globalization, enabling developers to efficiently manage culture-specific resources within their web applications.
  • Copying Files from Git Repository to Azure Storage in Azure DevOpsMar 28, 2024. Automate file copying from a Git repository to an Azure Storage Account with Azure DevOps. Utilize CI/CD pipelines to streamline the process, employing AzureCLI tasks and inline scripts to ensure seamless integration and efficient management of resources across your development workflow.
  • Automate VCF Host Commission (ESXi)Mar 28, 2024. Learn how to automate ESXi host provisioning with Kickstart and streamline VMware Cloud Foundation host commissioning workflows.
  • Azure DevOps: Classic Editor for Azure Build & Release PipelinesMar 27, 2024. Learn to create Build and Release Pipelines in DevOps for Azure Repos Git. Configure tasks for Power Platform tools like solution export and import. Use Service Principle for authentication and define target environment details. Ensure successful pipeline creation for efficient project management.
  • How to Use ContinueOnError in Azure DevOps for Task FailureMar 26, 2024. In this article, we are going to learn about a simple tip on how to continue the Pipeline execution even when a non-critical Task is failing for some reason.
  • Passing Values Between Tasks in Azure DevOps PipelineMar 26, 2024. In this article, we will learn efficient inter-task communication in Azure DevOps pipelines. Discover how to pass values between tasks using the task.setvariable logging command, streamlining your pipeline automation.
  • Background Services in .NET CoreMar 22, 2024. In this article, we will learn Background Services in .NET Core allow developers to execute asynchronous tasks in the background, ensuring the smooth operation of applications.
  • Azure DevOps: How to execute a Pipeline Task using ConditionsMar 22, 2024. Learn how to optimize your Azure DevOps pipelines with tips and tricks for executing tasks conditionally. Utilize conditions to control task execution based on variables, branch policies, and other criteria, streamlining your CI/CD processes for efficient deployment.
  • Managing Storage Spaces with File Server Resource Manager (FSRM)Mar 13, 2024. FSRM has key features to provide control over your storage space. I cover topics such as Quota Management and File Screening Management in this article.
  • Installing File Server Resource Manager on Windows ServerMar 11, 2024. In this article, we will learn File Server Resource Manager (FSRM) is a role service in Windows Server that allows you to manage and control the data stored on your file servers. FSRM helps you to classify files, set quotas on folders, and create reports monitoring storage usage.
  • Using Variables in BicepFeb 27, 2024. Bicep is a domain-specific language (DSL) that is used for deploying Azure resources - learn more about it in this series of articles!
  • Azure Update Manager - Patch ManagementFeb 19, 2024. Azure Update Manager is a Software as a Service (SaaS) solution by Microsoft designed to simplify and automate software update management for Windows and Linux machines.
  • Sending Reminder Emails Using Power AutomateFeb 12, 2024. This article explains how to use Power Automate to send reminder emails effectively. Learn how to create reminder emails in Power Automate for pending tasks using SharePoint. The article outlines the design, conditions, and steps, ensuring efficient task management and escalation to managers.
  • How to Implement Azure Global DNS with Traffic Manager Profile?Feb 05, 2024. Implement Azure Traffic Manager for efficient global DNS load balancing across Azure web apps and VMs. Achieve optimal availability and responsiveness, especially for applications spanning multiple regions or data centers.
  • Docker Swarm: Transforming Container OrchestrationJan 12, 2024. Explore the dynamic world of Docker Swarm, where machines become nodes, managers orchestrate, and containers dance in perfect harmony
  • Clean Architecture Jan 02, 2024. Embark on a learning journey into the world of Clean Architecture, a transformative paradigm in software development. Uncover its core principles, such as separation of concerns and testability, with real-life examples. Elevate your development skills.
  • Centralized Management for Global Scale Networks using Azure Network ManagerDec 28, 2023. Centralized management for your global scale networks using Azure Network Manager.
  • Deploying Azure Virtual Network ManagerDec 26, 2023. the advantages of Azure Virtual Network Manager for streamlined and automated Azure virtual network management. Learn about benefits, pricing, and a step-by-step guide to deploying this powerful centralized network management service.
  • How to Create Wallpaper Group Policy in ServerDec 14, 2023. Learn the easiest method to create a wallpaper group policy on a server operating system. Follow step-by-step instructions, from creating a group policy to linking it for seamless application on restart.
  • Task Parallel Library (TPL) in C#Dec 12, 2023. The Task Parallel Library (TPL) in C# revolutionizes parallel programming, offering simplicity and scalability. This guide covers TPL components, benefits, and examples, showcasing its role in building efficient, responsive applications.
  • How to Install the File Server Resource Manager (FSRM)Dec 04, 2023. How to Install the File Server Resource Manager (FSRM).
  • 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.
  • .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.
  • A Warning to Companies: Your Development Manager is Ineffective, and It’s Your Fault!Oct 17, 2023. In this article, I will weave a cautionary tale that demonstrates something I have been seeing in teams since the late 2000s. That something is companies are creating ineffective development managers.
  • Understanding Task.WaitAll and Task.WhenAll in C#Oct 09, 2023. C# offers powerful tools for managing asynchronous operations, two of which are Task.WaitAll and Task.WhenAll. In this article, we'll delve into the concepts behind these methods and explore practical examples to illustrate their usage.
  • Task Management API with GraphQL in ASP.NET CoreSep 22, 2023. Creating a complete CRUD (Create, Read, Update, Delete) operation using GraphQL in an ASP.NET Core Web API can be quite extensive, so I'll provide you with a simplified example using a "Task Management" application as a real-world use case. In this example, we'll manage tasks with GraphQL.
  • Setting Up Server-Side Google Tag Manager (GTM) with DockerSep 21, 2023. Learn how to set up Server-Side Google Tag Manager (GTM) using Docker for advanced tracking and data processing. Gain flexibility and control over your analytics toolbox effortlessly.
  • Background Task Creation with Hosted Services and WorkersAug 31, 2023. In a web application, there are tasks that need to be performed in the background, such as sending emails, processing data, or performing regular maintenance. These tasks are often non-HTTP-related and can be time-consuming, so it's best to offload them from the main request-response cycle. In ASP.NET Core, you can use hosted services and background workers to accomplish this.
  • Import SSL Certificate to AWS Certificate Manager (ACM)Aug 02, 2023. Learn how to import an SSL Certificate into ACM (AWS Certificate Manager)
  • An Insight And Learning Journey With ManagersJul 17, 2023. I firmly believe that managers have a significant impact on our lives and can be a great source of inspiration
  • 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.
  • How to Create Virtual Switch in Hyper–V ManagerMay 09, 2023. Virtual Switch in Hyper-V Manager is a software-based network switch that enables the communication between virtual machines, the host system, and other physical or virtual devices on the network. It allows virtual machines to connect to external networks and access network resources just like physical machines.
  • How to Enable Hyper-V Manager in Windows 11May 07, 2023. Step by step for enabling hyper v manager on the Windows operating system
  • Introduction to Hangfire – opensource library for background task scheduling in .Net coreApr 26, 2023. Introduction to Hangfire – opensource library for background task scheduling in .Net core
  • Running Tasks In Parallel And Collecting Results In C# 11Mar 29, 2023. In this article, you wil learn about running tasks in parallel and collecting results in c# 11.
  • Create Custom Session ID ManagerMar 20, 2023. In this article, we will look in to SessionIdManger and how to customise it.
  • 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
  • Build A Simple Task Manager With Visualization In DjangoFeb 14, 2023. In this article, you will learn how to build a simple task manager with visualization in django.
  • An Introduction to Grunt: The JavaScript Task Runner for Streamlining WorkflowFeb 09, 2023. Grunt is a JavaScript task runner that automates repetitive tasks such as minification, compilation, and linting. It helps to streamline your development workflow by allowing you to define tasks and run them with a simple command. With Grunt, you can improve your productivity, reduce errors, and write better code. By using plugins, you can expand its functionality and integrate it with other tools and technologies. Whether you're a front-end developer, back-end developer, or full-stack developer, Grunt can help you get your work done faster and more efficiently.
  • Automate Purge Process Using Windows 10Feb 06, 2023. In this article, you will learn how to setup a file purge process using Task Scheduler and Command Prompt in windows 10.

About Task-Manager

NA

OUR TRAINING