Skip to content

Instantly share code, notes, and snippets.

@tappdarden
Created September 27, 2016 20:46
Show Gist options
  • Save tappdarden/ae60dce83913dc44f7781d5caeb21f27 to your computer and use it in GitHub Desktop.
Save tappdarden/ae60dce83913dc44f7781d5caeb21f27 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rest-client'
require 'json'
isthisforthat = RestClient.get('http://itsthisforthat.com/api.php?json')
parsed = JSON.parse(isthisforthat)
puts "So like its a #{parsed["this"]} but for #{parsed["that"]}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment