Resources  
  • Part 2: Knowledge Representation and Reasoning in AIJul 15, 2026. A practical explanation of classical AI foundations, including search algorithms, knowledge graphs, ontologies, rule-based systems, and why explicit programming falls short.
  • Role of Hilbert Curve in LLMs: What It Is and How It Improves Data Organization and RetrievalJun 24, 2026. Learn what the Hilbert Curve is and how it helps Large Language Models (LLMs) organize, store, retrieve, and process high-dimensional data more efficiently. Explore its role in vector databases, embeddings, retrieval systems, and AI infrastructure.
  • Position of the Set BitMay 19, 2026. Find the position of the single set bit in an integer's binary representation. Learn the bit manipulation trick using n & (n-1) for efficient problem-solving.
  • Understanding How to Check if an Array Represents a Max HeapApr 30, 2026. Learn how to check if a given array represents a valid Max Heap. This guide explains the heap property, array representation, and provides an efficient O(n) Java solution with examples. Perfect for beginners and coding interview preparation.
  • How do AI models generate videos using implicit 3D representations?Mar 10, 2026. Discover how AI models use implicit 3D representations to generate realistic videos. Learn about neural rendering, spatial understanding, and more!
  • Sentence Transformers: Architecture, Working Principles, and Practical ExamplesJan 05, 2026. Explore Sentence Transformers: architecture, working, and practical examples. Learn how to convert text into meaningful embeddings for semantic search and more!
  • A C# approach to optimizing color contrastNov 17, 2025. Optimize text readability in C# with intelligent color contrast! This article details a grid-based approach to dynamically adjust text color for accessibility.
  • Spatial Computing: The Next Interface RevolutionJul 07, 2025. Spatial computing merges physical and digital worlds through AR, VR, AI, and IoT, enabling immersive, real-time interactions that transform industries like healthcare, retail, education, and urban planning with intelligent, spatially-aware systems.
  • How to Create Field Customizer ExtensionNov 11, 2024. Extensions are client-side components that run inside the context of a SharePoint page. Extensions can be deployed to SharePoint Online, and you can use modern JavaScript tools and libraries to build them.
  • Graphical Matrix RepresentationSep 17, 2024. Graphical Matrix Representation" refers to visualizing matrices in a graphical format, aiding in the understanding of complex data structures. This approach is widely used in fields like graph theory, linear algebra, and data visualization to represent relationships, networks, and adjacency matrices.
  • How To Use Chart.js in AngularJS?Jul 23, 2024. Integrate Chart.js with AngularJS to create dynamic data visualizations. Set up your AngularJS project, including Chart.js, and build various charts like bar, pie, line, stacked bar, and heat map using sample financial data. Customize the appearance and enhance your web app with interactive charts.
  • Understanding GeoSpatial Indexing in MongoDB 🌍🔍May 29, 2024. This article explores the concept of GeoSpatial indexing in MongoDB, covering its creation process, significance, and real-time examples, all explained in simple language.
  • Checksum Using the Damm AlgorithmApr 30, 2024. Implementation of the Damm algorithm for calculating checksums in C#. Checksum algorithms are vital for data validation and error detection. This article explores its implementation and its significance in ensuring data integrity.
  • Power BI Data Visualization Best PracticesJul 31, 2023. Explore Power BI data visualization best practices to create compelling and informative visualizations that facilitate data-driven decision-making and drive business success.
  • Calculate the Number of 1's in Binary RepresentationJul 13, 2023. Given an integer n, return an array ans of length n + 1 such that for each i (0 <= i <= n), ans[i] is the number of 1's in the binary representation of i. Example 1:Input: n = 2 Output: [0,1,1] Explanation: 0 --> 0 1 --> 1 2 --> 10 Example 2:Input: n = 5 Output: [0,1,1,2,1,2] Explanation: 0 --> 0 1 --> 1 2 --> 10 3 --> 11 4 --> 100 5 --> 101Constraints: 0 <= n <= 105
  • Handling Data with Composite Models in C# and .NETJul 12, 2023. In this article, we will learn how to efficiently represent data in C# by leveraging composite models.
  • How to Convert String Representation Number To Integer In C#Dec 30, 2021. C# per-define functions using string representation number to integer conversion.
  • Working With Spatial Data In Oracle And ASP.NET 5Sep 16, 2021. Spatial data, often known as geospatial data, is information about a physical item represented numerically in a geographic coordinate system. The article talks briefly explains how to deal with geographical data in Oracle and ASP.NET 5 using dotConnect for Oracle as the ORM.
  • Graphs In ASP.NET MVC Using HighChartsMay 27, 2020. In this article, you will learn how you can graphically represent large data, so that it can be clearly understood and analyzed by user.
  • Spatial Queries In Entity Framework CoreJun 03, 2019. In this article, you will learn about spatial queries in Entity Framework Core.
  • Datatable To PDF In C#Jan 22, 2019. In this article, I have explained how to convert a DataTable into PDF using C# and iTextSharp.Converting a DataTable to a PDF in C# involves generating a PDF document that represents the data stored in the DataTable. This process is commonly used when you need to present tabular data in a visually appealing and printable format. PDFs are versatile and widely supported document formats, making them suitable for sharing and distributing data.
  • AJAX Control Toolkit Tutorial: Bubble Chart - Part 11Jun 26, 2016. In this article, we will discover how to leverage the power of the AJAX Control Toolkit with our comprehensive tutorial series. In this eleventh installment, delve into the intricacies of creating Bubble Charts, a dynamic data visualization tool.
  • Getting Started With OpenLayers 3 And Spatial DataMar 21, 2016. Explore visualizing spatial data using OpenLayers with SQL Server 2008. Learn about the capabilities of OpenLayers for mapping, including its support for tiles and vector layers. Understand the two types of spatial data: geometry and geography, and their representation in SQL Server.
  • Getting Started With Microsoft Power Map For ExcelApr 25, 2015. This article describes Microsoft Power Map in detail.
  • Crystal Reports Showing Graphical Representation of DataDec 16, 2014. In this article I am showing how to show our data in a chart form in a Crystal Reports report..
  • Designing Responsive Charts Using D3JSSep 29, 2014. This article demonstrates how to make your charts more user-friendly and interactive using D3.JS. Learn to enhance your charts with responsiveness, zoom, and scroll effects. The guide includes code snippets for HTML, JavaScript, and CSS, along with a demo to showcase these features in action.
  • Chart Representation of Data in ASP.Net Web Pages 2Jan 21, 2014. This article will explain how to show data in a graphical format using the Chart Helper in Microsoft WebMatrix in ASP.NET Web Pages 2.
  • Select Data Using Spatial Types Via EDF Framework 5.0Dec 16, 2012. Explore the utilization of spatial types for data retrieval in Entity Data Model Framework 5.0. Learn how to design entities, create a web application, and implement data retrieval using Entity Framework 5.0. Experience the flexibility of pulling data via spatial types and witness successful data retrieval in the application output.
  • Spatial Data Type Support in Entity Framework 5Oct 05, 2012. Entity Framework 5 brings many improvements and Spatial Data Type Support in Code First and Model Designer is one of them.
  • Canvas Graphical Equation Representation Using HTML 5Apr 04, 2012. This article is very useful for understanding how to create graphical equations in the HTML 5 canvas.
  • TreeView Control in ASP.NETMar 12, 2012. ASP.NET's TreeView control offers hierarchical data representation for intuitive navigation. Customize nodes, handle events, and bind data seamlessly, enhancing user experience and simplifying complex data structures in web applications.
  • DateTime In C# Jun 21, 2011. In C#, DateTime is a fundamental data type that represents dates and times. It is part of the System namespace and provides a rich set of methods and properties for working with dates and times. Here are some key points and features of DateTime in C#.
  • How to use SQL to LINQ ( Visual Representation ) Feb 20, 2011. A lot of developers moving towards the new LINQ to SQL find it difficult to write SQL queries in C# to query data using LINQ. LINQ is a query language which is integrated in C# to query data from ObjectCollects, SQL, XML etc.
  • How to Store Spatial Data or Shape Files into RDBMS(PostgreSQL/POSTGIS)Feb 12, 2010. I this article we will see how to store spatial data or shape files into RDBMS.
  • Create a Data Adapter in ADO.NET Jan 28, 2010. In this article I will explain how to Create a Data Adapter in ADO.NET.
  • Floating-Point in .NET Part I: Concepts and FormatsApr 18, 2005. The first in a three part series, this article introduces the basic concepts of floating-point arithmetic: number formats, accuracy and precision, and round-off error.
  • How to Write and Read a Color in C#Dec 09, 2004. This article shows how to transform a color in hexadecimal representation.
  • Exocortex.DSP - A C# Complex Number and FFT LibraryApr 08, 2002. Shows how to convert an image from a spatial representation (i.e. picture on the left) to a frequency representation (picture on the right) using a 2D fast Fourier transform.
  • Composite Patterns in C#Jan 23, 2002. A Composite is a tree structure consisting of individual objects mixed with compositions of objects, that is, objects that have other objects as their children.