Posts

Showing posts with the label Project

Password Protect a Folder in Windows 10 without using any Additional Software

Image
Everyone has some persnal and confidential information which he he/she does not want to share with other people. In our computer there are some very confidential files also. To hide these files we generally use some third party softwares. But in this article, I will tell you a trick that will help you lock and hide any folder without installing any third-party software. With just a simple .bat file, you can protect your folders easily. Whenever you want to open the protected folder, a password will be required before the folder becomes visible and accessible. So, without further delay, follow the steps given below to password protect a folder : First of all, open the folder you want to secure with a password. You can see in the below animation that I’ve created a folder named “ Test, ” which consists of an image and an HTML file. Now, create a new text file inside the same folder. You can name the text file according to your choice. I’m naming it “lockFolder.txt.” Copy the followin...

Install VS Code in Android

Image
Visual Studio Code is a source-code editor made by Microsoft for Windows, Linux and macOS. Features include support for debugging, syntax highlighting, intelligent code completion, snippets, code refactoring, and embedded Git. In this post, we will see how you can install vs code on an android device. We will use one of the most popular android terminals simulation called termux. This will allow you to use all of VS code functionality using your Web Browser. Here are the steps how you can install : Step 1 - Install termux In order to install VS code, you will have to install termux using the following link. Download Termux The official release available on the play store doesn't seem to get the packages updated for some reason. If upgrade command doesn't work on your termux, try to change the default repo by using the command below: termux-change-repo Step 2 - Install ubuntu using termux Enter the following command on termux and ubuntu will start to install on your A...

How to make a Snake game using HTML , CSS and JavaScript

Image
Introduction : A Snake Game is a greate project for improving your skills in Web Development. You can improve your skills in HTML , CSS and JavaScript. You can also learn how Animation Frame works in HTML, Advanced CSS properties and also some intermediate level JavaScript Language in this project.You can mention this project in your resume by some further improving. So lets start... Setting Up The Project:  To start the creating the project here we need  is a Text Editor or an IDE. In this tutorial we will use Microsoft Visual Studio Code (VS Code)   .  Please download and install VS Code from here .   Click here to learn how to download VS Code Now another thing you need to downlod is an extension called Live Server . It will help us to use the live reload for our project.   After succesful installation of VS Code open it and goto Extension manager and search for Live Server and install it. Now we are ready to start the project. Start the Project: N...