Posts

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.

FIXING “FAILED TO LAUNCH THE PYTHON PROCESS IN VSCODE(ERROR SPAWN PYTHON ENOENT)” ERROR AND ERROR INSTALLING PYLINT

Image
#note:this is not professional advise but an explanation of what worked for me as I could not find a solution online that helped me make sure you keep your previous settings recorded to go back if this does not work for you or creates more problems thanks  you Problem : failing to debug or execute python scripts in vscode Always bringing the error: “ ERROR SPAWN PYTHON ENOENT” And “ “ Failed to launch the Python Process, please validate the path 'python' My version on VSCODE: Version 1.14.2 shell 1.6.6 Node 7.4.0 Observation All this is actually a very very simple little misunderstanding by the computer as you will see lol With the different in python versions The call command for python varies in some versions in “py” and in some its “python” therefore if your version of VScode  mistakes your version by using “Python” instead of “py” when it want to execute python commands or code you will have such kind of errors For Example 1...