Browsed by
Author: DevSaint

Install SQL Server Express 2019 on Windows

Install SQL Server Express 2019 on Windows

In this blog we are going to see how to install the Microsoft SQLServer 2019 Express Edition on Windows machine. First we need the installer. This we can download from microsoft’s site : https://www.microsoft.com/en-in/sql-server/sql-server-downloads After downloading double click on the installer to start installing it. At this point, the SQL Server has been successfully installed on your system. Next step is to download and install the Management Studio a.k.a SSMS [SQL Server Management Studio] for managing all the SQL Server…

Read More Read More

Hello World in C#

Hello World in C#

Writing your first program in C# is fairly simple. All you need is an IDE -> Visual Studio. For this blog, i am using visual studio 2019. Steps to follow : Open visual studio Click on “Create a new Project”, and select “Console App (.Net Core) Click Next. Give a proper project name like “Hello World” and desired directory and solution name and click “Create”. It will take some time a load the project. Visual studio by default write a…

Read More Read More

Hello World in Angular

Hello World in Angular

Getting started with angular is pretty simple now. All you need is a code editor, installed node [for npm] and you are good to go. First and foremost you need to have node install in your computer. To install the latest version of node Go to this website : https://nodejs.org/en/download/ Download the relevant installation for your OS/machine architecture Install it on your system Follow steps as prompted by installer. To verify successful installation, open command prompt/power-shell and type “node -v”,…

Read More Read More

How to read configurations from an .ini file in Python

How to read configurations from an .ini file in Python

Reading a configuration file like .ini file is fairly simple in Python. First we need to have an ini file as shown below : The above file is an .ini file which contains sections in square brackets as [SectionName]. Then a section contains few key value pairs as IPAddress = 192:168:1:10 To read such a file, we need to mention the section name as well as the key name inside the section whose value we want to retrieve. Below mention…

Read More Read More