Related resources for date
  • What is Incremental Static Regeneration (ISR) in Next Js.?7/22/2024 6:13:17 AM. "Incremental Static Regeneration (ISR) in Next.js combines static site generation with server-side rendering, allowing pages to be updated after the initial build. It uses getStaticProps with a r
  • Understanding View Binding in Android7/22/2024 4:30:54 AM. View binding is a feature that makes it easier to write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that
  • After Business Rules in ServiceNow: Scenarios and Best Practices7/22/2024 3:49:40 AM. After Business Rules in ServiceNow execute after a database operation, enabling actions that depend on the successful completion of the initial operation. Common scenarios include audit logging, trigg
  • Two Factor Google Authenticator Using ASP.NET Core And Angular7/18/2024 12:26:15 PM. Implementing 2-Factor Google Authenticator with ASP.NET Core and Angular enhances security by requiring users to provide a time-based one-time password (TOTP) alongside their password.
  • Creating a complete CRUD (Create, Read, Update, Delete) application in Angular 7/10/2024 5:14:12 AM. Build a CRUD application in Angular using Angular CLI for setup, components for UI, services for data management with HttpClient for API interactions. Implement CRUD operations (Create, Read, Update,
  • Check Service Principal Names Expiration Date in Microsoft Entra ID7/9/2024 9:02:27 AM. This guide outlines the steps to check Service Principal Names (SPN) expiration dates using the Azure portal, ensuring the smooth operation of Azure-based applications. It includes signing in, navigat
  • SQL Server 2016 - How To Detect The Current Cumulative Update/Service Pack That Was Installed7/4/2024 7:36:25 AM. Learn how to detect the current Cumulative Update or Service Pack installed on SQL Server using various methods like ServerProperty in T-SQL, SQL Server Management Studio, Configuration Manager, and P
  • Centralized Project Updates with Teams Messaging Extension7/2/2024 5:25:29 AM. Learn how to create a Microsoft Teams Messaging Extension to centralize project updates from multiple project managers into OneNote. From this article, we learn to set up a Power Automate flow to save
  • Understanding the -fsSL Command in Docker6/28/2024 6:40:23 AM. Discover the meaning and usage of the -fsSL command in Docker, how it enhances automation and simplifies Docker-related tasks, ensuring smooth operations.
  • SQL Merge Statement: Syntax, Usage, and Example6/25/2024 5:51:39 AM. The SQL MERGE statement combines INSERT, DELETE, and UPDATE operations into a single query, synchronizing data between source and target tables based on key fields. This powerful command efficiently h
  • OnPush Change Detection Strategy: Optimizing Angular Performance 6/21/2024 10:02:53 AM. Angular's OnPush change detection strategy optimizes performance by reducing unnecessary checks, only updating when input properties change or events occur. This approach, contrasting with the def
  • Learn CRUD Operations in SQL Server with Real-World Examples6/21/2024 7:09:54 AM. CRUD represents the four basic operations: Create, Read, Update, and Delete, essential for managing persistent data in SQL Server. The Create operation involves adding new records to a table using the
  • Implementing Webhooks with Next.js6/21/2024 6:42:03 AM. In this article we will learn about implementing webhooks in Next.js empowers our application with real-time capabilities, allowing seamless integration with external services and automating business
  • Availability Set, Fault Domains And Update Domains In Azure Virtual Machine6/20/2024 11:42:21 AM. Plan Azure Virtual Machines effectively using Availability Sets for fault tolerance. Understand Fault Domains and Update Domains to distribute VMs across hardware and manage updates, ensuring high ava
  • 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.,
  • Installtion Mongo DB in Ubnutu Enviroments and Configure6/19/2024 11:58:47 AM. Install MongoDB on Ubuntu by updating packages, adding GPG key, configuring repository, and installing MongoDB. Manage MongoDB services, start, reload, check status, and interact using Mongosh. Uninst
  • Overview of .NET 9 Preview: New Features and Updates6/19/2024 5:48:12 AM. Explore the .NET 9 preview with an in-depth overview of its new features and updates. Discover the latest enhancements, performance improvements, and innovations that this release brings to developers
  • AWS Management (1) --- File Update6/17/2024 4:30:53 AM. This article will describe one Single example of AWS task: File Update.Amazon Web Services (AWS) offers cloud computing platforms on a pay-as-you-go basis. This article outlines the workflow to update
  • The Stochastic Gradient Descent 6/16/2024 8:56:36 AM. This article delves into Stochastic Gradient Descent (SGD), a cornerstone algorithm in machine learning and optimization. It explains how SGD optimizes model training by iteratively updating parameter
  • Insert, Update and Delete Data With DataGridView in Windows Form Using WCF Service6/13/2024 10:56:57 AM. Learn how to perform Insert, Edit, Update, and Delete operations in a DataGridView using a WCF Service in C#. This tutorial covers creating a SQL Server database table, implementing a WCF Service with
  • Digicash Payment Gateway Webhook Real-Time MVC UI Updates6/13/2024 8:43:37 AM. In this article, we will learn how to integrate the Digicash payment gateway into your MVC web application with real-time UI updates using webhook callbacks.
  • Validate Your Blazor Form Using EditForm6/13/2024 8:22:26 AM. Blazor server-side, part of ASP.NET Core 3, introduces form validation via Context API and Redux. DataAnnotation attributes simplify validation logic, enhancing user experience and minimizing code com
  • SSE in .NET Core API Real-time Updates in Angular6/13/2024 8:09:56 AM. The implementation of Server-Sent Events (SSE) in a .NET Core API to deliver real-time updates to an Angular application. You'll learn how to set up SSE in the backend to push live data streams an
  • Automate MySQL Database Updates with Cron Jobs in Node.js6/13/2024 7:59:28 AM. Learn how to automate MySQL database updates using cron jobs in Node.js with this comprehensive step-by-step guide. Discover how to schedule tasks, write automated scripts, and maintain your database
  • Learn Webhook vs. Callback URL6/13/2024 7:20:48 AM. Webhooks and callback URLs are key in web development, enabling real-time updates and automatic interactions. Webhooks push data on specific events, used in real-time notifications and CI/CD. Callback
  • Getting Particular Timezones Current Date Time in SQL Server6/12/2024 5:53:14 AM. To retrieve the current date and time for specific time zones in SQL Server, use the query SELECT * FROM sys.time_zone_info. This query returns information about supported time zones, including their
  • Automating Tag Updates for Azure Function Apps with PowerShell6/12/2024 5:27:02 AM. Learn how to automate tag updates for Azure Function Apps using PowerShell. This guide covers essential scripts and techniques to efficiently manage and update tags across your Azure resources.
  • 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
  • Understanding Different Types of SQL Triggers in SQL Server6/11/2024 9:14:12 AM. SQL Server triggers are powerful tools that allow the automatic execution of SQL code in response to specific events on a table or view. They play a crucial role in maintaining data integrity, enforci
  • How to Add jQuery Datepicker in MVC6/6/2024 11:44:19 AM. Integrating jQuery Datepicker in MVC enhances user experience by allowing easy date selection. It's implemented with JavaScript, HTML, and CSS, offering interactive calendar functionality within A
  • Progress Bar in ASP.NET MVC6/6/2024 11:33:00 AM. Progress Bar in ASP.NET MVC utilizes Bootstrap, jQuery, and AJAX for dynamic updates. It offers visual feedback on task progress, implemented through partial views, async operations, and JSON data bin
  • 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
  • CRUD Using ASP.NET MVC 5 And Entity Framework6/5/2024 11:31:44 AM. ASP.NET MVC 5 with Entity Framework enables seamless CRUD operations, facilitating efficient data management in web applications. Leveraging C# and .NET Framework, developers can implement robust solu
  • Dynamic jQuery Tabs - Add, Update, Delete And Sorting 6/5/2024 8:14:32 AM. Learn to manage dynamic jQuery tabs effortlessly with functionalities like adding, updating, deleting, and sorting. Enhance user experience and interface customization with intuitive tab control and r
  • Using UpdateProgress Control in AJAX5/30/2024 10:23:50 AM. Learn how to implement the UpdateProgress control in AJAX to enhance the user experience by displaying a loading indicator during asynchronous postbacks. This tutorial covers the basics of setting up
  • Working with Dates and Times in Python Using Pendulum5/30/2024 7:48:54 AM. Pendulum is a powerful Python library for handling dates and times. It simplifies working with timezones, supports date manipulation, formatting, parsing, and provides convenient methods for datetime
  • Update SharePoint List Items Using SPServices And Batch5/29/2024 8:55:01 AM. Efficiently update SharePoint list items using SPServices and batch processing in JavaScript. Streamline data manipulation, enhance performance, and automate updates for improved SharePoint list manag
  • Disable Future and Past Date Of AJAX Calendar in ASP.Net C# 5/28/2024 11:21:18 AM. In this article, Learn how to enforce date restrictions in your ASP.NET C# application using AJAX Calendar control. This tutorial guides you through disabling future and past dates, ensuring users can
  • Disable jQuery UI Calendar Past And Future Date In ASP.NET MVC5/24/2024 9:16:51 AM. Disable past and future dates in jQuery UI Calendar in ASP.NET MVC for enhanced date selection control. Utilize minDate and maxDate options to limit selectable date range, ensuring users can only pick
  • Insert, Update, Delete In GridView Using ASP.Net C#5/24/2024 8:57:34 AM. ASP.NET C# enables seamless data manipulation in GridView with Insert, Update, and Delete operations. Utilize events like RowEditing, RowUpdating, and RowDeleting along with DataSource controls like S
  • .NET Framework 4.6 New Features in Visual Studio 20155/17/2024 11:04:43 AM. .NET Framework 4.6, integrated with Visual Studio 2015, introduces several new features and enhancements. Key improvements include the new RyuJIT compiler for better performance, updated async debuggi
  • How to Auto-Refresh Grid View on Closing of Popup Menu5/17/2024 11:00:41 AM. Auto-refresh GridView on closing popup: Utilize JavaScript or jQuery to trigger a postback or AJAX call upon popup closure. Update GridView data source server-side to reflect changes dynamically, enha
  • How does React Batch Multiple State Updates?5/14/2024 6:08:08 AM. React optimizes performance by batching state updates and processing them asynchronously to minimize re-renders. It intelligently merges updates and provides explicit batching with batchedUpdates(), e
  • Train and Validate Datasets in Machine Learning5/13/2024 8:28:32 AM. In machine learning, where algorithms are trained to learn patterns from data and make predictions or decisions, the role of datasets cannot be overstated. In this article, we explore the significance
  • Kiss Your Databse Only Once!!!5/9/2024 11:52:37 AM. Kiss Your Database Only Once" advocates for efficient database interaction, emphasizing the DRY principle. By centralizing database access, it enhances code maintainability, readability, and perf
  • Analyzing VVF & VCF License Usage in vSphere 8.0 Update 2b5/8/2024 4:24:17 AM. Explore the new VMware vSphere Foundation (VVF) & VMware Cloud Foundation (VCF) license usage in vSphere 8.0 Update 2b for efficient virtualization.
  • Create Or Update Excel Sheet From Azure Web Job5/2/2024 9:55:28 AM. In this article, I would like to share the steps and code to create/update an Excel from an Azure web job. Using Microsoft.Interop.Excel, we can create and update the Excel sheet but in Azure web job,
  • How to Turn Off Automatic Updates In Windows 105/1/2024 11:39:39 AM. Learn the importance of computer updates, especially in Windows 10, for security and performance. Understand Microsoft's automatic update system and discover methods to disable updates, enhancing
  • How to Bind and Perform Update, Edit, Delete Operation on DataList Control in 3 Tier in ASP.Net5/1/2024 11:10:55 AM. Learn how to implement CRUD operations on a DataList Control in ASP.NET using C#. This tutorial guides you through creating a three-tier architecture with an SQL Server Database, designing the UI, wri
  • The Built-in Date Object in JavaScript4/29/2024 5:11:25 AM. JavaScript's Date object simplifies date and time handling in applications. Learn how to create, manipulate, format dates, handle timezones, and perform operations for dynamic web experiences.
  • Validation Application Block (Enterprise Library 5.0)4/25/2024 6:02:29 AM. Validation is a process that ensures the sanity of data entered, received, or processed by a software module, class, or class members.Some examples of validation are length check, range check, Null ch
  • Unity Muse Features Expanded In Editor With 3 New Updates4/24/2024 11:11:53 AM. Real-time collaboration enables developers to work together from anywhere, boosting synergy and speeding up creativity. It encourages teamwork, enhances knowledge exchange, and leads to top-notch resu
  • Entity Framework 6 CRUD Stored Procedures: Code-First Approach4/23/2024 11:22:38 AM. Learn how to implement Insert, Update, and Delete operations using stored procedures in Entity Framework 6 with a Code First approach. This tutorial covers setting up stored procedures, mapping them t
  • Update Data Using Code First Approach4/22/2024 7:44:10 AM. Explore updating data with ASP.NET and Entity Framework's Code First approach. Define Employee model, set up DbContext, and create a Webform for user input. Implement logic to update employee det
  • Start With AngularJS: Part 54/22/2024 7:41:23 AM. AngularJS filters transform data for display. They format numbers, dates, and strings, select subsets from arrays, and order arrays. Templates in AngularJS include static ones, defined within script t
  • Sorting Rows By Table Header In AngularJS 4/21/2024 2:22:24 PM. Learn how to implement bidirectional data sorting in AngularJS using table headers. Utilize ng-click and ng-class directives for interactive sorting indicators. Employ orderBy filter for sorting data
  • Deploying WPF Application with ClickOnce Deployment Techniques4/19/2024 10:25:56 AM. Explore ClickOnce as a deployment method for WPF applications. Learn about its update mechanism, deployment scenarios, and configuration options, along with its limitations and prerequisites. Understa
  • Deploying WPF Apps with Click-Once in Visual C# Express4/19/2024 10:24:11 AM. Deploy WPF apps seamlessly with ClickOnce in Microsoft Visual C# 2010 Express. Simplify distribution, enable automatic updates, and ensure easy installation, all within the .NET environment for effici
  • Delete and Update Data With Entity State (Deleted) Via EDF Framework4/18/2024 1:13:26 PM. Explore how to manipulate data using Entity State (Deleted) and (Modified) via EDM Framework in ASP.NET applications. Learn to delete and update data efficiently by managing entity states. Utilize ASP
  • MySQL Queries Cheat Sheet4/18/2024 3:54:25 AM. In this article, we will learn about MySQL querying essentials, covering basic SQL commands, data manipulation functions, constraints, and frequently asked questions, providing valuable insights for b
  • What's New In Angular 8.0 And How To Upgrade To Angular 84/16/2024 11:34:13 AM. Discover the latest features and enhancements in Angular 8.0, from the new Ivy renderer to improved lazy loading strategies. Learn how to seamlessly upgrade your projects to leverage the power of Angu
  • Handling Date Time In Excel To SharePoint List4/15/2024 11:42:15 AM. Automate handling Email attachments named "Excel.xlsx" in Outlook by adding them to SharePoint library. Read Excel data, insert/update in SharePoint list based on primary key. Manage Date Ti
  • C# Out Parameter: Usage, Syntax, and Updates4/15/2024 11:31:21 AM. C# out parameters facilitate passing method arguments' references. Unlike ref, they need not be initialized. With C# 7.0, parameters can be directly defined in the method, streamlining code. A wi
  • SQL Server System Functions: Aggregate, String, Math, Date4/15/2024 11:17:36 AM. Learn about SQL Server system functions including aggregate, string, mathematical, and date time functions. Explore their syntax and examples for efficient database operations. Ideal for beginners an
  • Update Multi-Values with People Picker Field in Power Automate/Microsoft Flow4/12/2024 11:14:14 AM. Learn to update multi-values in the people picker field using Power Automate or MS Flow. Discover how to find an Office 365 group ID, list group members, and add them to a multi-value people picker co
  • Introduction to Web Service with Example in ASP.NET4/11/2024 10:53:13 AM. Explore creating web services in ASP.Net for code reuse across multiple applications. Understand web method attributes, platform independence, and date conversion functionalities. Examples demonstrate
  • Insert, Update and Delete Data in HTML54/11/2024 6:18:40 AM. Learn to perform CRUD operations in HTML5 using JavaScript and SQL. Create a form with text boxes and buttons for data manipulation. Use JavaScript to interact with the database, showing, updating, an
  • Best Practices for Working with DateTime, UTC, and Offset in C#4/9/2024 5:50:01 PM. Discover best practices for handling DateTime, UTC, and Offset in C# with expert insights from Ziggy Rafiq, ensuring efficient time management in your applications Learn best practices, tips, and cod
  • Date and Time Input Types of HTML 54/9/2024 9:10:11 AM. Explore the versatility of HTML5's date and time input types, essential elements in web form design. Learn how to utilize these input types effectively for enhanced user experience and simplified
  • Customize Current Theme From Power BI Desktop Without Using JSON - Part One4/8/2024 8:44:58 AM. In this article, we will talk about how we can customize the current Power BI report theme in Power BI.
  • Employee Salary Updates Using SQL Update with Inner Join Query4/5/2024 9:16:51 AM. Explore how to update employee salaries while ensuring that each employee has only one salary per job. We'll accomplish this task using the UPDATE statement with INNER JOIN in SQL. Let's dive
  • ASP.Net MVC 6 New Features4/2/2024 10:28:10 AM. Explore the cutting-edge advancements in ASP.NET MVC 6 with its array of new features. Delve into the world of cross-platform development, streamlined middleware architecture, and enhanced performance
  • Background Refresh: Keeping Your App Updated and Responsive4/1/2024 3:57:44 AM. In this article you will learn optimal techniques for ensuring your app stays updated and responsive through the background refresh.
  • How to Implement DateTime Localization in Vue.js3/29/2024 6:53:35 AM. DateTime localization in Vue.js customizes date and time displays to users' language and region preferences. Utilizing Intl.DateTimeFormat API, developers format dates dynamically for personalized
  • Keeping Large Table Statistics Current - TF23713/28/2024 6:33:21 AM. Statistics are the magic ingredient that helps the query optimizer create its best guess for generating an execution plan. Keeping statistics as accurate as possible will give the optimizer the inform
  • What Is Date Correlation Optimization?3/28/2024 6:27:07 AM. OK So, I am doing some digging and peaking around again in SQL Server and came across a database option called Date Correlation Optimization Enabled = False. Honestly, I had no clue what it did, so I
  • Synchronous VS Asynchronous Statistics Updates3/27/2024 9:36:27 AM. In this article, we will explore the impact of synchronous and asynchronous statistics updates on system performance and data processing. Analyze real-time updates versus delayed processing, consideri
  • Optimizing Dynamics 365: Thread Jobs for Multiple Record Updates 3/27/2024 8:56:42 AM. In this article, we will learn how to utilize Thread Jobs for Updating Multiple Records in Dynamics 365 using PowerShell Script. Retrieving all Contact Records and Updating First and Last Names using
  • Automate Candidate Screening with ChatGPT AI in Process Automation 3/27/2024 4:30:29 AM. Microsoft introduces the ChatGPT model, revolutionizing customer interactions and internal communication. Businesses adopt ChatGPT for automated tasks, enhancing productivity and personalized experien
  • History and Evolution of Visual Studio and Supported .NET Versions3/22/2024 7:18:14 AM. This article gives a Brief overview of Visual Studio's evolution and its significance in software development. Description of each major version of Visual Studio from 1997 to 2022, highlighting ke
  • Update a Contact record in Dynamics 365 (D365) using PowerShell3/21/2024 8:37:45 AM. Update a Contact record in Dynamics 365 (D365) using PowerShell involves modifying existing contact information within the D365 environment programmatically. This process utilizes PowerShell scripting
  • Adding Date Validation In Dynamics 365 Portal3/15/2024 11:09:43 AM. This article is about implementing custom java script validation in Dynamics 365 portal web page. We will discuss how we can show our own custom validation message to portal user.
  • How to Install the Windows Server Update Services?3/15/2024 8:52:45 AM. In this article, we will learn how to deploy and configure Windows Server Update Services (WSUS) on your Windows Server 2012 system with this comprehensive guide.
  • Validate Multiple Tokens with Different Providers in ASP.NET 8 API3/15/2024 5:47:48 AM. Learn to validate multiple tokens from different authentication providers in an ASP.NET 8 API. Configure authentication schemes for each provider, accommodating diverse token formats and validation re
  • How to Fetch Daily, Weekly, Monthly, and Yearly based Data in SQL3/12/2024 10:59:03 AM. In SQL, fetching data based on specific time intervals like day, week, month, and year is essential for meaningful analysis.
  • What is DateTime Manipulation in C#?3/12/2024 9:09:31 AM. Master DateTime manipulation in C# with this comprehensive guide. Explore methods like 'Add' and properties for modification, extract components, and learn about rounding and truncating DateTi
  • Trigger a Journey when a record is updated using Plugin C# Code3/8/2024 2:06:06 PM. To trigger a journey when a record is updated using C# plugin code.
  • What is Change Data Capture(CDC)3/7/2024 7:31:17 AM. Change Data Capture (CDC) is a method used in databases to track and capture changes in data. It enables real-time updates by identifying and recording modifications made to the database, facilitating
  • JavaScript Date Formats in TypeScript3/7/2024 5:03:38 AM. When it comes to handling dates in JavaScript, understanding various date formats is essential for creating dynamic and user-friendly applications. The JavaScript Date object empowers developers to wo
  • Working With Date and Time in Java3/4/2024 11:45:39 AM. This article provides a comprehensive overview of the functionalities of the java.util.Calendar class through code demonstrations. It covers various operations on date objects utilizing methods from t
  • Date Time Form Input Type in HTML53/4/2024 11:32:06 AM. HTML5 introduces various input types for handling dates and times, including date, time, datetime-local, month, and week. These input types enhance user experience and simplify data entry on web forms
  • Workweek Date Calculation for Start, End, and Due Dates3/4/2024 10:50:28 AM. This article provides guidance on displaying the start and end dates of working weekdays in a Time Sheet App built in PowerApps. It outlines steps to set up a dropdown for week selection, determine th
  • How Much C# Development can Dynamics 365 Accommodate3/4/2024 5:33:09 AM. In this presentation, we will unravel the capabilities and possibilities that arise when marrying C# with Dynamics 365.
  • Understanding Regional Settings in SharePoint3/1/2024 11:50:45 AM. This guide offers a comprehensive overview of Regional Settings in SharePoint, emphasizing their significance in enhancing user experience and fostering global collaboration. It covers the functionali
  • How To Validate An Email Address In Java2/29/2024 9:15:29 AM. Learn how to validate email addresses effectively in Java using regular expressions. This tutorial provides a comprehensive guide on implementing email validation, covering regex patterns, Java code e
  • How To Update Graphics Card In Windows 102/28/2024 7:09:28 AM. In this article, Learn how to update your graphics card on Windows 10 for optimal performance. Ensure your GPU drivers are up to date with our step-by-step guide. Discover how to navigate Device Manag
  • Power Automate Flow to Update Sharepoint Column Value2/27/2024 12:03:52 PM. In this article, I will be explaining how you can update the old value to the new value in the SharePoint list column using power automate flow.
  • Windows Defender - Virus and Spyware Definitions Update Failed2/26/2024 9:33:23 AM. Encounter a problem in Windows 8 where Windows Defender fails to update virus and spyware definitions. Troubleshoot by checking internet connection, updating settings, and ensuring compatibility. Reso
  • Vue.js Lifecycle Hooks: 'beforeUpdate' and 'updated'2/23/2024 5:21:52 AM. In this part of our guide to Vue.js lifecycle hooks, we delve into two more crucial hooks: 'beforeUpdate' and 'updated'. These hooks provide developers with powerful tools to execute a
  • What Are Single File Components in Vue.js2/22/2024 6:48:29 AM. 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 str