Page 2 of 2

Posted: Mon Jun 15, 2009 7:01 pm
by therethinker
Challenges have been added over time. This was the upper corner (At the time, the pathway was very linear, and this was considered the end.) Now, there's so many branches, it's harder to say where the "end" is: there's difficult challenges all around.


And Je is STILL unsolved ;-)

Posted: Mon Jun 15, 2009 9:40 pm
by bsguedes
hahaha very nice! There should be a measure of how 'deep' a challenge is, i.e., the minimum number of challenges we need to solve to arrive on it. Then we could have an idea about the 'further' challenge.

Anyway, if the number of challenges grows more and more we will need to think about a map expansion :D

Posted: Mon Jun 15, 2009 10:30 pm
by therethinker
There should be space :P

The whole bottom third (from my view) is largely unpopulated (except for the superhack @ the left). And there's some extremely dense regions -- the map could be done like that.

Posted: Mon Jun 15, 2009 10:39 pm
by bsguedes
Yeah, the Didactic's section and the area near Maeda Path are a whole mess! In my map I have a large zone slightly north to SuperHack island... and the sector at southeast is blank for me, too (including those three cities, blue, red and purple from left to right).

Posted: Tue Jun 16, 2009 2:08 am
by therethinker
Heh... we need to name the sections of land.

Didactic Peninsula
Crypto Valley
Coding Hills
HVM Castle

:P

Posted: Tue Jun 16, 2009 11:11 am
by bsguedes
hahahahah That would be great! In each 'kingdom', we may have 'boss' challenges! :D

"Crypto Valley" is the best! hahahaha

Ah, let's add SuperHack Wasteland to this list!

Posted: Tue Jun 16, 2009 10:15 pm
by gfoot
therethinker wrote:And Je is STILL unsolved ;-)
I feel really close to solving it, but even if I do I won't be able to submit a solution yet - it's vanished from my map, presumably hiding behind something dastardly!

Posted: Tue Jun 16, 2009 10:45 pm
by tails
"Je" has moved to the place just after "It's a Very Small World" on my map, so I think you can also see it.

Posted: Tue Jun 16, 2009 11:24 pm
by gfoot
Ah... well, I don't have "It's a Very Small World" any more either.

Posted: Tue Jun 16, 2009 11:45 pm
by tails
Oh, what a pity.

Posted: Mon Apr 19, 2010 6:15 am
by TechnoDemon
the_impaler wrote:The funny part is that some of the problems are easier to get on Linux and some are better to get on Windows. That File Mystery - if you have Linux/FreeBSD around then it's not a mystery.
LOL!
Have you ever heard about 'VM ware' or 'Sun Virtual Box' ???
Install one of them into your machine and it will transform into Dual-OS Computer (you can run 2 chosen OS at the same time, yay!!!)

btw, i solved 'file mistery' using WinRAR file viewer hahaha....

Posted: Mon Apr 19, 2010 6:52 am
by CodeX
Why bother consuming your resources with VMWare when you can have a free shell?

Posted: Tue Apr 20, 2010 3:21 am
by TechnoDemon
CodeX wrote:Why bother consuming your resources with VMWare when you can have a free shell?
As a newbie hacker, i don't wanna force myself to go into something that i can't.
I wanna learn in effective way, from zero to hero... so there will be a ladder that i must climb...

Btw, I want to ask a question to anyone in this forum. Which checksum is better? MD5 or CRC?

help me in listen to me challenges...give me hint..

Posted: Sun Jan 09, 2011 11:56 am
by gsjfoe
please give me a hint... :( :( ..i don't get it all..

Posted: Mon Jan 10, 2011 1:25 am
by nighthalk
md5 is less likly to have hash colisions but requires more memory (16 bytes vs 4) and since i use c# for most of my coding it has a built in library to just hash whatever byte[] array you give it. on the plus side crc32 can be compaired as a simple int and even sorted nativly, requires slightly more coding to handle the md5 like that.