Search found 20 matches

by magnus
Thu Mar 13, 2014 11:16 am
Forum: Challenges
Topic: Another Typo Challenge
Replies: 12
Views: 19465

THe solution even works in Java !!
by magnus
Wed May 15, 2013 10:34 am
Forum: Challenges
Topic: Didactic text 2
Replies: 87
Views: 127060

An Urban Dictionary is helpful when you are not english (or american) native-speaking.
For me - as a german - i've never heard of that word before.
by magnus
Fri May 04, 2012 12:51 pm
Forum: Challenges
Topic: Cereal
Replies: 16
Views: 26809

On a physical RS-232-Line there can be 1, 1.5 or 2 Stop-Bits
by magnus
Thu May 03, 2012 3:17 pm
Forum: Challenges
Topic: Cereal
Replies: 16
Views: 26809

Cereal => Serial
I even had a look in the RS-232 Spec. though this is in the 'crypto' Section. Nothing found out yet...

Perhaps C-Real -> Floating Point -> Arithmetic Coding. But also -> Dead End...
by magnus
Wed Apr 25, 2012 1:40 pm
Forum: Challenges
Topic: Countdown Calc
Replies: 18
Views: 29167

Finding some of the numbers in http://oeis.org/A081130/table definitely costed me a lot
of wasted time. I should have looked at the name of the executable earlier and no, it
has nothind to do with http://en.wikipedia.org/wiki/Maximal_fu ... l_function.
Now i got it.
by magnus
Mon Apr 23, 2012 8:40 am
Forum: Challenges
Topic: Patience
Replies: 27
Views: 41393

Takes ~7 Seconds with the right optimizations ;-)
by magnus
Fri Apr 20, 2012 3:15 pm
Forum: The Hacker's Server
Topic: Ranking
Replies: 36
Views: 106816

Before easter it worked for me, but now i'm stuck on my rank... :cry:
by magnus
Fri Apr 20, 2012 3:12 pm
Forum: Challenges
Topic: Where am i? Challenge
Replies: 11
Views: 13336

I think, the solution is not format-dependant. It would also work for a bmp or tiff - file. Analyzing the png-internals returned nothing for me. No alpha-channel or so... Still difficult, since i have no idea what to look for. I tried all sort of Photoshop-tricks like searching for colors only exite...
by magnus
Fri Apr 20, 2012 2:54 pm
Forum: Challenges Solved
Topic: Branches
Replies: 10
Views: 3970

After finding the recursion long eL(long l10) { if (l10 == 0L) return 0x8a74526L; else return lC(l10 - 1L) ^ sy(l10 - 1L); } long lC(long l10) { if (l10 == 0L) return 0x8a74526L; else return sy(l10 - 1L) ^ eL(l10 - 1L); } long sy(long l10) { if (l10 == 0L) return 0x8a74526L; else return eL(l10 - 1L)...
by magnus
Thu Apr 19, 2012 1:43 pm
Forum: Challenges
Topic: Branches
Replies: 5
Views: 10901

One mistake by 'tidying up' and the result is wrong. Be more careful.
by magnus
Thu Apr 19, 2012 7:55 am
Forum: Challenges
Topic: Where am i? Challenge
Replies: 11
Views: 13336

Is an image manipulation programm the right tool or do i need a hex-editor
just like in the 'Filtration Residue'-Challenge ?
by magnus
Wed Apr 18, 2012 12:33 pm
Forum: Challenges Solved
Topic: Biggest Fib
Replies: 10
Views: 2532

Did it with bc

w5=sqrt(5)
n=150000000000000
l(1/w5) + n*l( (1+w5) / 2 )

72181773758939.71240570761996346796
by magnus
Tue Apr 17, 2012 2:33 pm
Forum: Challenges
Topic: Primal Pi
Replies: 33
Views: 46396

Finally got it ! Sending the solution via the webbrowser did not work. I think the number is much to long to send via 'GET'. I don't know if the browser is the Problem but sending it via POST ( and a small java-programm ) did work. BTW : I dont know if this number is REALLY prime - but my solution w...
by magnus
Mon Apr 16, 2012 10:24 am
Forum: Challenges
Topic: A Hundred 0s
Replies: 33
Views: 66462

Perhaps there is an extra twist for non-US people as the place to look for the answer is not
very common for europeans. The 'draw'-hint was extremly helpful for me after
inspecting all(!) the german translations of 'draw'.
by magnus
Wed Mar 28, 2012 4:35 pm
Forum: Challenges Solved
Topic: Privy
Replies: 0
Views: 844

Privy

Very easy - decompiled it with 'Jad'