How To

How to use regexp in javascript
By Tan Lee Published on Aug 29, 2024 224

Regular expressions (regex) are a powerful tool for pattern matching and text manipulation in JavaScript.

How to get url parameter in javascript
By Tan Lee Published on Aug 28, 2024 240

To get URL parameters in JavaScript, you can use the URL and URLSearchParams objects, which are part of the modern JavaScript API and make it quite straightforward.

How to Format numbers with commas in Javascript
By Tan Lee Published on Feb 16, 2024 466

To print a number with commas as thousands separators in JavaScript, you can use a few different methods.

How to check if string contains in javascript
By Tan Lee Published on Aug 28, 2024 272

In JavaScript, there are several methods to check if a string contains a specific substring.

How to use PowerShell Operators
By Tan Lee Published on Aug 26, 2024 259

PowerShell offers a variety of operators for performing operations on data. These operators fall into several categories, including arithmetic, comparison, logical, and more.

How to convert string to date time in C#
By Tan Lee Published on Aug 02, 2024 610

To convert a string to a DateTime in C#, you can use several methods depending on the format of your date string.

How to set up the Ezoic API for CDN Management
By Tan Lee Published on Feb 03, 2024 470

This example uses the Ezoic API to automatically purge pages from the ezoic CDN whenever your post or page is updated in c#.

How to Get all drives in C#
By Tan Lee Published on May 06, 2024 524

In C#, you can retrieve all drives available in the system using the DriveInfo class from the System.IO namespace.

How to fix 'The underlying connection was closed: An unexpected error occurred on a send'
By Tan Lee Published on Feb 16, 2024 850

The error "The underlying connection was closed: An unexpected error occurred on a send." typically occurs when there's a problem with the SSL/TLS communication between your application and the server.

How to use Lazy loading and Earger loading in Entity Framework
By Tan Lee Published on Feb 16, 2024 425

Entity Framework (EF) supports both lazy loading and eager loading to manage how related entities are loaded.

How to Turn off lazy loading for all entities in Entity Framework
By Tan Lee Published on Feb 16, 2024 785

Turning off lazy loading in Entity Framework (EF) is useful when you want to avoid performance issues or control the loading behavior of your entities more explicitly.

How to use Generic Repository Multiple Includes in C#
By Tan Lee Published on Feb 16, 2024 983

Using a Generic Repository pattern with Entity Framework (EF) can help to abstract and centralize data access logic in your application.