Related resources for Var
  • Overfitting and Underfitting in Machine Learning7/26/2024 6:08:59 AM. Overfitting and underfitting are critical concepts in machine learning. Overfitting occurs when a model learns the training data too well, capturing noise and failing to generalize. Underfitting happe
  • Tracking Visits and Visitor Details on PowerApps Page7/25/2024 12:07:39 PM. Learn to track unique page views in PowerApps by integrating SharePoint lists and using global variables. This guide covers designing lists, configuring PowerApps screens, and patching view counts. It
  • Control Form Requirement with Save or Submit Button7/23/2024 6:58:51 AM. Implement a "Save as Draft" feature to allow users to save and resume incomplete forms. Create buttons with distinct functionalities for saving drafts and submitting forms. Set form fields a
  • Advanced ADO.NET Features for Complex Data and Async Operations7/23/2024 4:39:40 AM. ADO.NET remains essential for database interactions in . NET. Advanced features include handling complex types with SQL Server's UDTs and XML data, managing binary data with VarBinary, and leverag
  • Various Ways to Disable ViewState in ASP.Net 4.07/18/2024 3:12:37 PM. Learn how to optimize your ASP.Net 4.0 web applications by effectively managing ViewState. This guide explores various techniques to disable ViewState, improving performance and reducing page load tim
  • Discard Variable in C# .NET7/17/2024 12:17:22 PM. The discard variable (_), introduced in C# 7.0, allows developers to ignore values intentionally. It enhances code clarity by signaling unused data in tuples, pattern matching, out parameters, and LIN
  • How to Convert varbinary to Base64 String in SQL Server7/12/2024 8:47:14 AM. Learn how to convert varbinary data to Base64 strings in SQL Server using XML functions and the CAST method. This tutorial provides clear steps and SQL examples for encoding binary data, crucial for w
  • Implementing v2 and v3 reCaptcha using React7/10/2024 9:09:35 AM. CAPTCHA (Completely Automated Public Turing test to tell Computers and Humans Apart) is a security measure to differentiate between humans and bots. reCAPTCHA, a Google tool, enhances this by generati
  • A Comprehensive Look at AWS Cloud: History, Evolution7/4/2024 7:47:24 AM. Amazon Web Services (AWS) revolutionized IT with its comprehensive cloud platform. Since 2002, AWS has evolved from offering basic cloud services like Amazon S3 and EC2 to over 200 advanced services.
  • Response Caching In ASP.NET Core6/24/2024 4:12:56 AM. Response Caching in ASP.NET Core enhances web application performance by strategically managing how responses are cached and delivered to clients and proxies. It leverages the Cache-Control header to
  • Local And Global Variables In Power Apps6/20/2024 6:44:06 AM. Local variables are temporary and screen-specific, declared using the UpdateContext function (e.g., UpdateContext({LocalVariableName: Value})). Global variables, declared with the Set function (e.g.,
  • Static Keyword In C#6/18/2024 10:47:06 AM. In this article, I'll discuss the C# static keyword, its purpose, and how to create static classes using C#. I'll also cover static variables, static methods, and static properties in C#.
  • SonarQube Configuration For .NET Core Web API6/17/2024 11:23:22 AM. Learn to improve code quality using SonarQube for a .NET Core Web API project. Install JAVA, configure environment variables, and set up SonarQube server. Create a project, generate a token, and downl
  • Various Ways Of Form Submission In ASP.NET MVC - Part One6/14/2024 10:39:14 AM. Learn various techniques for form submission in ASP.NET MVC. This series covers @Html.BeginForm and @Ajax.BeginForm methods, HTML5 form attributes, jQuery AJAX with FormData and serializeFormJSON. Enh
  • Understanding Global Variables in Azure Data Factory6/13/2024 7:09:59 AM. Global variables in Azure Data Factory are user-defined variables accessible across different pipelines and activities within the same data factory. They store values like strings, numbers, dates, and
  • ASP.NET Core Sample Website - Calculator6/12/2024 10:29:15 AM. This article demonstrates creating a Web Calculator with .NET Core, covering database setup, Azure hosting, ASP.NET Core features, controller setup, views, models, and enum operations. Explore step-by
  • 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
  • The Art of JavaScript Hoisting: Understanding the Ins and Outs6/11/2024 9:11:02 AM. Discover the intricacies of JavaScript hoisting in this comprehensive guide. Understand how JavaScript handles variable and function declarations, the impact of scope, and the best practices to avoid
  • Azure Anomaly Detector: Unveiling the Unexpected in Your Data6/10/2024 8:01:07 AM. The Azure Anomaly Detector is an AI service from Microsoft Azure that helps you find unusual patterns in your time series data. It's like having a built-in inspector for your data, automatically f
  • Variables In PowerApps6/6/2024 7:44:52 AM. Discover how to effectively use variables in PowerApps to enhance your app development. This guide covers the basics of creating, managing, and utilizing variables to store data, improve functionality
  • Difference Between args and kwargs in Python6/5/2024 4:00:54 AM. Learn the difference between args and kwargs in Python. This article explains how *args handles a variable number of non-keyword (positional) arguments as a tuple, while kwargs manages keyworded (name
  • Exploring let, var, and const in JavaScript Declarations6/4/2024 12:15:53 PM. In JavaScript, choosing between var, let, and const is crucial for code behavior and maintainability. var is function-scoped and can be redeclared, while let and const are block-scoped. let allows rea
  • Arrow Function Variants in JavaScript6/3/2024 8:14:29 AM. Arrow functions in JavaScript offer concise syntax for writing functions. They simplify coding with features like no parameter handling, optional parentheses for single parameters, and streamlined fun
  • Importance of While Loop and Table Variable in SQL Server5/31/2024 11:52:50 AM. Explore the significance of while loops and table variables in SQL Server. Harness the power of iterative processing, efficient data manipulation, and performance optimization for enhanced query execu
  • Common Table Expression(CTE) in SQL Server5/30/2024 12:12:43 PM. Learn about CTE, a SQL Server 2005 feature replacing temp tables. Understand its efficiency over temp storage methods, essential syntax, and diverse applications in query optimization. Examples illust
  • Various Ways For Passing Data to View in Web API5/28/2024 11:25:23 AM. Explore various methods for passing data to views in Web API. Techniques include using ViewModels, data transfer objects, and JSON serialization. Utilize query parameters, route parameters, and reques
  • Define Array in JavaScript5/28/2024 11:21:51 AM. Explore methods to define arrays in JavaScript using the var keyword and Array() function. Understand accessing array elements and creating arrays without elements initially. Gain foundational knowled
  • Var Vs Dynamic Keywords In C#5/24/2024 10:22:29 AM. Difference Between Var And Dynamic In C#. The two concepts of static and dynamic types in C# can be illustrated with the use of the two keywords named var and dynamic. Var Vs Dynamic In C#.
  • Some Important Keywords of C#: Part 15/24/2024 9:36:12 AM. This is very simple part 1 article but will clear some of the concepts of C# for those who are learning or for those also who might have good knowledge but unfortunately miss these important keywords.
  • 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.
  • Mastering Python Best Practices for Clean and Efficient Code5/17/2024 7:10:25 AM. In Python development, adhering to best practices is paramount for code clarity and efficiency. Embrace PEP 8 guidelines, document with docstrings, use list comprehensions, and handle exceptions judic
  • Implicitly Typed Local Variable In .NET5/16/2024 9:30:48 AM. Implicitly Typed Local Variables in .NET allow declaration without specifying the variable's data type explicitly, enhancing code readability and reducing verbosity, improving developer productivi
  • Ordinal & Label Encoding in Machine Learning5/10/2024 4:05:16 AM. Categorical variables in machine learning require numerical conversion. Ordinal Encoding orders data, while Label Encoding assigns unique values. Python code demonstrates encoding techniques for effec
  • Azure Bicep: Power of Variables for Efficient Deployment5/8/2024 10:25:27 AM. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep variables. It starts with logging into Azure, then moves on to explain the concept of variables in Azure Bicep, com
  • Various Types of Hidden Fields in .NET5/7/2024 11:25:41 AM. Explore the diverse methods of managing hidden data in .NET applications. Learn about ViewState, Control State, Session State, HiddenField Control, Cookies, QueryString, Application State, Cache, and
  • Local and Global Temporary Tables in SQL Server5/6/2024 11:21:50 AM. Learn about temporary tables in SQL Server. Explore the differences between local and global temporary tables, their scope, and usage. Understand how temporary tables provide session-specific data sto
  • Introducing Various Authentication Options in Visual Studio4/30/2024 9:38:28 AM. Introducing Various Authentication Options in Visual Studio 2013" explores the range of authentication methods available in the IDE. Discover how to implement secure user identity with OAuth, Ope
  • View Variables In .NET MVC4/29/2024 3:59:02 AM. This article discuss the View Variables, such as ViewData, ViewBag, TempData and Session in MVC
  • Learn Patterns and Matching in Rust4/22/2024 9:00:33 AM. In this article, we will explore the pattern syntax of Rust Programming Language. Patterns and matching in Rust streamline data handling and control flow. With various pattern types and exhaustive mat
  • Understanding VARCHAR and NVARCHAR in SQL Server4/22/2024 4:00:34 AM. VARCHAR and NVARCHAR are essential data types in SQL Server for storing character data. Understanding the differences between these data types is crucial for designing efficient database schemas and o
  • Pattern Matching In C#4/15/2024 8:53:28 AM. Pattern matching in C# is a powerful feature allowing concise and expressive code for conditional statements and type checking. It enables matching based on various patterns like types, constants, pro
  • AppSettings - Six Ways To Read The Config In ASP.NET CORE 3.04/11/2024 6:23:13 AM. Learn six methods to read AppSettings in ASP.NET Core 3.0, including options pattern, configuration providers, IConfiguration interface, environment variables, and JSON files, ensuring flexibility and
  • Use of Environment Variable in Windows 84/10/2024 10:43:21 AM. Learn how to manage Environment Variables in Windows 8 using Control Panel. Add, edit, or delete variables to customize system settings for better program execution. Simplify software kit installation
  • Learn about SQL Table Variable?4/9/2024 4:58:06 AM. Table variables in SQL Server function similarly to temporary tables but with some constraints. They offer local scope and structure definition but lack certain features like non-clustered indexes and
  • Var and Let and Const in JavaScript4/4/2024 5:10:52 AM. All these keywords are used frequently in application development and used to store the values. Nevertheless, at the high level, these have few common features and few differences. let us see the dif
  • Creating Various Types of Tables in SQL Server 4/3/2024 9:42:53 AM. Learn about SQL Server tables like User, Temporary, Global; understand creation methods, differences between temporary and regular tables, storage locations, and utilization of table variables. Exampl
  • Temporary Table vs Temporary Variable in SQL Server4/3/2024 9:41:39 AM. Temporary tables adhere to transaction boundaries, affected by rollbacks, whereas temporary variables remain unaffected, persisting data despite rollbacks. Illustrated through SQL queries, highlightin
  • Simple Image or File Import Using T-SQL for SQL Server4/3/2024 8:47:23 AM. The article demonstrates importing image files into SQL Server using T-SQL's OPENROWSET, BULK, and SINGLE_BLOB. It covers basic examples and prerequisites, allowing dynamic file paths and names fo
  • Temporary Tables and Table Variables in SQL Server4/3/2024 5:59:21 AM. In this article we will explore the temporary tables and table variables in SQL Server. From understanding their differences to exploring practical use cases and examples. Whether you're storing i
  • Various Ways to Pass Data From Controller to View in MVC 44/1/2024 11:52:59 AM. In this article, we will discover the myriad ways to transfer data between controllers and views in MVC 4. Explore techniques like ViewBag, ViewData, TempData, Models, and ViewModel for efficient comm
  • Optimizing ASP.NET MVC Applications with Output Caching4/1/2024 8:55:08 AM. In this article you will learn everything about Output Caching in MVC. Output Caching enables us to cache the content returned by any controller method so that the same content does not need to be gen
  • All About the TempData in MVC4/1/2024 8:16:38 AM. TempData is a temporary data storage mechanism in ASP.NET MVC, facilitating state management between HTTP requests. Stored in session variables, it aids in passing data between consecutive requests. T
  • Various Return Types From MVC Controller3/29/2024 9:56:19 AM. The content explores the diverse return types available in an MVC controller within the ASP.NET framework. From rendering HTML views to returning JSON data or redirecting to different URLs, MVC contro
  • Passing Values Between Tasks in Azure DevOps Pipeline3/26/2024 10:39:12 AM. In this article, we will learn efficient inter-task communication in Azure DevOps pipelines. Discover how to pass values between tasks using the task.setvariable logging command, streamlining your pip
  • Create Bulk Variables in Azure DevOps Variable Groups with CLI3/22/2024 5:08:22 AM. Learn how to automate the process of adding multiple variables to a Variable Group in Azure DevOps using the Azure DevOps CLI and Microsoft Excel. This article provides a step-by-step guide to streaml
  • Auto-Populate Azure Pipeline Variables and Connections3/11/2024 10:44:47 AM. In this article we will discuss how deployment settings file can be used to auto-populate environment variables and connection references in target environment.
  • Exploring Various Triggers and Their Applications in WPF3/11/2024 8:27:29 AM. Triggers play a crucial role in defining interactions and behaviors within the WPF user interface. This article explores the various types of triggers in WPF and their implementation within the MVVM p
  • Understanding "out var _" in C#3/11/2024 6:31:09 AM. In this article, we will learn about the use of "out var _" in C#, a syntax that allows declaring a variable inline without specifying its type. Learn its purpose, usage, and how it enhances
  • Benefits of Temporary Tables over Table Variables in SQL Server3/10/2024 8:15:37 AM. The article explores the advantages of utilizing temporary tables over table variables in SQL Server. It discusses how temporary tables offer better performance, scalability, and flexibility for handl
  • Machine Learning: Linear Regression With One Variable3/5/2024 10:27:38 AM. Supervised learning involves providing the correct answer for each example of data. This article focuses on the use of regression and classification techniques in supervised learning, particularly lin
  • Difference Between Var, Let And Const In JavaScript3/5/2024 9:00:34 AM. This article will explain the nuances of JavaScript variable declaration with var, let, and const. Explore their scope, hoisting behavior, and mutability. Learn when to use each for flexible and error
  • Difference Between let, var, and const in JavaScript with Example3/5/2024 6:44:11 AM. In this article, I will demonstrate how to use Var, let, and const with examples. The Var, Let, and const keywords are used to declare variables in JavaScript. Choosing the right variable while writin
  • Using Variables in Bicep2/27/2024 6:11:25 AM. Bicep is a domain-specific language (DSL) that is used for deploying Azure resources - learn more about it in this series of articles!
  • How To Install SQLite On Windows 112/23/2024 6:55:34 AM. Learn how to easily install SQLite on your Windows 11 system. Download the setup, configure environment variables, and use the command prompt to set up the SQLite shell for efficient database manageme
  • Local Temp Tables, Global Temp Tables, Table Variables, and CTEs Comparison2/12/2024 9:53:11 AM. In SQL database management, optimizing data storage is vital for efficient query execution. Local and global temporary tables, table variables, and CTEs are versatile options for temporary data storag
  • Limiting Class Instances in C# with Private Constructor 2/6/2024 5:29:53 AM. Control class instances in C# by using a counter and private constructor. Explore limiting class instances in C# with a private constructor and a counter variable. Control the instantiation and set a
  • Understanding Various Vue Directives1/24/2024 5:24:21 AM. The combination of v-show for conditional visibility and v-for for effortless list rendering simplifies complex UI tasks, allowing developers to focus on creating engaging user experiences. The e
  • What Is the Difference Between var, let, and const in JavaScript?1/17/2024 10:18:42 AM. In JavaScript, var, let, and const declare variables with differences in scope, hoisting, and reassignment. Prefer let and const for better scoping, predictability, and avoidance of common bugs.
  • What is Hoisting in JavaScript ?1/17/2024 7:51:24 AM. Explore the concept of hoisting in JavaScript, where variable and function declarations are moved to the top of their scope during the creation phase. Learn through examples and enhance coding skills.
  • What Is Short keyword In C#1/16/2024 6:27:30 AM. In this article, you will learn about What is Short Keyword in C#
  • How To Set Environmental Variables In AngularJS1/5/2024 11:37:49 AM. In this article, you will learn how to set Environmental Variables in AngularJS.
  • Table(s): Temp Table, Table Variable and CTE (Common Table Expression)12/26/2023 7:51:55 AM. This article will discuss SQL Table like items, including temp table, table variable, CTE, Table-valued Parameters.
  • How To Define Variables And Constants In R11/17/2023 6:28:57 AM. In this article, I am going to explain about variables and constants in R.
  • Params Keyword With IEnumerable In C# 6.011/6/2023 11:31:48 AM. The params keyword in C# allows you to pass a variable number of arguments of the same type to a method. This feature simplifies method calls when you need to pass a variable number of arguments witho
  • How To Save Verbose() To A Variable in LangChain?10/26/2023 7:58:16 AM. I encountered an issue when using a LangChain agent, as I could only access the final output. However, the problem was solved by initializing the agent with 'return_intermediate_steps=True'. T
  • How we can Write Optimized Code in JavaScript10/26/2023 4:35:20 AM. In this article, we will see How we can write optimized code in JavaScript
  • C# 7.0 - Tuples To The Extreme!10/23/2023 6:05:41 AM. C# 7.0 - Tuples to the Extreme! A C# tuple is a data structure that has a specific number and sequence of elements. An example of a C# tuple is a data structure with three elements (known as a 3-tuple
  • Calling Unmanaged Functions Which Take A Variable Number Of Arguments From C#10/23/2023 5:12:44 AM. Many C# programmers are familiar with the Platform Invoke mechanism (using the DllImport attribute) for calling unmanaged functions from C#.
  • Calculate Fibonacci Series In Various Ways Using C#10/20/2023 6:27:38 AM. This article provides various ways to calculate the Fibonacci series including iterative and recursive approaches, It also exlains how to calculate Nth Fibonacci number.
  • How To Add/Edit Path Environment Variable In Windows 1110/12/2023 5:15:37 AM. In this article, I will let you know about ways by which you can add or edit the path environment variable in windows 11.
  • Is There Any Need To Boxing And Unboxing10/10/2023 11:10:32 AM. With Boxing and unboxing one can link between value-types and reference-types by allowing any value of a value-type to be converted to and from type object. Boxing and unboxing enables a unified view
  • Various Ways to Pass Data From Controller to View in MVC10/9/2023 11:31:47 AM. In this article, we discuss how Controllers interact with Views and how you can pass data from a Controller to a View to render a response back to a client.
  • Working Of Reference Type And Value Type10/9/2023 5:36:31 AM. This article shows you all the difference between reference and value type variables.
  • Look At Covariance And Contravariance In Delegates10/6/2023 10:32:36 AM. In this article, we will look into Covariance and Contravariance in Delegates using C#.In the context of delegates in C#, "covariance" and "contravariance" refer to the ability to
  • Introduction To Var Datatype In C#10/4/2023 4:46:58 AM. This article introduces us to var datatype in C#.
  • Object Vs var Vs Dynamic Type in C#9/22/2023 10:54:17 AM. In this article you will learn about Object Vs var Vs Dynamic type in C#.
  • R Programming9/20/2023 6:20:53 AM. In this article, we'll take you through the basics of R programming, providing examples to help you get started on your journey to mastering this language.
  • Type Inference in C#9/20/2023 5:31:24 AM. Understand what is type Inference in C# and how to implement it in your code.
  • Closures In C# Demystified9/15/2023 6:25:45 AM. Closures In C# Demystified" is a concept that helps clarify the behavior of closures in the C# programming language. A closure is a function that captures variables from its outer scope, allowing
  • Const, ReadOnly And Static Variables In C#9/10/2023 10:06:01 PM. C# (C Sharp) is a versatile programming language developed by Microsoft. It offers a rich set of keywords that enable developers to create powerful and efficient applications. Keywords like `class` al
  • JavaScript Basics9/5/2023 11:42:31 AM. JavaScript is an object-based computer programming language commonly used to create interactive effects within web browsers.
  • Object vs Dynamic vs Var and ExpandoObject9/4/2023 11:26:11 AM. In C# and .NET, "Object," "dynamic," "var," and "ExpandoObject" are different ways to work with data types, each with its own characteristics and use cases. Let
  • Difference Between Value Type And Reference Type9/4/2023 11:11:55 AM. This article tells us the difference between value type and reference type variables.In programming, data types are categorized as either "value types" or "reference types." These
  • R Data Frame Operations - Adding Observations / Rows And Variable / Column To A Data Frame In R8/31/2023 6:23:04 AM. In this article, we shall learn about adding observations/rows and variables/column to a Data Frame in R in different ways.
  • .NET Static Variables : Better than Application!8/29/2023 9:04:59 AM. In traditional ASP, we always had the Application object to store application-wide variables in.In the .NET framework, both static variables and the Application object provide ways to store data that
  • PowerApps Collections Variable8/25/2023 9:51:50 AM. In this article, you will learn about PowerApps Collections Variable.
  • When should you use the 'var' keyword in C#?8/24/2023 9:55:12 AM. ‘var’ is a contextual keyword that was first introduced in C# 3.0. It’s described as contextual because it’s only a keyword when used in a certain context - in other contexts it can be used as an ordi
  • Various Operations in Dictionary Using C#8/24/2023 6:35:26 AM. The Dictionary type in the C# language provides fast lookups of keys to get their values. It allows use of keys and values of any type, including integers and strings.
  • Params In C#: Pass Variable Number Of Parameters To Method8/18/2023 11:12:57 AM. In this article we will discuss about params keyword in C# and how to pass variable number of parameters to method.
  • How to break "Apply To Each" Loop using Variables in Power Automate8/7/2023 6:02:37 AM. In this article I'm going to explain about how to close the power automate flow using varibales if we are inside "Apply to Each" loop as we can't use terminate action directly