Why not spend a little time playing about with some interesting and cool hacks we have found for you to try :)

Activate GOD MODE in Windows

God mode has been a “feature” of Windows since 7 and has remained throughout to our current Windows 10. It is essentially a collection of every setting for your computer in a single folder on the Desktop labelled God Mode. To activate it, first you need to be an Administrator, so check that you are in Settings/Control Panel. Then do the following:

  • Create a new folder on the desktop by right clicking anywhere on the desktop and go to new Folder.
  • Copy and paste this line as the folder’s name: GodMode
  • The folder will change it’s icon and label. Double click the folder to find a list of every setting available for your PC.

Create password protected folders with Notepad in Windows

Need to lock down a folder? Well you can with Notepad. Just open Notepad (search for it in the start menu), and paste the following code into it.

@ECHO OFF title Folder Private if EXIST “Control Panel.” goto UNLOCK if NOT EXIST Private goto MDLOCKER :CONFIRM echo Are you sure you want to lock the folder(Y/N) set/p “cho=>” if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Private “Control Panel.” attrib +h +s “Control Panel.” echo Folder locked goto End :UNLOCK echo Enter password to unlock folder set/p “pass=>” if NOT %pass%== YOURPASSWORD goto FAIL attrib -h -s “Control Panel.” ren “Control Panel.” Private echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDLOCKER md Private echo Private created successfully goto End :End

Save that as private.bat somewhere on your PC. This bat file will serve as the script to make your folders. Just double click it and a password protected folder will be created. Change the password by editing the bat file where YOURPASSWORD is to whichever password you like.

Mini Games in OSX

There are a few mini games hidden inside OSX which you can play through the use of Terminal. To play them, just open the Terminal (click “Go” and then “Utilities” to get to the folder) and type in emacs

Then you can type either

tetris, pong or snake

to play those games! Hours of fun!

Star Wars and other things via telnet

This one is cool. You can watch an entire film via your Terminal using telnet. And the film is in ASCII Art. :-o

To do this, in Windows 10, you first need to enable the Telnet Client. Click on the start menu and search for Control Panel. Go to Programs and Features and then Turn Windows features on or off. Check the box next to Telnet Client and wait for it to do it. Once that is done, you can right click on the start menu and select Command Prompt (or Powershell). Then just enter the following telnet command:

telnet towel.blinkenlights.nl 23

Sit back, grab some popcorn and enjoy!

Interesting Hack 1

Interesting Hack 2

Or maybe Nyan Cat is your thing?

telnet -t vtnt miku.acm.uiuc.edu

Or a game of Chess?

telnet freechess.org.

Or speak to an AI psychotherapist

telnet telehack.com then type eliza

Interesting Hack 3