Search found 15 matches

by fragman
Wed Sep 25, 2013 8:34 pm
Forum: Challenges
Topic: A Hundred 0s
Replies: 33
Views: 66566

I'm sorry, maybe I'm stupid, but to me this challenge is completely crazy... I've spent 6 hours on this now, that is after figuring out what to do. Simply because it either doesn't follow any logic or the resources available don't make sense for the last characters... Maybe this is intended but that...
by fragman
Tue Sep 24, 2013 10:38 am
Forum: Challenges
Topic: Pi Hates Nines Problem?
Replies: 15
Views: 25439

I don't understand perl at all but to me this looks way too complicated. This challenge is solvable with an awk one-liner. I really recommend a linux-based vm for many of the challenges here since tools like sed and awk really make it a lot easier. see how you can (marginally modify and then) implem...
by fragman
Tue Sep 24, 2013 9:44 am
Forum: Challenges
Topic: Immortal
Replies: 25
Views: 31553

Anyone who solved it and could answer a quick question via pm?
I think if I ask it in the thread it might provide too much information.
by fragman
Sat Jun 23, 2012 12:59 pm
Forum: Challenges
Topic: Not Chess
Replies: 16
Views: 41147

use the source, luke...
by fragman
Fri Jun 22, 2012 9:35 pm
Forum: Challenges
Topic: Didactic XOR Cipher 3
Replies: 35
Views: 69051

ok, here's the deal... this challenge really gets me. I'm pretty sure my solver isn't that bad, but I just can't get any positive result. Would someone who already solved it (and ideally has some python knowledge) please send me a private message? I'd like to have someone telling me if my approach i...
by fragman
Sun Jun 17, 2012 2:39 pm
Forum: Challenges Solved
Topic: Type fastest
Replies: 14
Views: 2347

I used JavaScript as well, directly via FireBug: var getText = document.getElementsByTagName("b"); for (var i = 0; i<getText.length; i++){ var getText2 = getText[i].getElementsByTagName("span"); for (var j = 0; j<getText2.length; j++){ getText2[j].innerHTML = ""; } } wo...
by fragman
Sun Jun 17, 2012 2:09 pm
Forum: Challenges
Topic: Cavern Master
Replies: 45
Views: 92023

bot is currently running, I just hope 10 levels above DungeonLevel will be enough for the boss :/
by fragman
Sun Jun 17, 2012 11:35 am
Forum: Challenges
Topic: Dungeon Master
Replies: 66
Views: 111330

in this challenge there isn't really any need for fancy checks like "only pick up the best weapon".

a simple userscript to level up and move around is enough.
by fragman
Wed Jun 06, 2012 9:19 am
Forum: Challenges
Topic: Didactic text 2
Replies: 87
Views: 127276

Just solved it basically by putting it out of my mind for some time (a month) and approaching it again afterwards.

It's not really "easy", but the decoding is REALLY simple. Once you have the numbers you don't need any book anymore.
by fragman
Sat Oct 08, 2011 12:40 pm
Forum: Challenges
Topic: how is your grammar
Replies: 13
Views: 17568

Just peek into the term formal grammar.
by fragman
Fri Sep 16, 2011 6:39 pm
Forum: Challenges
Topic: Didactic text 2
Replies: 87
Views: 127276

I had a couple of ideas now... using the number pairs mathematically (add them, subtract them, divide them) was one of the more complicated ones, until I saw the hint about "don't make it too complicated". So I tried using the most simple codes I could think of referred by numbers... word ...
by fragman
Wed Sep 14, 2011 11:23 pm
Forum: Challenges
Topic: Pi Hates Nines Problem?
Replies: 15
Views: 25439

and why the hell should that be a problem? maybe I'm weird, but I solved this only with awk and sort, no problem so far
by fragman
Wed Sep 14, 2011 11:05 pm
Forum: Challenges
Topic: Please help me to solve 'Don't Blink' challenge
Replies: 17
Views: 35171

took me a while, but it really is simple... wget is by far enough, you just need the right switch and the ability to read
by fragman
Wed Sep 14, 2011 4:51 pm
Forum: Challenges
Topic: Didactic Vampire Text
Replies: 23
Views: 31645

Sometimes you just have to look Into the text and Make sense of what feels Pretty weird. you will Laugh at how Easy it was afterwards.

(too much of a hint?)
by fragman
Wed Sep 14, 2011 2:46 pm
Forum: Challenges
Topic: didactic text
Replies: 21
Views: 51050

linux standard tools are your friend, simple enough with vim, vimdiff and sed. won't say more though