Search found 1 match

by tenx212
Sun Oct 11, 2015 11:49 am
Forum: Challenges Solved
Topic: One Minute Man
Replies: 39
Views: 11198

left Ruby running

It seems php is the most popular language, but I did it in ruby and it worked as well: #one minute man def checkPage() require 'open-uri' while true answer = open('http://www.hacker.org/challenge/misc/minuteman.php') {|f| f.read } if !answer.include? "back later" return answer end sleep 59...