Resources  
  • What’s New in .NET 10: JSON Updates & Quantum SecurityJul 18, 2025. .NET 10 Preview 6 boosts app security with strict JSON serialization, disallowing duplicates, and introduces Post-Quantum Cryptography (PQC) support to future-proof your code against quantum threats.
  • Copilot Studio: Use of Adaptive Card Node with a Real-World ExampleJul 16, 2025. In this article, let’s understand the use of Adaptive Card Node in Copilot Studio, and walk through a practical example that you can try out in your own bot. Whether you're building internal tools, IT service bots, or HR assistants, this component can add serious polish to your user experience.
  • Create and Update SharePoint List Items in SPFx Using PnPjsJul 14, 2025. Learn how to create and update SharePoint list items in an SPFx web part using the latest PnPjs (spfi). Includes step-by-step examples for all field types, including lookup, people, multi-choice, and more.
  • How to Use PnPjs in SPFx to Query SharePoint List ColumnsJul 11, 2025. Learn how to configure PnPjs in your SharePoint Framework (SPFx) project and query all common SharePoint column types including Lookup, Person, Choice, and more.
  • Introduction to JSON: The Language of Data in Web DevelopmentJul 10, 2025. This beginner-friendly article explains what JSON is, why developers love it, and how it’s used in APIs and apps. Includes real-life examples, code snippets, rules, tools, and a clear analogy.
  • Data View and LINQ in C# and VB.NETJul 07, 2025. Learn how to fetch unique values from a DataTable using DataView and LINQ in C# and VB.NET. Explore sorting, filtering, and displaying distinct book records with examples compatible with .NET Core and .NET 9.
  • Build Branching Logic in SharePoint Online List FormsJul 07, 2025. Learn how to use branching logic in SharePoint Online list forms to show or hide fields based on user input. Enhance user experience, minimize errors, and create intelligent, no-code forms effortlessly.
  • Best Strategy for Launching a DEX Listing After a CEX LaunchJul 02, 2025. Planning to launch your crypto token on a decentralized exchange after listing on a CEX? Discover the best strategies for price alignment, adding liquidity, preventing bot attacks, and maintaining market stability when expanding your token to DEX platforms.
  • How to Launch a New Crypto Token on a DEX: Step-by-Step GuideJul 01, 2025. Planning to launch your crypto token on a decentralized exchange like Uniswap or PancakeSwap? Learn the best DEX launch strategies, from adding liquidity safely and avoiding bots to locking liquidity and protecting your token from rug pulls and price volatility.
  • Health Checks in .NET 8 Web API: A Comprehensive GuideJun 18, 2025. Ensure your ASP.NET Web API’s reliability with .NET 8 health checks—monitor SQL Server, external APIs, and network connectivity using JSON-formatted diagnostics for proactive monitoring, easier debugging, and improved application resilience.
  • Building Objects in JavaScriptJun 18, 2025. JavaScript is an object-based language, which does not Completely support object oriented programming concepts. It provides a mechanism by which user-defined Objects can be created.
  • How To Run JavaScript in Power Automate Desktop Using “Run JavaScript” ActionJun 17, 2025. Learn how to run JavaScript directly in Power Automate Desktop using the “Run JavaScript” action. Build objects, return JSON via WScript.Echo(), and integrate JS logic seamlessly into your PAD flows.
  • Mastering Trigger Conditions in Power Automate Flows: Simplify Your Flow Logic Like a Pro! 🔥Jun 16, 2025. This article explores Trigger Conditions in Power Automate, explaining what they are, why they matter, and how to use them effectively, especially in SharePoint-based flows. Learn with real-world examples, syntax tips, and best practices to build smarter, more efficient workflows.
  • 🎲 How to Generate a Random Number or List of Random Numbers in Power Automate DesktopJun 10, 2025. Learn how to generate single or multiple random numbers in Power Automate Desktop for testing, simulations, or dynamic inputs—perfect for RPA, Excel automation, chatbots, and Indian IT project scenarios.
  • How Indexed Columns Improve SharePoint List SpeedJun 04, 2025. Indexed columns in SharePoint help improve list and library performance by allowing faster filtering and searching, especially in large lists with thousands of items.
  • Calling REST APIs in Blazor Server: A Beginner's Guide with ExampleJun 04, 2025. In this article, we will learn how to call REST APIs in a Blazor Server application using HttpClient. We’ll walk through how to send GET, POST, PUT, and DELETE requests, and handle JSON responses using strongly-typed models.Whether you're building a dashboard, e-commerce site, or internal tool, REST API integration is a must-have skill for Blazor developers.
  • What is Debouncing in JavaScript?Jun 03, 2025. You're typing something into Google search, right? And it shows suggestions after every letter you type.If the app tries to send a request for every single keypress, that’s a lot of wasted work — especially if someone types fast.So what do smart developers do?
  • 💡 Real-World Small JavaScript Projects – For Real PeopleJun 03, 2025. So you’re learning JavaScript and you want to build something useful, not just “Hello World” or random number generators. You want to build something that feels like what real developers do. Something simple but practical. Something that makes sense in the real world.
  • Liquid Objects in Power Pages Portal – Explained with ExamplesJun 02, 2025. Learn how to use Liquid Objects in Power Pages Portal with clear examples. This guide helps you customize dynamic content, enhance user experience, and master Power Platform Liquid syntax.
  • Understanding the Purpose of Enforcing LDAP Channel BindingApr 28, 2025. Understand the gaps in LDAP signing, the role of Channel Binding Tokens (CBTs), enforcement options, auditing, and best practices to secure your LDAP connections.
  • How to Convert a DataTable to a List of Objects in C#Apr 27, 2025. Learn how to convert a DataTable to a List<T> in C#. Explore manual, reflection-based, and LINQ methods for better performance, type safety, and cleaner code. Improve maintainability in modern C# applications.
  • Excel-Powered CRUD in SharePoint List Using PnP JS and XLSX Apr 24, 2025. Utilizing Excel as an information source, PnP JS for SharePoint operations, and the XLSX library for parsing Exceed expectations records, I will walk you how to perform out CRUD (Create, Read, Update, Delete) method in a SharePoint list.
  • How to Convert a List of Objects to a DataTable in C#Apr 23, 2025. In real-world C# applications, especially when working with data layers or exporting data (e.g., to Excel, reports, or grids), you may often need to convert a generic list of objects (List<T>) to a DataTable.This article shows you how to do that in a clean, reusable way using reflection.
  • List All Power Automate Cloud Flows ProgrammaticallyApr 23, 2025. Power Automate allows developers to programmatically manage cloud flows stored in Microsoft Dataverse. Whether you’re automating DevOps, migrating solutions, or enforcing enterprise governance, managing flows through code is powerful and scalable.
  • Search and Removal of Item from Local List in MAUI [GamesCatalog] 16Apr 22, 2025. We aim to create a mobile app and its backend using C# and .NET. We will use the IGDB game review API: https://api-docs.igdb.com/#examples. With it, we can build a mobile game catalog app and store our reviews.
  • Listing Information from the Local DB in MAUI .NET 9 [GamesCatalog] - Part 15Apr 20, 2025. Learn how to list and display information from a local database in a .NET 9 MAUI application! In Part 15 of the GamesCatalog series, we’ll explore data binding, fetching records, and displaying game data seamlessly in your MAUI app. Perfect for beginners and intermediate developers!
  • Horizontal List of Overlapping Images in MAUI [GamesCatalog] - Part 14Apr 20, 2025. Learn how to create a horizontal list of overlapping images in .NET MAUI for your GamesCatalog app! In Part 14 of this series, we’ll explore step-by-step how to design a smooth, modern UI using CollectionView and custom layouts. Perfect for game apps and cross-platform projects!
  • .NET 9 Apps Are Faster Than EverApr 19, 2025. Explore .NET 9’s impressive performance improvements! From faster JSON serialization, optimized JIT compiler, reduced memory usage, to enhanced HTTP/3 handling
  • Overview of RadioButtonList ControlApr 15, 2025. Learn how to use RadioButtonList in ASP.NET WebForms, including its layout types (Horizontal, Vertical, Flow, Table), binding data from C# List, database tables, and manually added items. Also, discover JavaScript integration and best practices.
  • Asynchronously Grouping Totals in MAUI [GamesCatalog] - Part 13Apr 14, 2025. Learn how to implement dynamic game status cards in MAUI using MVVM, data binding, and async methods. This covers creating UI components, grouping data by game status, and displaying totals on the main screen.
  • Enhancing SharePoint: New Features in Microsoft Lists FormsMar 27, 2025. This article covers new features such as conditional branching, logo addition, support for additional field types, and more. Learn how these updates can streamline your workflow and improve the user experience.
  • Consuming HTTP Calls in .NET MAUI Using HttpClientMar 27, 2025. Learn how to use HttpClient in .NET MAUI to perform GET, POST, PUT, and DELETE operations on a REST API. Build a simple UI and display JSON responses using alerts.
  • How to Split a List into Batches Using the Chunk Method in C#Mar 24, 2025. Learn how to efficiently split a list into smaller batches using the Chunk method in C# This method, introduced in .NET 6, simplifies list processing by breaking large collections into manageable chunks.
  • How to Use the Sort Function in Power Apps with Dynamic Column Values from a SharePoint ListMar 22, 2025. This article covers features, advantages, disadvantages, and step-by-step instructions to enhance your data management and user experience.
  • Filter Auto Suggestion Option in Dropdown List View ASP .NETMar 18, 2025. Learn how to implement a filterable auto-suggestion dropdown list in ASP.NET. This guide covers creating a dynamic dropdown with search functionality, enabling users to quickly find options as they type.
  • Building a Stunning Dashboard with Angular Mar 15, 2025. In this article, we’ll create a dashboard with beautiful charts using Angular frontend and Node Js as the backend. The modular structure of Angular combined with the performance of Node.js provides a robust foundation for scalable applications.
  • How to Customize SharePoint Out-of-the-Box List FormsMar 14, 2025. Customizing SharePoint forms with Power Apps enhances user experience by adding headers, changing layouts, and applying branding. It improves functionality and flexibility but may require maintenance and a learning curve for users.
  • Working with Azure Blob Storage: Uploading Files and Listing Blobs in C#Mar 10, 2025. Learn how to work with Azure Blob Storage in C# by uploading files and listing blobs using the Azure Storage SDK.
  • Passing an Object from a List to Another Page in MAUI MVVM .NET 9 [GamesCatalog] - Part 6Mar 10, 2025. This article covers object passing techniques using navigation, data binding, and command binding in the GamesCatalog app. Enhance your cross-platform development skills with structured MVVM patterns for seamless data transfer.
  • Working with Dataset Data in ASP.NET GridViewMar 08, 2025. This article covers data binding, displaying records, sorting, paging, and editing in GridView. Understand how to fetch data from a database, manipulate it using DataTables, and present it efficiently using ASP.NET GridView for a seamless user experience.
  • Explaining System.Text.Json in .NETMar 06, 2025. The System.Text.Json library in .NET 9 has been significantly enhanced to provide developers with more robust and flexible JSON processing capabilities. These improvements focus on JSON schema support, intelligent application features, and increased customization options for serialization and deserialization processes.
  • Consuming an API and Populating a List with the Results in MAUI MVVM .NET 9 [GamesCatalog] - Part 4Mar 03, 2025. Learn how to consume an API and populate a list with the results in a .NET 9 MAUI MVVM app. In this part of the GamesCatalog series, you'll fetch data from an API, bind it to a list, and implement best practices for handling API responses efficiently.
  • Understanding IEnumerable, ICollection, IList, and ListMar 02, 2025. In .NET, collections like IEnumerable, ICollection, IList, and List help manage data efficiently. IEnumerable allows iteration, ICollection supports modifications, IList enables indexing, and List provides dynamic resizing and advanced methods.
  • Understanding Lists in PythonFeb 27, 2025. This article is around how python stores list and works with it. Python uses lists instead of built-in arrays. Lists are dynamic, memory-efficient, and support fast insertions. Unlike arrays, they grow automatically, while tuples remain immutable and are optimized for retrieval.
  • Automate SharePoint List Retrieval with AWS Lambda and PnP PowerShellFeb 26, 2025. This article walks you through setting up AWS Lambda, configuring PowerShell scripts, and securely accessing SharePoint data. Streamline your workflows with a serverless approach for seamless SharePoint integration.
  • Various Methods to Count Occurrences of Each Number in Array or ListFeb 17, 2025. In this article, I'll show you different ways to count how often a number appears in C#. We'll look at methods like LINQ, Dictionary, GroupBy, and Parallel.ForEach, and see which ones work best for small and large datasets.
  • Creating a ListView MAUI MVVM .NET 9 [GamesCatalog] - Part 2Feb 14, 2025. Create a MAUI .NET 9 project that displays game information using a ListView. Bind a ViewModel with an ObservableCollection of UIIGDBGame items, and design a clean UI using XAML, Grid, and custom styling for a game catalog.
  • Overview of HashSet in C#Feb 14, 2025. This article explains HashSet in C#, covering its functionality, differences from List, and usage in various operations like add, delete, search, and iteration.
  • Dynamic CORS Setup in .NET Core with JSON ConfigurationFeb 09, 2025. Learn how to configure CORS dynamically in .NET Core 9 using appsettings.json. Manage multiple allowed origins easily, enhance security, and improve flexibility for different environments like development, staging, and production.
  • List Azure Backup Jobs Using C# Async MethodFeb 08, 2025. Azure Backup is a secure, scalable service for protecting VMs, databases, and on-premises data. It automates backups, ensures compliance, supports Geo-Redundant Storage (GRS), and enables recovery via the Azure SDK for .NET or PowerShell.
  • System.Text.Json vs. Newtonsoft.Json: A Comprehensive ComparisonJan 31, 2025. System.Text.Json and Newtonsoft.Json are popular libraries for JSON serialization in .NET. System.Text.Json offers better performance and lower memory usage, while Newtonsoft.Json provides more advanced features like dynamic JSON handling and custom converters.
  • JSON Data with Python in SQLite DatabaseJan 29, 2025. This article explores handling JSON data in an SQLite database using Python. It covers reading, inserting, and creating tables while leveraging Python’s standard `json` and `sqlite3` libraries for seamless integration.
  • How to Convert a DataTable to a List of Objects in C#Jan 27, 2025. In many scenarios, you may need to convert this DataTable into a list of custom objects for easier manipulation and readability. In this article, we’ll go through a simple yet effective way to convert a DataTable to a list of any object type using C#.
  • Understanding the Override Function in C#Jan 23, 2025. The override keyword in C# allows a derived class to modify or extend a method defined in a base class. It supports polymorphism, inheritance, and encapsulation, enabling flexible and reusable code with dynamic method binding at runtime.
  • .NET8/9 – Testing different Build/Deployment modes – Part 5Jan 16, 2025. Explore various .NET8/9 build, publish, and deployment modes, including single-file apps, AOT precompilation, and framework-dependent/independent setups. Learn about tools like dotnet restore, global.json, and managing SDK versions.
  • How to use SharePoint List Input Tool in AlteryxJan 16, 2025. Use Alteryx Designer to connect to SharePoint lists across versions (2007 to SPO). Configure the SharePoint Site URL, and credentials, and select the desired list and view. Filter data, limit records, and export to Excel using the output tool.
  • Python Import Modules with ExampleJan 08, 2025. Learn Python's import module concepts, including importing entire modules, specific functions, and aliasing. This article demonstrates creating, reading, and writing employee data to a JSON file with practical examples.
  • Understanding the JSON Web Token (JWT)Jan 01, 2025. A small, URL-safe way to represent claims that need to be transferred between two parties is with JSON Web Tokens (JWT). The claims in a JWT can be digitally signed or integrity-protected with a Message Authentication Code (MAC) and/or encrypted.
  • Add Data Bars UI in SharePoint List Column Formatting in SharePoint ListJan 01, 2025. This article walks you through the process of customizing your SharePoint list columns for better data visualization and enhancing the current view with conditional formatting to display dynamic, visually appealing data bars.
  • New Modern Microsoft Lists Forms Experience in SharePointJan 01, 2025. Master the new modern Microsoft Lists forms experience in SharePoint with this comprehensive guide. Learn how to create, customize, and optimize forms for better data collection and user interaction.
  • Understanding the JavaScript Object Notation (JSON)Dec 31, 2024. JSON (JavaScript Object Notation) is a lightweight, human-readable data format used for data interchange between web applications and servers. It supports key-value pairs, arrays, and objects, making it easy to parse and widely supported across programming languages.
  • How to Format List Views in SharePointDec 31, 2024. SharePoint list formatting enhances data presentation by customizing appearance, adding alternating row styles, and applying conditional formatting. It improves readability, highlights key data, and boosts user experience for efficient collaboration.
  • How to Apply Conditional Formatting with JSON in SharePointDec 31, 2024. This article covers the basics of JSON formatting, step-by-step instructions to customize SharePoint lists, and tips for creating dynamic and visually appealing displays to improve user experience.
  • LookUp Function in Power Apps for Efficient Data RetrievalDec 31, 2024. The LookUp function in Power Apps allows efficient data retrieval by searching for a single record in a data source based on a condition. It's ideal for scenarios like pulling specific employee details from a SharePoint list.
  • Understanding HTTP Status Codes: List of Errors & Their MeaningsDec 17, 2024. Comprehensive guide to HTTP error codes, covering their meanings, uses, and practical examples. Learn to troubleshoot 4xx errors effectively.
  • Connecting Angular Frontend to MongoDB via Express BackendDec 08, 2024. Learn to connect MongoDB, Express, and Angular for full-stack development. Build a REST API backend with Express and Mongoose, and create a dynamic Angular frontend for CRUD operations. Simplify data flow with seamless integration.
  • Angular Features (1) --- Data Binding: Data Transfer inside ComponentDec 07, 2024. This article will discuss Data Binding in Angular
  • JSON Data Handling in SQL ServerNov 26, 2024. SQL Server supports JSON for managing semi-structured data. You can store JSON in NVARCHAR(MAX) columns, parse it with JSON_VALUE, JSON_QUERY, and OPENJSON, and modify it using JSON_MODIFY.
  • Azure Storage Account Vs Azure Data Lake Service Gen 2Nov 25, 2024. Azure Data Lake Storage Gen2 (ADLS Gen2) is a highly scalable and analytics-optimized storage solution in Azure, offering hierarchical namespace, big data processing capabilities, and Secure File Transfer Protocol (SFTP) support.
  • New Features in SQL Server 2025: A Guide for Data EngineersNov 24, 2024. SQL Server 2025 introduces advanced AI integration, vector support, and performance upgrades like optimized locking and enhanced columnstore indexing. New features include JSON data type, regular expressions in T-SQL, and change streaming.
  • Working with JSON in .NET Core: Newtonsoft.Json, NetJSON, and System.Text.JsonNov 24, 2024. In this article, we will learn three effective approaches to working with JSON in .NET Core using popular libraries: Newtonsoft.Json, NetJSON, and System.Text.Json.
  • Introduction To Minimal API using ASP.NET Core 8Nov 21, 2024. Minimal API in .NET Core 6.0 simplifies the process of creating HTTP APIs by reducing code verbosity and dependencies. It is ideal for microservices, offering advantages like lightweight routing, improved performance, and accelerated development.
  • Use of ItemsControl in WPF C# for Flexible UI DesignNov 19, 2024. This guide explores data binding, templates, and customization techniques for crafting sophisticated layouts. Enhance your WPF skills and unlock the full potential of ItemsControl for efficient UI development.
  • Save List Data to Another List as an Attachment Using Power AutomateNov 19, 2024. This step-by-step guide covers creating workflows to transfer and attach data from one SharePoint list to another, automating data management, and improving efficiency in your SharePoint environment.
  • Retrieve API Data and Store in SharePoint with Power AutomateNov 18, 2024. In this article, we will learn how to use Power Automate to retrieve data from an external API and automatically store it in a SharePoint list, streamlining your workflow and data management.
  • 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.
  • Loading Nested JSON File Data in Dropdown ASP.NETNov 14, 2024. Learn how to load and bind nested JSON data to a dropdown in ASP.NET, covering both client-side and server-side techniques for dynamic data binding and efficient JSON parsing in web applications.
  • Creating Views for Lists or Libraries in SharePoint OnlineNov 12, 2024. Creating custom views in SharePoint Online allows users to tailor how lists and libraries display data. With options for filtering, sorting, grouping, and different layouts like calendar and gallery views, users can set up views to meet specific needs.
  • How to Sort a List of Objects in TypeScript by PropertyNov 09, 2024. This guide covers sorting lists of objects in TypeScript, with examples for sorting by string, numeric, and date properties. It demonstrates using the sort() method, localeCompare for strings, custom sorting functions for dates and numbers, and multi-property sorting techniques.
  • 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.
  • Managing User Data in Azure AD with Microsoft Graph APINov 05, 2024. Microsoft Graph API is a RESTful web API that provides access to Microsoft 365 services, enabling developers to manage user data in Azure Active Directory. It allows operations such as retrieving, creating, updating, and deleting users.
  • Understanding TreeView in .NET CoreNov 04, 2024. The TreeView component in .NET Core is a powerful UI element that displays hierarchical data in a tree-like structure, allowing users to navigate through items easily.
  • JWT Token Based Implementation using ASP.NET Core Web APIOct 29, 2024. JWT (JSON Web Token) is a way to share information securely between two or more systems and JWT structure allows for secure information exchange and user authentication.
  • An Overview of the Implementation of ValidationRules in WPF C#Oct 27, 2024. In WPF, the ValidationRule class enables custom validation for user input in controls like TextBox. By extending the ValidationRule and overriding the Validate method, specific input criteria can be enforced.
  • Delete Comment from SharePoint List ItemOct 24, 2024. This article explains how to delete comments from a SharePoint list item using the SharePoint REST API and Power Automate. It covers creating a flow with a manual trigger, fetching comment details via HTTP requests, and deleting specific comments by ID, providing enhanced control over list items.
  • New Feature: Drag and Drop in Microsoft ListsOct 21, 2024. Microsoft Lists has introduced a new drag-and-drop feature, allowing users to seamlessly rearrange items in both new and existing lists. Custom ordering is saved across the list, and users can switch to custom order mode easily.
  • Introduction to SharePoint and Steps Creating Lists Oct 15, 2024. Learn how to create and manage lists effectively, enhancing your team's collaboration and productivity. With step-by-step instructions and best practices, this resource is perfect for beginners and those looking to optimize their SharePoint experience.
  • 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.
  • Validation of Complex Objects in Multi-Lingual Environment Using DynamicVNET With ASP.NET CoreOct 14, 2024. DynamicVNET is a lightweight, rule-based validation library for .NET applications, designed to validate POCOs while adhering to the Single Responsibility Principle (SRP). It integrates seamlessly with ASP.NET Core, enabling flexible and dynamic validation for API requests with minimal configuration.
  • What is JSON and Why Is It So Important?Oct 10, 2024. JSON (JavaScript Object Notation) is a lightweight, language-independent data format that represents key-value pairs, supporting strings, numbers, arrays, objects, and complex structures widely used for web applications and data interchange.
  • Hidden Gems - Adding the Custom Data to Generative AnswersOct 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.
  • 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.
  • The implementation of Double Linked List with C ProgrammingSep 26, 2024. A doubly linked list is a dynamic data structure in C that allows bidirectional traversal of elements using pointers. This implementation covers node creation, insertion, deletion, and traversal operations.
  • Access SharePoint List Using Custom Copilot – Copilot StudioSep 25, 2024. Learn how AI-driven tools streamline workflows, enhance productivity, and automate SharePoint operations, offering tailored solutions for efficient data management and collaboration.
  • Creating Visually Engaging Dashboards: Ultimate Power BI ThemeSep 22, 2024. The Hussain PBI Theme enhances data presentation in Power BI with a harmonious color palette and modern typography. It features customizable visual styles for clarity and engagement, including vibrant data colors, clear tooltips, and distinct performance indicators.
  • Understanding Model Binding in ASP.NET Core with .NET 8Sep 17, 2024. Model binding in .NET Core simplifies the process of mapping HTTP request data to action method parameters. It automatically extracts data from various sources like query strings, form submissions, route parameters, HTTP headers, and request bodies, making it easier to handle client-server interactions efficiently.
  • POCO to Dictionary Conversion Techniques in C#Sep 16, 2024. This article explores five methods for converting a C# POCO to a dictionary using reflection, LINQ, JSON libraries, and ExpandoObject, comparing their performance through Benchmark.NET to find the best approach.
  • How to Create an NPM Package?Sep 09, 2024. Creating and publishing an NPM package involves initializing a project, writing code (e.g., an OTP generator), testing locally, and preparing for publication. Steps include configuring package.json, adding a README file, and using npm login and npm publish to make your package available on the NPM registry.
  • Site Column & List Column and Site Content TypeSep 03, 2024. This article covers SharePoint's Site Columns, List Columns, and Site Content Types. It explains the differences between Site and List Columns, including their scope, reusability, and management.
  • Integrating AngularJS with jQuery Select2 for Dropdown ChangesSep 02, 2024. Integrating AngularJS with jQuery Select2 enhances dropdown menus by combining AngularJS’s data binding with Select2’s advanced features. This setup involves initializing Select2 with AngularJS, handling dropdown changes, and synchronizing Angular models.