Search found 2 matches

by s_ha_dum
Sun Sep 26, 2010 4:28 am
Forum: Challenges Solved
Topic: One Minute Man
Replies: 39
Views: 4252

Perl : use LWP::UserAgent; $ua = LWP::UserAgent->new; $url = 'http://www.hacker.org/challenge/misc/minuteman.php'; $g = 'back later'; while ($g eq 'back later') { $gone = $ua->get( $url ); ($g) = ($gone->content =~ /<html><body>\n(.*)/sm); sleep(60); } print($gone->content); Open a new xterm and let...
by s_ha_dum
Wed Sep 08, 2010 4:30 pm
Forum: Challenges
Topic: UpCount - recursive calamity
Replies: 18
Views: 26670

lechat wrote:what about 'java -X'? Then you can use 'java -Xss1024M' for 1Gb stack size...
But do you really need it?
Thank you. And yes, I did really need it. This was the only reason the code wouldn't run. As soon as I ran it with 'java -X ...' it ran without issue.