***!!! SPOILER ALERT !!! CONTAINS PUZZLE SOLUTIONS !!!***
AMAZING! I am only finding this now, but I really enjoyed this game! It was creative, funny, and really quite interesting to play! I did glance at the first couple of comments before I downloaded the game. My antivirus was all in a huff, and I wanted to see if it was going to be worth the trouble, but they didn't really give much away.
I used powershell, which really made it less of a drag. Lol, that thousand log puzzle was the one I solved the fastest. I looked at the first file and realized that I only needed to search for the line that didn't have the word "OK".
The puzzle that really stumped me was the password creation one. Yeah, I'm an idiot. I spent half an hour trying to look for clues as to what password I should be putting in before finally going to the source code and realizing that I just hadn't been creating a strong enough password. Duh.
Here is my solution. I cleaned it up a bit. If somebody wants to use it, just remember to run it piece by piece as you solve the puzzle, not all at once.
``` #Directories $downloadDirectory = "C:\User\Downloads" $documentDirectory = "C:\User\Documents" $encryptedLogFile = "C:\User\Desktop\computers_in_a_nutshell.enclog" $thousandLogFormat = $documentDirectory + "\computers_in_a_nutshell_{0:00000}.log"
#Run The Game cd $downloadDirectory .\Computers.in.a.Nutshell.exe
#The Encryption Puzzle cd $downloadDirectory .\Computers.in.a.Nutshell.exe --decrypt-log
#Find The Encryption Key (Get-Content $encryptedLogFile -Encoding UTF8 | Out-String) -replace '\s+', ''
#The Thousand Log File Puzzle 1..1000 | ForEach { $thousandLogFormat -f $_ } | ForEach { Get-Content $_ } | Where-Object { !($_).Contains("OK") }
#The Gamma Correction Puzzle
PrintScreen ->
Paste into Paint.net, Gimp, or some other image editing software ->
Global select by color one of the black squares,
and the one that is not selected is the one to click.
cd $downloadDirectory .\Computers.in.a.Nutshell.exe --fix-graphics
#The Password Puzzle (Note: You must achieve a "Very Strong" in order to progress.) cd $downloadDirectory .\Computers.in.a.Nutshell.exe --gamma=1.72,-0.246,7
#The Final Round (It's the home stretch. You can let it all out; tears, laughter, roars, etc...) cd $downloadDirectory .\Computers.in.a.Nutshell.exe --version=0.0.12.43785634 ```