Skip to content

Instantly share code, notes, and snippets.

@Alanaktion
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alanaktion/005276f195acb862067a to your computer and use it in GitHub Desktop.
Save Alanaktion/005276f195acb862067a to your computer and use it in GitHub Desktop.
Finds a list of all images from xkcd 1416
<?php
/**
* turtles.php
*
* Uses the c.xkcd.com API to get a list of all images within xkcd #1416 Pixels
*
* @author Alan Hardman <alan@phpizza.com>
*/
/**
* Gets images immediately within a main image
* @param string $src
* @return array
*/
function getImages($src) {
$url = "http://c.xkcd.com/turtle/" . $src;
$result = json_decode(file_get_contents($url));
return $result->white + $result->black;
}
// Start with the turtles base image
$images = array("turtles");
$sources = array("turtles");
while(!empty($sources)) {
// Go through each $sources image
foreach($sources as $key=>$src) {
$new = getImages($src);
unset($sources[$key]);
foreach($new as $i) {
// Add image to $images and $sources if not already there
if(!in_array($i, $images)) {
$images[] = $i;
$sources[] = $i;
echo "http://imgs.xkcd.com/turtledown/", $i, "-tiled.png\n";
}
}
}
}
@Alanaktion
Copy link
Author

For those who just want the result, here's the complete list at the time of writing:
http://imgs.xkcd.com/turtledown/book-launch-tiled.png
http://imgs.xkcd.com/turtledown/whatif-trade-tiled.png
http://imgs.xkcd.com/turtledown/stars-2-tiled.png
http://imgs.xkcd.com/turtledown/assembly-1-tiled.png
http://imgs.xkcd.com/turtledown/particles-tiled.png
http://imgs.xkcd.com/turtledown/clouds-1-tiled.png
http://imgs.xkcd.com/turtledown/clouds-2-tiled.png
http://imgs.xkcd.com/turtledown/clouds-3-tiled.png
http://imgs.xkcd.com/turtledown/clouds-4-tiled.png
http://imgs.xkcd.com/turtledown/clouds-5-tiled.png
http://imgs.xkcd.com/turtledown/whatif-king-tiled.png
http://imgs.xkcd.com/turtledown/quiet-turtle-tiled.png
http://imgs.xkcd.com/turtledown/assembly-2-tiled.png
http://imgs.xkcd.com/turtledown/assembly-3-tiled.png
http://imgs.xkcd.com/turtledown/mu-tiled.png
http://imgs.xkcd.com/turtledown/du-tiled.png
http://imgs.xkcd.com/turtledown/evolution-tiled.png
http://imgs.xkcd.com/turtledown/mario-entry-tiled.png
http://imgs.xkcd.com/turtledown/mario-sitting-1-tiled.png
http://imgs.xkcd.com/turtledown/mario-sitting-2-tiled.png
http://imgs.xkcd.com/turtledown/mario-sitting-3-tiled.png
http://imgs.xkcd.com/turtledown/server-1-tiled.png
http://imgs.xkcd.com/turtledown/time-turner-tiled.png
http://imgs.xkcd.com/turtledown/fire-hydrant-tiled.png
http://imgs.xkcd.com/turtledown/holism-tiled.png
http://imgs.xkcd.com/turtledown/reductionism-tiled.png
http://imgs.xkcd.com/turtledown/i-am-a-turtle-tiled.png
http://imgs.xkcd.com/turtledown/stars-1-tiled.png
http://imgs.xkcd.com/turtledown/assembly-4-tiled.png
http://imgs.xkcd.com/turtledown/assembly-5-tiled.png
http://imgs.xkcd.com/turtledown/blank-figure-tiled.png
http://imgs.xkcd.com/turtledown/chess-w-tiled.png
http://imgs.xkcd.com/turtledown/e1-tiled.png
http://imgs.xkcd.com/turtledown/saturn-tiled.png
http://imgs.xkcd.com/turtledown/sun-tiled.png
http://imgs.xkcd.com/turtledown/stockholm-tiled.png
http://imgs.xkcd.com/turtledown/assembly-6-tiled.png
http://imgs.xkcd.com/turtledown/assembly-7-tiled.png
http://imgs.xkcd.com/turtledown/cantor-tiled.png
http://imgs.xkcd.com/turtledown/e2-tiled.png
http://imgs.xkcd.com/turtledown/e3-tiled.png
http://imgs.xkcd.com/turtledown/e4-tiled.png
http://imgs.xkcd.com/turtledown/upgoer-tiled.png
http://imgs.xkcd.com/turtledown/e5-tiled.png
http://imgs.xkcd.com/turtledown/upgoer-2-tiled.png
http://imgs.xkcd.com/turtledown/upgoer-3-tiled.png
http://imgs.xkcd.com/turtledown/e6-tiled.png
http://imgs.xkcd.com/turtledown/upgoer-4-tiled.png
http://imgs.xkcd.com/turtledown/upgoer-5-tiled.png
http://imgs.xkcd.com/turtledown/upgoer-6-tiled.png
http://imgs.xkcd.com/turtledown/walking-tiled.png

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment