Search found 144 matches

by therethinker
Thu Sep 10, 2009 1:45 am
Forum: Tapeworm
Topic: Great puzzle!
Replies: 18
Views: 82130

Also, does everyone have the same problems?
There really shouldn't be an issue of sharing answers since solvers/code could be shared too...
by therethinker
Mon Sep 07, 2009 9:05 pm
Forum: Tapeworm
Topic: Great puzzle!
Replies: 18
Views: 82130

Very awesome puzzle. Hex board is fun, yet a PITA to work with (in a good way :D) As tails said, its amazing how well this puzzle scales. How are you generating the puzzles? I was doing some by hand and noticed a few (around level 30, when they were harder) that consisted of only 1 snake and took 2 ...
by therethinker
Sun Jul 12, 2009 2:23 am
Forum: Challenges
Topic: Some one has takeover my yahoo ID...
Replies: 4
Views: 9465

I am in Australia so I can not even go to FBI.. there is nothing like FBI here...
What happened to ASIS?
by therethinker
Fri Jul 10, 2009 3:57 am
Forum: Challenges Solved
Topic: Didactic XOR Cipher 2
Replies: 15
Views: 2375

Here it makes sense to brute force it because of the small key size. I *believe* that my solver threw out solutions w/ a character less than ' ' except \r & \n, or w/ characters greater than 'z'. If I wanted to be anal, I could have picked out all the symbols inbetween, but this only returned a ...
by therethinker
Wed Jul 08, 2009 4:33 am
Forum: Challenges
Topic: King Mouse
Replies: 19
Views: 25672

As for loops, all I'll say is that look at goto-style instructions. Conditions are also important. There's no "proper" way, but there's 1 or 2 instructions that are used.

And memory as a pointer? Why not?
by therethinker
Tue Jul 07, 2009 6:38 am
Forum: Challenges
Topic: King Mouse
Replies: 19
Views: 25672

The point is to force you to think low and (ab)use tricks that you wouldn't dare do if you were writing in a high-level env. You really have to understand how the VM works and the oddities of the instructions; there are a few that really can be tricked and coerced.
by therethinker
Sun Jul 05, 2009 11:28 pm
Forum: Challenges
Topic: King Rat submission fails
Replies: 5
Views: 10510

There are no line breaks in "real" HVM, nor are there comments.
HVM programs should be 1 line.
by therethinker
Sun Jul 05, 2009 3:33 am
Forum: Challenges Solved
Topic: Inscrutable
Replies: 14
Views: 1506

I tried using binary search something wierd happened and I got "uifmvwuibucvsot". So I ended up doing it by hand. On the last one I did "binary" search by hand (but not really binary, more like 10's). So I used LIKE '% %' to figure out all the characters that were in it (thankful...
by therethinker
Sun Jul 05, 2009 2:37 am
Forum: Challenges Solved
Topic: Forced Entry
Replies: 17
Views: 3010

I like guxx's method. I did it letter-by-letter, but while I was doing it I figured there must have been a simpler way, considering 70+ people have solved it...
by therethinker
Thu Jul 02, 2009 8:52 pm
Forum: Challenges
Topic: Didactic Blue
Replies: 44
Views: 84606

If you don't have the answer, you're doing it wrong!
(that was a hint, not an insult :P )
by therethinker
Mon Jun 29, 2009 3:08 am
Forum: Challenges
Topic: Wanna Be A Hacker, Please Help.
Replies: 10
Views: 14763

Go out to a golf course, hit a bunch of bad shots and tear up the fairway.
You'll earn the "hacker" status, just not in the CS or EE circles ;-P
by therethinker
Mon Jun 29, 2009 3:07 am
Forum: Challenges
Topic: Visual IDE for SuperHack
Replies: 21
Views: 33345

Heh, expect us to abuse the heck out of superhack in order to cut down on cycles/codesize :P
by therethinker
Wed Jun 24, 2009 7:20 am
Forum: Challenges Solved
Topic: Number Theory
Replies: 6
Views: 3038

Thanks, and nice use of tools! It wasn't mean to be incredibly hard to factor; the challenge was deciphering the encoding scheme.

Also, 433^11 was not intentional, I'll let adum know ;-)
by therethinker
Tue Jun 23, 2009 8:47 pm
Forum: Challenges Solved
Topic: strlen
Replies: 29
Views: 6886

I tried writing an assembler that also had a few more utility functions (!= loops, for example). It was meh... It was easier to do them by hand.

(Reminder that adum doesn't want us sharing assemblers, but talking about them, I presume, is fine)
by therethinker
Mon Jun 22, 2009 1:23 am
Forum: Challenges Solved
Topic: lotsa dots
Replies: 26
Views: 4567

coderT: cheater :P

@megabreit re PeterS: that last line is "valid", it didn't just have indentation removed. It just uses the functional paradigm of python. Once you use functional programming (usually from another language) you start to use it all the time in python :D