Skip to content

Instantly share code, notes, and snippets.

@dgb
Created September 4, 2014 18:36
Show Gist options
  • Save dgb/55a46e3722445b00b92e to your computer and use it in GitHub Desktop.
Save dgb/55a46e3722445b00b92e to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'open-uri'
require 'json'
ARGF.each do |n|
name = n.chomp
begin
open "https://api.angel.co/1/search/slugs?query=#{name}"
puts "#{name},1"
rescue OpenURI::HTTPError => e
raise e unless e.message == '404 Not Found'
puts "#{name},0"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment