Search found 6 matches

by yourMom
Tue Sep 30, 2014 9:06 pm
Forum: Challenges Solved
Topic: White Noise
Replies: 10
Views: 834

Loved this challenge! It took me few days until I understood the odd existence of the PLTE chunk. From then on, it was quite intuitive what to do. And of course, as everyone here, I made the off by one error with GIMP :lol:
by yourMom
Thu Sep 25, 2014 9:17 am
Forum: Challenges Solved
Topic: Yoga Message
Replies: 18
Views: 1568

Here are my steps to solve this challenge:

1) ffmpeg -ss 00:00:00 -t 00:00:16.56 -i a.mp4 -r 25.0 yoga%3d.jpg
2) for i in $(ls *.jpg); do gm convert $i -crop 40x70+0+0 $i; done;
3) split in 8 columns in explorer and read ascii
by yourMom
Tue Dec 10, 2013 11:21 pm
Forum: Challenges Solved
Topic: Smell as Sweet
Replies: 15
Views: 1227

pngcheck - another possible tool

Wow, I was puzzled on how to extract the png's, but I managed to solve it after finding pngcheck from another challenge (and the funny thing is, I haven't solved that one yet :D). Anyway, I haven't heard about wireshark - it definitely sounds promising.
by yourMom
Sun Aug 11, 2013 3:56 pm
Forum: Challenges Solved
Topic: Lazy Maze
Replies: 26
Views: 2004

Python anyone? :wink: import requests base_url = "http://www.hacker.org/challenge/misc/maze.php?steps=" def dfs(cur): r = requests.get(base_url + cur); print cur if r.content.find('boom') >= 0: return elif r.content.find('keep moving') >= 0: dfs(cur + 'L') dfs(cur + 'R') dfs(cur + 'D') dfs...
by yourMom
Mon Jun 03, 2013 6:34 pm
Forum: Challenges
Topic: A Hundred 0s
Replies: 33
Views: 63893

Wow, I felt really lucky while solving this :D
by yourMom
Tue May 14, 2013 11:30 am
Forum: Challenges Solved
Topic: Substitute Teacher
Replies: 28
Views: 2559

just another solution

This was way harder than expected though my solution is a bit of an overkill. Yet a good question is why does it have more than 2,500 solvers. I solved it by writing a C++ program which searches every possibility for the last word in an dictionary and submits the good ones on the site. Of course, I ...