C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand(6)
Ganesan C(4)
Swesh S(4)
Nikhil Patil(3)
Gowtham Rajamanickam(3)
Mayooran Navamany(3)
Jalpa Dhola(3)
Manikandan Murugesan(3)
Amit Kumar(2)
Love Thakker(2)
Kripanshu Kumar(2)
Ashish Bhatnagar(2)
Naimish Makwana(2)
Lalit Bansal(2)
John Godel(2)
Raveena Attri(2)
Mark Pelf(2)
Vijay Kumari(2)
Dashrath Hapani(2)
Muzaffar Ur Rahman(2)
Shivam Vaghela(1)
Asfaque Ansari(1)
Jeetendra Gund(1)
Baibhav Kumar(1)
Praveen Kumar(1)
Manav Pandya(1)
Arjit Soni(1)
Micheal Xavier A (1)
Kunal Patil(1)
Ankit Singh(1)
Arnab Das(1)
Deepika Sawant(1)
Pravesh Dubey(1)
Harshit Pandey(1)
Viknaraj Manogararajah(1)
Lakshan Sulochana Fernando (1)
Nitin Pandit(1)
Harsh Gupta(1)
Divyansh Gupta(1)
Rikam Palkar(1)
Arkadeep De(1)
Afsar Uddin(1)
Emanuel Martins(1)
Allam Purushotham(1)
Himanshu Patel(1)
Vipul Jain(1)
Waqas Anwar(1)
Kirtesh Shah(1)
Rajiv Singh(1)
Allen Oneill(1)
Aravind Govindaraj(1)
Jaimin Shethiya(1)
Ng Cheehou(1)
Praveen Raveendran Pillai(1)
Prathamesh Dhopare(1)
Mushtaq M A(1)
Sarthak Varshney(1)
Jay Krishna Reddy (1)
Vijay Sisodia(1)
Rasul Huseynov(1)
Ziggy Rafiq(1)
Manoj Kalla(1)
Sandeep Mishra(1)
Sanjay Kumar(1)
Nandan Hegde(1)
Rajeesh Menoth(1)
Mohammathu Fairoos(1)
Resources
No resource found
Responsive Design with CSS Variables
Aug 20, 2025.
Learn how to use CSS variables (custom properties) to build scalable, maintainable, and responsive designs. This article explores techniques, examples, and best practices to create flexible layouts for all devices.
Working with SharePoint User Profiles in SPFx using PnPjs
Aug 20, 2025.
This code uses PnPjs in SharePoint Framework (SPFx) to fetch user profile details like DisplayName and UserUrl from SharePoint Online, enabling personalized and user-specific experiences in custom solutions.
App Distribution Options in the SharePoint App Catalog: A Complete Overview
Aug 20, 2025.
Learn how to upload and distribute custom apps in SharePoint App Catalog. Explore options for SharePoint, Office, and managing user requests to streamline app deployment, access, and organizational control.
Master React Hooks: useState, useEffect & Custom Hooks Guide
Aug 19, 2025.
React Hooks let developers use state, lifecycle methods, and other React features in functional components. Hooks like useState, useEffect, and custom hooks make code cleaner, reusable, and easier to manage.
Automating SharePoint Permissions with PnPjs
Aug 14, 2025.
Learn how to create custom role definitions, assign dynamic item-level permissions, and audit SharePoint security using PnPjs in SPFx. Step-by-step guide with best practices.
How to set custom instructions for GitHub Copilot
Aug 12, 2025.
GitHub Copilot now supports custom instructions to guide AI-generated code. Set project-wide rules via .github/copilot-instructions.md or workspace settings to enforce coding standards and naming conventions.
How Do I Create Custom GPT Workflows Visually?
Aug 11, 2025.
Want to build your own GPT-powered workflows without code? Learn how to visually create custom AI workflows using tools like Langflow, Flowise, and Autogen Studio — no coding skills needed!
Custom Role Definitions & Dynamic Permission Management in SharePoint with PnPjs (SPFx Guide)
Aug 11, 2025.
This script uses PnP.js to create a custom SharePoint role named "Custom Reviewer" with permissions to view and add comments but without editing core data, defining it via sp.web.roleDefinitions.add().
SharePoint Online Update: Major Changes to Custom Scripting and Classic Publishing Sites Coming September 2025
Aug 09, 2025.
Microsoft is rolling out key SharePoint Online updates in September 2025, impacting custom scripting and classic publishing sites. Learn what’s changing and how to prepare.
What are indexers in C#?
Aug 07, 2025.
Exploring indexers in C# is a powerful feature that lets objects behave like arrays. We'll explain the basics in simple language, compare them to properties, cover multiple examples including overloaded and multi-parameter indexers, and share real-world use cases.
50 Most Frequently Asked Questions About AI
Aug 06, 2025.
Explore the top 20 most FAQ on AI—answered clearly for developers. Learn how AI works, compare tools like GPT-4 vs Claude, understand ethics, privacy, and productivity tips.
Best Practices for Exception Handling in ASP.NET Core Web APIs
Aug 01, 2025.
Exception handling is a critical aspect of building robust, secure, and maintainable Web APIs. In ASP.NET Core, handling exceptions gracefully ensures that the API provides meaningful error information to consumers without exposing sensitive internal details or causing the application to crash.
Mastering Custom Properties (CSS Variables)
Jul 30, 2025.
CSS Variables (Custom Properties) let you define reusable values like colors and spacing in one place, making your stylesheets cleaner, easier to maintain, and perfect for theming and responsive design.
Creating Your First Custom Hook in React
Jul 30, 2025.
Learn how to build your first custom React Hook with this beginner-friendly guide. Understand the power of reusable logic with real-world examples. Say goodbye to repeating useEffect and useState code across components.
🧾 Creating Custom Middleware in ASP.NET Core – The Complete Guide with Real Examples
Jul 29, 2025.
ASP.NET Core is known for its modular pipeline, where middleware components play a critical role in handling HTTP requests and responses. Middleware can perform a variety of tasks such as request logging, authentication, routing, response modification, error handling, and more.
Visualizing HTML Changes in Power Apps with a Custom React PCF Control
Jul 22, 2025.
Learn how to build a custom PCF control using React and an HTML diff algorithm in Power Apps to visually compare content versions, enhancing workflows like approvals, audits, and reviews.
SortedSet Interface and Iterator Interface
Jul 18, 2025.
The SortedSet interface extends the Set Interface, which I already discussed in my Previous Article. The elements of this interface are sorted in ascending order.
Events and Event Handlers in Javascript
Jul 17, 2025.
Learn how JavaScript events and handlers make web pages interactive. From mouse clicks to form inputs, master event-driven programming for responsive, user-friendly websites with real-time user interaction.
Why Build with CrewAI? 8 Compelling Benefits Explained
Jul 16, 2025.
Learn the top 8 reasons to choose CrewAI for your next AI project—faster time-to-market, true multi-agent orchestration, seamless AWS integration, enterprise security, elastic scalability, protocol agnosticism, built-in tooling, and community momentum.
Introducing Reusable Power FX Functions
Jul 14, 2025.
Power FX Functions in Power Apps enable reusable, modular logic using a low-code formula language. Define once, use across apps and flows, improving readability, maintainability, and development efficiency.
Custom Slider in Jetpack Compose
Jul 09, 2025.
Create a fully customized slider in Jetpack Compose with a green track, a white circular thumb, a thicker track, and a percentage range. Perfect for modern Android UIs that require elegant, user-friendly controls.
Duplicate Message Detection for an Azure Service Bus
Jul 07, 2025.
Duplicate detection in Azure Service Bus prevents processing the same message multiple times by tracking MessageId within a configurable time window, improving system efficiency and ensuring reliable, error-free message handling.
Filtering, Sorting & Pagination Made Easy in .NET with Sieve
Jul 05, 2025.
Discover how to use the powerful Sieve NuGet package to simplify dynamic filtering, sorting, and pagination in your .NET Web API projects. This article walks through real-world usage with in-memory data, custom filters, and a clean architecture pattern.
Canva for Web Design: Create Like a Pro Without Coding
Jul 02, 2025.
Design stunning websites without coding! Canva's drag-and-drop builder, templates, mobile-ready designs, and collaboration tools make it ideal for beginners, creators, and small businesses to quickly and easily build web pages.
What are Props in React Native
Jul 01, 2025.
Learn how to use props in React Native to create dynamic, reusable components. Pass data from parent to child, use PropTypes for validation, and apply defaultProps to ensure a clean and reliable UI behavior.
Modern CQRS and Messaging in .NET with Wolverine
Jun 30, 2025.
Learn how to use Wolverine, a powerful .NET message bus library, to handle commands, publish events, and schedule background tasks in a simple console app with zero boilerplate and full CQRS support.
React Hooks Tutorial: Practical Guide with Real Examples for Beginners & Developers
Jun 27, 2025.
This article explores React Hooks—functions that enable state, side effects, context, and more in functional components—covering built-in hooks, lifecycle replacements, custom hook creation, and common best practices.
Which React Hook to Use and When (With Examples)
Jun 26, 2025.
Learn exactly when and how to use each React hook — including useState, useEffect, useRef, and more — with real-world examples. Boost your React skills with this practical guide to hooks.
How to Share Logic Between Components Using Custom Hooks in React
Jun 26, 2025.
Learn how to reuse and share logic between React components using custom hooks. Create clean, maintainable code with real examples of custom React hooks.
Adding a Custom Domain Using Amazon Route 53
Jun 17, 2025.
Learn how to connect your custom domain to AWS using Amazon Route 53. This step-by-step guide covers domain setup, DNS records, and configuring hosted zones for seamless web routing.
Setting Up a CA Template with SAN and Custom Settings
Jun 17, 2025.
Learn how to set up a Certificate Authority (CA) server template with Subject Alternative Names (SAN) and advanced settings to issue secure, customized certificates for internal environments.
From Custom Reporting Headaches to Self-Service Dashboards: The Reveal BI Advantage for SaaS
Jun 16, 2025.
Here in this article, we'll see how from Custom Reporting Headaches to Self-Service Dashboards with the Reveal BI Advantage.
Should We Train Our Own LLMs or Use Existing Ones via APIs?
Jun 13, 2025.
Learn whether to train your own LLM or use existing APIs, with pros, cons, cost considerations, and expert tips to guide your enterprise AI strategy.
Should We Build GenAI Solutions In-House or Adopt Existing Platforms?
Jun 12, 2025.
Deciding whether to build your own GenAI solution or leverage existing AI platforms? This guide breaks down the pros and cons of both approaches, helping engineering leaders choose the right path based on cost, speed, customization, and long-term value.
Guide to Add Custom Modules in ABP.IO App
Jun 06, 2025.
Learn how to add custom modules to your ABP.IO app with this simple, developer-friendly guide. Covers backend setup and Angular integration step by step.
Power Automate AI Copilot Prompts: What & How to Build
Jun 06, 2025.
Discover how to use Power Automate Prompts with Copilot to build smart, AI-driven flows using natural language. Learn to create custom prompts, summarize feedback, and automate tasks without coding.
Logging in ASP.NET Core Web API Using MongoDB
Jun 03, 2025.
Logging is one of the most important parts of building a real-world application. It helps you track errors, monitor behavior, and understand what your app is doing behind the scenes.
Custom Web App Development vs. SaaS Platforms: Which Is Right for Your Business in 2025
May 29, 2025.
Custom Web Apps offer complete control, scalability, and a tailored user experience, ideal for complex needs. SaaS offers fast, cost-effective deployment with lower maintenance, making it ideal for startups and SMEs that need to reach the market quickly.
Add SharePoint Knowledge to a Custom Copilot using Copilot Studio
May 23, 2025.
Enhance your custom Copilot with SharePoint knowledge using Copilot Studio. Seamlessly connect and integrate SharePoint data to empower your AI assistant with organizational content, improving responses and productivity within your business environment.
How to Make Power Pages Form Fields Mandatory or Optional Using jQuery
May 22, 2025.
In this article, we will learn how to use jQuery to dynamically set Power Pages form fields as mandatory or optional.
Understanding Types in TypeScript
May 15, 2025.
Explore the different types in TypeScript, including primitives, union and intersection types, type aliases, interfaces, and generics.
Event-Driven CQRS with C# 14 and the SQL Outbox Pattern
May 15, 2025.
Learn how to implement a reliable event-driven CQRS microservice using the SQL Outbox Pattern with C# 14. Ensure strong consistency, transactional event publishing, and fail-safe asynchronous processing for scalable distributed systems.
C# 13: Partial Properties and Indexers Simplified
May 05, 2025.
C# 13 introduces partial properties and indexers, enabling cleaner separation of logic in partial classes. This boosts maintainability, avoids hacks, and simplifies working with generated code and tools like EF Core.
Why Custom Software Development Is the Key to Business Growth in 2025
Apr 14, 2025.
Custom software development empowers businesses in 2025 to boost efficiency, enhance security, personalize experiences, and future-proof operations through scalable, integrated, and AI-ready solutions tailored to their unique goals and needs.
Advanced APIs with ASP.NET Core: Middleware, EF Core, and Versioning
Mar 28, 2025.
Learn how to build advanced APIs with ASP.NET Core using middleware, Entity Framework Core (EF Core), and API versioning. This guide covers request handling, database management with EF Core, and implementing versioning strategies for scalable and maintainable APIs.
Creating a Rating Bar in MAUI C# .NET 9 [GamesCatalog] - Part 8
Mar 25, 2025.
We’ll explore how to create a Rating Bar in .NET MAUI using C# for the GamesCatalog app. We’ll cover designing the UI, handling user interactions, and updating ratings dynamically.
How to Set Up an EC2 Instance with a Custom AMI
Mar 24, 2025.
A custom AMI in AWS saves time by allowing you to launch EC2 instances with pre-installed software and configurations. Instead of setting up each server manually, you can create an AMI, reuse it for multiple instances, and speed up deployments.
How to Create Trigger Call Custom Trigger Using C# Code in D365
Mar 22, 2025.
This article covers setting up a trigger, writing C# logic, and integrating it with D365 for automated workflows. Perfect for developers looking to customize business processes and enhance automation in Dynamics 365 applications.
How to Use Amazon SQS for Message Queuing
Mar 10, 2025.
In this article, we will learn how to use Amazon Simple Queue Service (SQS) to send, store, and receive messages between application components.
Create a Material-UI Custom Date Picker with React js.
Feb 24, 2025.
This article covers integrating MUI’s Date Picker component, customizing its appearance, handling date selection, and adding validation. Perfect for building user-friendly date input fields in your React applications.
Create a Material-UI Custom Date Picker with React js
Feb 24, 2025.
Learn how to create a custom Material-UI DatePicker in React.js, integrate it with AdapterDayjs, and enhance it with styling, clear functionality, and year selection for an improved user experience.
How to Use Flutter for IoT and Embedded Devices
Feb 14, 2025.
Flutter is revolutionizing IoT and embedded devices with its cross-platform capabilities, high-performance UI, and seamless hardware integration. This blog explores how Flutter for IoT and embedded devices can be used in smart homes, industrial automation, healthcare, connected vehicles, and more.
Comparison: Low-Code/No-Code versus Pro-Code Custom Development
Feb 01, 2025.
In this article, I have shared the comparison of strengths and trade-offs of low-code/no-code versus pro-code custom development approaches, as choosing the right technology or platform depends on factors like speed, requirement complexity and customization needs.
Real-Time Data and NCache: Keeping Your Data Fast and Fresh
Jan 23, 2025.
Learn what is real-time data and what are its characteristics. Learn how modern distributed caching solutions such as NCache can help us in building and managing modern real-time applications.
Custom Bootstrap 5 Breadcrumbs - Ver 3
Jan 20, 2025.
This article covers how to design responsive, styled breadcrumb navigation to enhance user experience on your website. Customize your breadcrumbs easily using HTML, CSS, and Bootstrap components for better navigation.
Custom Bootstrap 5 Breadcrumbs -Ver 2
Jan 20, 2025.
This custom Bootstrap 5 breadcrumb solution enhances the basic breadcrumb feature with options for different sizes, icons, and multi-line text. It includes hover effects, and customizable colors, and is fully responsive without JavaScript.
Global Exception Handling in ASP.NET Core Web API
Jan 14, 2025.
Learn how to implement Global Exception Handling in Asp.Net Core WebAPI using Custom Middleware. Handle errors efficiently with ExceptionMiddleware, register it in program.cs, and see how to manage exceptions in your application seamlessly.
iOS 18 Release: New Features and Enhancements
Jan 10, 2025.
Apple's iOS 18, launched on September 16, 2024, introduces groundbreaking features like app locking, eye control, satellite messaging, and enhanced AI, redefining personalization, security, and productivity for iPhone users.
Custom middleware in .Net core
Dec 24, 2024.
Create a custom middleware in .NET Core to handle unhandled exceptions, and log errors, and return a user-friendly JSON response. Integrate it into the pipeline and test with endpoints to ensure robust error management.
Understanding Deconstruction in C#
Dec 22, 2024.
Deconstruction in C# and its use. Explore C# deconstruction to simplify object breakdown into variables using tuples or custom types, improving code readability, conciseness, and flexibility while enhancing pattern-matching capabilities for efficient data handling.
Implement the Mediator Pattern in a .NET Web API
Dec 17, 2024.
Learn how to implement the Mediator Pattern in a .NET Web API using the MediatR library. This design pattern reduces tight coupling between components by centralizing communication through a mediator.
Implement Basic, Custom and Multiple Health Checks in .NET Web API
Dec 16, 2024.
In this article, we are going to learn about Implement Basic, Custom and Multiple Health Checks in .NET Web API. This article explains Health Check implementation in .NET Web API, covering basics, customizations, multiple checks, and practical code examples for monitoring application and dependency health effectively.
SQS Message Polling using C#
Dec 15, 2024.
This article explores integrating Amazon Simple Queue Service (SQS) with C# applications, covering essential concepts like long polling, receiving messages, and using the AWS SDK for .NET.
Fine-Tuning Azure OpenAI Models with Domain-Specific Data
Dec 12, 2024.
Learn how to fine-tune Azure OpenAI models with domain-specific data to enhance performance for industry-specific applications.
NATS Message Queue Authentication
Dec 11, 2024.
How to set Authentication and Authorisation in the NATS Message Queue. Explore NATS authentication techniques, including Username/Password, Tokens, NKEY, JWT, and custom methods. Understand security hierarchies and implementation practices.
Transactional Outbox Pattern
Dec 07, 2024.
The Transactional Outbox Pattern ensures data consistency in distributed systems by storing events in an outbox table within the database. It simplifies reliable messaging, enabling seamless communication between microservices while avoiding the complexity of two-phase commits.
Customized Authentication Filters in ASP.MVC Core 6
Dec 04, 2024.
Custom authentication filters in ASP.NET Core 6 allow you to implement personalized authentication logic. You can create custom attributes, middleware, or policy-based authorization to manage user access based on roles, claims, or tokens.
Receive Incoming Message in Twilio using Power Automate
Nov 30, 2024.
This article explains how to set up Twilio webhooks, configure Power Automate flows, and automate SMS workflows for efficient message handling. Simplify communication with this step-by-step tutorial.
Enhanced Exception Handling with IExceptionHandler in .NET Core 8
Nov 28, 2024.
Learn about IExceptionHandler in .NET 8, a robust interface for handling exceptions in ASP.NET Core. Streamline error handling with custom logic, modular design, standardized API responses, and enhanced user-friendly error management.
Azure Function to Read Incoming Message in Twilio
Nov 27, 2024.
Learn how to create an Azure Function that reads incoming SMS messages from Twilio. This tutorial covers the setup of Azure Functions, integrating with Twilio's API, and processing incoming messages using webhooks.
Exploring Advanced Generics in C#: A Practical Guide with Examples
Nov 25, 2024.
This article aims to provide a guided tour of some advanced topics in C# generics, such as constraints, covariance and contravariance, and custom generic interfaces.
What is New in Android 15?
Nov 21, 2024.
Android 15, codenamed Vanilla Ice Cream, launched with innovative features like Private Space, enhanced satellite messaging, Partial Screen Recording, and robust security updates. Revolutionizing multitasking, privacy, and connectivity!
Sorting with IComparable in C#
Nov 14, 2024.
Learn how to implement the IComparable interface in C# to customize sorting behavior for objects. Explore sorting techniques, comparisons, and examples to efficiently order data in collections like lists and arrays.
Understanding Write-Debug, Write-Verbose, and Write-Host
Nov 10, 2024.
In PowerShell, Write-Debug, Write-Verbose, and Write-Host serve different purposes for output. Write-Debug is used for debugging, displaying messages when the $DebugPreference is set. Write-Verbose provides detailed information when $VerbosePreference is set.
How to perform CRUD Operations in Power Apps
Nov 10, 2024.
Create a student management app in Power Apps with CRUD functionality—Create, Read, Update, and Delete—for efficient data handling. This app connects to a SharePoint list, allowing users to add, view, edit, and delete student records.
Library Component Type in SharePoint Framework (SPFx)
Nov 09, 2024.
SPFx Library Components enable the creation of reusable, modular code in SharePoint. By centralizing utility functions, services, and UI elements, developers can enhance maintainability and consistency across projects.
How to Apply Custom Fonts in .NET MAUI
Nov 07, 2024.
Learn how to add and apply custom fonts in your .NET MAUI app to enhance design and branding. This guide covers adding font files, registering fonts in MauiProgram.cs, and using them in XAML or C#.
OpenAI Partners with Broadcom, TSMC to Create Custom AI Chips
Nov 04, 2024.
OpenAI partners with Broadcom and TSMC to create custom AI chips, diversifying suppliers with AMD to meet increasing infrastructure needs and manage rising costs.
Learn Protocol Buffers in gRPC
Oct 30, 2024.
This content explores how Protobuf enables efficient data serialization, improves API performance, and provides structured messaging, making it ideal for scalable microservices.
Automate SharePoint Site Creation with Azure Functions and AD Auth
Oct 28, 2024.
This guide demonstrates how to automate SharePoint site creation using Azure Function Apps with custom Azure Active Directory (AD) authentication. It covers prerequisites, creating an Azure Function App, configuring authentication, setting up permissions, and testing the function.
ASP.NET Core Middleware
Oct 22, 2024.
ASP.NET Core Middleware plays a crucial role in the request processing pipeline of web applications. It allows developers to add custom functionalities, such as authentication, logging, and error handling, to handle HTTP requests and responses efficiently.
Power Apps and Library Component
Oct 20, 2024.
Library components in Power Apps are reusable modules that can be shared across multiple apps to streamline development. They help maintain consistency, reduce redundancy, and enable easy customization.
Using Attributes and Metadata in C# 12
Oct 20, 2024.
Ziggy Rafiq demonstrates how to use attributes and metadata in C# 12 including improvements in parameter types, reflection capabilities, and best practices for maintaining self-documenting code.
Hidden Gems - Converting the Table Response Into String Variable
Oct 03, 2024.
Discover the hidden gems and best practices for effectively handling data within Microsoft Copilot. Enhance your AI-driven applications by learning essential techniques for data manipulation and integration.
Hidden Gems - Adding the Custom Data to Generative Answers
Oct 03, 2024.
Learn how to input a string variable as custom data for the Generative Answers component in Copilot Studio. Overcome challenges like binding errors and formatting issues by converting large text into a table format using PowerFx. Process data efficiently and generate responses tailored to user queries.
Overview of Minimal API
Oct 01, 2024.
Minimal API in ASP.NET Core provides a streamlined approach to building HTTP APIs with minimal configuration. Introduced in .NET 6, it allows for lightweight API development without controllers, making it ideal for small projects. This article covers key features, and differences from traditional APIs, HTTP verbs, and routing techniques.
Custom Copilot: Fetch and Process SharePoint List Data Using Prompt AI Builder
Sep 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.
Access SharePoint List Using Custom Copilot – Copilot Studio
Sep 25, 2024.
Learn how AI-driven tools streamline workflows, enhance productivity, and automate SharePoint operations, offering tailored solutions for efficient data management and collaboration.
Interactive Tic-Tac-Toe Game in React
Sep 23, 2024.
In this article, you'll learn how to create an interactive TicTacToe game using React. We cover essential React concepts like components, useState, and useEffect. Step-by-step, you'll build the game interface, implement game logic to check for winners and style the components.
Building a Custom QR Code Generator Component in React
Sep 20, 2024.
In this guide, you'll learn how to build a custom QR code generator component in React. We'll cover the steps to integrate a QR code library, customize the QR code's appearance, and make it dynamic by accepting input from users.
Generate Originator for Outlook Actionable Message Adaptive Card
Sep 20, 2024.
Learn how to generate an originator for Outlook actionable messages using adaptive cards. This guide covers step-by-step instructions for setting up and customizing the originator, enhancing your Office 365 emails with actionable content.
Detailed use of Action Delegate in C#
Sep 11, 2024.
In C#, the Action delegate represents a method that does not return a value and can accept up to 16 parameters. It's useful for passing methods as arguments, callbacks, and event handling. It supports lambda expressions and anonymous methods, making code more concise. Unlike Func<T>, Action always returns void.
Building a Custom Image Slider Component in React
Sep 11, 2024.
Learn how to create a responsive, interactive slider using React hooks, JavaScript, and CSS. Perfect for adding dynamic image galleries or carousels to your web projects, enhancing user engagement and experience.
Private Specialized Small Language Model (SLM) Architecture
Sep 10, 2024.
In this article, we will explore the architecture of Private Specialized Small Language Models (SLMs), focusing on custom, secure, and efficient designs tailored for specific domains.
Copilot Extensibility - How to Add a Weather Plugin?
Sep 09, 2024.
Microsoft 365 Copilot Extensibility allows businesses to customize AI capabilities by integrating third-party apps and creating custom plugins. With tools like Power Automate and Natural Language Understanding, users can tailor Copilot to meet specific needs, enhancing functionality through seamless integration.
Creating User Defined Exceptions in Java
Sep 09, 2024.
Customized exceptions are necessary to handle abnormal conditions of applications created by the user.
Create a Material-UI Custom Select Component with React js.
Sep 05, 2024.
Learn how to create a custom select component using Material-UI with React JS in this tutorial. We’ll walk through setting up Material-UI, designing a customizable select dropdown, and integrating it seamlessly into your React application.
Automated Way for PBIX to PBIP File Conversion
Sep 04, 2024.
To automate PBIX to PBIP conversion, install the PowerShell module PBIXtoPBIP_PBITConversion using Install-Module -Name PBIXtoPBIP_PBITConversion. Use PBIXtoPBIP_PBITConversion -PBIXFilePath "<<PBIXFilePath>>" -ConversionFileType "<<ConversionFileType>>" to perform the conversion.
Overview of the Migration from QnA Maker to Custom QnA Maker
Sep 03, 2024.
With QnA Maker's retirement approaching, migrate to Custom QnA Maker by March 2025. Custom QnA Maker offers advanced AI capabilities for improved performance and content quality. Use the tool-to-tool migration option for a smooth transition, and explore features like FAQ suggestions and enhanced language services.
Create an Azure AD Custom Domain with Entra
Sep 03, 2024.
Establishing a custom domain on Microsoft Azure enhances your brand’s identity and security. By configuring DNS records and verifying ownership, you can link your domain to Azure services. Combined with Entra ID, this setup boosts professionalism, ensures secure access, and centralizes management for a seamless user experience.