This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // factors: (-b +- sqrt(b^2 - 4ac)) / 2a | |
| // rev4: added precision level | |
| const prompt = require("prompt-sync")({ sigint: true }); | |
| function ask() { | |
| // asking what the three bases are | |
| var a = prompt("What is a? "); | |
| var b = prompt("What is b? "); | |
| var c = prompt("What is c? "); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| So windows and microsoft have decided to hide spyware (like REALLY hide it) and it basically just spies on you and stuff | |
| So here's how to turn it off because its kinda interesting how data is the most important thing nowadays.. | |
| First check if its running: | |
| Start a powershell prompt with admin privileges | |
| Then type: | |
| DISM /Online /Get-FeatureInfo /FeatureName:Recall | |
| To see if it is online on your PC (it most likely is) |