Search found 8 matches
- 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...
- Sun Dec 25, 2011 11:32 pm
- Forum: Challenges Solved
- Topic: Inscrutable
- Replies: 14
- Views: 1539
Hello,
For the injection, I used, with 1 as password.
And there's a way to get the source of the page, I don't know if it's intended.
For the injection, I used
Code: Select all
'UNION SELECT (ASCII(SUBSTR(password, $index,1))>>$shift)&1 FROM user where name='root'#
And there's a way to get the source of the page, I don't know if it's intended.
- Fri Dec 23, 2011 2:57 pm
- Forum: Challenges Solved
- Topic: A Piece of Pi
- Replies: 7
- Views: 1207
- 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,...
- 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...
- Sun Dec 04, 2011 6:38 pm
- Forum: Challenges Solved
- Topic: Surely Smallester Mouse
- Replies: 23
- Views: 7761
- 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.
could also work about once a month...
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
- 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...