Search found 10 matches

by dotme
Thu Mar 12, 2009 8:41 pm
Forum: The Hacker's Server
Topic: HEY!
Replies: 26
Views: 20136

Would be funny to change all passwords of acounts who didn't yet. They can recover it by "Lost password".
by dotme
Thu Mar 12, 2009 8:05 pm
Forum: The Hacker's Server
Topic: Server hacked
Replies: 111
Views: 317826

m!nus wrote:there was a reason noone posted that link
hrhr :lol:
by dotme
Wed Mar 04, 2009 10:02 pm
Forum: The Hacker's Server
Topic: List of Hacker.org members online
Replies: 16
Views: 19928

Passwords should still be updated. (for email too if you happen to use the same password) That should be emphasized ! People using the same combination of username/email and password for common web-services should change their passwords immediatly!!! I would also recommend suspending accounts at ha...
by dotme
Sun Jan 25, 2009 1:20 am
Forum: General Puzzles
Topic: Chart history's meaning
Replies: 2
Views: 20268

days since starting (0) to play that puzzle?
by dotme
Fri Jan 02, 2009 11:37 pm
Forum: Challenges Solved
Topic: Breakout Extreme
Replies: 13
Views: 1614

I hate KISS, but after my first attempt to modify "blockDied" failed, I went the same way like tog - making all borders to bounce and left the applet alone.
Changing the levels so that they consist only of one block showed that the solution seems to be based on the number of blocks?!
by dotme
Wed Dec 31, 2008 3:32 pm
Forum: Challenges Solved
Topic: Broken Key
Replies: 12
Views: 4191

Broken Key

Hmm, I expected this to be harder. My 1st idea was to decrement both values in a loop and break out when the first number falls to zero. But before testing this solution I thaught about the cycle limit and potentially negative values and discarded that idea. But as I didn't had an idea how to test f...
by dotme
Sat Dec 13, 2008 3:39 pm
Forum: Challenges Solved
Topic: Typo
Replies: 5
Views: 1237

I just filled in the values and reformed the equation 8841 = 79 * 2245 + (79 * 2 - 7); 8841 = 79 * 2245 + 151; // - 151 8690 = 79 * 2245 // / 79 110 = 2245 Than the solution was obvious how to modify "2245" to solve this equation. It was likely that the first term "79 * 2245" has...
by dotme
Sun Dec 07, 2008 7:56 pm
Forum: Challenges Solved
Topic: Bigger Fib
Replies: 10
Views: 2286

Bigger Fib

That was fun. While solving "Big Fib" with bc driven by a perl-script and using the dijkstra-simplification, I realized that getting the solution for this challenge would take more time and cycles than I want to spent on it. So, I changed to C with GMP and was really thrilled by the speed ...
by dotme
Thu Nov 27, 2008 5:51 pm
Forum: Challenges
Topic: One Minute man challenge
Replies: 10
Views: 15459

Re: client or server time

If it were client time then you could spoof the packets ... Normally, HTTP doesn't expect that the client sends a "Date" header with the request. So, I don't think the server cares about one, if given. Anyway, I solved it and asked myself afterwards if I missed any hint on what time the o...
by dotme
Wed Nov 19, 2008 12:05 pm
Forum: Challenges Solved
Topic: UpCount
Replies: 28
Views: 6527

I turned the program into a for-loop starting with 1 and solved it with that perl-snippet

Code: Select all

my $depth;
my $cc = 1;
for ( $depth = 1; $depth <= 11589; $depth++ ) {
    $cc = $cc + ($depth % 7) + (((($cc ^ $depth) % 4) == 0) ? 1 : 0);
}
print $cc, "\n";