Related resources for MB
  • Implement a RAG Solution Using Azure SQL Database11/1/2024 11:03:43 PM. In this brief video I walk you through the components of retrieval augmented generation (RAG). I talk about embeddings and vectors and even show you how they are created. Finally, I'll show you
  • Implicit vs Explicit Interface Implementations10/16/2024 10:06:32 AM. This article explores the differences between implicit and explicit interface implementation in C#. It explains how to implement an interface in two ways using classes, highlighting the accessibility
  • Creating And Embedding A Bot Application In Your Blogger10/16/2024 9:58:32 AM. This step-by-step guide covers bot development, API integration, and embedding the chatbot directly into your blog, offering an interactive experience for your readers.
  • Can a Private Member be Inherited by Derived Class?10/10/2024 10:24:00 PM. This article is discussing if a private member can be inherited by derived class.
  • Can a Static Member be Inherited by Derived Class?10/10/2024 10:23:29 PM. This article discusses if a static Member be Inherited by Derived Class?
  • iPhone Memory Leaks Tracking and Use of Instruments10/3/2024 11:41:57 AM. This article explores iPhone memory leaks, detailing how to track them using Instruments and NSZombie. It explains what memory leaks are, their causes, and the consequences of losing track of allocate
  • Create a Combo Chart and Make Your Chart Draggable10/1/2024 4:52:34 AM. This article explains how to create a Combo chart by combining different chart types, like a column and a pie chart, using Highcharts.
  • Rank and Dense_Rank Function in SQL Server9/30/2024 4:48:24 AM. RANK and DENSE_RANK functions in SQL Server assign sequential numbers to rows based on ordering. RANK skips numbers for ties, while DENSE_RANK does not. Both can partition results using the PARTITION
  • Nested Collection Models in MVC to Add Multiple Phone Numbers - Part 19/27/2024 10:08:34 AM. This article explains how to create an MVC application using the Nested Model concept, allowing users to add or remove multiple phone numbers for an employee. It covers database setup, model creation,
  • How Func Delegates Work in LINQ9/27/2024 4:31:27 AM. In this article, we explore how Func delegates operate within LINQ (Language Integrated Query) in C#. Func delegates enable concise and powerful data manipulation by allowing developers to pass method
  • Solid Introduction to Expression Trees in C#9/26/2024 4:50:55 AM. This article provides a comprehensive introduction to Expression Trees in C#. You'll learn about their structure, how they represent code as data, and their applications in LINQ queries.
  • Using C# 12 with Clean Code Practices9/21/2024 3:37:12 PM. Learn how to write cleaner, more maintainable code with C# 12 features such as primary constructors and improved pattern matching. This article explores practical examples and tips for applying clean
  • How To Know The Version Of SharePoint9/19/2024 10:05:40 AM. This article explains how to determine the version of your SharePoint site using two methods. The first method involves accessing the host header URL and appending ‘/_vti_pvt/service.cnf’. The second
  • working with map and flatMap Transformations in PySpark9/19/2024 4:45:13 AM. This article explores the differences between the map and flatMap transformations in PySpark. The map function applies a one-to-one transformation to each element, while flatMap allows for multiple ou
  • Resolve "Member Name Cannot Be the Same as Enclosing Type" Error9/18/2024 12:23:37 PM. A colleague faced a build error in Visual Studio when naming a file Profile.aspx, which conflicted with the System.Web.Profile type. The error "member name cannot be the same as enclosing type&qu
  • 🖥️ How to Create an Azure Storage Account9/11/2024 9:34:52 AM. Azure Storage provides cloud storage with features like high availability, security, and scalability. It includes Blob storage for unstructured data (images, videos), and Azure Files for managed file
  • CSS Automatic Numbering Counter9/10/2024 8:23:02 AM. This article explains how to implement a CSS Automatic Numbering Counter using the counter-reset and counter-increment properties. It covers creating numbered sections, subsections, and nested lists w
  • Increment and Decrement of Numbers Using Event in Backbone.js9/9/2024 11:53:16 AM. In this article, we create a simple application using Backbone.js to increment and decrement numbers with event handling. By adding two buttons, users can click to increase or decrease a number.
  • Create Visual Reports in Power BI with Microsoft Cost Management Connector9/2/2024 6:39:11 AM. The Microsoft Cost Management connector for Power BI Desktop enables customized visualizations of Azure spending. It supports customers with Direct Microsoft Customer Agreements, Enterprise Agreements
  • Create Azure File Share Using Azure Portal8/22/2024 4:09:49 AM. Azure File Share is a cloud-based storage service by Microsoft Azure that enables you to store, access, and share files securely over the internet. It supports both Windows and Linux systems, offers e
  • CSS Combinator Selectors8/12/2024 11:47:35 AM. Helps you to get started learning the advanced concept of CSS combinator selectors such as child, adjacent sibling, and general sibling.
  • Func, Action And Local Function In C# 78/9/2024 12:03:08 PM. This article covers using Func, Action, and local functions in C# 7. It explains how Func returns a value, Action does not, and how local functions can be defined within other methods. Examples includ
  • Add In Built Web Parts In SharePoint Modern Site Page8/9/2024 9:47:22 AM. Learn how to enhance your SharePoint modern site pages by adding Yammer and Site Activity web parts. These modern pages support rich multimedia and are responsive across devices. Follow steps to open
  • Learn about HTML5 Input Types8/7/2024 5:22:37 AM. In this article we learn about HTML5 Input Types, Form Elements and Form Attributes. First we learn each of them then with the help of an example we use all of them together.
  • Understanding ROW_NUMBER() in SQL Window Functions8/2/2024 4:46:39 AM. ROW_NUMBER() is a window function in SQL that assigns a unique number to each row within a partition of a result set. It’s useful for ranking, removing duplicates, pagination, and selecting the top N
  • Explaning Encoder-Decoder Models8/1/2024 6:07:51 AM. Encoder-decoder models, integral to NLP, include an encoder that processes input sequences into a fixed-length representation and a decoder that generates output sequences. Key components are RNNs, at
  • Mask an Aadhar Number into Blocks of 4 Digits Each7/30/2024 5:51:41 AM. This C# code demonstrates how to mask sensitive numbers, like Aadhar or account numbers. It validates input length, uses StringBuilder to format Aadhar numbers with spaces, and shows account number ma
  • Blazor Web Assembly 3.2 Add/Edit/Delete Fully Functional Application - Part One7/29/2024 8:37:43 AM. This article guides you through creating a Blazor web assembly app with .NET Core hosting. It covers setting up .NET Core APIs, Entity Framework Core for SQL Server data access, and implementing CRUD
  • Functionality of DMA in C Programming7/28/2024 1:08:57 PM. Direct Memory Access (DMA) in C programming is a powerful technique for efficient memory management and data transfer. It allows peripherals to directly access memory without CPU intervention, enhanci
  • UNION vs UNION ALL in SQL Server7/24/2024 9:28:49 AM. The SQL UNION operator combines the results of two or more SELECT statements, removing duplicate rows. In contrast, UNION ALL combines results while retaining all duplicates. UNION may impact performa
  • Porting Libraries to .NET Standard7/17/2024 12:30:37 AM. Porting libraries to .NET Standard can be a highly beneficial task, ensuring your code is compatible with multiple .NET implementations such as .NET Framework, .NET Core, and Xamarin.
  • Lambda Functions and High Order Functions in Android kotlin7/11/2024 4:59:01 PM. The provided Kotlin examples demonstrate basic and high-order functions. In lambda. kt, a lambda function adds two integers. In HighOrder.kt, a high-order function accepts another function as a parame
  • AngularJS: Numbers Text Validation and cbTooltip in ASP.NET7/4/2024 9:46:21 AM. "In AngularJs applications, custom directives like allowOnlyNumber and allowOnlyText ensure input validation for numeric and text data, enhancing user interaction. Implementing cbTooltip with Boo
  • Ranking Functions in SQL: RANK, DENSE_RANK, and ROW_NUMBER7/3/2024 12:19:25 PM. Learn how these powerful functions operate within SQL queries to assign ranking values based on specified criteria, enhancing your ability to analyze and manipulate data efficiently in relational data
  • Explicit Interface Implementation & default interface methods in C#7/3/2024 11:53:14 AM. In C# programming, interface members serve as blueprints that classes must follow when implementing functionality. When multiple interfaces declare members with the same names, naming conflicts can ar
  • How to Seed Identity in SQL Server7/3/2024 11:52:20 AM. Discover SQL Server's IDENTITY columns for automatic unique number generation. Learn to create tables with IDENTITY, insert data without specifying IDs, seed values with DBCC CHECKIDENT, manage ex
  • Learn Use of Lambda Operator in C#7/1/2024 6:28:21 AM. Explore the versatility of lambda expressions in C#, powerful tools for creating inline functions without the need for traditional method declarations. Discover their syntax, applications in LINQ quer
  • Read, Combine and Analyse ADLS Gen2 CSV files using Azure Synapse Spark SQL6/28/2024 7:30:27 AM. This video shows how to use Azure Synapse Analytics to read, combine, and analyze multiple CSV files residents in ADLS Gen2 using Spark SQL.
  • Social Security Number Masking in Angular6/28/2024 6:07:15 AM. Learn how to implement Social Security Number (SSN) masking in Angular applications to enhance data security and user privacy. This tutorial covers techniques for masking SSNs in user input fields usi
  • MemberwiseClone Method Instead of Copy Constructors in C# .NET6/27/2024 8:42:18 AM. When it comes to creating copies of objects in C#, there are several techniques available, each with its own advantages and use cases. This article will delve into the details of these two techniques,
  • Integerating Python Django in Blazor6/26/2024 6:49:24 AM. Integrate Python with Blazor using Django for robust web applications. This setup leverages Django's features like authentication and ORM, enhancing data processing, machine learning, and automati
  • Embed Power BI Report in the SharePoint Page6/26/2024 5:10:49 AM. Embed Power BI reports into SharePoint Online to enhance data visualization and access within your organization. This integration allows for real-time data insights directly in your collaborative envi
  • Common Steps To Embed Power BI Report To Third Part Application - Power BI Embedded - Step By Step - Part Three6/24/2024 11:44:03 AM. This article guides you through embedding Power BI reports into third-party applications. It covers creating an app workspace in Power BI, publishing the report, obtaining workspace and report IDs, re
  • Add Text With Image Button In ComboBox In WPF Application6/24/2024 9:02:07 AM. Learn how to enhance your WPF application by adding text with an image button in a ComboBox. This tutorial guides you through customizing ComboBox items using XAML and C#.
  • Biggest Data Breach in India's History6/24/2024 5:58:36 AM. On October 9, 2023, a Dark Web ad revealed a database breach involving Aadhaar numbers, passports, and contact details of 815 million people, originating from ICMR. The breach, linked to a sophisticat
  • Make State Management Easier Using Combining Reducers in Redux6/24/2024 5:51:12 AM. Learn how to simplify state management in your Redux applications by combining reducers. This guide explores the concept of reducer composition, demonstrating how to break down complex state logic int
  • Predicate Delegates in .NET Core C#: Syntax, Usage and Examples6/22/2024 10:26:47 AM. Like Func and Action delegates, the predicate is a delegate. It symbolizes a procedure that verifies that the passed parameter satisfies a set of requirements. One input parameter must be provided by
  • Dynamic LINQ Query In C# Using Predicate Builder6/20/2024 11:42:33 AM. This technique allows runtime composition of query predicates using logical conditions such as AND, OR, and NOT. By leveraging Expression Trees and lambda expressions, developers can programmatically
  • Learn Action and Func Delegates in C#6/19/2024 11:51:33 AM. Learn about Action and Func delegates in C# to master delegate usage for different scenarios. Action delegates are for methods that return void, while Func delegates handle methods with return values.
  • Reflection In .NET6/19/2024 9:34:31 AM. Explore .NET Reflection, a powerful API for runtime type introspection in .NET Framework. Learn about key classes like System.Reflection.Assembly and System.Type, essential for dynamic type loading an
  • Understanding ZooKeeper: Key Concepts and Architecture6/19/2024 5:24:30 AM. Explore the key concepts and architecture of ZooKeeper, a distributed coordination service, and understand its impact through an example of a distributed lock service.
  • Understanding CRUD Operation in Blazor6/19/2024 4:20:13 AM. Explore Blazor Server and WebAssembly models, integrate Entity Framework Core for data management, utilize Razor Components for UI design, and understand data binding in Blazor for seamless interactio
  • How To Implement Authentication Using Identity Model In ASP.NET Core 6/18/2024 10:48:48 AM. ASP.NET Core Identity is a robust authentication mechanism in .NET Framework, replacing classic ASP.NET's membership system. It offers comprehensive user and role management, integrates with Entit
  • Action Delegates in .NET Core C#: Syntax, Usage and Examples6/18/2024 5:33:24 AM. One built-in generic type delegate is the action delegate. This delegate makes your program more readable and efficient by eliminating the need for you to define a custom delegate.
  • Login Control in ASP.NET 3.56/17/2024 11:19:43 AM. ASP.NET login controls simplify user authentication for web applications by integrating with ASP.NET membership and forms authentication. These controls offer a ready-to-use interface to query user cr
  • Create Charts In PowerPoint Using C#6/17/2024 4:34:27 AM. Discover how to leverage the .NET Presentation library in C# to create column, pie, and combination charts for effective data visualization in PowerPoint. Enhance presentations with clear, insightful
  • DuckDB: The Powerful Embedded Database for Analytics6/16/2024 8:32:17 AM. DuckDB is a high-performance, embedded database designed specifically for data analytics. It offers in-memory processing, SQL support, and columnar storage, making it ideal for analytical queries and
  • Bind Combobox With Enum Using ObjectDataProvider WPF MVVM6/13/2024 8:22:54 AM. Learn how to bind enums directly to a combo box in WPF MVVM using ObjectDataProvider. No more programmatic binding; use XAML with ObjectDataProvider for efficient enum binding.
  • How to use Embedded BI and Create Self-serviced Dashboards in ASP.NET Core App6/12/2024 10:48:58 AM. Learn how to integrate Embedded BI into your ASP.NET Core application, empowering users to create self-service dashboards. Discover powerful data visualization and reporting tools to enhance decision-
  • Create Repeating Section In PowerApps New Form - Step By Step - Part One6/12/2024 9:40:57 AM. This article guides you through creating a Repeating Section in PowerApps forms for New and Edit forms. Learn to store data in SharePoint lists, manage form navigation, and enhance user experience wit
  • Document Management with SharePoint Embedded Containers6/12/2024 5:06:26 AM. Microsoft introduces Embedded Containers Management in SharePoint, simplifying document management in custom apps. This feature allows centralized control and user permissions directly from the Share
  • Displaying Previous Current Next 2 Weeks in Power Apps Combo Box 6/11/2024 12:03:29 PM. This Power Apps script generates a ComboBox displaying the previous 2 weeks, current week, and next 2 weeks. It utilizes variables to set the current date, calculates date ranges based on weekdays, an
  • Localize Your Blazor Applications and Build UIs to Support Multiple Langauges Without JS6/7/2024 10:36:26 AM. In this article, learn how to develop Blazor applications that support more than 69 languages with a Nuget package and online translator tool for your content.
  • PnP Combo Box List Item Picker In SharePoint Framework6/7/2024 10:23:01 AM. Explore PnP React Controls for SharePoint Framework, including the Combo Box List Item Picker. Learn how to set up, implement, and deploy this control to select items from a list, enabling efficient
  • Mastering ASP.NET Core Identity in ASP.NET Core MVC6/6/2024 7:23:54 AM. ASP.NET Core Identity is a comprehensive membership system for adding login functionality to your ASP.NET Core applications. It provides a robust framework for managing users, passwords, roles, claims
  • Convert an Embedded Resource into an XML File in WPF C#6/6/2024 4:49:04 AM. 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 ru
  • Adding A PowerApps App To MS Teams6/5/2024 11:08:37 AM. Enhance collaboration by seamlessly integrating PowerApps apps into Microsoft Teams. Boost productivity, streamline workflows, and empower teamwork with custom business applications deployed directly
  • Creating Custom Drop Down List Component In Blazor 3.2 WASM6/5/2024 8:09:06 AM. Learn to create a custom dropdown in Blazor WASM, a UI component with backend logic. Utilize this component across applications for maximum reusability. Prerequisites include Blazor and .NET Core know
  • Embed Google Maps In .NET Desktop Application6/5/2024 5:33:29 AM. DotNetBrowser simplifies embedding Google Maps in .NET WPF or WinForms applications. This Chromium-based library allows loading web pages with HTML5, CSS3, and JavaScript. By creating a BrowserView, e
  • What is An Assembly6/4/2024 12:51:59 PM. An assembly in .NET is a unit of deployment containing compiled code, metadata, and resources. It's the fundamental building block of .NET applications, facilitating deployment, versioning, and ex
  • Creating And Using Shared Assembly6/4/2024 12:51:22 PM. In this article, we will learn By default every assembly is a private assembly. If we add a reference to a private assembly to any project, a copy of the assembly is given to the project.
  • C# Basic OOPs Concepts6/4/2024 12:47:27 PM. "Basic OOPs concepts in C# involve classes, objects, inheritance, encapsulation, and polymorphism. It includes access modifiers, constructors, and destructors, along with method overloading and o
  • Executing Assembly Code in C#6/3/2024 10:10:02 AM. Learn how to integrate hardcore assembly code into managed .NET code using a VC++ DLL as an intermediary, enabling faster execution and better control over hardware. This article illustrates invoking
  • Identifying Missing Sequence Numbers in SQL5/31/2024 9:45:12 AM. In this article, we explore a method to identify missing sequence numbers in a database table using SQL. SQL code utilizes window functions and CTEs to efficiently find gaps in the sequence of region
  • Hide Base Class Members in C# .NET with new Keyword5/30/2024 7:05:09 AM. In C# .NET, the new keyword allows derived classes to hide members of a base class. This technique, known as member hiding or shadowing, is used to define a new implementation for a member without ove
  • Expression Bodied Members: A New Feature of C# 6.05/29/2024 8:11:40 AM. C# 6.0 introduced Expression Bodied Members, leveraging Lambda expressions to simplify syntax, reduce code, and enhance readability. These members streamline method and property definitions, offering
  • LINQ Query Syntax vs Method Syntax in Entity Framework5/29/2024 4:39:33 AM. Choosing between LINQ Query Syntax and Method Syntax in Entity Framework depends on various factors. Query Syntax often resembles SQL, making it more intuitive for those with SQL background, while Met
  • Micro Frontends With ASP.NET Core and Blazor WebAssembly Components 5/29/2024 4:36:08 AM. Explore the dynamic world of Micro Frontends in action with ASP.NET Core, delving into the realm of Universal Rendering. Unleash the power of Blazor WebAssembly-based Web Components, combining flexibi
  • How to Use Combine framework in SwiftUI?5/28/2024 10:43:33 AM. Combine framework enhances SwiftUI by managing data flow, essential for reactive UIs. Publishers emit data, subscribers receive, and operators transform streams. Learn to create publishers, subscribe
  • How to Combine Multiple Inline Style Objects in ReactJS5/24/2024 6:48:51 AM. In React, merging multiple inline style objects is essential for flexible styling. Techniques like object spread, Object.assign, array reduce, Lodash merge, conditional merging, and functional style m
  • Understanding Your Internet Speed Converting Mbps to MBps5/24/2024 5:02:31 AM. Understanding your internet speed is crucial for efficient online activities. This guide simplifies the conversion process from Mbps to MBps, helping you grasp the difference between megabits and mega
  • Working with Lambda Functions in Python5/21/2024 6:08:29 AM. Lambda functions in Python are concise, anonymous functions defined with the lambda keyword. They're ideal for short, disposable tasks and commonly used with map(), filter(), and reduce() function
  • Embed Power BI in Dynamics 365 CE Dashboard with Environment Variables5/20/2024 11:10:41 AM. In this article, we learn how to seamlessly embed a Power BI report as a system dashboard in Dynamics 365 Customer Engagement (CE) using environment variables.
  • Find File Type From Magic Number Of File In MVC 55/17/2024 11:02:43 AM. Explore how to implement file type detection using magic numbers in MVC 5. Learn about analyzing file headers, determining mime types, and integrating this functionality into your web development proj
  • How to Unload an Assembly Loaded Dynamically Using Reflection5/17/2024 10:37:44 AM. Learn how to unload an assembly that was dynamically loaded using reflection in .NET. This guide covers essential steps, including using AppDomain for isolation, managing memory efficiently, and pract
  • Concept of Shared Assembly in .NET5/17/2024 10:21:48 AM. Shared assemblies in .NET are reusable components accessible by multiple applications. They promote code sharing, reducing redundancy and enhancing maintainability. Strongly named and stored in the Gl
  • Dynamically Creating Applications Using System.CodeDom5/17/2024 10:20:56 AM. System.CodeDom in .NET enables dynamic application creation by programmatically generating and compiling code at runtime, facilitating flexible and customizable software development processes.
  • What is Embedded BI (Business Intelligence) and its benefits?5/16/2024 6:22:04 AM. This article provides more specifics about Embedded BI (Business Intelligence) and its benefits. This enhances decision-making, productivity, and customization while ensuring scalability and data secu
  • Dynamically Call a Function in C#5/16/2024 5:52:41 AM. In this article, we will learn how to dynamically call a function in C# using reflection and delegates. By leveraging reflection, you can discover and invoke methods at runtime based on their names an
  • MSIL Programming: Part 15/16/2024 5:52:09 AM. Learn MSIL programming fundamentals in this comprehensive series. Explore Microsoft Intermediate Language (MSIL) concepts, .NET assembly structure, IL instructions, and .NET runtime.
  • Create Identity In Simple Ways Using ASP.NET MVC 55/6/2024 11:24:49 AM. ASP.NET MVC 5 simplifies identity creation through built-in features for authentication and authorization. It offers straightforward methods for user management, including registration, login, and pas
  • Programming in Practice - LINQ Expression 5/6/2024 9:05:50 AM. An impression can be made that: data is data, and it doesn't matter where it comes from provided it is reliable. The LINQ technology is presented to fetch the necessary data from any available so
  • .Net Architecture And .Net Framework Basics5/5/2024 8:25:53 AM. .NET architecture encompasses the Common Language Runtime (CLR) and Common Type System (CTS), executing Intermediate Language (IL) through Just-In-Time (JIT) compilation.
  • Validating Mobile IMEI Number5/1/2024 11:10:15 AM. Validating Mobile IMEI Numbers ensures device authenticity and legality. IMEI, or International Mobile Equipment Identity, serves as a unique identifier for mobile devices. Verification confirms devic
  • Microsoft Enterprise Instrumentation Framework(EIF) - Quick Guide5/1/2024 11:09:43 AM. Explore Microsoft Enterprise Instrumentation Framework (EIF) with our Quick Guide. Learn to monitor, log, and optimize application performance effortlessly, ensuring robustness and efficiency in your
  • Anti-Reverse Engineering (Assembly Obfuscation)5/1/2024 11:02:29 AM. Learn how to protect your .NET source code from reverse engineering using obfuscation techniques with Dotfuscator. Explore the process step-by-step, including obfuscated code analysis and MSIL code ex
  • Signing a Third Party Library With Ildasm and Ilasm4/30/2024 9:55:22 AM. Learn how to sign third-party libraries using ILDasm and ILasm, ensuring compatibility across .NET versions. Overcome version conflicts and ensure smooth integration of libraries into your projects.
  • Xamarin.Forms - Open App Store Or Play Store In XamarinApp4/30/2024 9:34:20 AM. Learn to develop Xamarin.Forms apps for Android and iOS, accessing filesystems, and distributing data files. Implement UI elements like buttons and images. Use Xamarin.Essentials to open Play Store o
  • What is Friend Function in C++4/30/2024 5:50:49 AM. Data hiding is a core principle in object-oriented programming, but C++ introduces friend functions that defy this rule, enabling access to private and protected class members from outside.
  • Preparing .NET Interview - Part 1 (Framework)4/29/2024 11:56:13 AM. Preparing for a .NET interview (Part 1 - Framework) involves understanding key concepts like CLR, BCL, assemblies, and memory management. Familiarize with C#, garbage collection, reflection, and .NET