Skip to content

Instantly share code, notes, and snippets.

@rowanmanning
Created June 24, 2011 21:30
Show Gist options
  • Save rowanmanning/1045735 to your computer and use it in GitHub Desktop.
Save rowanmanning/1045735 to your computer and use it in GitHub Desktop.
Looking for the spoiler image mentioned in https://twitter.com/notch/status/84361767962161152
<?php
// looking for the spoiler image mentioned in https://twitter.com/notch/status/84361767962161152
$letters = array_merge(range('a', 'z'), range('A', 'Z'));
foreach ($letters as $letter) {
$image = 'http://i.imgur.com/IKc7' . $letter . '.png';
print '<img src="' . $image . '" alt="Is is this one?" style="display: block; margin: 0 0 20px 0"/>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment