Resources  
  • Refactoring Common Code with Azure Bicep User Defined FunctionsMar 19, 2024. Learn how to use Bicep's new feature (in preview currently) called "User Defined Functions" to make deploying your cloud resources on Microsoft Azure easier. This blog will teach you a simple way to write code that you can reuse over and over again, making your projects more organized and easier to manage.
  • Creating Distributed Map-Reduce Job via AWS Step Function Mar 18, 2024. Example of distributed map-reduce job using AWS Step Function on the example of the generative art piece. The article explains using AWS Step Functions to orchestrate lambdas in a distributed serverless architecture, with examples and considerations for robustness.
  • PowerApps Canvas Patch Upsert Dynamics 365 RecordsMar 15, 2024. Build a PowerApps Canvas app to efficiently manage Dynamics 365 records with Patch and Upsert operations. Seamlessly integrate and synchronize data, enabling customizations and streamlined record management within your Dynamics 365 environment.
  • Static Resource vs Dynamic Resource in WPFMar 11, 2024. Delve into WPF's resource binding, exploring both static and dynamic approaches. Static binding offers performance benefits and compile-time validation, while dynamic binding allows runtime updates, enabling dynamic theming. Happy coding!
  • Tan function from Power Fx using Power AppsMar 08, 2024. Reading this article, you can learn how to perform Tan function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Dynamic Theme Change Across Canvas App ScreensMar 07, 2024. This C# method compares files using WinMerge, generates an HTML report, and sends it via email. It utilizes ProcessStartInfo for execution, with configurable options and paths for comparison and output.
  • Understanding FORMATMESSAGE() Function in SQL ServerMar 06, 2024. In this article, we will discuss how to use FORMATMESSAGE() function in SQL Server, its advantages and usages with example.
  • Asynchronous Programming in Angular Promises vs. ObservablesMar 06, 2024. Asynchronous programming plays a crucial role in modern web development, especially in Angular applications where data fetching, event handling. In this article, we'll delve into the differences between promises and observables, their usage, and provide code examples to illustrate their behavior.
  • Automate Email Generation with Power Automate Email SignaturesMar 04, 2024. This HTML snippet fetches an email signature using Microsoft Power Automate. It uses an ID attribute to target a specific div element and utilizes inline code to access and display the signature dynamically from the "Get_Email_Signature" action's output.
  • What are Properties in C#? Mar 04, 2024. In this article, we will learn about properties in C#, different types of properties, how to define and use them, and some best practices when working with properties in C#, properties in C# are a way to encapsulate data and provide controlled access to it.
  • Difference Between Collect and ClearCollect in PowerAppsMar 01, 2024. In PowerApps, the Collect and ClearCollect functions play pivotal roles in managing data within your applications. Collect appends data to an existing dataset, while ClearCollect replaces the entire contents, refreshing the dataset. Master their nuances for effective data management.
  • What is the Purpose of Vue.js Compiler?Feb 27, 2024. The Vue.js compiler transforms Vue.js templates into JavaScript render functions, parsing templates, generating an optimized Abstract Syntax Tree (AST), and producing efficient render functions for seamless browser execution.
  • Java Applet Design: File, Edit, and Search Options with ActionPerformed FunctionsFeb 26, 2024. Create an Applet with the menu bar and add the following menus: File, Edit and Search. Add default menu items to the respective menus. In the File menu, add the following items: New, Open, Save and Close.
  • An in-depth look at C# 10 and performance improvementsFeb 24, 2024. Get a comprehensive analysis of Ziggy Rafiq's latest C# 10 enhancements and how they affect application performance. Discover how function pointers simplify method invocation, records enhance memory efficiency, and pattern-matching optimisations speed up execution. Discover how to use C# 10 features to optimise performance and user experience for your projects by exploring code examples illustrating these improvements.
  • What Is a Render Function in Vue.jsFeb 23, 2024. In Vue.js, the render function programmatically generates the virtual DOM for a component, offering flexibility, performance, reusability, and JSX support. Explore its usage and benefits with examples.
  • What Is Function Shorthand in Directive Hooks in Vue.jsFeb 22, 2024. Vue.js directive hooks, using the "function shorthand," provide a concise and readable way to define directive behavior directly within a component, improving simplicity, organization, scoping, and IDE support.
  • How to Pass a Parameter to Event Handler or Callback in React.jsFeb 22, 2024. In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
  • How to Generate a Popup Message Box in Power AppsFeb 16, 2024. This article guides us through implementing a popup message box in Power Apps for deleting gallery items. A standard gallery with a delete button is used. Clicking it triggers a confirmation alert. 'Delete' removes the item, 'Cancel' dismisses.
  • Cybersecurity of External Streaming Data - Integrity Feb 14, 2024. This article delves into cybersecurity considerations for external data, particularly streaming bitstreams. It explores the use of cryptography, focusing on hash functions to ensure the integrity of bitstreams.
  • Understanding Azure Event GridFeb 12, 2024. Azure Event Grid is a fully managed event routing service that simplifies the development of event-driven applications. In this article, we'll explore the key concepts, features, and use cases of Azure Event Grid, shedding light on its role in building modern, scalable, and responsive applications.
  • Cos Function from Power Fx Using Power AppsFeb 09, 2024. Reading this article, you can learn how to perform Cos function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • 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.
  • Mastering T-SQL Rank FunctionsFeb 06, 2024. SQL window functions like ROW_NUMBER, RANK, DENSE_RANK, and NTILE are vital for advanced data analysis. They organize, order, and rank data within result sets. ROW_NUMBER assigns unique sequential numbers, RANK assigns unique ranks allowing ties
  • 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.
  • 5 Ways To Handle Rest API Request In React Using CRUD FunctionsJan 31, 2024. Manage REST API requests in React using CRUD operations. Vanilla JS employs Fetch API, useState, and useEffect. Axios library offers cleaner syntax with interceptors. Extend Axios for CRUD operations.
  • Power Function from Power Fx Using Power AppsJan 29, 2024. Reading this article, you can learn how to perform Power function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Calling Your Own Functions In Chatbot - OpenAI Function CallingJan 22, 2024. This article explains how we can make a call to external functions using OpenAI’s Assistant API. Learn to call external functions using OpenAI's Assistant API. Get API keys, create an assistant, invoke tools, and make API calls. A step-by-step guide for building AI assistants.
  • Simulating Sleep/Wait Functionality in TypeScriptJan 21, 2024. In many programming languages, developers often utilize a sleep or wait function to introduce a pause in the execution of a program for a specific duration.
  • 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.
  • What is Hoisting in JavaScript ?Jan 17, 2024. 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.
  • Building a Secure PHP MySQL Signup/Login Website with Email VerificationJan 15, 2024. Creating a secure signup/login system is essential for any web application that involves user authentication. In this article, I'll guide you through building a PHP MySQL login/signup website with email verification. I'll focus on security best practices, including password encryption using PHP's built-in functions.
  • Sqrt function from Power Fx using Power AppsJan 12, 2024. Reading this article, you can learn how to perform Sqrt function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Exploring Function Behavior in C#Jan 11, 2024. Understanding the nuances of function behavior in C# is vital for crafting well-structured and efficient code. Whether dealing with functions that involve no arguments, no return values, or exploring the versatility of function overloading, developers can leverage these concepts to create modular, readable, and adaptable code.
  • SQL Functions and Examples.Jan 10, 2024. This article provides you with many built-in SQL functions including aggregate functions, date functions, string functions, control flow functions, window functions, and math functions.
  • Exploring the Power of Action and Func Delegates in C#Jan 10, 2024. Delegates play a pivotal role in C# programming, offering the ability to pass methods as parameters, store them as variables, and create custom events and callbacks. Among these, two special types of delegates—Action and Func—stand out for their ability to simplify code, enhancing readability and maintainability.
  • Log function from Power Fx using Power AppsJan 08, 2024. Reading this article, you can learn how to perform Log function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Ln Function from Power Fx Using Power AppsJan 05, 2024. Reading this article, you can learn how to perform Ln function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Understanding the One-Way Nature of HASHBYTES in SQLJan 05, 2024. This article delves into the cryptographic world of hashing algorithms, emphasizing the irreversible nature of these functions. Learn why HASHBYTES, a widely-used function for creating hash values in SQL Server, isn't designed for decryption but serves as a vital tool for data integrity, password security, and more.
  • Default Lambda Parameters in C# 12Jan 05, 2024. C# 12 introduces a game-changer: default lambda parameters. This article delves into this powerful feature, showcasing its functionalities, advantages, and practical applications through detailed examples across diverse scenarios. Learn how to reduce code duplication and enhance readability.
  • Exp Function from Power Fx Using Power AppsJan 04, 2024. Reading this article, you can learn how to perform Exp function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • What is Delegates in C#?Jan 03, 2024. Explore the power of delegates in C#, providing type-safe function pointers for indirect method invocation. Learn declaration, initialization, characteristics, and use cases for enhanced code flexibility and extensibility.
  • Abs function from Power Fx using Power AppsJan 03, 2024. Reading this article, you can learn how to perform Abs function from Power Fx using in Microsoft Power Apps. Also, you will be able to learn Button control, Label control and TextInput control in the Power Apps environment.
  • Azure Functions in ASP.NET Core Web APIJan 01, 2024. Azure Functions, a component of Microsoft's serverless computing offerings in Azure, enable developers to create and deploy small, event-driven code without managing infrastructure. These functions, supporting languages like C# and JavaScript, automatically scale and integrate with Azure services, streamlining the development of serverless applications and microservices.
  • React Function ComponentsDec 27, 2023. Embark on a magical coding journey into the enchanted land of React function components. Discover the wizardry of creating reusable spells, understand the magic of Hooks, and become the hero coder.
  • Building Azure HTTP Trigger Function to Generate QR Codes from Post Request ResponsesDec 24, 2023. We'll guide you through the process of creating an Azure HTTP Trigger Function using Node.js. The goal is to generate QR codes in response to POST requests.
  • Map() Function in ReactDec 22, 2023. React's map() Function: A Comprehensive Guide with Practical Examples. React's map() function with practical insights. Learn its core principles for manipulating data, from basic array operations to dynamic rendering in React components, enhancing your development proficiency.
  • Building an Azure Queue Trigger Function for Sending Emails with NodemailerDec 22, 2023. In today's digital age, automated processes are essential for improving efficiency and productivity. One such automation is sending emails based on events or triggers. In this blog post, we'll explore how to create an Azure Queue Trigger Function using Node.js and Nodemailer to send emails when a message is added to an Azure Storage Queue.
  • Create and Debug Lambda Function in VS CodeDec 22, 2023. Create an AWS lambda function in the local environment and debug it before pushing it to a cloud environment. With the help of a few tools such as AWS SAM or serverless framework, developers can emulate lambda environment on their local machine; this allows for rapid iteration and testing before deploying the code base into the cloud.
  • Static Constructors in .NETDec 20, 2023. Static constructors in .NET, a special breed in object-oriented programming. Unlike instance counterparts, they initialize once per type, controlling execution order and serving key roles in resource management and initialization. Dive into syntax, usage examples, and crucial considerations. Uncover use cases like resource setup, configuration loading, and the singleton pattern.
  • Clean Code : Avoid Too Many Parameters In MethodDec 18, 2023. In this article I will demonstrate code clean up by passing less number of parameters in method. One common challenge developers face is the Excessive parameters in their methods. Excessive parameters in methods can lead to code that is hard to understand, less readability, and challenging to maintain.
  • Azure Durable FunctionsDec 14, 2023. Azure Durable Functions revolutionize cloud application development by providing a resilient framework for serverless workflows. Learn their core concepts, set up using Azure, and implement a C# example for scalable, stateful processes.
  • Power Apps Search Function With ExampleDec 13, 2023. Learn the Power Apps Search function in this article, covering syntax, applying it to a canvas app, and searching items in the Data Vase Account Entity. Explore multiple searches and gallery controls.
  • 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.
  • Using Date Function in Data Validation in ExcelDec 10, 2023. Learn how to use Excel's DATE function for effective data validation. Set criteria for a date column to ensure entries fall within a specific range, enhancing accuracy and data quality.
  • Guard Functions in AngularDec 07, 2023. Angular's guard functions are the gatekeepers of seamless navigation in applications. From securing routes to managing authentication and implementing role-based access, these functions enforce crucial rules before users can access specific components. This article takes a deep dive into Angular's guard functions, exploring their types and providing practical implementations with code snippets.
  • 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.
  • Azure OpenAI Function CallingDec 01, 2023. Tutorial on utilizing the function calling functionality of Azure OpenAi offering.
  • 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.
  • How to Convert a Month Number to Month Name in PostgreSQLNov 28, 2023. Learn how to convert a month number to a month name in PostgreSQL using the versatile to_char function. Explore format strings like 'Month' and 'Mon' for full and abbreviated names.
  • VSTACK Append in Excel with Total RowNov 24, 2023. In the article, Explore the power of Microsoft Excel with the LET, VSTACK, and HSTACK functions. This article guides you through creating complex formulas for dynamic data combination and summarization across multiple tables.
  • Ranking Function in SQL ServerNov 23, 2023. This SQL Server tutorial explores ranking functions, including RANK(), ROW_NUMBER(), DENSE_RANK(), and NTILE(). With detailed examples, learn how these functions assign ranks, sequential row numbers, dense ranks, and group distribution in result sets.
  • How to Trigger Service Bus using Azure Function?Nov 15, 2023. In this article, we will learn how to trigger service bus queue using azure function.
  • Efficient Data Integration using HSTACK & XLOOKUP FunctionsNov 07, 2023. This article effectively explains how to integrate data from different sources using Excel's HSTACK and XLOOKUP functions. The step-by-step breakdown and the clear demonstration with sample data make it easy for readers to understand and implement the data integration process seamlessly.
  • Azure Functions C#Oct 23, 2023. Microsoft’s primary compute service is Azure function C#. We gain agility in development by focusing on our code and not worrying about server maintenance by using Azure functions. We are seeing the advantages of Azure functions and the simplicity of the event-driven model functions for integrating Azure services.
  • What is Lead and Lag in SQL Server?Oct 20, 2023. SQL Server offers the LEAD and LAG functions for accessing data from subsequent and previous rows in a result set. These functions are instrumental in data analysis and complex query development, enhancing data accessibility and interpretation.
  • Windows Functions in SQL ServerOct 17, 2023. Windows functions in SQL Server are a powerful set of functions that operate across a specific "window" of rows defined by the OVER() clause. These functions allow for computations and aggregations over this defined window, enabling analytical and statistical calculations without altering the overall result set. Commonly used functions include ROW_NUMBER(), RANK(), DENSE_RANK(), SUM(), AVG(), and COUNT(). These functions greatly enhance query capabilities, aiding in tasks such as ranking data, calculating running totals, and performing comparative analyses within specified partitions or orderings. They play a vital role in advanced SQL operations and reporting.
  • TripleDES Encryption and Decryption in C#Oct 16, 2023. Encryption is the process of rendering data unreadable to safeguard it from unauthorized access. It's widely applied in banking, e-commerce, communication, and security. TripleDES (Triple Data Encryption Standard) is a long-standing encryption method, utilizing three 56-bit keys for both encryption and decryption, also known as symmetric-key encryption. This article delves into TripleDES, elucidating its workings, strengths, and limitations. It compares TripleDES with contemporary encryption methods, placing it within the context of modern cryptography.
  • Constructors in C#Oct 12, 2023. In C#, constructors are essential methods responsible for initializing and creating objects within a given class. These functions are invoked when you create an instance of the class. Constructors share the same name as the class and do not have a return type. In C#, there are several fundamental types of constructors.
  • Exploring Patterns in Azure Durable FunctionsOct 09, 2023. This article explains the patterns of azure durable functions.
  • Python in Excel Data Analysis using the New PY FunctionOct 04, 2023. This article delves into performing Data Analysis using the new Python in Excel PY function
  • Implementing DATEDIFF Function In Data Factory / Synapse Via Pipeline ExpressionsSep 27, 2023. Implementing DATEDIFF function in Data Factory / Synapse via Pipeline ExpressionsImplementing the DATEDIFF function in Azure Data Factory or Azure Synapse Analytics using pipeline expressions allows you to calculate the difference between two dates and times. This can be helpful for various data integration and transformation tasks, such as calculating the age of records, measuring time intervals, or scheduling data pipelines based on date differences.
  • Functions in R ProgrammingSep 25, 2023. In this article, we will delve into the world of functions in R programming, exploring their syntax, examples, outputs, and even creating flow diagrams to illustrate their operation.
  • A Deep Dive into Static Classes in C#Sep 25, 2023. This article, "Exploring Static Classes in C#," provides an in-depth exploration of the concept and practical applications of static classes in the C# programming language. It elucidates the fundamental characteristics of static classes, their unique features, and how they differ from regular classes. Readers will gain a comprehensive understanding of how static classes are used to encapsulate static members, such as methods, properties, and constants, within a C# application.
  • Static and Singleton Classes in C#Sep 23, 2023. Object-Oriented Programming (OOP) in C# is a way to organize code neatly. There are two types of classes: static and singleton. Static classes have functions that you can use without creating an object. They're great for simple tasks, but can cause issues if used too much. Singleton classes ensure there's only one instance of a class. They're useful for managing shared resources. Both have pros and cons. Static classes are simple and fast, but may create problems with too much shared data. Singleton classes are good for controlling resources but are more complex. Choose the one that fits your project's needs.
  • Enhancing Code Quality with SonarLintSep 21, 2023. In today's software development landscape, code quality is essential for success. It ensures smooth application functioning, simplifies maintenance, and enhances security. SonarLint is a vital tool that empowers developers to improve code quality from project inception.
  • Exploring Anonymous Functions in C# Sep 18, 2023. Exploring Anonymous Functions in C#
  • Azure Function Data Migration with ASP.NET Core Web APISep 15, 2023. Creating an Azure Function for data migration from one database to another using an ASP.NET Core Web API involves several steps. In this example, I'll provide a high-level overview and code snippets for each step. Please note that this is a simplified example, and you should adapt it to your specific needs.
  • DateTime in SQL ServerSep 13, 2023. In this article we will learn about DateTime in SQL Server
  • Azure Functions Proxies: URL Rewriting and API CompositionSep 12, 2023. Azure Functions Proxies are a powerful feature that allows you to define proxies to control the behavior of HTTP requests and responses to and from your Azure Functions. You can use them for URL rewriting, request/response transformation, and API composition. Here are the steps to use Azure Functions Proxies in an ASP.NET Core application:
  • Boost Azure Function Performance Using Isolated .NET Core Sep 07, 2023. Boosting the performance of Azure Functions using Isolated .NET Core is a great way to ensure that your serverless applications are both scalable and efficient. In this example, we'll walk through a real-world use case and provide a coding example to demonstrate how to optimize Azure Functions with Isolated .NET Core.
  • Using PowerApps Filter Function for All SharePoint List ColumnsSep 06, 2023. This blog will show you how to use the Filter function to organize information in different SharePoint list columns, whether they contain words, numbers, dates, or choices. We'll make it easy with step-by-step instructions, so you can set up filters and customize your app's look. Get the most out of your SharePoint data by learning how to use the Filter function in PowerApps effectively.
  • Serverless Computing with Azure Functions with ASP.Net Core Web APISep 05, 2023. ASP.NET Core Web API, along with a real-world use case, can be a powerful way to demonstrate the capabilities of serverless computing in Azure. In this example, we'll create a serverless Azure Function that processes image uploads to a cloud storage service like Azure Blob Storage. When a user uploads an image through the ASP.NET Core Web API, the Azure Function will be triggered to perform some image processing and then save the processed image back to storage.
  • Exploring Math - Trig, Parent - Child and Relationship Functions in DAXAug 29, 2023. This segment goes beyond the basics and explores functions like CALCULATE, FILTER, and ALL. It covers techniques for creating dynamic measures, time intelligence functions, and handling more intricate data modeling scenarios. Learners will gain insights into optimizing DAX formulas, solving real-world business problems, and building sophisticated data models for enhanced reporting and analysis in Power BI.
  • Exploring Statistical, Table - manipulation and Text Functions in DAXAug 29, 2023. This segment goes beyond the basics and explores functions like CALCULATE, FILTER, and ALL. It covers techniques for creating dynamic measures, time intelligence functions, and handling more intricate data modeling scenarios. Learners will gain insights into optimizing DAX formulas, solving real-world business problems, and building sophisticated data models for enhanced reporting and analysis in Power BI.
  • Securing Azure FunctionsAug 28, 2023. Enhance Azure Functions Security: Practical Measures for Robust Protection. Discover authentication, sensitive data safeguarding, network defense, code fortification, and more. Strengthen your functions' security with straightforward strategies.
  • Exploring Aggregation, Date-Time, and Filter Functions in DAXAug 28, 2023. Discover DAX (Data Analysis Expressions), Power BI's formula and query language for crafting calculated columns, measures, and advanced analytics. Learn about DAX functions categorized into aggregation, date and time, and filtering. Explore insights in this comprehensive guide, with subsequent parts delving into more details.
  • Exploring Financial, Information, and Logical Functions in DAXAug 28, 2023. Explore DAX Functions Part 2: Uncover financial, information, and logical tools in Power BI. From currency conversion to IF statements, optimize your data manipulation and analysis efficiently.
  • SQL Advanced Math FunctionsAug 25, 2023. In this article we learn about SQL's Advanced Math Functions
  • Power BI DAX Top 20 Functions For BeginnersAug 22, 2023. Power BI DAX Top 20 Functions For Beginners. Power BI's Data Analysis Expressions (DAX) language is a powerful tool for creating custom calculations, aggregations, and transformations in Power BI. Here are the top 20 DAX functions for beginners.
  • Boosting Azure Function Performance with Isolated .NET CoreAug 22, 2023. In the article "Leveraging Isolated .NET Core for Azure Functions: Unleashing Performance and Independence," authored by Ziggy Rafiq, readers discover how Isolated .NET Core empowers Azure Functions. This concise piece explores enhanced performance and greater autonomy, enabling efficient cloud-native solutions.
  • Math Functions in JavaScriptAug 18, 2023. Explore essential JavaScript Math functions. Learn to round, find absolute values, calculate square roots, powers, and more, enhancing your math-based programming skills.
  • Types of Functions in JavaScriptAug 17, 2023. Explore various JavaScript functions in this article: Named, Anonymous, Arrow, IIFE (Immediately Invoked Function Expression), Higher-Order, and Constructor Functions. Simplified explanations and examples for each type are provided.
  • call(), apply() & bind() in JavaScriptAug 17, 2023. Explore JavaScript's key concepts: call(), apply(), and bind(). These methods manage function context and arguments. call() lets you invoke a function with specified values, apply() takes array-like arguments, and bind() creates new functions. Gain control over your code's execution and adaptability.
  • How to Use the Dataverse Patch Function?Aug 11, 2023. In this article, we'll delve into the utilization of the patch function for generating a record within a Dataverse custom table. This will encompass tables with intricate columns such as lookup, user, file, image, etc.
  • Start AWS Step Function using .NetAug 11, 2023. Discover how to initiate an AWS Step Function using the AWS SDK for .NET. Learn to leverage Amazon Resource Names (ARNs), prerequisites, and sample code for seamless execution.
  • What is new in C# 12?Aug 08, 2023. Let’s explore the new features in C# 12 with .NET 8 and how we can use it.
  • How To Work with JSON in SQL Server?Aug 08, 2023. In this article, we will learn about How To Work with JSON in SQL Server
  • Top 10 Features of JavaScriptAug 01, 2023. Discover the hidden potential of JavaScript with these tips and Tricks: 10 Useful Features You May Not Know." Unveil the lesser-known, yet powerful, functionalities of this versatile language that will take your coding skills to new heights.
  • Date and Time Functions in T-SQLJul 25, 2023. This article represents the comprehensive guideline for date and time functions in T-SQL.
  • Building a Timer Triggered Azure Function to Fetch Weather Data and Upload to Azure Blob Storage Table Jul 24, 2023. Timer Trigger using Python get weather data and upload azure blob storage table

About static-function

NA

OUR TRAINING