Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Answer/answer.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ME, okay,HAHA,
4 changes: 2 additions & 2 deletions Clues/Where/How/clue.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ console.log(`How will you complete this puzzle?
You will write some commands in the command line.
This code will create a file in ../../Answer
So make a directory now with mkdir ../../Answer
And then navigate to the What folder. How will you do it?
`)
And then navigate to the What folder. How will you do it?
`);
14 changes: 8 additions & 6 deletions Clues/Who/clue.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ switch (process.platform) {
shaCommand = "sha256sum answer.txt";
break;
case "win32":
shaCommand = "certutil -hashfile answer.txt SHA256"
shaCommand = "certutil -hashfile answer.txt SHA256";
break;
default:
console.log(`Oh no, we didn't recognise your operating system, process.platform = ${process.platform}`);
console.log(
`Oh no, we didn't recognise your operating system, process.platform = ${process.platform}`
);
process.exit(1);
break;
}

console.log(`Who is never gonna give you up?
Never gonna take you down?
Never gonna run around and desert you?
console.log(`Who is never gonna give you up? ME
Never gonna take you down? okay
Never gonna run around and desert you? haha
😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂
Put your answer in the answer.txt file you created.
echo "ANSWER HERE" > answer.txt
Expand All @@ -29,4 +31,4 @@ When you're done, run:
${shaCommand}

And paste the output into Slack thread 🧵 (create a new thread if there isn't one already).
`)
`);
3 changes: 2 additions & 1 deletion Clues/Who/help.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
console.log(`How do you move a file?
Try typing mv into the command line.
What happens?
What should you google to figure out the right command?`)
What should you google to figure out the right command?
moved the file.`);