Generate a Self-Signed Certificate on Windows

Self-signed certificate

This tutorial will guide you on how to Generate a Self-Signed Certificate on Windows. To do that, we are going to use a software called OpenSSL. OpenSSL is an open-source command-line tool commonly used to generate private keys, create CSRs, install your SSL/TLS certificate, and identify certificate information. Self-signed Certificate If you are a developer, … Read more

JavaScript Date Objects

Javascript Date object

Javascript date objects are used to work with dates and times. Using the new Date() constructor, we can create a new date object. We can also manually set the year, month, day, hour, minute, second, and millisecond fields using local or UTC or GMT time. This way javascript can represent date and time till year … Read more

How to install Entity Framework Core

How to install Entity Framework Core

This article will guide you on How to install Entity Framework Core. Entity Framework Core can used with .NET Core and .Net Framework 4.6 Web Application. This Framework is not included with .Net Core and .NET Framework. It can be installed using the NuGet package. To use Entity Framework Core in our projects we need … Read more

Using JQuery DataTables in ASP.Net Core

Using JQuery DataTables in ASP.Net Core

This article will create an application that displays a list of users in an Html table Using JQuery DataTables in ASP.Net Core. We will also use Entity Frameworks in this project. We will create a table using the Entity Framework, insert sample data, and display it on our Datatables Grid. What is JQuery Datatable? Jquery … Read more

How to use an SVG file

How to Add Scalable Vector Graphics (SVG)

These past few weeks, I was given a task to create a flat icon design menu. I came across with SVG file, and for a first-time user, it cost me an hour to search on How to Add Scalable Vector Graphics (SVG) to Your Web Page. This article will save you the trouble and show … Read more