Tips for gitignore files

git ignore error

Here are some tips for using git ignore files in your projects. I will keep updating this list so keep checking. 1. Creating .gitignore in Windows Explorer If you are trying to create .gitignore from the windows explorer windows throws an error. This is because of historic reasons that file name before the extension cannot … Read more

Docker to increase your productivity

Docker usage in the development and test environment can save you lot of effort and time. Windows containers are new and are still evolving. Using them requires a big change in the mindset. To begin with, the team could start using the docker in the development process to get familiar with the Windows containers.This article talks about … Read more

How to create a self-signed certificate using openssl?

SSL Certificate

What is a digital certificate? Digital certificate contains keys for authenticating the holder of the certificate. It is typically issued by a trusted entity called CA (Certificate Authority). Self-signed certificate is used for testing purpose which is issued by yourself without the need for a Trusted CA. Using OpenSSL to generate self-signed certificate Open SSL … Read more