Posts

10 Best Windows Apps to Use in 2021

Image
By Himanshu Sankhala                  Windows users know that, no matter how many new features Microsoft adds to its OS, there are always apps that will boost your use. But most of the Windows users prefer to download apps manually rather than from Microsoft store because of limited availability of the apps. So they have to search apps for every different purpose such as personalization, entertainment, etc throughout the internet. If you’re searching for some best apps for your PC or laptop, here are rounded up 10 most-useful Windows 10 apps  that you should use in 2021. VLC (Entertainment App)   VLC is an entertainment app which is used as a video player. It is the best media player on the PC. It's Much better than default Microsoft media player with more options and more supported video format. Watching movies is where you can get the best experiences with this app. VLC is an open source project which means a free app to us...

Steps for setting up your project on git hub

Image
By Himanshu Sankhala This blog will be helpful for the user who have developed their project and want to upload on GitHub and they don't know much about GitHub. Step 1:    D wnload Git bash on you system                  https://git-scm.com/downloads Follow the instructions  here  to install git (if it's not already installed). Note that for this tutorial we will be using git on the command line only. Step 2:   Create your account on GitHub                   https://github.com/ Step 3: Open git bash and cd to the folder where your project is.      Step 4:  After cd to your project folder just initialise your repository.                 $ git init                   After that (master) will be appear. Step 5: After this y...