Search found 8 matches

by harvestsnow
Tue Dec 27, 2011 8:02 pm
Forum: The Hacker's Server
Topic: "503 Service Temporarily Unavailable" Errors
Replies: 1
Views: 10979

Hello, I've had the same problem since a week or two. The svg version of the map appears messed up too, I don't know if there is a link. I suppose the bandwith and CPU capacity of the server are already pretty huge. Maybe some users are trying to solve the Cave Master problem without any delay betwe...
by harvestsnow
Sun Dec 25, 2011 11:32 pm
Forum: Challenges Solved
Topic: Inscrutable
Replies: 14
Views: 1539

Hello,

For the injection, I used

Code: Select all

'UNION SELECT (ASCII(SUBSTR(password, $index,1))>>$shift)&1 FROM user where name='root'#
, with 1 as password.

And there's a way to get the source of the page, I don't know if it's intended.
by harvestsnow
Fri Dec 23, 2011 2:57 pm
Forum: Challenges Solved
Topic: A Piece of Pi
Replies: 7
Views: 1207

And a lot of apocryphal versions. But Shakespeare is more user-friendly.
by harvestsnow
Tue Dec 13, 2011 8:34 am
Forum: Challenges Solved
Topic: Random Problem
Replies: 11
Views: 2498

Hello, I suppose Math.abs(x) returns -x if x is negative and x otherwise. In two's complement, -x is the same as ~x+1 (inverse all the bits of x and add 1). But -2^31 is represented by 0x80000000; it stays the same when you apply the algorithm, as 0 does. So --2^31 is still -2^31. And as gfoot said,...
by harvestsnow
Mon Dec 12, 2011 10:30 am
Forum: Challenges Solved
Topic: Spiral Bits
Replies: 31
Views: 4932

Well, that was a nice challenge! Interesting combination of data analysis and programming ideas. In the end I certainly spent more time on it than if I had done it manually, but that's not really the point. I used a simple approach. First repaint the image in three colors. I decided that a pixel was...
by harvestsnow
Sun Dec 04, 2011 6:38 pm
Forum: Challenges Solved
Topic: Surely Smallester Mouse
Replies: 23
Views: 7761

I didn't know about the 1 hour penalty, I based my estimations on 30s/try. And there is a slightly better 19 solution (roughly (7/40)**5), with a "nop" instruction that I don't know how to drop or use. Thanks for confirming that this is the expected solution. After all, it's less intensive...
by harvestsnow
Sat Dec 03, 2011 6:02 pm
Forum: Challenges Solved
Topic: Surely Smallester Mouse
Replies: 23
Views: 7761

I found the same too.

Out of curiosity, teebee, what is the success rate of your 19 instructions mouse?
I have one that could theoretically pass the tests once in two days, but I'm a bit reluctant about poundering the server.

Code: Select all

10>1>::>p
could also work about once a month...
by harvestsnow
Fri Nov 25, 2011 12:00 pm
Forum: Challenges Solved
Topic: Super Small Hello World
Replies: 10
Views: 1014

Amazing puzzle! My first idea was to use numeric representation, pushing digits on the stack and converting them into ascii chars. This is pseudo-base-9: 10574819781600317848486744@s!@@@@@ 9*+84*+P$ Obviously this method couldn't satisfy the 29-char constraint. It took me some time to realize that t...