Resources  
  • Accessibility with Azure AI Immersive ReaderMar 17, 2025. Azure AI Immersive Reader enhances digital accessibility with AI-powered reading assistance. It offers Text-to-Speech, multilingual support, customizable text display, and grammar assistance.
  • Using Spark to Read and Write Data in Microsoft Fabric Data WarehouseMar 10, 2025. Using the Spark Connector for Microsoft Fabric Data Warehouse to enable data engineers to directly read and write data in Fabric Data Wareousing using Spark notebooks. This eliminates the need for complex ETL processes or intermediary storage.
  • Getting started with OpenCVJan 06, 2025. Explore OpenCV, an open-source library for image processing and computer vision tasks. Learn installation, image reading, transformation, and display techniques with hands-on Python examples, including grayscale conversion and image format conversion.
  • File Read Write Operation in PythonDec 19, 2024. This article covers Python file handling, including reading, writing, appending, and binary operations. It explains functions like `read`, `readline`, and `readlines`, with code examples for practical applications.
  • Menu Navigation Layout in Android StudioDec 06, 2024. The article explains creating a navigation menu layout in Android to enable seamless activity transitions. It covers Java code and XML design with DrawerLayout and NavigationView, ensuring intuitive UI interaction.
  • Take Input in Java using Scanner Class with CodeDec 06, 2024. Learn how to capture user input in Java using the Scanner class. This guide covers importing, creating Scanner objects, reading inputs (strings, integers, doubles), and handling exceptions with examples.
  • 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.
  • Azure Function to Read Incoming Message in TwilioNov 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.
  • How to Read and Write JSON Files in C#Nov 17, 2024. JSON is a common data format used in APIs, configuration files, and data exchange. Learn to handle JSON in C# using `System.Text.Json`. This article covers creating data models, writing to and reading from JSON files, with practical code examples for efficient JSON management.
  • Fededim.Extensions.Configuration.Protected.DataProtectionAPI: The Ultimate Integration between ASP.NET Configuration and Data Protection APINov 05, 2024. Fededim.Extensions.Configuration.Protected is an improved ConfigurationBuilder which allows partial or full encryption of configuration values stored inside any possible ConfigurationSource and fully integrated in the ASP.NET Core architecture.
  • Serialization and DeSerialization in C#Oct 21, 2024. Serialization is the process of converting an object into a storable format, such as XML, JSON, or binary, while deserialization restores it to its original form. Common types include XML, JSON, Binary, and SOAP serialization.
  • Efficient Package Management in Large Enterprises with Directory.Packages.propsSep 23, 2024. Managing NuGet package versions in large C# solutions can be challenging. The Directory.Packages.props file simplifies this by allowing you to define package versions in one central location, ensuring consistency across all projects.
  • Reading and Writing Operation on File System in C ProgrammingSep 20, 2024. In C programming, file handling allows reading from and writing to files using functions like fopen(), fclose(), putc(), getc(), fwrite(), and fread(). Files are opened in various modes such as read, write, or append, with support for unformatted and formatted input/output operations.
  • File Structure: Writing and Reading Records EfficientlyAug 29, 2024. In C programming, fwrite() and fread() manage data storage and retrieval. fwrite() writes structures to a binary file, while fread() reads them back. This involves defining a structure, opening a file in binary mode, and using these functions to write and read data, ensuring file integrity and data consistency.
  • What is a Sitemap and How to Use It?Aug 09, 2024. A sitemap is a crucial tool for website optimization, aiding search engines in indexing your site efficiently. This guide explores the definition, types, and benefits of sitemaps, including XML and HTML formats.
  • Read Excel (XLSX) file in Angular 18Aug 05, 2024. Learn how to read and process Excel (XLSX) files in Angular 18 with this comprehensive guide. Explore methods for integrating Excel file handling into your Angular application, using libraries and tools to parse and extract data efficiently.
  • Create XML in .NET Core API and Send to Stored Procedure Using DapperJul 30, 2024. Learn how to create and send XML data to a stored procedure in a .NET Core Web API. This guide covers setting up a .NET Core Web API project, generating XML from data models, using Dapper for database interaction, and configuring a stored procedure to handle XML data. Ideal for complex data integration.
  • Integrating Barcode Reading in .NET Core with ExampleJul 29, 2024. This tutorial provides step-by-step instructions and a practical example, covering the use of libraries, APIs, and best practices for seamless barcode scanning. Perfect for developers looking to enhance their projects with barcode technology.
  • Advanced ADO.NET Features for Complex Data and Async OperationsJul 23, 2024. ADO.NET remains essential for database interactions in . NET. Advanced features include handling complex types with SQL Server's UDTs and XML data, managing binary data with VarBinary, and leveraging asynchronous operations for improved performance.
  • Content Negotiation in .NET Core Web APIJul 11, 2024. Content negotiation in REST APIs allows clients to specify their preferred response format (e.g., JSON or XML) using HTTP headers like Accept and Content-Type. ASP.NET Core Web API supports this with built-in JSON support and customizable formatters for XML and other formats.
  • Creating a complete CRUD (Create, Read, Update, Delete) application in Angular Jul 10, 2024. Build a CRUD application in Angular using Angular CLI for setup, components for UI, services for data management with HttpClient for API interactions. Implement CRUD operations (Create, Read, Update, Delete) with a Todo model, integrating JSON Server for backend simulation.
  • Understanding View Binding in AndroidJul 09, 2024. View binding is a feature that makes it easier to write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that module. An instance of a binding class contains direct references to all views that have an ID in the corresponding layout.In most cases, view binding replaces findViewById
  • Understanding LINQ While Writing Your OwnJul 03, 2024. LINQ (Language-Integrated Query) in .NET offers a unified, declarative way to query diverse data sources like objects, databases, XML, and more. It simplifies data manipulation with methods like Where, Select, and GroupBy, supporting both query and method syntax.
  • How to Convert varbinary to Base64 String in SQL ServerJul 03, 2024. Learn how to convert varbinary data to Base64 strings in SQL Server using XML functions and the CAST method. This tutorial provides clear steps and SQL examples for encoding binary data, crucial for web applications needing text-based transmission of images and files.
  • Copying Footers Between SharePoint Sites Using PnP PowerShellJun 24, 2024. I've been extensively using SharePoint and the PnP PowerShell module, which simplifies tasks with easy command sets and detailed documentation. Notably, copying a footer between SharePoint sites is straightforward with PnP.
  • Microsoft Reading Coach(Preview): Revolutionizing Rading PracticeJun 21, 2024. Discover Microsoft Reading Coach (Preview), a groundbreaking tool revolutionizing reading practice. Using AI and interactive learning tools, it transforms educational experiences by enhancing reading skills.
  • Learn CRUD Operations in SQL Server with Real-World ExamplesJun 21, 2024. CRUD represents the four basic operations: Create, Read, Update, and Delete, essential for managing persistent data in SQL Server. The Create operation involves adding new records to a table using the INSERT INTO statement. The Read operation retrieves existing records from a table using the SELECT statement.
  • Using C# and OpenXML to Read Large Excel FilesJun 18, 2024. Learn how to efficiently read large Excel files using C# and OpenXML in this comprehensive guide. Explore techniques to handle big data within Excel, leveraging the power of OpenXML SDK for performance optimization.
  • Enhancing Reading Comprehension with Azure AI Immersive ReaderJun 17, 2024. In today's digital age, reading and comprehension skills are essential for success in both personal and professional realms. However, individuals of all ages and abilities often face challenges in reading comprehension.
  • The Art of JavaScript Hoisting: Understanding the Ins and OutsJun 11, 2024. Discover the intricacies of JavaScript hoisting in this comprehensive guide. Understand how JavaScript handles variable and function declarations, the impact of scope, and the best practices to avoid common pitfalls.
  • Web APIJun 11, 2024. A Web API (Application Programming Interface) enables applications to communicate over the internet. Using protocols like HTTP and data formats such as JSON and XML, Web APIs facilitate interaction between different software systems.
  • Convert an Embedded Resource into an XML File in WPF C#Jun 06, 2024. When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during runtime.
  • WADL vs WSDL: The Battle of Web Service DescriptorsMay 30, 2024. Explore the significance and evolution of WSDL and WADL in web service description. WSDL, tailored for SOAP-based services, contrasts with WADL, simpler and geared towards RESTful services. While WSDL enjoys broader adoption, WADL's simplicity attracts developers in REST contexts.
  • 😇How the Compiler Reads Your Code?May 13, 2024. C# compilation, from syntactic and semantic analysis to optimization techniques. Learn how the Common Language Runtime (CLR) executes compiled code and discover the role of the Just-In-Time (JIT) compiler.
  • Deciding the Right Data Reading Architecture in .NETMay 11, 2024. In the dynamic realm of .NET development, choosing the right data reading architecture is paramount for application performance, scalability, and maintainability. Let's delve into practical examples of ADO.NET, Entity Framework, Dapper, and GraphQL to grasp their strengths and weaknesses.
  • How to Integrate Instant Plugins in the Canvas App?Apr 29, 2024. Dataverse Accelerator by Microsoft introduces low-code plug-ins for real-time business logic workflows in Canvas apps. Learn step-by-step integration of Instant Plugin with Power Fx in Dataverse environment. Test and utilize the Instant Plugin for efficient app development.
  • Learn JSX and React ComponentsApr 03, 2024. A brief idea about the JSX and React Components.
  • How to Mark an Email as Read When Logic App Performs an ActionMar 18, 2024. Azure Logic Apps streamline business processes by automating workflows between various services without coding. Follow steps to create workflows for tasks like moving email attachments to Blob Storage and more.
  • Creating Custom NuGet Packages in C#Mar 10, 2024. Learn how to create custom NuGet packages in C# with this step-by-step guide. Set up a project, add components, create a .nuspec file, package your project, and optionally publish to nuget.org.
  • How Do I Open an OCR File in PDF?Mar 05, 2024. Explore methods to open OCR files in PDF. Get the best guides to open an OCR file in PDF with easy steps. Open OCR PDF files in C# using the iTextSharp library. Install iTextSharp, write C# code to extract text, and run the code for OCR PDF processing.
  • How to Open a PSD File Without PhotoshopMar 02, 2024. Explore methods to open a PSD File without Photoshop. Get the program to open a PDF file without Photoshop using C#.
  • How to Open, Read or View MS SQL Error Log FileFeb 29, 2024. Explore methods to open, read, or view SQL Server Error Log File. Get the best solution to open or view the SQL Server Log File of MS SQL Server in easy steps.
  • How to Read or View Exchange Database EDB File ProgrammaticallyFeb 28, 2024. Explore methods to Read or View the Exchange Database EDB File Programmatically. Know how to use this Exchange Server Managed API to View or Read Exchange EDB files.
  • Customize Your Office Installer Using Office Deployment ToolsFeb 28, 2024. Customize your Microsoft Office installer effortlessly with Office Deployment Tools. Tailor settings, configurations, and deployment strategies to fit your organization's needs using command-line options and XML configuration for seamless setup.
  • D365 Data Retrieval: FetchXml, Paging Cookies, and PowerShellFeb 20, 2024. Prepare your PowerShell environment for Dynamics 365 with crucial commands: Install Microsoft.Xrm.Data.PowerShell module for interacting with Dynamics 365 data. Set execution policy to RemoteSigned for internet script execution.
  • Android Responsive Login Screen Design using Constraint LayoutFeb 16, 2024. In this article, I going to explain how we can create a responsive Screen for different android Screens using Constraint Layout.
  • Data Vault Design in Azure SQL - Read PII with Customer KeysFeb 05, 2024. Data Vault design in Azure SQL - Utilizing Customer keys to read PII information in databases. Ensuring data security in the cloud era is crucial, especially with the rise in data attacks. Protecting Personally Identifiable Information (PII) is paramount during cloud migration.
  • Visual Studio Feature: Convert JSON or XML to ClassesJan 30, 2024. In this article, I will demonstrate how to use the Visual Studio feature Paste JSON as Classes or XML as Classes. This feature was introduced in Visual Studio 2013. This compelling feature will help the developer convert JSON to a C# class or XML to a C# class.
  • Using XML Key-Value Pairs in C# as a DictionaryJan 30, 2024. To represent key-value pairs in XML, you typically use elements and attributes. how to represent key-value pairs in XML using C#. It covers XML file creation, interface and enum implementation, and methods for getting and setting values in an XML file. The example includes a WPF application for interaction.
  • DropDown List Using XML in ASP.Net C#Jan 11, 2024. The first dropdown, "ddldist," displays district names, and the second dropdown, "ddltaluka," displays taluka names based on the selected district. The C# code uses the Page_Load method to load district data on the initial page load. The ddldist_SelectedIndexChanged method handles the district selection, filtering, and populating of the taluka dropdown accordingly. The XML files "District.xml" and "Taluka.xml" store the district and taluka data, respectively.
  • Ref Readonly Parameters in C# 12Jan 03, 2024. C# 12 unveils a hidden gem: ref readonly parameters. This article delves beyond the surface, offering a deep dive into their benefits, usage patterns, and how they differ from familiar options like ref and in. Embrace their power for safer, clearer, and more efficient code. In the current digital era, we try to de-couple applications from one another so it is supposed to adapt to plug it in another version or another application easily.
  • ASP.Net Core - How to Read values from Appsettings.jsonDec 31, 2023. Asp.Net Core – How to Read values from Appsettings.json
  • How To Invoke SOAP Web Service in MuleSoftDec 24, 2023. In this article, you will learn how to invoke SOAP Web Service from the MuleSoft application. SOAP (Simple Object Access Protocol) is a protocol for exchanging structured information in the implementation of web services. It is a messaging protocol that allows programs running on different operating systems to communicate with each other by using XML as the message format.
  • Read in React.js CRUD OperationsDec 21, 2023. Explore the pivotal role of "Read" in React.js CRUD operations with insights into MVC architecture, MERN/MEN stacks, and the "View" in React. Dive into state management, Axios data fetching, and practical mapping techniques. The article includes a downloadable source code zip for Node.js API and React.js, catering to self-learners.
  • Read and Import Data from PDF File using MSFT FabricDec 04, 2023. Read and Import Data from PDF File using MSFT Fabric.
  • Reading properties of an object in C#Nov 26, 2023. This article explores two ways to read the properties of an object in C# without knowing its type at compile time: reflection and dynamic keyword. Reflection involves inspecting and manipulating metadata at runtime, providing flexibility but with potential performance drawbacks. On the other hand, the dynamic keyword allows for late-binding, bypassing static type checking, but may result in runtime exceptions and relies on the Dynamic Language Runtime (DLR). The choice between reflection and dynamic depends on specific needs and scenarios.
  • How to Trigger Service Bus using Azure Function?Nov 15, 2023. In this article, we will learn how to trigger service bus queue using azure function.
  • Get XML element value Action in Desktop flow using Microsoft Power AutomateNov 03, 2023. Reading this article, you can learn how to Get XML element value in Desktop flow using Microsoft Power Automate.
  • Write XML to File Action in Desktop Flow using Microsoft Power AutomateOct 31, 2023. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate.
  • Read XML From File Action in Desktop Flow using Microsoft Power AutomateOct 30, 2023. Reading this article, you can learn how to Read XML from file Action in Desktop flow using Microsoft Power Automate
  • Read And Upload Excel Data To Oracle TableOct 18, 2023. In the realm of data management and integration, the process of reading and uploading Excel data to an Oracle table involves multiple fundamental steps. First, the data needs to be read from an Excel file, which might contain various types of information such as numbers, texts, or dates. This data is typically organized in rows and columns.
  • Data Reading From AWS Kinesis Data StreamOct 16, 2023. Data Reading from AWS Kinesis Data Stream involves the real-time retrieval and processing of streaming data within the Amazon Web Services (AWS) Kinesis ecosystem. This process allows seamless integration and analysis of continuous data streams, enabling businesses to gain insights and make decisions in real time based on the incoming data flow.
  • How To Render Avatar Images From XML Data In Blazor?Oct 11, 2023. In this scenario, you'll need to read XML data, parse it, and then render avatar images inside a popup component in a Blazor application. This involves creating a data model, a service to handle XML parsing, and a component to display the avatars in the popup.
  • Reading Zip Files with SharpZip Library in .NETOct 03, 2023. SharpZipLib is a library for .NET that allows working with compressed files, particularly ZIP archives. To read a ZIP file using SharpZipLib, you first install the library and import the necessary namespaces. Then, you open the ZIP file using a `ZipFile` object, access its entries (files or folders), and process the entry data according to your application's needs. Finally, ensure to close the ZIP file properly to release associated resources.
  • MVC Architecture With Node.js CRUD Application [Node.js-Express-MongoDB]Aug 31, 2023. MVC Application- CRUD operations (create, read, update, and delete) Using [Node.js-Express-MongoDB].
  • 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
  • Implementing AJAX for Editing Data and Updating the Database in ASP.NET MVCAug 07, 2023. Implementing AJAX for editing data and updating the database in ASP.NET MVC allows you to enhance the user experience and responsiveness of your web application. AJAX (Asynchronous JavaScript and XML) enables seamless data retrieval and updates without requiring a full page reload, resulting in faster and more interactive user interactions.
  • Converting Strings in C#: JSON, Base64, XML, CSV and ReverseJul 19, 2023. Discover Ziggy Rafiq's comprehensive guide on converting strings to JSON, Base64, XML, and CSV formats using C#. Plus, learn how to reverse the process effortlessly. Don't miss out on this must-read article!
  • Create, Read, Update, and Delete (CRUD) with ASP.NET CoreJun 22, 2023. This article introduces developer to the Create, Read, Update, and Delete (CRUD) using ASP.NET Core and Razor pages
  • CMD Session action in Desktop flow using Microsoft Power AutomateJun 21, 2023. Reading this article, you can learn how to execute the windows commands, Using Open CMD session action, Read from CMD session, Write to CMD session action and Close CMD session action with Desktop flow in Microsoft Power Automate.
  • NCache and Caching Patterns: Full Cache, Cache Aside, and Read-Through CachingJun 13, 2023. From this article, you will learn about NCache and Caching patterns like Full Cache, Cache Aside, and Read-Through Caching.
  • Pagination in DynamoDB: Efficient Data ReadingJun 12, 2023. This article will explain the Pagination in DynamoDB: Efficient Data Reading.
  • Read Files Using File Connector in MuleSoftMay 10, 2023. In this article we will learn how to Read Files Using File Connector in MuleSoft.
  • String Operations in Rust: A Beginner's GuideMay 08, 2023. In this article we learn about how to perform string operations in Rust, including reading, manipulating, and transforming strings, through a variety of examples
  • Working with Files in Python: Reading, Writing and AppendingApr 18, 2023. Working with Files in Python: Reading, Writing and Appending
  • HTML Vs XML - Whats The Difference?Apr 06, 2023. In this article, you will learn about HTML vs XML.
  • Read & Update Smartsheet Data Using C# Console ApplicationMar 29, 2023. In this article, we will see how you can read the data from Smartsheet from a C# console application. This is required when we are building a system where we need some data from Smartsheet to process further functionalities of the integrated system.
  • How To Read Excel File In Next JS ApplicationMar 27, 2023. In this article, we learn how to read Excel file in React JS application.
  • Include XML Comments In Swagger under ASP.NET Core 2.2Mar 22, 2023. In this article, you will learn how to include XML Comments in Swagger under ASP.NET Core 2.2.
  • Multiple Views And Access To XML Files With .NET For iOSMar 21, 2023. You will learn how to build an iPhone app using multiple views, recording, and extract data of XML files, using .NET for iOS and the XCode Interface Builder.
  • How To Read And Write Data From Dynamics 365 F & O Using API From Power Automate Flow?Mar 10, 2023. This article shows how to read and write data from Dynamics 365 F & O using API from Power Automate Flow
  • Code Quality - Formatting Classes In Microsoft .NET To Make Them Easy To Read And ModifyMar 01, 2023. In this article, you will learn how to format classes in Microsoft .NET To Make Them Easy To Read And Modify.
  • XML Serialization in practice: Preparing The Central Bank ServiceFeb 17, 2023. Learn XML serialization in practice. In the second part of our article, we will get acquainted with XML serialization and look at the use of the Central Bank's XML service in real practice.
  • Create Lookup Field In Existing SharePoint List Using REST API Schema XMLFeb 06, 2023. In this article, we will learn how to create lookup field in existing SharePoint list using REST API and schema XML. The REST API enables us to communicate with SharePoint using standard HTTP methods, such as GET, POST, PUT, and DELETE. The API provides access to various SharePoint entities including lists, libraries, and sites, allowing us to retrieve data, create and update lists, fields, items, upload files and manage user permissions.
  • How To Read Files From S3 Bucket Using Lambda Function And PythonJan 24, 2023. In this article, you will learn how to read the file from S3 bucket and return the JSON response using Lambda function with Python.
  • Using XML Comments As Web API Documentation With SwaggerJan 18, 2023. This article demonstrage how to use C# XML Comments as a Web API documentation with Swagger.
  • Reading Data From JSON In SQL ServerJan 11, 2023. This article describes how to read data from a JSON string
  • PNP PowerShell - Read Excel File And Add Bulk Data Into SharePoint List Dec 22, 2022. In this article, you wil learn how to read Excel File and Add Bulk Data into SharePoint List.
  • How To Read CSV File Using C#Nov 14, 2022. This article demonstrates how to read Excel files using Microsoft's Interop Excel library in a C# Windows application. It covers adding references, handling file extensions, and displaying Excel data in a DataGridView.
  • Convert XML Files Data To List Of ObjectNov 13, 2022. In this blog, we learn how to get all XML files from a specific location and convert it's data into the C# object.
  • How To Read And Write To Microsoft SQL Using Python REST API Nov 07, 2022. In this article, you will learn how to read Microsoft SQL table, insert the results to another SQL table using Python REST API.
  • Read Microsoft SQL Table And Send The Results As Rest API JSON Response Using PythonOct 31, 2022. In this article, you will learn how to read Microsoft SQL table and send the results as REST API JSON response using Python.
  • How to Read Barcode in Word, Excel, PowerPoint or PDF Documents in JavaOct 18, 2022. In this article, you will learn how to read barcode from MS office documents and PDFs in Java by using Spire.Office for Java library.
  • How To Update List Items With Elevated Access To Read-only Content Using Power AutomateOct 10, 2022. In this article, we will learn how to update SharePoint list items with elevated access when the logged-in user doesn’t have access to update the content.
  • How To Add Custom Add-Ins To MS WordOct 07, 2022. This article shows you how to add add-ins to word desktop.
  • How To Add Add-Ins In PowerPoint Sep 20, 2022. In this article, you will learn how to add custom add-ins.
  • Improving The Fetch XML Performance In Dynamics CRMSep 20, 2022. The articles shares the information and steps to improvise the performance of FetchXML query in DataVerse
  • How To Deploy Excel Add-ins To Your OrganizationAug 12, 2022. This article show you how to deploy excel add-ins in your organization.
  • Read Email Using C#Aug 08, 2022. In this article, you will learn how to read Email using C#.
  • How To Read Data From An Excel SheetAug 03, 2022. In this article, you will learn how to read data from an excel sheet using C#.