Resources  
  • ASP.NET 8 - Multilingual Application with Single Resx FileMar 27, 2024. Discover how to create a multilingual web application in ASP.NET 8 using a single Resx file. This tutorial explores efficient localization techniques, enabling your site to support multiple languages seamlessly.
  • What Are the Caveats of Array Changes Detection in Vue.jsMar 27, 2024. Vue.js relies on JavaScript's array mutation methods like push, pop, and splice for reactive updates. However, developers must be wary of caveats like direct assignments and methods with no side effects.
  • Single-Dimensional, Two-Dimensional, and Multidimensional Arrays in C#Mar 26, 2024. Arrays are fundamental data structures in programming languages, including C#. In this article, we'll explore single-dimensional, two-dimensional, and multidimensional arrays in C#, understand their differences, and learn how to work with them effectively.
  • Explain about Spread Operator in C# 12 Mar 20, 2024. The spread operator, a recent addition to C# in version 12, streamlines working with collections like arrays and dictionaries. It simplifies tasks such as cloning and merging, enhancing code readability.
  • Dynamic Redirect URL/ Wildcard URL in Azure App RegistrationMar 15, 2024. Learn how to configure dynamic redirect URLs or wildcard URLs in Azure App Registration for enhanced flexibility and scalability. By leveraging this feature, you can dynamically handle various callback URLs, accommodating different environments or scenarios without manual intervention.
  • Sort Array Directive in Vue.jsMar 13, 2024. Custom directives in Vue.js empower developers to extend HTML elements' functionality, enabling direct manipulation of the Document Object Model (DOM) within Vue applications. This example demonstrates creating a directive to sort an array based on a specific property.
  • Misconceptions About the Four LINQ methodsMar 09, 2024. Misconceptions about the four LINQ methods. Single(), SingleOrDefault(), First(), and FirstOrDefault(). This article addresses misconceptions surrounding four LINQ methods—Single(), SingleOrDefault(), First(), and FirstOrDefault(). Clarifying differences and potential pitfalls helps prevent null references and invalid operator exceptions in code.
  • MSAL for Vanilla JS SPA: Get JWT Access & ID TokensMar 01, 2024. This document provides an overview of Microsoft Authentication Library (MSAL) and its role in implementing secure authentication in Vanilla JavaScript Single Page Applications (SPAs). It discusses the significance of MSAL in obtaining JWT (JSON Web Token) Access Tokens and ID Tokens from Microsoft identity services.
  • 2D Array with Matrix Multiplication in C ProgrammingFeb 28, 2024. A double subscripted variable, also known as a two-dimensional array, is a variable that has two subscripts assigned to it in order to represent a list of items.
  • toSpliced(start, deleteCount, ...items) in JavaScript ES2023Feb 25, 2024. Creates a new array with elements spliced (added or removed) at a specific index, without modifying the original. The toSpliced method in JavaScript ES2023 offers a non-mutating alternative to splice, providing immutability, clarity, and concise data manipulation for arrays.
  • What Are Single File Components in Vue.jsFeb 22, 2024. Single File Components (SFCs) in Vue.js consolidate templates, scripts, and styles in one file, enhancing organization. The example demonstrates creating and using a TodoItem component for a clear structure and efficient development.
  • Immutable Arrays in JavaScriptFeb 21, 2024. In this article, we will learn how to work with Immutable Arrays in JavaScript. Explore the world of immutable arrays in JavaScript, understanding their creation using the spread operator, benefits, and common operations. Learn how they contribute to predictable state management and functional programming principles.
  • Moore's Voting Algorithm in JavaScriptFeb 14, 2024. Imagine you're analyzing election results or counting website visits. You need to find the most frequent item, the one that appears more than half the time. Sure, you could loop through the data and count manually, but wouldn't it be cool to have a smarter, more efficient way? Enter Moore's Voting Algorithm, a clever technique that solves this problem with elegance and speed.In this article, we'll demystify Moore's Voting Algorithm and implement it in JavaScript.
  • What are Array Detection Mutation Methods in Vue.jsFeb 14, 2024. Vue.js provides array mutation methods that enable reactivity, allowing Vue to detect changes and update the DOM dynamically. Understand and use these methods for effective array manipulation in Vue.js.
  • Merging Arrays within Synapse / Azure Data Factory PipelineFeb 07, 2024. merging arrays in Azure Data Factory / Synapse pipelines. By utilizing functions like "join" to convert arrays to strings, "concat" to combine strings, and "split" to transform strings back to arrays, this solution ensures comprehensive data integration.
  • Listing Unique Records Within an Array in Azure Data FactoryFeb 02, 2024. Utilize Azure Data Factory to remove duplicates within an array by employing the "union()" function. This solution involves the Set Variable activity to obtain a unique list from the array.
  • Two Pointer Approach in PythonFeb 01, 2024. The Two Pointer Approach is one of the most used and efficient techniques to search for a pair in a sorted array. We'll look into the working of it, implementation and use cases.
  • JavaScript Destructuring: Arrays, Functions, and ObjectsJan 31, 2024. Destructuring is a powerful feature in JavaScript that allows you to extract values from arrays, objects, and function parameters easily.
  • What is List Rendering in Vue.js?Jan 23, 2024. Vue.js provides an elegant and powerful way to render lists of data dynamically with the v-for directive. This feature allows you to iterate over an array or an object, creating and updating HTML elements effortlessly. In this guide, we'll explore the ins and outs of list rendering in Vue.js with practical examples.
  • Iterating Over an Array Using Arrow Functions in JavaScriptJan 19, 2024. The ways for Iterating Over an Array using arrow functions in JavaScript. Explore concise array iteration in JavaScript using arrow functions and methods like forEach, map, filter, reduce, and find. Simplify array tasks with clear, short, and effective code examples.
  • TwoSum Example in C#: Print and Count Pairs with Given SumJan 17, 2024. Given an array of integers and target number ‘target sum' then print all pairs and their count in the array whose sum is equal to ‘target sum’.Examples : Input : arr[] = {3, 5, 7, 1, 5, 9}, target = 10 Output : (3,7) (5,5) (1, 9)Count: 3
  • Integrating Google Single Sign-On with AngularJan 17, 2024. Angular with Google SSO refers to the integration of Google Single Sign-On (SSO) authentication within an Angular web application. Single Sign-On is a method that allows users to log in to multiple applications or services with a single set of credentials, eliminating the need to remember separate usernames and passwords for each application.
  • Array Operations in JavaScriptJan 17, 2024. Arrays are fundamental in JavaScript, allowing storage and manipulation of collections. Common operations include element access, addition/removal, iteration, built-in methods (map, filter, reduce), slicing, finding, and filtering/mapping.
  • All about Solidity ArraysJan 15, 2024. Unlock the world of Solidity arrays in blockchain. From basics to pro tips, your complete guide for mastering this key element in smart contract coding.
  • Single Responsibility PrincipleJan 10, 2024. The Single Responsibility Principle emphasizes that a class should have a single reason to change, focusing on one task. This ensures cleaner, smaller classes with well-defined responsibilities and improved maintainability.
  • What is Inline Arrays in C# 12Jan 10, 2024. C# 12 unveils a hidden gem - inline arrays. This article delves into these performance powerhouses, showcasing how they boost speed, simplify memory management, and enhance type safety. Discover their functionalities and practical applications in diverse scenarios like geometric operations.
  • What is Collection Expressions in C# 12?Jan 03, 2024. Forget the days of writing mountains of code just to create simple lists or arrays. C# 12 unleashes collection expressions, your new superpower for crafting collections with ease and elegance. This friendly guide demystifies the magic behind these expressions, even if you're a coding newbie.
  • Essential Features of C# 12 You Need to KnowDec 28, 2023. Unlock C#'s hidden potential with features that make coding a breeze. Streamlined constructors, effortless collections, and enhanced lambdas await!
  • Blazor and .NET 8 QuickGrid Implementation with CSV Data ExportDec 22, 2023. Article for using QuickGrid in Blazor and .NET 8 and exporting data using CSV Helper as a supporting library. the simplicity and efficiency of QuickGrid, a razor component for displaying tabular data in Blazor Applications. Officially backed by .NET 8, QuickGrid supports in-memory and EF-Core IQueryable remote data and offers built-in column types. Explore its features, easy implementation, and styling options, ensuring a seamless user experience. Follow a comprehensive walkthrough and customization guide incorporating filtering, pagination, and virtualization.
  • Row Constructors in PostgreSQLDec 13, 2023. Explore the power of row constructors in PostgreSQL, enabling efficient row-wise data manipulation. This guide covers syntax, applications in SELECT, INSERT, UPDATE, DELETE statements, and common use cases for optimization.
  • Array Constructors in PostgreSQLDec 06, 2023. Explore the robust array feature in PostgreSQL, a powerful tool for storing and managing multiple values in a single column. Learn declaration, input, access, and manipulation techniques.
  • Understanding LIKE vs ILIKE in PostgreSQLDec 05, 2023. In this article, we will focus on the differences between the LIKE and ILIKE operators, and how to use them effectively.
  • Difference Between Array and ArrayListDec 01, 2023. Here in this article, we are going to explain the difference between Array and Arraylist.
  • Sorting Arrays in C#Nov 24, 2023. This article guides us through sorting arrays in C# using the Array.Sort() method and LINQ queries. It covers both ascending and descending orders, providing code snippets for clarity.
  • How to use Power Automate to split a string into an arrayNov 06, 2023. This article explains how to turn a string into an array using the Power Automate split function.
  • Different Types of Comments in C# and Their UsagesNov 06, 2023. This article will explain the different types of comments in C# and why should we use comments.
  • OpenID Connect and OAuth 2.0 CognizanceNov 01, 2023. An overview of OpenConnect and OAuth and its usage in the digital world. It introduces a standardized method for verifying user identities, allowing users to authenticate across different sites or applications without the need to create new credentials for each portal.
  • Single Responsibility Principle (SRP) in .NET CoreOct 23, 2023. As a developer with one year of experience, you've likely come across the SOLID principles, a set of five principles that promote clean, maintainable, and scalable code. Among these principles, the Single Responsibility Principle (SRP) is fundamental and worth mastering. In this article, we'll explain SRP in a beginner-friendly manner and provide a straightforward .NET Core example to illustrate its significance.
  • Understanding Jagged Arrays in C# with ExamplesOct 19, 2023. The article will explain the Jagged Arrays in C# with an example and easy explanation. Jagged arrays in C# enable the storage of data in varying lengths, offering flexibility in managing complex data structures. Explore how to declare, initialize, and utilize jagged arrays through a comprehensive C# example.
  • Array to Object in JavaScript: The Best Way to Manipulate DataOct 04, 2023. Learn how to convert an array to an object in JavaScript with simple examples and methods.
  • Data Structures in R Programming Sep 25, 2023. In this guide, we'll explore the various data structures in the R language. Provided with syntax examples and illustrate how each data structure is used in practical scenarios in detail.
  • Destructuring in JavascriptSep 18, 2023. Destructuring in JavaScript simplifies the extraction of specific values from arrays and objects. For instance, when dealing with arrays or objects, you might not always need all the values, only specific ones. It streamlines this process by allowing you to assign these values to variables.
  • Array Map Method in JavaScript Sep 18, 2023. In JavaScript, arrays are used to create collections of elements. You can declare an array in JavaScript using square brackets, and it can contain various types of data, including integers, strings, or decimals.
  • Efficient PDF Generation in ASP.NET Core Web API Using DinkToPdfSep 09, 2023. Generating PDF files in an ASP.NET Core Web API is a common requirement, and there are several libraries available to help with this task. In this example, I'll show you how to generate PDF files using the popular library called DinkToPdf, which is a .NET wrapper for the C library DinkToPdf. We'll also follow best practices for structuring your ASP.NET Core Web API project.
  • Insert JSON Array into Table with Stored Procedure ParameterSep 04, 2023. Learn how to efficiently save and insert JSON array data into a database table using SQL Server's T-SQL language, with adaptable concepts for other database systems.
  • Exploring F# Arrays: A Comprehensive GuideSep 04, 2023. Explore the power of F# arrays: creation, manipulation, benefits, and tips—master efficient data handling in F# programming.
  • Convert String into Array in JavaScriptAug 21, 2023. Efficiently transform strings into arrays in JavaScript. Explore split() method, custom delimiters, and JSON conversion.
  • Introduction to Powerful Numerical Computing with Python NumPyAug 01, 2023. Explore the essentials of Python NumPy in this beginner's guide. Learn to wield powerful arrays, perform advanced calculations, and elevate your data manipulation skills
  • Exploring Python Data StructuresJul 18, 2023. In this article we will discuss about Pyhton data structures.
  • ArrayBuffer vs Typed Array in JavaScriptJul 17, 2023. In this article, I'm going to explain the key differences between Typed Arrays and ArrayBuffer.
  • Export Sharepoint List Metadata Using Power AutomateJun 15, 2023. In this article, I will explain, how can we export a SharePoint list metadata using Power automate. While doing that, we will learn many basic concepts of Power Automate like how to use JSON, strings, arrays etc.
  • Collections in KotlinJun 12, 2023. The article wraps Collections in Kotlin and provides a summary or final thoughts on the topic.
  • Numpy for Data ScienceJun 08, 2023.
  • JavaScript Array Methods Cheat SheetJun 01, 2023. Array methods in JavaScript are used for a variety of purposes to manipulate, transform, and work with arrays more efficiently
  • Array In RustMay 31, 2023. In this article, we will learn in depth about the concept of arrays in the Rust programming language.
  • Dot Vs Bracket Notation in JavascriptMay 30, 2023. In this article, we will learn Dot Vs Bracket Notation in Javascript
  • How to Send Data From Parent Component to Child Component in Vue.js May 29, 2023.
  • flat() and flatMap() in JavaScriptMay 18, 2023. In this article, we will learn how we can deal with nested arrays and how we can alter in single array
  • Important JavaScript Concepts for DevelopersMay 11, 2023. JavaScript Important Concepts for Developers
  • How to Use Clear Keyword An Array in C#May 10, 2023. In this article, you will learn about what is a Clear Keyword an array in C#
  • How to Insert An Element Into An Array In C#May 09, 2023. In this article you will learn How to insert an element into an array in C#?
  • How To Check The Length Of An Array In C#May 05, 2023. In this article, you will learn How to check the Length of an array in C#
  • How to Initialize String Array With Default Values In C#May 04, 2023. In this article, you will learn about How to initialize string array with default values in C#
  • What Are The Data Types In Rust?Apr 27, 2023.
  • How to check if an array contains a specific element in C#Apr 24, 2023. in this article, you will learn How to check if an array contains a specific element in C#
  • What is 2D Array In C#Apr 22, 2023. In this article, you will learn about 2d arrays in C#.
  • How to Remove An Element from An Array In C#Apr 21, 2023. In this article, you will learn about How to Remove An Element from An Array In C#?
  • How To Copy An Array In C#Apr 19, 2023. In this article you will learn How to copy array in C#.
  • Power Up Your Automations: Mastering Array and Object Comparison in Power AutomateApr 18, 2023. Learn how to take your Power Automate game to the next level by mastering array and object comparison! Discover the tips and tricks you need to streamline your workflow and supercharge your automation skills in this must-read article
  • What Is 4D Array In C#Apr 12, 2023. In this article, you will learn about What Is 4D Array in C#
  • How to Use Multidimensional Arrays in C#Apr 11, 2023. Learn how to use multidimensional arrays in C# to store and manipulate data efficiently. From declaring and accessing arrays to iterating over them and avoiding common pitfalls, this comprehensive guide covers everything you need to know about working with multidimensional arrays in C#. Master the power of multidimensional arrays and improve your programming skills today!
  • Azure AD Connect Single Sign OnApr 06, 2023. In this article, you will learn about Azure AD Connect Single Sign On.
  • What Is The Difference Between An Array, ArrayList And A List?Apr 04, 2023. In this article, you will learn when to use an Array, ArrayList, or a List in C#.
  • JavaScript Array MethodsApr 04, 2023. In this article, you will learn about JavaScript Array Methods.
  • What Is 3D Array In C#Apr 04, 2023. In this article, you will learn 3d Array in C#.
  • What is the difference between C# array and C# list?Mar 29, 2023. Learn the difference between a C# list and a C# array with code examples.
  • How to find the length of an array in C#?Mar 16, 2023. Here is the code sample to find the length of an array in C#.
  • How to find the length of a JavaScript Array?Mar 16, 2023. In this article, we will explore how to use the "length" property in JavaScript to find the number of elements in an array.
  • Efficiently Working With Arrays And Memory In C# Using Span<T>Mar 08, 2023. In this article, we will see use of Span&lt;T&gt; to working with array.
  • 3 Ways To Merge Arrays In JavaScriptMar 06, 2023. An array is a data structure representing an ordered collection of indexed items. In this article, we&#39;ll go over 3 different ways to merge arrays in JavaScript.
  • How To Check If A Variable Is An Array In JavaScript?Feb 16, 2023. In this tutorial, we&#39;ll take a look at various ways we can determine if an object is an array in JavaScript
  • Remove Duplicates From An Array Of Objects Using JavaScriptFeb 09, 2023. In this article, you will learn how to remove Duplicates from an array of objects Using Javascript.
  • How To Join Two Arrays In C#Feb 07, 2023. In this article, we will learn different methods to join two arrays in C#.
  • How To Resize An Array In C#Feb 07, 2023. This article will teach you how to resize an array in C#.
  • How To Compare Two Arrays In C#Feb 01, 2023. Arrays are a fundamental data structure in programming, and it is often necessary to compare two arrays to determine if they are identical or different. In this article, we will discuss the various ways to compare arrays in C#
  • How To Check If An Array Is Empty In C#Feb 01, 2023. In this article, we will explore various methods to determine if an array is empty in C#. The Length property, Count() extension method of LINQ or the IsNullOrEmpty() method can be used to check if the array is empty. If any of these methods return 0 or the array is null, it can be determined that the array is empty.
  • Convert Byte Array Into PDF And Open It Inside Custom Dialog box In AngularJan 11, 2023. We will get byte array as an response from API and same we need to encode and convert into PDF inside Custom Dialog box in Angular, where you can fire events on closing of dialog to fire another event.
  • Performance - The Fastest Way To Loop Over An Array In Microsoft .NETJan 11, 2023. In this article, you will learn about the fastest way to loop over an array in microsoft .NET.
  • How To Check If A Variable Is An Array In JavaScriptJan 08, 2023. In this short tutorial, we&#39;ll take a look at different ways we can determine if a variable is an array in JavaScript
  • How to find nth element of Array using Javascript methods?Jan 06, 2023. Hear how to find nth element of Array using Javascript methods.
  • Post Multiple File And Data With The Use Of Single Model API Call In .NET Core With AngularDec 07, 2022. In this article, you will learn how to post multiple file and data with the use of single model Api call in .Net Core with Angular Application.
  • Difference Between Single Vs SingleOrDefault And First Vs FirstOrDefaultNov 28, 2022. In this article, you will learn about the Difference Between Single Vs SingleOrDefault And First Vs FirstOrDefault.
  • Single Sign-On Using ASP.NET MVC And ASP.NET CoreNov 17, 2022. What is single sign-on (SSO)? Users must authenticate themselves to access pages protected by a web application, and if a user accesses multiple web applications, they must be authenticated. You must log in to each application separately.
  • Difference Between List and Array In PythonNov 15, 2022. In this article, we learn about the difference between List and Array in Python.
  • Merge Multiple Word Files Into Single PDFOct 21, 2022. In this article, you will see how to merge multiple word files into a single pdf using Itextsharp in c#.
  • .NET Core API And React In A Single SolutionOct 18, 2022. In this article, you will learn about .NET Core API And React In A Single Solution.
  • Converting Between JSON and CSV In C#Oct 06, 2022. Converting JSON string to CSV file and reading the CSV file as JSON.
  • Upload Single And Multiple Files Using The .NET Core 6 Web APIOct 03, 2022. In this article, you willl learn how to upload single and multiple files using the .NET Core 6 Web API.
  • The Single Responsibility Principle You Don't KnowSep 02, 2022. In this article, you will learn about the single responsibility principle you don&#39;t know.
  • Get Non Common Elements From Arrays In PowerAutomateAug 16, 2022. This article explains how to get non-common elements from an array.

About Single-dimensional-arrays

NA

OUR TRAINING