Resources  
  • Parquet vs Delta Format: Choosing the Right Data Storage SolutionJun 25, 2025. Compare Parquet and Delta formats to choose the best data storage solution. Learn about performance, ACID transactions, schema evolution, and use cases for modern data engineering needs.
  • 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.
  • 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.
  • 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.
  • Convert .media to MP4 with FFmpeg: Reliable Webcam Recording SolutionApr 21, 2025. Learn how to easily convert .media files from webcam recordings to the widely supported MP4 format using FFmpeg.
  • .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
  • 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.
  • 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.
  • The Start and End Date Time should be set based on the UTC, ISO, and Central Time zonesMar 10, 2025. This JavaScript code is tailored for Dynamics 365 CRM, focusing on Date Time fields for Start and End Date Time. It triggers when the Scheduled Start (scheduled start) field changes and ensures that both the start and end Date Time values span the entire day in UTC, ISO, and Central Time.
  • 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.
  • What is Code Refactoring?Mar 03, 2025. Code refactoring is the process of restructuring existing code without changing its behavior to help code readability and maintainability.
  • 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.
  • 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.
  • .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.
  • 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.
  • 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.
  • 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.
  • 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.
  • 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.
  • Format Literal Strings in C#Nov 26, 2024. Different techniques to display special characters and add different types of formatting to the output. This article explores C# string literals, including regular, verbatim, and interpolated strings, escape sequences, and formatting techniques like composite formatting.
  • How to Use Markdown to Format Power Automate Approval RequestsNov 25, 2024. This guide explains how to create visually appealing and well-structured emails, improving clarity and user experience in approval workflows. Customize your emails with ease using HTML.
  • Data Cleansing in SQL ServerNov 24, 2024. Learn the essentials of Data Cleansing in SQL Server to enhance data quality and reliability. This guide covers techniques like removing duplicates, handling null values, standardizing formats, and transforming data using SQL queries.
  • 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.
  • 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.
  • 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.
  • 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.
  • How to Store Temporary Information in Table Like Format in C#?Oct 28, 2024. In this article, we will learn how to manipulate and manage in-memory data effectively, allowing for quick access and modifications while maintaining a structured format for your applications.
  • 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.
  • 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.
  • 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.
  • Trigger Approval flow with SharePoint Column FormattingSep 21, 2024. To trigger a workflow with a button using column formatting in SharePoint, you can create a column that uses JSON formatting to display a button that, when clicked, initiates a workflow.
  • 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.
  • AI-Powered Virtual Assistants: How to Build One in C#Aug 28, 2024. Build an AI-powered virtual assistant in C# using Microsoft Bot Framework, ML.NET, and Azure Cognitive Services. This assistant can perform tasks like setting reminders, answering queries, and recognizing speech. Integrate advanced AI features like NLP and task automation for a powerful, interactive experience.
  • Auto-Format Code in VS Code on Save to Streamline Your WorkflowAug 20, 2024. Effortlessly maintain clean and consistent code in VS Code by enabling auto-format on save. Streamline your workflow and let VS Code handle the formatting for you.
  • Investigating and Fixing Swagger Error- Failed to Load API DefinitionJul 29, 2024. Swagger is a widely used and powerful API development toolset that offers a framework for designing, building, documenting, and consuming RESTful web services. This article explains what Swagger is and how to fix the "Failed to load API definition" error in Swagger.
  • Elevate Your Code with Vertical Coding StyleJul 26, 2024. In the world of software development, code readability and maintainability are paramount. One effective way to achieve these goals is by adopting the Vertical Coding Style. The result is code that is easier to understand and navigate. Let's explore how Vertical Coding Style can elevate your coding practices.
  • Understanding JSON Web Tokens (JWT)Jul 17, 2024. JSON Web Tokens (JWT) are a popular method for securely transmitting information between parties as a JSON object. This article explores the fundamentals of JWT, including its structure, encoding, and common use cases in authentication and authorization.
  • 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.
  • C# Method Designed to Make a POST Request to a Web API EndpointJul 04, 2024. This guide covers API integration in C#, detailing serialization, encryption, HTTP requests, and error handling. Learn how to set up an API integration method, handle responses, and follow best practices for security, error handling, and asynchronous operations to build robust and secure applications.
  • Understanding ParseJSON in PowerAppsJun 27, 2024. Understanding ParseJSON in PowerApps" is a comprehensive guide to using the ParseJSON function within Microsoft PowerApps. Learn how to effectively handle and manipulate JSON data in your custom applications.
  • 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.
  • Editing JSON of Fabric Data Pipelines - Part 1Jun 21, 2024. Enable JSON editing in Fabric data pipelines by appending the 'feature.enableJsonEdit=1' to the pipeline URL. Switch from view-only to edit mode, make necessary JSON changes, then perform a minor UI adjustment to activate the Save option. Similar flexibility as Azure Data Factory's PaaS environment.
  • A Simple FTP Client Using FluentFTP with Json Configuration in C#Jun 20, 2024. With the help of C# and FluentFTP, we can build a simple yet robust FTP client using this comprehensive guide by Ziggy Rafiq. This article describes how to set up a console application, integrate FluentFTP to transfer files seamlessly, and manage configuration securely using a JSON file.
  • 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.
  • Implementing Model Binding in ASP.NET Core Web APIJun 10, 2024. Model binding in ASP.NET Core automates the conversion of HTTP request data into .NET objects, simplifying data transfer between client-side requests and server-side code. It supports various data sources such as query strings, form data, route parameters, JSON payloads, and custom binders, enhancing API development efficiency.
  • Exploring PostgreSQL: The Powerhouse of Open-Source DatabasesJun 07, 2024. PostgreSQL, often hailed as the powerhouse of open-source databases, is a robust and versatile relational database management system. Known for its advanced features, such as ACID compliance, extensibility, and support for JSON and geospatial data, PostgreSQL ensures high performance, scalability, and data integrity.
  • Working with Dates and Times in Python Using PendulumMay 30, 2024. Pendulum is a powerful Python library for handling dates and times. It simplifies working with timezones, supports date manipulation, formatting, parsing, and provides convenient methods for datetime arithmetic.
  • JWT (JSON Web Token): The Future Of Secure Data TransferMay 24, 2024. JSON Web Tokens (JWTs) are a compact, secure method for representing claims between parties, widely used for session management and data transfer since their introduction.
  • How to Pretty Print JSON with ReactJSMay 24, 2024. Pretty printing JSON in ReactJS enhances readability by formatting data with proper indentation. Utilizing JSON.stringify and React components, here's a comprehensive guide for implementation and styling.
  • Understanding ToString() vs Convert.ToString() in C#May 23, 2024. In C#, both ToString() and Convert.ToString() are used to convert objects to their string representation. However, they have different usages and behavior. Understanding the differences between these two methods can help you choose the right one for your needs.
  • String in .NET C#: Usage, and ExampleMay 16, 2024. A string in C# is an object belonging to the String class that symbolizes a string of characters. Numerous operations, including length, concatenation, comparison, obtaining substring, search, trim, replacement, and more, can be carried out on strings.
  • Demystifying customStringify: Filtering Functions in JSONMay 13, 2024. In the vast world of data, JSON (JavaScript Object Notation) reigns supreme for its lightweight and human-readable format. But what if you want to control how specific data gets represented in your JSON string? That's where the customStringify function comes in.
  • How to Create Custom HTML / CSS Elements in Power AppsApr 29, 2024. Explore the powerful HTML text control in Power Apps, enabling rich text formatting, customization, and cross-platform compatibility. Learn its features, benefits, and limitations, alongside a step-by-step guide for integration. Elevate your app development with visually stunning .
  • Newtonsoft.Json vs. System.Text.Json: Comparative AnalysisApr 17, 2024. In the world of .NET development, handling JSON serialization and deserialization is a common task, especially when dealing with web APIs. In this article, we'll compare and contrast these two libraries, exploring their features, examples, advantages, and disadvantages.
  • Polymorphic serialization using System.Text.JsonApr 12, 2024. Polymorphic serialization is the process of serializing and deserializing objects of different types that share a common base type. This allows us to preserve the specific type information of each object, which is crucial when we want to deserialize the objects back into their original types.
  • Built In Rest Client in .NET CoreApr 01, 2024. .NET Core provides a built-in REST client through HttpClient in the System.Net.Http namespace. It offers lightweight, cross-platform capabilities for seamless integration with web services, enabling efficient HTTP requests and response handling in API communication within .NET Core applications.
  • Transfer Multiple File Formats Between Blob Containers with Logic AppMar 30, 2024. Moving multiple file format files between Blob storage containers using the logic app. This article demonstrates how to utilize Azure Logic Apps to automate workflows between Blob storage and OneDrive, creating approval-based processes. No code is required.
  • Gemini Pro Text: Flawless Formatting with markdown2Mar 29, 2024. This guide explores the integration of Gemini Pro AI output with markdown2 for HTML rendering in Django web apps. It details the challenges of formatting symbols, offers practical solutions, and empowers developers to optimize the display of AI-generated content, enhancing user experiences on web platforms effectively.
  • Configuration Settings in .NET CoreMar 29, 2024. Configuration settings are vital for .NET Core apps, enabling flexibility without code changes. Learn their anatomy, setup with JSON files, environment variables, and access methods for robust applications.
  • How Do You Work with JSON Data in JavaScript?Mar 28, 2024. In this article, we will explain you how to work with JSON data in JavaScript with example. Working with JSON data in JavaScript involves parsing JSON strings into objects and stringifying objects into JSON strings. JSON.parse() and JSON.stringify() methods facilitate this process efficiently.
  • What is JSON Serialization and Deserialization in C# Mar 27, 2024. JSON (JavaScript Object Notation) has become a ubiquitous data interchange format, especially in web development. In C#, developers have multiple options for serializing C# objects to JSON and deserializing JSON strings back to C# objects
  • Handling JSON in C#Mar 16, 2024. C# provides seamless JSON handling with System.Text.Json. Easily parse JSON strings into C# objects and vice versa for efficient data manipulation.
  • Display API Data on List Using SwiftUIMar 15, 2024. In this article, we will fetch and display data on a list using SwiftUI. Learn to fetch and display data in a list using SwiftUI. Set up a SwiftUI project in Xcode, create a struct conforming to Codable and Identifiable protocols, fetch data using URLSession, and design the UI.
  • Exploring the Power of Rich Text Editor in Power AppsMar 12, 2024. Unlock the potential of Power Apps with this in-depth exploration of the Rich Text Editor feature. Our comprehensive guide provides step-by-step tutorials, tips, and insights into leveraging this powerful tool for text formatting and customization.
  • Exploring the Data Table Control in Power AppsMar 12, 2024. Discover the intricacies of the Data Table Control in Power Apps with our comprehensive guide. Learn to harness its power for seamless data manipulation, visualization, and user interaction.
  • Fetch Data From Nested JSON In APIMar 09, 2024. In this article, we will learn to fetch data from nested JSON in API using URLSession in Swift programming language.
  • JavaScript Date Formats in TypeScriptMar 07, 2024. When it comes to handling dates in JavaScript, understanding various date formats is essential for creating dynamic and user-friendly applications. The JavaScript Date object empowers developers to work with dates, and this guide explores three common date formats: ISO Date, Short Date, and Long Date.
  • What is Difference Between Rest API and Graph APIMar 07, 2024. Know the difference between "Rest" API and "Graph" API with an example.
  • A simplified approach to serializing and deserializing objects in C# 10Mar 04, 2024. This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
  • Understanding Regional Settings in SharePointMar 01, 2024. This guide offers a comprehensive overview of Regional Settings in SharePoint, emphasizing their significance in enhancing user experience and fostering global collaboration. It covers the functionality, customization options, and benefits of Regional Settings, and instructions for accessing and configuring them.
  • Including Web.config While Taking Build in Angular 15 or LessFeb 27, 2024. To include the Web.config file in the destination folder during the Angular build, modify the angular.json file. Add the Web.config file to the assets block in the build declaration.
  • How to Set Long Expiry to JWT Token?Feb 26, 2024. To set a long expiry time for a JSON Web Token (JWT) in C#, you need to configure the token's expiration claim accordingly.
  • Camelcase Serialization in .Net 9Feb 19, 2024. In .NET 9, developers have been granted a powerful tool to enhance data serialization: CamelCase Serialization. This feature facilitates smoother interoperability with systems and frameworks that expect camelCase formatted data
  • How to Shorten URL using Custom Pipe in AngularFeb 17, 2024. In this article, We will learn steps to create a pipe that shortens a long URL and Link.
  • External Streaming Data - Bitstream FormatFeb 14, 2024. The main aim of this article is to extend knowledge related to object-oriented programming focusing on interoperability between the computing process and data visualization, archiving, and networking resources.
  • SharePoint Online List JSON View Formatting - Video ThumbnailFeb 13, 2024. Customizing YouTube video thumbnails in SharePoint lists enhances visual appeal and user experience. By creating a list with specific columns and using JSON formatting, you can display thumbnails along with details like titles and descriptions.
  • How to Implement Approval in Teams Using Adaptive CardsFeb 13, 2024. This article introduces Adaptive Cards, versatile user interface components formatted in JSON, capable of seamless integration across various platforms. It delves into their significance in enabling lightweight UI exchange between applications and outlines.
  • How to Import Azure Wiki Contents into a JSON FileFeb 13, 2024. In today’s digital age, organizations often depend on collaborative tools like Azure Wiki to streamline knowledge sharing among team members. In this article, we’ll see how to import Azure Wiki content into a JSON file using Azure DevOps Services REST API with Python.
  • Parameter Binding in Minimal API in ASP.NET CoreFeb 06, 2024. When building web applications using ASP.NET Core, developers often need to handle incoming data from HTTP requests. One crucial concept that helps achieve this is called parameter binding. Let's break down this fundamental idea in the context of Minimal API in ASP.NET Core.
  • 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.
  • Getting Started with APIs and Handling JSON DataJan 29, 2024. Learn the essentials of Python API interactions with a focus on Open Notify API. Explore JSON handling, API status codes, and practical examples.
  • How To Generate Curl Script of the HttpClient in .NETJan 29, 2024. The HttpClientToCurl is a NuGet package for generating the curl script of HttpClient in C# (.Net) supported features: Post, Get, Put and Delete. content types: application/json, text/xml, application/x-www-form-urlencoded
  • Eager Loading In ASP.NET Core Web API Complete Example Jan 22, 2024. In ASP.NET Core, eager loading is a technique used to load related data along with the main entity in a single database query. This helps to optimize performance by reducing the number of database calls. Let's implement an example of eager loading in an ASP.NET Core Web API using Entity Framework Core.
  • Data Conversions in C# with SuperConvertJan 03, 2024. In this article, I will explain the Nuget library "SuperConvert" that provides seamless data conversion for.net, like Convert  datatable to JSON. Convert JSON to Datatable, Convert CSV to DataTable, Convert CSV to JSON, Convert DataTable to CSV, Convert DataTable to XLS, Convert JSON to CSV, Convert JSON to XLS.
  • ASP.Net Core - How to Read values from Appsettings.jsonDec 31, 2023. Asp.Net Core – How to Read values from Appsettings.json
  • JSON Serialization and Deserialization in C#Dec 29, 2023. JSON serialization and deserialization in C#! Learn the ropes with Newtonsoft.Json (Json.NET) or the built-in System.Text.Json. Level up your data interchange skills for seamless system communication.
  • Working With Numeric Format Specifiers in C# 10Dec 17, 2023. In this article, we will see how to use numeric format specifiers with Console.WriteLine in C# 10.
  • Advanced Conditional Formatting: Turn On & Off Cell Color with CHECKBOXES in ExcelDec 12, 2023. This article shows how to create advanced conditional formatting in Excel and using the new checkboxes to turn on and off the applied cell colors.
  • Dealing with Date and Time in Humanizer in C#Dec 01, 2023. Learn how to handle date and time in a user-friendly way in C# projects using Humanizer. Covering DateTime and TimeSpan humanization with customization options and real-world use cases for improved user experience.
  • String Constants in PostgreSQLDec 01, 2023. Delve into PostgreSQL's handling of string constants, which is essential for managing text data. Explore their syntax, handling of special characters, and their versatile use in variable assignment, function arguments, comparisons, and more. Examples demonstrate their significance in tasks like substring replacement, regular expression matching, and date conversion. Elevate your PostgreSQL proficiency in manipulating and storing text data with these insights.
  • .NET 8: The Power of Performance, JSON, and InnovationNov 30, 2023. The release of .NET 8, the latest major version of the .NET platform, has created a lot of excitement and anticipation among developers. This update includes numerous new features and enhancements, boosting. NET's reputation as a versatile and powerful development platform. In this article, we will explore some of the key highlights.
  • Understanding Window Functions in PostgreSQLNov 30, 2023. In this article, we will learn how to use window functions in PostgreSQL, what are the different types of window functions, and how to write window function queries with examples.