This file contains hidden or 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 'rubygems' | |
require 'nokogiri' | |
require 'open-uri' | |
require 'pp' | |
doc = Nokogiri::HTML(open "http://megamillions.com/numbers/pastdrawings.asp") | |
standard = Hash.new |
This file contains hidden or 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 | |
I_KNOW_I_AM_USING_AN_OLD_AND_BUGGY_VERSION_OF_LIBXML2=true | |
require 'rubygems' | |
require 'mechanize' | |
require 'pp' | |
if ARGV[0].to_i == 0 || ARGV[1].to_i == 0 | |
puts "Usage: add-iprange.rb <VM ID> <number of IPs>" | |
exit 1 |
This file contains hidden or 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
<?php | |
for ($i = 1; $i <= 100; $i++) { | |
if (($i % 3) == 0 && ($i % 5) == 0) { | |
print "FizzBuzz\n"; | |
} elseif (($i % 3) == 0) { | |
print "Fizz\n"; | |
} elseif (($i % 5) == 0) { | |
print "Buzz\n"; | |
} else { |
This file contains hidden or 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>{{ page.title }}</title> | |
<link rel="stylesheet" href="css/reset.css" type="text/css" /> | |
<link rel="stylesheet" href="css/text.css" type="text/css" /> | |
<link rel="stylesheet" href="css/960.css" type="text/css" /> | |
<link rel="stylesheet" href="css/site.css" type="text/css" /> | |
</head> |
This file contains hidden or 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
echo -ne "GET /<SOME_CHARACTERS_HERE> HTTP/1.0\n\n" | ncat tr.im 80 | grep "Location:" |
This file contains hidden or 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
javascript:var x=document.getElementsByTagName("a");for(i=0;i<x.length;i++){if(x[i].innerHTML.match(/.*\.gz$/)){var f=document.createElement("iframe");f.setAttribute("src",x[i].href);f.style.width="0px";f.style.height="0px";document.body.appendChild(f);}} |
This file contains hidden or 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
<?php | |
declare(ticks = 1); | |
class HRServerMon_Poller | |
{ | |
var $hostname; | |
function HRServerMon_Poller($hostname) | |
{ |
NewerOlder