Search found 25 matches

by Napoleon
Mon Nov 13, 2023 11:29 am
Forum: General
Topic: Map and rank is broken
Replies: 3
Views: 2454

Re: Map and rank is broken

Is there any updates on this? Submitting answers also seems to be broken, see: viewtopic.php?p=23181
by Napoleon
Mon Nov 13, 2023 11:28 am
Forum: The Hacker's Server
Topic: Challenge validation doesn't work
Replies: 3
Views: 2556

Re: Challenge validation doesn't work

There seem to be several issues currently. See viewtopic.php?t=2750
by Napoleon
Sun Feb 16, 2020 5:18 pm
Forum: The Hacker's Server
Topic: Fixing the server...
Replies: 3
Views: 10977

No green correct text

by Napoleon
Mon Sep 18, 2017 9:38 pm
Forum: Challenges
Topic: Looks can be Deceiving
Replies: 10
Views: 18870

I haven't solved it myself. But, if you look at the code as C code (as it probably is, since it can compile with gcc), you'll see that the code can be stripped significantly, and it runs much faster after stripping. Could that be a hint?
by Napoleon
Wed Jun 15, 2016 3:42 pm
Forum: Challenges
Topic: 'Say It' [Misc]
Replies: 26
Views: 41903

AMindForeverVoyaging wrote: It would have made more sense to use an image format which allows for a margin of error. Especially since this challenge opens up very early on the map, but does not have a warm-up to it.

An easier version of this could have been a good warm-up indeed.
Agreed
by Napoleon
Fri Jun 03, 2016 4:29 pm
Forum: Challenges Solved
Topic: Haven't We Met Before?
Replies: 8
Views: 890

010^93+:76*2+?1^<0^2^<:1+72*2+?d1^<0^2^<:1-2?p!d1+069*-2-gd1+0^1+097*-8-g

You guys seem smarter than me, if you compare length xD
by Napoleon
Thu Jun 02, 2016 11:39 pm
Forum: Challenges
Topic: 'Say It' [Misc]
Replies: 26
Views: 41903

I'd love to see your program, once you've solved it :D
by Napoleon
Thu Jun 02, 2016 12:06 am
Forum: Challenges
Topic: 'Say It' [Misc]
Replies: 26
Views: 41903

I thought this challenge was pretty straight forward. There are many speech recognition software solutions out there that can solve this challenge. The only thing is to look out for errors. Luckily, those are also pretty straightforward to find. Here's what I suggest: Slow the audio down... Maybe 30...
by Napoleon
Wed Jun 01, 2016 11:54 pm
Forum: Challenges
Topic: Chromatic Scale
Replies: 18
Views: 24253

hmm... I think a important clue would be, shall we search the file or the notes. If it is obvious, my fault..

Both the notes and the file look like it could be hiding something.
by Napoleon
Mon May 30, 2016 3:38 pm
Forum: Challenges
Topic: Chromatic Scale
Replies: 18
Views: 24253

Did not even know there were two tracks xD also, there's so much data... I hope that single note has something to do with the answer.
by Napoleon
Sun May 29, 2016 6:56 pm
Forum: Challenges Solved
Topic: Fast Mod
Replies: 7
Views: 744

Well two easy challenges... King rat was much more of a challenge

Code: Select all

0<1</1<*0<1v-p
[/code]
by Napoleon
Tue May 24, 2016 12:02 am
Forum: Challenges
Topic: No full ACK in HEX
Replies: 1
Views: 8003

No full ACK in HEX

Recursion recursion...

Can anybody give me a hint on this one?
by Napoleon
Fri May 13, 2016 9:58 pm
Forum: Challenges
Topic: Chromatic Scale
Replies: 18
Views: 24253

Take a look at the middle of the Midi. Every note increases the offset by 240, but after offset 6480, there's a 480 offset gap. Could that be something useful?
by Napoleon
Mon May 09, 2016 12:14 pm
Forum: Challenges
Topic: Chromatic Scale
Replies: 18
Views: 24253

Well I was not talking about the file. I was talking about music theory. If you open the file in a MIDI editor, you see a few Chromatic scales. It could be that these are irrelevant, but as these chromatic scales all appear to have errors, I do not think so.

What do you think?
by Napoleon
Mon May 09, 2016 11:44 am
Forum: Challenges Solved
Topic: lotsa dots
Replies: 26
Views: 2246

I did it in Javascript, no problems, fun challenge :D var answer = ""; var img = document.getElementsByTagName('img')[1]; var canvas = document.createElement('canvas'); canvas.width = img.width; canvas.height = img.height; canvas.getContext('2d').drawImage(img, 0, 0, img.width, img.height)...