Yep, my hunch was correct. Gonna try other ones now to see if there's anything I like.

6 years ago
Permalink

Comment has been collapsed.

Good job! :)

6 years ago
Permalink

Comment has been collapsed.

Thank you. Cheers for giving a little bit of mental exercise to keep my brain from atrophying.

6 years ago
Permalink

Comment has been collapsed.

Ah, just the right amount of puzzle I needed at the right time. Many thanks!
Also, check my SG profile and see if you find something you like. :)

6 years ago
Permalink

Comment has been collapsed.

I'm at work, near quitting time, and trying to find ways to pass the time, other than actually doing my job. So there we have it. :P

6 years ago
Permalink

Comment has been collapsed.

Always a good reason.

6 years ago
Permalink

Comment has been collapsed.

o/

6 years ago
Permalink

Comment has been collapsed.

i LIKe PuzzLE aNd binARY Code

6 years ago
Permalink

Comment has been collapsed.

Thanks for puzzles :)

6 years ago
Permalink

Comment has been collapsed.

First I tried to search unicode symbols
Unicode Puzzle

6 years ago
Permalink

Comment has been collapsed.

Nice puzzle :)
Out of curiosity, are there any tools to do these kind of encoding or did you write something yourself? (can't really believe this was done by hand :) )

6 years ago
Permalink

Comment has been collapsed.

I think most people use XLATE, which I found out from the thread zelghadis made about puzzles here on SG

6 years ago
Permalink

Comment has been collapsed.

Thanks for the link, I knew the puzzle guide but must have overlooked xlate so far.
But as far as I can tell, it also only does the standard conversion (ascii <> binary <>hex etc), but not the mapping of binary to case that is used here, or am i missing something on the site?

6 years ago
Permalink

Comment has been collapsed.

Not unless I missed something too 😉.

I was actually wondering about that, whether everyone was just converting the case to 1s and 0s by hand or if there was a faster way (it did get a little tedious 😄)

6 years ago
Permalink

Comment has been collapsed.

Well decoding can be done pretty fast with notepad++ f.e. replace (with regex) [A-Z] with 1 and [a-z] with 0.
For the encoding i couldn't find anything, beside writing a program which does it, but i somewhat doubt this was the case(at least for most poeple), considering all the answers in the same style.

6 years ago
Permalink

Comment has been collapsed.

I made a little c# statement in LINQpad

Set string ga to the giveaway code, set enc to the encoded text to use (repeats as necessary)

string ga = "acFYD";
string enc = "puzzle";
int pos = 0;

foreach (char c in ga)
    foreach (char b in Convert.ToString(c, 2).PadLeft(8, '0'))
        Console.Write(b == '1' ? enc.ToUpper()[pos++ % enc.Length] : enc.ToLower()[pos++ % enc.Length]);
6 years ago*
Permalink

Comment has been collapsed.

Ah nice, thanks for that.
Makes me wonder if the others that replied in the same style also wrote something themselves or did it by hand after all :)

6 years ago
Permalink

Comment has been collapsed.

see that code is actually so nice- the shit I wrote was just a mess thrown together in python in comparison

post = "random text"
binary = "".join(format(ord(x), "b") for x in post)  # Stolen from stack overflow
enc = "bump" * 20  # Cause I'm lazy

encoded = []

for a in range(len(binary)):
    if binary[a] == "1":
        encoded.append(enc[a].upper())
    else:
        encoded.append(enc[a].lower())

f = open("out.txt", "w")
f.write("".join(encoded))
f.close()
6 years ago
Permalink

Comment has been collapsed.

Nothing for me, but thanks for the puzzle stlpaul 😎👍

6 years ago
Permalink

Comment has been collapsed.

Wow, that was really clever, I liked it

6 years ago
Permalink

Comment has been collapsed.

It's nice when a random thought like "maybe it's just a way of hiding binary" pays off. Very interesting puzzle format.

6 years ago
Permalink

Comment has been collapsed.

Nice puzzle!

6 years ago
Permalink

Comment has been collapsed.

Yay!

6 years ago
Permalink

Comment has been collapsed.

Meow

6 years ago
Permalink

Comment has been collapsed.

The moment I looked at it, it remainded me Binary Code, but I was tried and said "I'm illusinating".
Well, I guess I underestimated my mind :)
Thank you!

6 years ago
Permalink

Comment has been collapsed.

I kept trying to think what a 25 digit code could be for before I realized it wasn't one code.

6 years ago
Permalink

Comment has been collapsed.

Hello

6 years ago
Permalink

Comment has been collapsed.

I needed the hint, both to figure it out and for a good chuckle. Thanks!

6 years ago
Permalink

Comment has been collapsed.

I am here!

6 years ago
Permalink

Comment has been collapsed.

Thank you!

6 years ago
Permalink

Comment has been collapsed.

You're welcome & have fun! :)

6 years ago
Permalink

Comment has been collapsed.

You do not have permission to comment on giveaways.