err0r.net

<my little piece of the internet/>


Category: Code Snippets

Instantly Sleep Your Monitors With a One-Click BAT File (Windows 11)
Code Snippets Thursday, 1 January 2026, 11:12 AM

Instantly Sleep Your Monitors With a One-Click BAT File (Windows 11)


Want a quick way to turn off your monitors immediately, without putting your PC to sleep? This tiny batch file does exactly that. Your screens will go dark instantly and wake back up the moment you move the mouse or hit a key. What this does This script sends Windows the “turn off display” command. (...)
0 Likes 0 Comments
Read More
Sample of code syntax highlighter
Code Snippets Sunday, 16 August 2020, 4:57 PM

Sample of code syntax highlighter


Simple javascript output example

<!DOCTYPE html>
<html>
<body>

<h2>My First Web Page</h2>
<p>My first paragraph.</p>

<p>Never call document.write after the document has finished loading.
It will overwrite the whole document.</p>

<script>
document.write(5 + 6);
</script>

</body>
</html> 




0 Likes
Read More