Skip to content

Instantly share code, notes, and snippets.

@waltz
Created June 23, 2009 02:58
Show Gist options
  • Save waltz/134328 to your computer and use it in GitHub Desktop.
Save waltz/134328 to your computer and use it in GitHub Desktop.
#! /usr/bin/env ruby
require 'net/http'
require 'uri'
loop do
response = Net::HTTP.post_form(URI.parse("http://www.bultannews.com/pages/index.php"),
{ :cid => '14164',
:contact_name => 'JERK!',
:comment_mail => 'jerk@foo.net',
:comment_message => 'FUCK YOUUU' })
puts response.message
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment