Forked from iconara/Redis questions on StackOverflow
Created
October 14, 2011 18:13
-
-
Save Demeter/1287866 to your computer and use it in GitHub Desktop.
How to query StackOverflow for the most recent, unanswered but upvoted, questions tagged "oink"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'zlib' | |
require 'open-uri' | |
require 'json' | |
io = Zlib::GzipReader.new(open("http://api.stackoverflow.com/1.0/questions?tagged=oink&sort=votes&min=1")) | |
obj = JSON.parse(io.read) | |
questions = obj['questions'] | |
unanswered_questions = questions.reject { |q| q.has_key?('accepted_answer_id') } | |
unanswered_questions.each do |question| | |
puts "#{question['title']} http://stackoverflow.com/questions/#{question['question_id']}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment