Posts

Showing posts from November, 2019

How to make cool code running in the background like in TV Shows & Movies. (Matrix.bat)

Image
I was Really facinated with code i saw running on computers in movies and shows like Arrow and Star Labs in The Flash. Its actually not that hard,you can even do it,open several windows and leave it in your background so that people think you hacking or doing some dope PC stuff Lol. I will show you how to do the same thing with very simple code with windows batch files. First you have to do is to make a txt file.lets say text.txt then rename it to matrix.bat right click it and select Edit Notepad will open and wite the following: ################################################################################# @echo off Title Tracking Reverse Flash goto :SetGreen :SetGreen color a1 2>nul goto :Start REM Comment:you Can Change the value of  "(10-1)" bellow to "(99-1)"to allow random REM background color change if you want it.you an aslo Add random word inside after "echo". :Start set /a color=%random% * (10-1) / 32767 + 1...

Making An AI (Artificial Inteligent ) Chat Bot with Batch Files

I developed a really good AI with batch files for about a month slowly building it and giving it more functions ,as i did not find a script that i was happy with online. comment bellow if you wish me to write the guidlines to make and customize yours from my development files.