Search found 16 matches

by Belriel
Thu Mar 05, 2009 10:37 am
Forum: Challenges
Topic: Telecran
Replies: 19
Views: 32915

The "thing" telecran refers to is not known with that word in Germany and strangely google seems to filter pages refering to it somehow. If you are German, try to google at google.xx where xx is any other country than de.
by Belriel
Fri Feb 06, 2009 6:47 pm
Forum: Challenges
Topic: Eniac
Replies: 27
Views: 50401

But the question is What is the biggest number that can be displayed using this abacus (without destroying or rearranging it)? You can use the Chinese abacus with base 16, the two upper beads stand for 5 each, the lower 5 represent 1 each, so 5+5+5=16-1. This one could be used with the left five as ...
by Belriel
Fri Feb 06, 2009 6:40 pm
Forum: Challenges Solved
Topic: One Minute Man
Replies: 39
Views: 10087

Mine was almost the same as aurora's. Running with PHP on command line after some time I had the answer written in the console. But I needed several days because the script stopped execution a few times due to network timeouts. <?php $url = "http://www.hacker.org/challenge/misc/minuteman.php&qu...
by Belriel
Thu Feb 05, 2009 9:49 pm
Forum: Challenges
Topic: Eniac
Replies: 27
Views: 50401

The biggest number I could think of to be displayed with this 10x10 abacus is a 16 digit number starting with 3 and ending with 5 ... but that's not the correct solution :(. Is there really a way to display even bigger numbers?
by Belriel
Tue Feb 03, 2009 10:44 pm
Forum: Challenges
Topic: Lettered Challenge
Replies: 9
Views: 15979

Look at the characters you get and if they carry any further meaning ...
by Belriel
Tue Feb 03, 2009 10:39 pm
Forum: Challenges Solved
Topic: Telecran
Replies: 24
Views: 3714

I had the same problems, google only returned me links to Luxembourg and the telecran magazine, even though I have my firefox configured to request pages in English and I use google.com configured do talk to me in English and to display results in all languages. But seems Google still brings localiz...
by Belriel
Fri Jan 09, 2009 8:52 am
Forum: Challenges Solved
Topic: Russian Dolls
Replies: 40
Views: 4594

I used gzdecode(), but since this function seems to be not yet part of PHP, I used the function I found in the user contributed notes.
by Belriel
Thu Jan 08, 2009 8:25 pm
Forum: Challenges
Topic: I Will Be Execute
Replies: 26
Views: 42164

Hm I don't get this challenge ... the output of this program depends on the initialization of the memory, there are 312 values that do not cause a "too many cycles" error, I have tried the minimum, maximum and some in between, but I don't believe I have to test all possible values. I built...
by Belriel
Tue Jan 06, 2009 11:49 pm
Forum: Challenges Solved
Topic: Russian Dolls
Replies: 40
Views: 4594

I also used PHP and then had the answer in an instant, most time I spent finding out the right PHP functions and how they work as the gzip library is not very well documented and some of the functions mentioned are not even present in the current release.
by Belriel
Tue Jan 06, 2009 11:46 pm
Forum: Challenges
Topic: didactic text
Replies: 21
Views: 50504

Yes, I also had problems finding a source with the same version, but once I found one it was not too hard anymore.
by Belriel
Sat Dec 27, 2008 10:07 am
Forum: Challenges Solved
Topic: Valuation
Replies: 103
Views: 22872

<?php $cipher = "93752xxx746x27x1754xx90x93xxxxx238x44x75xx08750912738x8461x8759383xx328x4x4935903x6x5550360535004x0xx945958961296x267x8842xxx5x6xx61x4x48482x80xxx83316843x7x4x83x9521731xxx25x51xx457x6x5x9698222x771237745034x5133592x27xx8x87xx35221x36x0x50x23x7x63x998418xx"; $sum = 0; for...
by Belriel
Sat Dec 27, 2008 9:57 am
Forum: Challenges
Topic: Didactic Text 3
Replies: 39
Views: 55593

I would say you are not on the right track, because the answer is very clear when you found how to decode it.
by Belriel
Thu Dec 25, 2008 12:59 am
Forum: Challenges
Topic: Didactic XOR Long Cipher
Replies: 16
Views: 28458

I also tried it with brute force first but was too slow and I had an error somewhere so after all the time there was no result. I went to bed then and kept thinking of the problem and I then found a much more efficient way, tried it the next day and it cracks the cipher in 2 seconds :D.
by Belriel
Tue Dec 23, 2008 10:29 pm
Forum: Challenges Solved
Topic: Didactic XOR Cipher 2
Replies: 15
Views: 2375

Yes brute force was quick in this case and I filtered the results with a regular expression match to show me only those strings that contained only word characters, whites space characters, " and ', which gave me 3 results, the third was the one :).
by Belriel
Tue Dec 23, 2008 10:07 pm
Forum: Challenges
Topic: 'X Factor' Challenge please help me to solve this...
Replies: 3
Views: 8968

Has anybody solved this challange using GMP (and PHP)? I run into memory problems as GMP seems not to liberate memory before the program is finished. I found a bug entry at PHP: http://bugs.php.net/bug.php?id=33249 which says this problem is GMP related, so I would expect this happens in any program...