How to disable JavaScript Debugging in Visual Studio

June 17, 2020 0 comments

Though it is a useful feature, while doing development I have observed browser locking due to JS Debugging in Visual Studio. Though I know JS debugging in Visual studio is a useful feature, it becomes annoying because you have to open new instance of application.  To Disable Java script[...]

MEAN stack environment on the AWS EC2 instance server for free

May 22, 2020 0 comments

Before we start, we have to make sure that AWS account is created. If you don't have AWS account then please create an account with AWS .  By default All new AWS users are placed in the free usage tier. AWS free tire grants, among other features, 750 hrs/month of free Amazon EC2 micro access[...]

Introduction to React JS

March 31, 2020 0 comments

React JS is a popular JavaScript Library for building User Interfaces, which has created by Facebook. With React Js we can build fast Single Page Applications or websites with React. To start with React Introduction, lets answer the very basic question Is React JS a Library or a[...]

How override ASP.NET Core Identity's password policy or How To Customize Password Policy in asp.net Core

February 07, 2020 0 comments

ASP.NET Core Identity uses default values for  password policy settings, in this article we shall see how to override or customize Asp.net Core Identity's password policy ? By default, Identity requires that passwords contain an uppercase character lowercase character, a digit[...]

ionic 4 bluetooth low energy - sample code - Connect to BLE Devices

January 20, 2020 0 comments

In the previous article I had mentioned how to list BLE (Bluetooth Low energy devices), Please refer to Ionic-4 Bluetooth Low Energy Devices - List BLE Devices article. Ionic-4 Bluetooth Low Energy Devices - List BLE Devices In last article we had page Home , we had displayed[...]

ionic 4 bluetooth low energy - sample code - List BLE Devices

January 16, 2020 12 comments

This article will demonstrate usage of cordova-plugin-ble-central with IONIC 4. i.e. Mobile application connectivity with BlueTooth Low Energy Devices. Before we start I assume that you already have ionic4 blank project working. When you run ionic server command following screen should open[...]

Windows 10 Set time automatically not working

December 28, 2019 0 comments

After completing fresh installation of Windows 10 Enterprise Edition, I was setting Date and Time and every time I restart computer it use to get back to some other timings. I had set time automatically and also set time zone automatically as per the screenshot Windows 10 Set time[...]

How to force HTTPS using a web.config file / Redirect Http to Https using web.config

December 27, 2019 0 comments

How to redirect http to https using web config ? To do permanent redirect to https using web.config under Configuration section in web.config file simply add following Rewriting rules. [...]