Editing User:452

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
 
==Status==
 
==Status==
*18:30, 4 July 2015 (UTC) Off-line. I'm no longer running my script, as it's just finding fewer and fewer results, likely because there are fewer and fewer people adding new content. Others are free to use my script.
+
<s>Edit: "ERR_CONNECTION_REFUSED". :(</s>
 +
:Apparently it was happening for everyone, back to normal. Resuming at 1 request per 30 seconds just in case.
  
;Phase 1.
+
;Phase 1. (Running)
:Saving reasons, usernames and text only.   No images or permalinks IDs saved.
+
:Saving reasons, usernames and text only. No images or permalinks IDs have been saved.
 
*All usernames have been found
 
*All usernames have been found
 
*All reasons for data loss have been found
 
*All reasons for data loss have been found
 
*The overlap between feed and prompt text is over 95%
 
*The overlap between feed and prompt text is over 95%
  
;Phase 2.
+
;Phase 2. (Running)
 
:Saving permalink and images IDs
 
:Saving permalink and images IDs
 
*The image and text associated with permalinks never changes.
 
*The image and text associated with permalinks never changes.
 
(I probably should have been saving the permalinks this whole time.)
 
(I probably should have been saving the permalinks this whole time.)
  
===Count history===
+
*Progress: 11401 IDs found so far, containing 1296 unique images and 1696 unique strings
*04-22: [25474] (unique: 2167) +80  /9
 
*04-21: [25396] (unique: 2158) +50  /4
 
*04-20: [25349] (unique: 2154) +60  /5
 
*04-19: [25281] (unique: 2149) +100 /3
 
*04-18: [25186] (unique: 2146) +100 /14
 
*04-17: [25046] (unique: 2132) +100 /7
 
*04-16: [24904] (unique: 2125) +200 /3
 
*04-15: [24727] (unique: 2122) +400 /15
 
*04-14: [24370] (unique: 2107) +500 /18
 
*04-13: [23886] (unique: 2089) +700 /13
 
*04-12: [23145] (unique: 2076) +800
 
*04-11: [22332]               
 
 
 
===Old status===
 
*<s>Edit: "ERR_CONNECTION_REFUSED". :(</s> - Apparently it was happening for everyone, back to normal. Resuming at 1 request per 30 seconds just in case.
 
*Well, fuck.  I hit the 2mb page limit at 10217 [[1506:_xkcloud/Table of Permalinks|Permalinks]].
 
*After finding 17000 permalinks, my script has slowed down considerably, and is finding new content much less often.
 
*I'm glad I had already updated the wiki today, because my browser just crashed and I lost my array.  The fact that I've been keeping all ''unique'' data on the wiki means I can (mostly) rebuild my arrays and continue from where I left off.
 
*Import functions implemented, all saved feed data reloaded, script running again. I am no longer monitoring "pick an image"/"pick a caption" overlap, as it was over 95% anyway, and I was only updating this page with the ''unique'' prompt/captions not found in the feed.
 
*Welp, I was being lazy and hadn't updated in a while, and my browser crashed, losing a day's results. Resuming with previously saving data... (Incidentally, the browser crash is unrelated to the script running.)
 
*As can be seen by looking at the changes to the counts as I update each day, there is new content much less often.  Less than 100 new feed entries per day. On average, one every 14 mins. My script checks every 30 seconds, and it has currently been 50 minutes since any new content was found. (As I was typing this, a new feed entry was found, so it was almost exactly 50 minutes.)
 
*For the last several days, no new prompt content has been found, and the only feed content which has been found is content which was previously found in the prompts.  Unfortunately, at the current rate of discovery, it will take until at least September to find feed ids for all known prompt content.
 
  
 
==Feed==
 
==Feed==
Line 67: Line 46:
 
*V2. functions ids(), report(), report2() format results, must be run from console.
 
*V2. functions ids(), report(), report2() format results, must be run from console.
 
*V3. buttons and textboxes added to page eliminate both the need to use console to retrieve results, and user error.
 
*V3. buttons and textboxes added to page eliminate both the need to use console to retrieve results, and user error.
*V3.1 "feed_ids" button now outputs a minimum table containing at least one of each image and caption.  (Cutting 20436 down to 2555)
 
*V3.2 Improved "minimum" to cut 2555 down to 2026
 
*V4 Added ability to preload content into arrays, including feed_ids
 
*V4.1 removed functions to compare "pick an image" and "pick a caption" prompts, merged separate prompt arrays, added functions to compare these to the feed instead.
 
*V4.2 saving new feedids to local storage, added restore() function to reload these.
 
  
 
  <nowiki>xkcd = {
 
  <nowiki>xkcd = {
Line 77: Line 51:
 
prompt_posters      :[],
 
prompt_posters      :[],
 
feed_posters        :[],
 
feed_posters        :[],
 
+
feed_ids            :[],
 +
feed_images        :[],
 +
feed_text          :[],
 +
prompt_album        :[],
 +
prompt_text        :[],
 
prompt_images      :[],
 
prompt_images      :[],
 
prompt_captions    :[],
 
prompt_captions    :[],
  
feed_table          :[], //dummy to create button
+
feed_images_only    :[],
feed_ids            :[],
+
feed_text_only      :[],
feed_images        :[],
 
feed_text          :[],
 
  
 +
prompt_albumonly    :[],
 +
prompt_textonly    :[],
 
prompt_imagesonly  :[],
 
prompt_imagesonly  :[],
 
prompt_captionsonly :[],
 
prompt_captionsonly :[],
  
 
desc: {
 
desc: {
prompt_reasons     :"Reasons for data loss",
+
prompt_reasons     :"Reasons for data loss",
prompt_posters     :"Usernames in the prompt",
+
prompt_posters     :"Usernames in the prompt",
feed_posters        :"Usernames in the feed",
+
feed_posters       :"Usernames in the feed",
 +
feed_ids          :"Permalinks in the feed",
 +
feed_images       :"Images in the feed",
 +
feed_text          :"Captions in the feed",
  
prompt_images       :"Images in prompts",
+
prompt_album      :"Images in 'pick an image' prompt",
prompt_captions    :"Captions in prompts",
+
prompt_text        :"Caption in 'pick an image' prompt",
 +
prompt_images     :"Images in 'pick an caption' prompt",
 +
prompt_captions   :"Captions in 'pick a caption' prompt",
 +
feed_images_only  :"Images which only appear in the feed, and not in either prompt",
 +
feed_text_only     :"Captions which only appear in the feed, and not in either prompt",
  
feed_table          :"Table of unique feed entries",
+
prompt_albumonly  :"Images in the 'pick an image' prompt and not the 'pick a caption' prompt.",
feed_ids            :"Permalinks in the feed",
+
prompt_textonly    :"Captions in the 'pick an image' prompt and not the 'pick a caption' prompt.",
feed_images        :"Images in the feed",
+
prompt_imagesonly :"Images in the 'pick an caption' prompt and not the 'pick a image' prompt.",
feed_text          :"Captions in the feed",
+
prompt_captionsonly :"Captions in the 'pick an caption' prompt and not the 'pick a image' prompt."
 
 
prompt_imagesonly   :"Images in prompts and not in the feed",
 
prompt_captionsonly :"Captions in prompts and not in the feed",
 
 
}
 
}
 
}
 
}
Line 117: Line 99:
 
.append($("<textarea>"));
 
.append($("<textarea>"));
 
$("#magic").append($("<button>").html("sort"));
 
$("#magic").append($("<button>").html("sort"));
$("#magic").append($("<input type='checkbox' id='loadarray'>")).append($("<label for='loadarray'>").html("Load array"));
 
 
$("#magic button").on( "click", function() {
 
$("#magic button").on( "click", function() {
 
update( $(this).html() );
 
update( $(this).html() );
 
});
 
});
 
}
 
}
init();
+
function check(field, value) {
 
 
function updatecounts(last) {
 
$("#ctitle").html((new Date()).toLocaleTimeString()
 
+"<br>Last found : "+last
 
+"<br>feed_ids: "+(Object.keys(xkcd.feed_ids).length+1)
 
+"<br>prompt_captions: "+xkcd.prompt_captions.length
 
+"<br>prompt_images: "+xkcd.prompt_images.length
 
);
 
}
 
 
 
function additem(field, value) {
 
 
if (typeof value == "undefined") return;
 
if (typeof value == "undefined") return;
 
if (xkcd[field].indexOf(value) == -1) {
 
if (xkcd[field].indexOf(value) == -1) {
 
xkcd[field].push(value);
 
xkcd[field].push(value);
updatecounts(field+" : "+value);
+
console.log(field+" "+xkcd[field].length+": "+value);
 
}
 
}
 
}
 
}
  
function next(recheck) {
+
function next() {
if (!recheck) recheck = "";
+
$.getJSON('http://c0.xkcd.com/xb/feed').done(function (data) {
$.getJSON('http://c0.xkcd.com/xb/feed/'+recheck).done(function (data) {
+
check("prompt_reasons", data.prompt.reason);
if (typeof data.prompt != "undefined") {
+
check("prompt_posters", data.prompt.poster);
          additem("prompt_reasons", data.prompt.reason);
+
check("prompt_images", data.prompt.img_id);
  additem("prompt_posters", data.prompt.poster);
+
check("prompt_text", data.prompt.text);
 
+
if (typeof data.prompt.album != "undefined")
  additem("prompt_images", data.prompt.img_id);
 
  additem("prompt_captions", data.prompt.text);
 
  if (typeof data.prompt.album != "undefined")
 
 
for(i in data.prompt.album)
 
for(i in data.prompt.album)
additem("prompt_images", data.prompt.album[i]);
+
check("prompt_album", data.prompt.album[i]);
  
  if (typeof data.prompt.captions != "undefined")
+
if (typeof data.prompt.captions != "undefined")
 
for(i in data.prompt.captions)
 
for(i in data.prompt.captions)
additem("prompt_captions", data.prompt.captions[i]);
+
check("prompt_captions", data.prompt.captions[i]);
        }
+
 
        if (data.text) data.feed = new Array(data);
 
 
for(i in data.feed) {
 
for(i in data.feed) {
additem("feed_posters", data.feed[i].poster);
+
check("feed_posters", data.feed[i].poster);
 
feedentry = {
 
feedentry = {
 
img:  data.feed[i].img,
 
img:  data.feed[i].img,
 
text:  data.feed[i].text
 
text:  data.feed[i].text
 
};
 
};
if (typeof xkcd.feed_ids[data.feed[i].id] != "undefined") {
+
if (typeof xkcd.feed_ids[data.feed[i].id] == "undefined") {
  if (xkcd.feed_ids[data.feed[i].id].text && xkcd.feed_ids[data.feed[i].id].img) {
+
xkcd.feed_ids[data.feed[i].id] = feedentry;
    if (xkcd.feed_ids[data.feed[i].id].text != feedentry.text || xkcd.feed_ids[data.feed[i].id].img != feedentry.img) {
 
$("#ctitle").before(
 
"Data for "+data.feed[i].id+" has changed!"
 
+"<br>old: "+data.feed[i].img+" / "+data.feed[i].text
 
+"<br>new: "+feedentry.img+" / "+feedentry.text
 
);
 
    }
 
  }
 
 
} else {
 
} else {
tempNew = JSON.parse(localStorage.getItem('NewFeedIDs'));
+
if (xkcd.feed_ids[data.feed[i].id].text != feedentry.text || xkcd.feed_ids[data.feed[i].id].img != feedentry.img) {
if (tempNew == null) tempNew = new Array();
+
console.log("Data for "+data.feed[i].id+" has changed");
if (tempNew.indexOf(data.feed[i].id) == -1)
+
console.log(feedentry.img+" / "+feedentry.text);
tempNew.push(data.feed[i].id);
+
console.log(data.feed[i].img+" / "+data.feed[i].text);
localStorage.setItem('NewFeedIDs', JSON.stringify(tempNew));
+
}
updatecounts("feed_id : "+(Object.keys(xkcd.feed_ids).length+1)+" : "+data.feed[i].id);
 
 
}
 
}
xkcd.feed_ids[data.feed[i].id] = feedentry;
 
 
}
 
}
 +
 
});
 
});
window.clearTimeout(window.nextTimer);
 
window.nextTimer = setTimeout('next()', 60000);
 
 
}
 
}
 
next();
 
next();
 +
setInterval('next()', 60000);
  
function mergearrays(array1, array2, prop) {
+
function update(which) {
   for(i in array2) {
+
   $("#desc").html(which+": "+xkcd.desc[which]);
    if (typeof array2[i] == "undefined") continue;
+
  temptest = "";
    if (!array2[i]) continue;
 
    if (prop) {
 
      if (typeof array2[i][prop] == "undefined") continue;
 
      if (!array2[i][prop]) continue;
 
      if (array1.indexOf(array2[i][prop]) == -1) array1.push(array2[i][prop]);
 
    } else {
 
      if (array1.indexOf(array2[i]) == -1) array1.push(array2[i]);
 
    }
 
  }
 
}
 
function loadarray(which) {
 
 
   switch (which) {
 
   switch (which) {
    case "feed_ids":
 
      if ($("#magic textarea").val().indexOf("\n|-") > -1) {
 
        $("#desc").html("Press feed_table to load table");
 
        break;
 
      }
 
      if (("\n"+$("#magic textarea").val()).indexOf("\n#") > -1) {
 
$("#desc").html("Loading list of feed_ids");
 
temparray = ("\n"+$("#magic textarea").val().trim()).replace(/# http/g, "# http").split("\n#http://xkcd.com/1506/#post/");
 
temparray.shift();
 
for(i in temparray)
 
if (typeof xkcd.feed_ids[temparray[i]] == "undefined")
 
xkcd.feed_ids[temparray[i]] = { img:null, text: null };
 
$("#desc").html("loaded "+temparray.length+" feed_ids (urls)");
 
 
      }
 
      temparray = [];
 
    break;
 
 
    case "feed_table":
 
      if ($("#magic textarea").val().indexOf("\n#") > -1) {
 
        $("#desc").html("Press feed_ids to load list of ids");
 
        break;
 
      }
 
      if (("\n"+$("#magic textarea").val()).indexOf("\n|-") > -1) {
 
        $("#desc").html("Loading table of feed_ids");
 
        temparray = ("\n"+$("#magic textarea").val().trim()).split("\n|-");
 
        temparray.shift();
 
for(i in temparray) {
 
temp2 = temparray[i].split("\n|");
 
xkcd.feed_ids[temp2[1].substr(28,36)] = { img: temp2[2].substr(29,36), text: temp2[3] };
 
}
 
$("#desc").html("loaded "+temparray.length+" feed_ids (table)");
 
      }
 
      temparray = [];
 
      temp2 = [];
 
    break;
 
 
    case "prompt_captionsonly":
 
    case "prompt_imagesonly":
 
      which = which.slice(0,-4);
 
 
     case "feed_posters":
 
     case "feed_posters":
 
     case "prompt_posters":
 
     case "prompt_posters":
 
     case "prompt_reasons":
 
     case "prompt_reasons":
 +
    case "prompt_album":
 
     case "prompt_captions":
 
     case "prompt_captions":
 
     case "prompt_images":
 
     case "prompt_images":
      $("#desc").html("Loading into "+which);
+
    case "prompt_text":
      temparray = ("\n"+$("#magic textarea").val().trim()).split("\n# ")
+
//These are all simply arrays which require no additional formatting.
      if (temparray.length > 2) temparray.shift();
+
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
      mergearrays(xkcd[which], temparray);
+
$("#desc").append(" ("+xkcd[which].length+")");
      $("#desc").html("Loaded "+temparray.length+" into "+which);
 
      temparray = [];
 
 
     break;
 
     break;
 
+
     case "feed_ids":
    case "feed_text":
+
templist = ""; tempcount=0;
     case "feed_images":
 
      $("#desc").html(which+" must be loaded via feed_ids");
 
    break;
 
 
 
    default:
 
      $("#desc").html(" (Error: "+which+" not implemented)");
 
  }
 
}
 
 
 
function update(which) {
 
  if ($("#loadarray").prop('checked')) {
 
    if (which == "sort") {
 
      $("#desc").html(" (Ignoring the fact the 'load array' button is checked...");
 
    } else {
 
      loadarray(which);
 
      return;
 
    }
 
  }
 
  $("#desc").html(which+": "+xkcd.desc[which]);
 
  switch (which) {
 
    case "feed_posters":
 
    case "prompt_posters":
 
    case "prompt_reasons":
 
    case "prompt_captions":
 
    case "prompt_images":
 
//These are all simple arrays which require no additional formatting.
 
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 
$("#desc").append(" ("+xkcd[which].length+")");
 
    break;
 
    case "feed_ids":
 
temp = { ids:"", countall:0 }
 
for(j in xkcd.feed_ids) {
 
temp.countall++;
 
temp.ids  += "\n#http://xkcd.com/1506/#post/"+j;
 
}
 
$("#desc").append(" (all: "+temp.countall+")");
 
$("#magic textarea").val("\n"+temp.ids);
 
delete temp;
 
    break;
 
    case "feed_table":
 
temp = { array: [], list: "", img: [], text: [], countunique:0, countall:0 }
 
 
for(j in xkcd.feed_ids) {
 
for(j in xkcd.feed_ids) {
temp.countall++;
+
templist += "\n|-\n|[http://xkcd.com/1506/#post/"+j+" "+j.split("-").pop()+"]\n|[http://c0.xkcd.com/xb/image/"+ xkcd.feed_ids[j].img+" "+xkcd.feed_ids[j].img.split("-").pop()+"]\n|"+ xkcd.feed_ids[j].text;
if (xkcd.feed_ids[j].text && xkcd.feed_ids[j].img) { //can be null when duplicate
+
tempcount++;
if (temp.text[xkcd.feed_ids[j].text] == undefined || temp.img[xkcd.feed_ids[j].img] == undefined) {
 
if (temp.text[xkcd.feed_ids[j].text] == undefined) temp.text[xkcd.feed_ids[j].text] = 0;
 
if (temp.img[xkcd.feed_ids[j].img] == undefined) temp.img[xkcd.feed_ids[j].img] = 0;
 
temp.text[xkcd.feed_ids[j].text]++;
 
temp.img[xkcd.feed_ids[j].img]++;
 
temp.array[j] = { text: xkcd.feed_ids[j].text, img: xkcd.feed_ids[j].img }
 
}
 
}
 
}
 
for(j in temp.array) {
 
if (temp.text[temp.array[j].text] > 1 && temp.img[temp.array[j].img] > 1) {
 
temp.text[temp.array[j].text]--;
 
temp.img[temp.array[j].img]--;
 
continue;
 
}
 
temp.countunique++;
 
temp.list += "\n|-\n|[http://xkcd.com/1506/#post/"+j+" "+j.split("-").pop()+"]"
 
+"\n|[http://c0.xkcd.com/xb/image/"+ temp.array[j].img
 
+" "+temp.array[j].img.split("-").pop()+"]"
 
+"\n|"+ temp.array[j].text;
 
 
}
 
}
$("#desc").append(" (unique: "+temp.countunique+") (all: "+temp.countall+")");
+
$("#desc").append(" ("+tempcount+")");
$("#magic textarea").val(temp.list+"\n|}\n");
+
$("#magic textarea").val(templist);
delete temp;
+
delete templist;
 
     break;
 
     break;
 
 
     case "feed_text":
 
     case "feed_text":
 
     case "feed_images":
 
     case "feed_images":
 
tempwhich = which=="feed_text"?"text":"img";
 
tempwhich = which=="feed_text"?"text":"img";
+
for(i in xkcd.feed_ids)
mergearrays(xkcd[which], xkcd.feed_ids, tempwhich)
+
if (xkcd[which].indexOf(xkcd.feed_ids[i][tempwhich]) == -1)
 
+
xkcd[which].push(xkcd.feed_ids[i][tempwhich]);
 
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 
$("#desc").append(" ("+xkcd[which].length+")");
 
$("#desc").append(" ("+xkcd[which].length+")");
 
xkcd[which] = []; //no need to keep this in memory
 
xkcd[which] = []; //no need to keep this in memory
 
     break;
 
     break;
 +
    case "feed_images_only":
 +
    case "feed_text_only":
 +
tempwhich = which=="feed_text_only"?"feed_text":"feed_images";
 +
tempwhich2 = which=="feed_text_only"?"text":"img";
 +
temptest1 = which=="feed_text_only"?"prompt_text":"prompt_images";
 +
temptest2 = which=="feed_text_only"?"prompt_captions":"prompt_album";
  
    case "prompt_captionsonly":
+
for(i in xkcd.feed_ids)
    case "prompt_imagesonly":
+
if (xkcd[tempwhich].indexOf(xkcd.feed_ids[i][tempwhich2]) == -1)
 +
xkcd[tempwhich].push(xkcd.feed_ids[i][tempwhich2]);
  
tempprop = which=="prompt_captionsonly"?"text":"img";
+
for(i in xkcd[tempwhich])
tempwhich = which=="prompt_captionsonly"?"feed_text":"feed_images";
+
if (xkcd[temptest1].indexOf(xkcd[tempwhich][i]) == -1 && xkcd[temptest2].indexOf(xkcd[tempwhich][i]) == -1)
temptest = which.replace("only",""); //don't wipe
+
xkcd[which].push(xkcd[tempwhich][i]);
  
mergearrays(xkcd[tempwhich], xkcd.feed_ids, tempprop)
+
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 +
$("#desc").append(" ("+xkcd[which].length+")");
 +
xkcd[which] = []; //no need to keep this in memory
 +
xkcd[tempwhich] = []; //no need to keep this in memory
 +
    break;
 +
    case "prompt_textonly":
 +
if (!temptest) temptest = "prompt_captions";
 +
    case "prompt_captionsonly":
 +
if (!temptest) temptest = "prompt_text";
 +
    case "prompt_albumonly":
 +
if (!temptest) temptest = "prompt_images";
 +
    case "prompt_imagesonly":
 +
if (!temptest) temptest = "prompt_album";
  
for(i in xkcd[temptest])
+
tempwhich = which.replace("only","");
if (xkcd[tempwhich].indexOf(xkcd[temptest][i]) == -1)
 
xkcd[which].push(xkcd[temptest][i]);
 
  
 +
for(i in xkcd[tempwhich])
 +
if (xkcd[temptest].indexOf(xkcd[tempwhich][i]) == -1)
 +
xkcd[which].push(xkcd[tempwhich][i]);
 
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 
$("#desc").append(" ("+xkcd[which].length+")");
 
$("#desc").append(" ("+xkcd[which].length+")");
 
xkcd[which] = []; //no need to keep this in memory
 
xkcd[which] = []; //no need to keep this in memory
xkcd[tempwhich] = []; //no need to keep this in memory
 
 
 
     break;
 
     break;
 
     case "sort":
 
     case "sort":
temparray = ("\n"+$("#magic textarea").val()).split("\n");
+
temparray = ("\n# "+$("#magic textarea").val()).split("\n# ");
temparray.shift();
 
 
temparray2 = [];
 
temparray2 = [];
mergearrays(temparray2, temparray)
+
for(i in temparray)
+
if (temparray[i].length && temparray2.indexOf(temparray[i]) == -1)
 +
temparray2.push(temparray[i]);
 
temparray2.sort(function (a, b) {
 
temparray2.sort(function (a, b) {
 
    return a.toLowerCase().localeCompare(b.toLowerCase());  
 
    return a.toLowerCase().localeCompare(b.toLowerCase());  
 
});
 
});
$("#magic textarea").val(temparray2.join("\n"));
+
$("#magic textarea").val("\n# "+temparray2.join("\n# "));
 
$("#desc").html("Sorted "+(temparray.length-1)+" into "+temparray2.length);
 
$("#desc").html("Sorted "+(temparray.length-1)+" into "+temparray2.length);
 
delete temparray, temparray2;
 
delete temparray, temparray2;
 
     break;
 
     break;
 
     default:
 
     default:
        $("#desc").html(" (Error: "+which+" not implemented)");
+
console.log("Oops"+which);
 
   }
 
   }
 
}
 
}
 +
function xkcdout() {
 +
xkcd.oldids = [];
 +
for(j in xkcd.feed_ids) xkcd.oldids.push({ id:j, img:xkcd.feed_ids[j].img, text:xkcd.feed_ids[j].text });
  
function restore() {
+
$("#magic textarea").val("xkcdold = "+JSON.stringify(xkcd));
window.tempOld = JSON.parse(localStorage.getItem('NewFeedIDs'));
 
if (window.tempOld == null) window.tempOld = new Array();
 
restoreLoop();
 
 
}
 
}
function restoreLoop() {
+
function xkcdin() {
if (window.tempOld.length) {
+
for(i in xkcd) xkcd[i] = xkcdold[i];
next(window.tempOld.pop());
+
for(i in xkcdold.oldids) xkcd.feed_ids[xkcdold.oldids[i].id] = { img: xkcdold.oldids[i].img, text: xkcdold.oldids[i].text }
window.clearTimeout(window.nextTimer);
+
delete xkcd.oldids;
window.nextTimer = setTimeout('restoreLoop()', 5000);
+
delete xkcdold;
}
 
 
}
 
}
 
</nowiki>
 
</nowiki>
Line 399: Line 258:
  
 
<s>I'm only interested getting in the reasons, feel free to adapt this script to get whatever else.</s>
 
<s>I'm only interested getting in the reasons, feel free to adapt this script to get whatever else.</s>
:<s>Script updated to get all text fields.  Feel free to adapt it to get the image URLs.</s>
+
:Script updated to get all text fields.  Feel free to adapt it to get the image URLs.
:Script updated to get all text and image fields.  Feel free to adapt it to do whatever you want.
 
  
 
==Results==
 
==Results==
Line 407: Line 265:
 
*feed_posters: [205] - None new.
 
*feed_posters: [205] - None new.
  
*feed_table: [2252] (See [[1506:_xkcloud/Table_of_Permalinks]])
+
*feed_id: [11200] - [[1506:_xkcloud/Transcript]]
*feed_id: [26733] (See [[1506:_xkcloud/List_of_Permalinks]])
 
 
 
*feed_images: [1528]
 
*prompt_images: [1697] (crashed and found again)
 
*prompt_images without permalinks: [169]
 
  
*feed_text: [1993]
+
*feed_images: [1230] (only: [18])
*prompt_captions: [2287] (crashed and found again)
+
*prompt_images: [710] (only: [2])
*prompt_captions without permalinks: [295]
+
*prompt_album: [1491] (only: [786])
  
Note: prompt_images and prompt_captions reset when my browser crashes, so it is ''not'' supposed to equal feed+without permalinks. I've re-added them here so I can keep track of daily changes.
+
*feed_text: [1694] (only: [8]) (old only: 224)
 +
*prompt_captions: [2008] (only: [667])
 +
*prompt_text: [1344] (only: [4])
  
 
===prompt_reasons===
 
===prompt_reasons===
:The only reason on [[1506:_xkcloud/Transcript]] that my script has not found is "not a hair question".  It's certainly a plausible reason, but I believe this reason has been removed.
+
:The old one my script has not found yet which is on the transcript page is "not a hair question".
  
 
# +++ OUT OF CHEESE ERROR. REDO FROM START +++
 
# +++ OUT OF CHEESE ERROR. REDO FROM START +++
Line 531: Line 386:
 
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
 
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
  
===Captions ===
+
===Captions===
This is the combined list of all captions I have found, in the feed and in prompts.
 
  
 
#  (ღ˘⌣˘ღ)
 
#  (ღ˘⌣˘ღ)
Line 540: Line 394:
 
# ...And then we decided it was time to leave
 
# ...And then we decided it was time to leave
 
# ...Freudian sense tingling...
 
# ...Freudian sense tingling...
# ...just no.
 
 
# ...monsters from the id...
 
# ...monsters from the id...
 
# 'BOOM' goes the dynamite!
 
# 'BOOM' goes the dynamite!
Line 552: Line 405:
 
# "Honey, I think the assembly instructions for this washing machine are a bit... What's the opposite of verbose?"
 
# "Honey, I think the assembly instructions for this washing machine are a bit... What's the opposite of verbose?"
 
# "I am So. Much. More."
 
# "I am So. Much. More."
# "I Never watch porn"
 
 
# "I'm sorry, i can't do long distance right now"
 
# "I'm sorry, i can't do long distance right now"
 
# "Innocent X" by Diego Velazquez, c. 1650, oil on canvas
 
# "Innocent X" by Diego Velazquez, c. 1650, oil on canvas
 
# "Is it symmetric this way?"
 
# "Is it symmetric this way?"
 
# "My God, it's full of starS." "WeLL, DURR"
 
# "My God, it's full of starS." "WeLL, DURR"
# "Oh Sword-chan" "Yes Gun-Kun?"
 
 
# "Space duckin'" By led blimp
 
# "Space duckin'" By led blimp
 
# "sun" glasses.. lolz. heh.
 
# "sun" glasses.. lolz. heh.
Line 564: Line 415:
 
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 
# ((╬ಠิ﹏ಠิ))
 
# ((╬ಠิ﹏ಠิ))
# (ღ˘⌣˘ღ)
 
 
# [Metal Gear sound effect]
 
# [Metal Gear sound effect]
 
# [USER BANNED FOR THIS TEXT]
 
# [USER BANNED FOR THIS TEXT]
 
# [user was banned for this text]
 
# [user was banned for this text]
 
# *Darth Vader Breathing*
 
# *Darth Vader Breathing*
# *glomp*
 
 
# *Sigh* not cat food for diner again
 
# *Sigh* not cat food for diner again
 
# *Tips fedora*
 
# *Tips fedora*
 +
# # :-(
 
# #720_no_scope
 
# #720_no_scope
 
# #ALLLLLLBYMYSELF
 
# #ALLLLLLBYMYSELF
 
# #awefullyNicetractsofland
 
# #awefullyNicetractsofland
# #beatingheartinabox
 
 
# #bedhead
 
# #bedhead
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
Line 581: Line 430:
 
# #bornthisway
 
# #bornthisway
 
# #BROKEN
 
# #BROKEN
# #Canadian internet #price gouging
 
 
# #CATSANDBIRDS
 
# #CATSANDBIRDS
 
# #caturday
 
# #caturday
Line 596: Line 444:
 
# #essentialsupplies
 
# #essentialsupplies
 
# #fallingfromorbit
 
# #fallingfromorbit
# #fishy!
 
 
# #flavorbomb
 
# #flavorbomb
 
# #giganticflower #headshot
 
# #giganticflower #headshot
Line 603: Line 450:
 
# #hashtag
 
# #hashtag
 
# #Hashtag #ironicSelfie
 
# #Hashtag #ironicSelfie
# #hashtag #yinyl #yolo #thanksobama
 
 
# #HL3 #CONFIRMED #ILLUMINATI
 
# #HL3 #CONFIRMED #ILLUMINATI
 
# #hoax
 
# #hoax
Line 620: Line 466:
 
# #Nailpolish
 
# #Nailpolish
 
# #newhipsterbike
 
# #newhipsterbike
# #NewProfilepic
 
 
# #nofilter
 
# #nofilter
 
# #nomakeup #justgotup #wow
 
# #nomakeup #justgotup #wow
Line 638: Line 483:
 
# #selfie #nomakeup #nofilter
 
# #selfie #nomakeup #nofilter
 
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
 
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
# #sorrynotsorry
 
# #strangelyaroused
 
 
# #stublife
 
# #stublife
 
# #sudowoodoproblems
 
# #sudowoodoproblems
Line 648: Line 491:
 
# #toothproblems
 
# #toothproblems
 
# #twinsies
 
# #twinsies
# #underkill
 
 
# #vampiremirrorselfie
 
# #vampiremirrorselfie
 
# #Worstweekever
 
# #Worstweekever
 
# <3 hanging out with saruman
 
# <3 hanging out with saruman
# <reported for inappropriate content>
 
 
# >< ))*>
 
# >< ))*>
 
# ┬──┬◡ノ(° -°ノ)
 
# ┬──┬◡ノ(° -°ノ)
Line 667: Line 508:
 
# 1 like = 1 respect  1 share = 15 respect  500 respect = 1 cool
 
# 1 like = 1 respect  1 share = 15 respect  500 respect = 1 cool
 
# 100 meters in 4 and a half seconds
 
# 100 meters in 4 and a half seconds
# 100% legit free hugs
 
 
# 11 Mario facts that will blow-a your mind
 
# 11 Mario facts that will blow-a your mind
 
# 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
 
# 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
# 15 Mindblowing facts that prove jaws was real
 
 
# 20 Facts that will infuriate hipsters
 
# 20 Facts that will infuriate hipsters
 
# 27 things you won't believe are in your local playground
 
# 27 things you won't believe are in your local playground
Line 677: Line 516:
 
# 4 8 15 16 23 42
 
# 4 8 15 16 23 42
 
# 5 nights at freddies 4 #letsplay
 
# 5 nights at freddies 4 #letsplay
# 500 gold for the private show
 
 
# 5th of November went too far this year
 
# 5th of November went too far this year
# 7 amazing ways of taking off your pants that will surprise you!
 
 
# 8.5 hours later...
 
# 8.5 hours later...
 
# 9 out of 10 scientists couldn't solve this equation
 
# 9 out of 10 scientists couldn't solve this equation
Line 691: Line 528:
 
# a graph showing the amount of time i spend outside
 
# a graph showing the amount of time i spend outside
 
# A job so boring a bird could do it
 
# A job so boring a bird could do it
# A kid peed in the ball pit, I took action
 
# A land war in asia
 
 
# A soulful rendition of "old man river"
 
# A soulful rendition of "old man river"
 
# a spherical cow
 
# a spherical cow
 
# A window into my soul
 
# A window into my soul
# a/s/l?
 
 
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH
 
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH
# Aaaaaaaaaah
 
 
# Aaaaaargh
 
# Aaaaaargh
 
# About time someone brought me that flattened basketball
 
# About time someone brought me that flattened basketball
Line 714: Line 547:
 
# alas, poor yorick, I knew him well.
 
# alas, poor yorick, I knew him well.
 
# All flesh is grass
 
# All flesh is grass
# all I wanted was soup.
 
 
# All my selfies be like
 
# All my selfies be like
 
# All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
 
# All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
# All these science spheres are made out of asbestos, by the way. Keeps out the rats. Let us know if you feel a shortness of breath, a persistent dry cough, or your heart stopping. Because that's not part of the test. That's asbestos.
 
 
# All these science spheres are made out of asbestos, by the way. Keeps out the rats. Let us know if you feel a shortness of breath, a persistent dry cough, or your heart stopping. Because that's not part of the test. That's asbestos.  
 
# All these science spheres are made out of asbestos, by the way. Keeps out the rats. Let us know if you feel a shortness of breath, a persistent dry cough, or your heart stopping. Because that's not part of the test. That's asbestos.  
 
# All things considered, it turned out nice again
 
# All things considered, it turned out nice again
Line 736: Line 567:
 
# ancient skull loses eye socket in fencing accident
 
# ancient skull loses eye socket in fencing accident
 
# and a bluetooth made of pretzel sticks
 
# and a bluetooth made of pretzel sticks
# And so it began...
 
 
# And so the hunt begins!
 
# And so the hunt begins!
 
# and suddenly, popcorn
 
# and suddenly, popcorn
# and that is the story of the very angry caterpillar
 
 
# AND THAT'S HOW i MET YOUR MOTHER.
 
# AND THAT'S HOW i MET YOUR MOTHER.
 
# And the least of the five evils is....
 
# And the least of the five evils is....
 
# and then there were nine
 
# and then there were nine
# And then, you lightly drill the oven for 15 minutes on high
 
# And this, my dear, disproves the coriolis effect.
 
 
# And thus, the polar carrot displaced the earth.
 
# And thus, the polar carrot displaced the earth.
 
# and to think this is where it all started
 
# and to think this is where it all started
 
# ANGRY CATS SMASH ANGRY BIRDS
 
# ANGRY CATS SMASH ANGRY BIRDS
 
# Angry sofa is angry.
 
# Angry sofa is angry.
# Animé girls don't look at explosions
 
 
# Annoyance of the week: people who take photos of their food
 
# Annoyance of the week: people who take photos of their food
 
# another day on california public transportation
 
# another day on california public transportation
Line 785: Line 611:
 
# Aside from the Fact I Was Buried Alive, The day has been surprisingly good.
 
# Aside from the Fact I Was Buried Alive, The day has been surprisingly good.
 
# Asteroids hate him!
 
# Asteroids hate him!
# astonishing how xenia flew that plane
 
 
# Astronauts tossed out of ISC called "Nuisance" by commuters
 
# Astronauts tossed out of ISC called "Nuisance" by commuters
# at last, validation
+
# at least I don't have to spend more time with sandra bullock
 
# at least I don't have to spend more time with sandra bullock  
 
# at least I don't have to spend more time with sandra bullock  
 
# At least it stopped bleeding acid
 
# At least it stopped bleeding acid
# At least someone's getting fed
 
 
# at least the last thing i'll ever see is pretty
 
# at least the last thing i'll ever see is pretty
# At that moment, something snapped.
 
 
# At this point the probe fires its engine for the 12th and last time before exiting the observable universe
 
# At this point the probe fires its engine for the 12th and last time before exiting the observable universe
 
# at times like this i ask, "why me?"
 
# at times like this i ask, "why me?"
Line 798: Line 621:
 
# australia is not NZ!
 
# australia is not NZ!
 
# AUUUGH
 
# AUUUGH
# Aw, man, I hate gelatinous cubes...
 
 
# Aw, yisss!
 
# Aw, yisss!
 
# awesome sunrise this morning #lenscap #nofilter #hashtag
 
# awesome sunrise this morning #lenscap #nofilter #hashtag
Line 809: Line 631:
 
# Bacteriophage is worth 6 points
 
# Bacteriophage is worth 6 points
 
# BALDUR's GATE YOU have all been poisoned and have 14 days to give me 2000 gold HA HA HA
 
# BALDUR's GATE YOU have all been poisoned and have 14 days to give me 2000 gold HA HA HA
# balloon ninja strikes again
 
 
# Banana invasion in progress
 
# Banana invasion in progress
 
# BANANANANANANANANANA
 
# BANANANANANANANANANA
Line 821: Line 642:
 
# Beer Pong alone again! #YOLO
 
# Beer Pong alone again! #YOLO
 
# Before his untimely death.
 
# Before his untimely death.
 +
# Being john "Bowler Hat" Malkovich
 
# Being john "Bowler Hat" Malkovich  
 
# Being john "Bowler Hat" Malkovich  
 
# Belgium
 
# Belgium
 
# Best Christmas gift EVER!
 
# Best Christmas gift EVER!
 
# best day evar!!!!
 
# best day evar!!!!
# best easter ever
 
 
# Best funeral ever!!!!! YOLO
 
# Best funeral ever!!!!! YOLO
 
# Best Halloween costume yet!  
 
# Best Halloween costume yet!  
 
# Best map projection ever
 
# Best map projection ever
 
# best republican caucus ever!
 
# best republican caucus ever!
# best snowman ever!
 
 
# Best. Funeral. Ever.
 
# Best. Funeral. Ever.
 
# better go inside, I need to polish my shoes
 
# better go inside, I need to polish my shoes
Line 858: Line 678:
 
# bowTieght!
 
# bowTieght!
 
# Boy, I tell you what. I bet the roads on the moon ain't this smooth.  
 
# Boy, I tell you what. I bet the roads on the moon ain't this smooth.  
# Brb, burning house down
 
 
# breakfast in 'merica
 
# breakfast in 'merica
 
# Breaking: World in terror as alien from "Blue (Da Ba Dee)" video lands on Earth, announces world tour
 
# Breaking: World in terror as alien from "Blue (Da Ba Dee)" video lands on Earth, announces world tour
# Brittish think tank
 
 
# brokkolis and sweet potato, nice
 
# brokkolis and sweet potato, nice
 
# Bulls don't often sit like this!
 
# Bulls don't often sit like this!
Line 870: Line 688:
 
# But I wanted to see the roof...  #FirstWorldProblems
 
# But I wanted to see the roof...  #FirstWorldProblems
 
# But then, everything changed when the fire nation attacked.
 
# But then, everything changed when the fire nation attacked.
# BUT WHERE DOES THE BLOOD GO?
 
 
# BuzzFeed Quiz: Which bone are you?
 
# BuzzFeed Quiz: Which bone are you?
 
# Cakephants are my new friends
 
# Cakephants are my new friends
Line 877: Line 694:
 
# Can you see it? #illuminati #war #drobe #conspiracy
 
# Can you see it? #illuminati #war #drobe #conspiracy
 
# Can't believe what I almost threw away!
 
# Can't believe what I almost threw away!
# can't make an omlet without breaking a few legs
 
 
# Can't stop recovery data,  My eyes hurt
 
# Can't stop recovery data,  My eyes hurt
 
# Cant explain that
 
# Cant explain that
# Cant sleep, clowns will kill me. Cant sleep, clowns will ...
 
 
# capes are in fashion
 
# capes are in fashion
 
# Captain obvious strikes again
 
# Captain obvious strikes again
Line 898: Line 713:
 
# Check out my bowling Ball trophy!
 
# Check out my bowling Ball trophy!
 
# Check out my new cat! Sooooo cute!
 
# Check out my new cat! Sooooo cute!
# Check out my new OC
 
 
# check out my new pet
 
# check out my new pet
 
# check out my new sauron fanfic
 
# check out my new sauron fanfic
Line 904: Line 718:
 
# Check out my new turntable! #audiophile #lookatme #vinyl
 
# Check out my new turntable! #audiophile #lookatme #vinyl
 
# check out my usb sword!
 
# check out my usb sword!
# cheese = life
 
 
# Choose your snuggle toy
 
# Choose your snuggle toy
 
# Christ, what an asshole.
 
# Christ, what an asshole.
Line 911: Line 724:
 
# Click this text and you will find the love of your life within the next 20 minutes! If you don't, your mother will die a horrible death!!!
 
# Click this text and you will find the love of your life within the next 20 minutes! If you don't, your mother will die a horrible death!!!
 
# Click to show secret text
 
# Click to show secret text
# CLOCK FACE-OFF
 
 
# Close the pod bay door, Hal.
 
# Close the pod bay door, Hal.
 
# Coco Puffs: Now with your complete daily dose of gamma radiation
 
# Coco Puffs: Now with your complete daily dose of gamma radiation
Line 917: Line 729:
 
# come at me, pro!
 
# come at me, pro!
 
# Come back! We aren't really going to eat you!
 
# Come back! We aren't really going to eat you!
# Come on and Slam!
 
# come on iiiiin!
 
 
# Come on party people, put your hands together
 
# Come on party people, put your hands together
 
# come on, put on the slippers.
 
# come on, put on the slippers.
 
# Come with me on a journey into time and space
 
# Come with me on a journey into time and space
# Conflicting messages
 
 
# Connect the dots to see the correct Nixon cabinet member
 
# Connect the dots to see the correct Nixon cabinet member
 
# conserve yours until the last possible second
 
# conserve yours until the last possible second
Line 958: Line 767:
 
# Dance contest! #YOLO
 
# Dance contest! #YOLO
 
# Dang! Inflated tires with Helium again!
 
# Dang! Inflated tires with Helium again!
# Danger: low clearance
 
 
# Darn Pylon built in the cow field again
 
# Darn Pylon built in the cow field again
 
# Dawn of the Bread
 
# Dawn of the Bread
Line 966: Line 774:
 
# Day 19 of my face wash avoidance program
 
# Day 19 of my face wash avoidance program
 
# day 3: the turnip still refuses to break up on re-entry
 
# day 3: the turnip still refuses to break up on re-entry
# Day:38 Bird Disguise works, No one knows I am a Worm
 
# daylight savings time always throws me off
 
 
# Daylight spending time!
 
# Daylight spending time!
 
# Deal with it
 
# Deal with it
Line 977: Line 783:
 
# devil went down to walmart, bought himself a fork
 
# devil went down to walmart, bought himself a fork
 
# Dey see us Rollin'. Dey Hatin'.
 
# Dey see us Rollin'. Dey Hatin'.
# Did i remember to lock the car?
 
 
# Did nyancat open a cycle repair shop?
 
# Did nyancat open a cycle repair shop?
 
# did this exist as a microwave?
 
# did this exist as a microwave?
Line 997: Line 802:
 
# do you reckon i can feed this to my pet spider?
 
# do you reckon i can feed this to my pet spider?
 
# Do you think this will get me a job designing Pokemon?
 
# Do you think this will get me a job designing Pokemon?
# Doctor whheeeeeeeeee
 
 
# does anyone know how to get rid of eye worms?
 
# does anyone know how to get rid of eye worms?
 
# Does anyone know if this is supposed to happen
 
# Does anyone know if this is supposed to happen
Line 1,008: Line 812:
 
# Doesn't like being referred to as garfield
 
# Doesn't like being referred to as garfield
 
# dOG SHAMING
 
# dOG SHAMING
# Doing Laundry on the TARDIS is hard. It's why companions wear the same clothes.
 
 
# DOMINO'S PIZZA IS MADE OF TURTLES! IT'S MADE OF TURTLES!!!!!!
 
# DOMINO'S PIZZA IS MADE OF TURTLES! IT'S MADE OF TURTLES!!!!!!
 
# Dominos delivers!
 
# Dominos delivers!
Line 1,021: Line 824:
 
# Don't send bees, send lions! and send them to france!
 
# Don't send bees, send lions! and send them to france!
 
# don't worry, it's part of my plan!
 
# don't worry, it's part of my plan!
# Don't you know the Dewey decimal system!?!?!?!?
 
 
# Don't you love it when a pet looks like it's owner
 
# Don't you love it when a pet looks like it's owner
 
# Done my nails, don't they look pretty?
 
# Done my nails, don't they look pretty?
Line 1,027: Line 829:
 
# doors from ikea: the pinnacle of excellency
 
# doors from ikea: the pinnacle of excellency
 
# Down time
 
# Down time
# Drat, the internet is leaking again.
 
 
# drill baby drill!
 
# drill baby drill!
 
# drive like an ass, be slapped like an ass!
 
# drive like an ass, be slapped like an ass!
Line 1,046: Line 847:
 
# Eat my shorts
 
# Eat my shorts
 
# Eating my breakfast!
 
# Eating my breakfast!
# eclipse o'clock
 
 
# Edward James Olmos to reprise his role as captain picard
 
# Edward James Olmos to reprise his role as captain picard
# Edward, no!
 
 
# Einstein, protesting the copenhagen interpretation, shaves his head.
 
# Einstein, protesting the copenhagen interpretation, shaves his head.
 
# elevator be damned, I'm going to keep going until I see myself!
 
# elevator be damned, I'm going to keep going until I see myself!
Line 1,056: Line 855:
 
# Et boum! C'est le choc!
 
# Et boum! C'est le choc!
 
# Even if you bind his beak, an eagle will drool on you out of spite
 
# Even if you bind his beak, an eagle will drool on you out of spite
# Even More Pictures of My Sweet little babies.
 
 
# even the sun cowers in fear!
 
# even the sun cowers in fear!
 
# Evenutally, they'll write moby dick.
 
# Evenutally, they'll write moby dick.
Line 1,066: Line 864:
 
# everything makes sense now
 
# everything makes sense now
 
# Everything truly IS awesome!
 
# Everything truly IS awesome!
# Everything's coming up Milhouse
 
 
# Evolution of puzzles
 
# Evolution of puzzles
 
# Exact composition of this... thing... is yet to be determined.
 
# Exact composition of this... thing... is yet to be determined.
Line 1,072: Line 869:
 
# Existance is an illusion
 
# Existance is an illusion
 
# Extreme beer pong
 
# Extreme beer pong
# FACESWAP  lol
 
 
# FACING east. 3.15pm. Can someone tell me where i am?
 
# FACING east. 3.15pm. Can someone tell me where i am?
 
# Family vacation has taken a turn for the worse.
 
# Family vacation has taken a turn for the worse.
Line 1,114: Line 910:
 
# for you
 
# for you
 
# Foreign clouds take british clouds' jobs
 
# Foreign clouds take british clouds' jobs
# Forgot to blow out my candles before I cut the cake
 
 
# forgot to turn the oven off!
 
# forgot to turn the oven off!
 
# Formal on top, party on the bottom
 
# Formal on top, party on the bottom
 
# Fortunately this is posted on Google+, so nobody will ever see it.
 
# Fortunately this is posted on Google+, so nobody will ever see it.
 
# Found this ancient manuscript, can anyone translate it?
 
# Found this ancient manuscript, can anyone translate it?
# found this at a novelty store
 
 
# found this in my fridge. Think it's still good?
 
# found this in my fridge. Think it's still good?
 
# Found this in my garden, wtf?
 
# Found this in my garden, wtf?
Line 1,127: Line 921:
 
# fourier transforms are too hard!!
 
# fourier transforms are too hard!!
 
# Frank, the newest herald of galactus.
 
# Frank, the newest herald of galactus.
# free the beast!
 
# Freedom in a nutshell.
 
 
# Freshly waxed floors + new socks
 
# Freshly waxed floors + new socks
 
# FRom the creators of AIR BUD, presenting air chip, the Soccer squirrel.  watch your Nuts! Summer 2016
 
# FRom the creators of AIR BUD, presenting air chip, the Soccer squirrel.  watch your Nuts! Summer 2016
Line 1,139: Line 931:
 
# furrowed mustache
 
# furrowed mustache
 
# Gentlemen, fire up your emacs buffers
 
# Gentlemen, fire up your emacs buffers
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
 
# Gentlemen.  If you find it you are set for life.
 
 
# George insisted there were better things to worry about, but I had a feeling this was important.
 
# George insisted there were better things to worry about, but I had a feeling this was important.
 
# George was a good little monkey, and always very curious.
 
# George was a good little monkey, and always very curious.
# get spare glasses before meeting rod serling
 
 
# Get that camera out of my face!
 
# Get that camera out of my face!
 
# get your ass to mars
 
# get your ass to mars
# Giant sentient banana found in space
 
 
# go home chitty chitty bang bang you are drunk
 
# go home chitty chitty bang bang you are drunk
 
# Go home Dumbledore. You're Drunk
 
# Go home Dumbledore. You're Drunk
 
# go home elephant you are drunk
 
# go home elephant you are drunk
 
# Go purr yourself!
 
# Go purr yourself!
# God i love sesame street
 
# God Save The Queen
 
 
# goddamnit, that's the fourth time this week!
 
# goddamnit, that's the fourth time this week!
 
# Goldilocks party!
 
# Goldilocks party!
 +
# gone fishing
 
# gone fishing  
 
# gone fishing  
 
# good old troubleshootin'
 
# good old troubleshootin'
Line 1,171: Line 958:
 
# Grab that snake, dont let it go, its lunchtime ya'know
 
# Grab that snake, dont let it go, its lunchtime ya'know
 
# Grandma's new boyfriend is a keeper!  
 
# Grandma's new boyfriend is a keeper!  
# Gravedigging time
 
 
# GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
 
# GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
 
# Great ScotT!
 
# Great ScotT!
Line 1,183: Line 969:
 
# GUYS HELP IS THIS SWINE FLU?
 
# GUYS HELP IS THIS SWINE FLU?
 
# Guys, I Found a Unicorn!
 
# Guys, I Found a Unicorn!
# Guys, this picture is awful
 
 
# ha ha ha... no.
 
# ha ha ha... no.
 
# Had to settle for a beard
 
# Had to settle for a beard
 
# haha oh my cat
 
# haha oh my cat
# haha! i am dead inside!
 
 
# Hams apparently don't make good wheel replacements
 
# Hams apparently don't make good wheel replacements
 
# HAN SHOT THIRD #YOLO
 
# HAN SHOT THIRD #YOLO
Line 1,199: Line 983:
 
# Have fun in the Alps lol
 
# Have fun in the Alps lol
 
# Have fun stormin' da castle.  
 
# Have fun stormin' da castle.  
# Have you closed the airlock before we took off?
 
 
# Have you ever seen a sitting cow before?
 
# Have you ever seen a sitting cow before?
# have you heard?
 
 
# Have you two seen a small person come through here recently? He may have been carying a blue sword.
 
# Have you two seen a small person come through here recently? He may have been carying a blue sword.
 
# havin fun in the wind tunnel. WHOOOSH!
 
# havin fun in the wind tunnel. WHOOOSH!
Line 1,213: Line 995:
 
# He's been there for three days
 
# He's been there for three days
 
# hello darkness my old friend
 
# hello darkness my old friend
# Hello earthlings
 
 
# hello you're on car talk
 
# hello you're on car talk
# help being attacked by wormsaaaaaagghh
+
# HELP I'M just a pheasant
 
# HELP I'M just a pheasant  
 
# HELP I'M just a pheasant  
 
# Help the police catch this violent criminal before he strikes again.
 
# Help the police catch this violent criminal before he strikes again.
Line 1,228: Line 1,009:
 
# Hey there cutie
 
# Hey there cutie
 
# Hey, check out my new green colored shirt!
 
# Hey, check out my new green colored shirt!
# Hey, check out this cool website i found!
 
 
# Hey, it's windows 7 again!
 
# Hey, it's windows 7 again!
 
# hey, so, we need to talk about your sphere-packing problem.
 
# hey, so, we need to talk about your sphere-packing problem.
Line 1,238: Line 1,018:
 
# Hide! It's Un Chien Andalou!
 
# Hide! It's Un Chien Andalou!
 
# High Bro, five.
 
# High Bro, five.
# His name is robert palmer.
 
 
# Hmm The Earth halves kinda look like buts.
 
# Hmm The Earth halves kinda look like buts.
 
# Hmmmm, which one isthe Vegan option?
 
# Hmmmm, which one isthe Vegan option?
Line 1,247: Line 1,026:
 
# Homework's done, finally time to get wasted
 
# Homework's done, finally time to get wasted
 
# Homo helicopteris captured in bali
 
# Homo helicopteris captured in bali
# Honest, officer, that's what happened!
 
 
# Hope that wasn't a granny knot
 
# Hope that wasn't a granny knot
 
# Hoping this makes it past customs
 
# Hoping this makes it past customs
 
# horses can't use chalk. stupid horse.
 
# horses can't use chalk. stupid horse.
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
 
# Houston, we are the problem
 
# Houston, we are the problem
 
# Hoverboard to full power!
 
# Hoverboard to full power!
Line 1,258: Line 1,035:
 
# How did I get here?!?
 
# How did I get here?!?
 
# How did the mars rover get here?
 
# How did the mars rover get here?
# how do i resize the city?
 
 
# how do I take photos with this?
 
# how do I take photos with this?
 
# how do i turn this off?
 
# how do i turn this off?
 
# how do you get the screensaver off?
 
# how do you get the screensaver off?
 
# How does this work again?
 
# How does this work again?
# How Else dID you think they make Toothpicks?
 
 
# How is this still a thing?
 
# How is this still a thing?
 
# How many can there be?
 
# How many can there be?
Line 1,304: Line 1,079:
 
# I certainly wasn't going to bury this one
 
# I certainly wasn't going to bury this one
 
# I CHOOSE YOU!
 
# I CHOOSE YOU!
# i did not account for the flames
 
 
# i do the same thing at frat parties
 
# i do the same thing at frat parties
# I Don't believe in primordial black holes... I don't believe in primordial black holes...
 
 
# I don't Even know What this ad is trying to promote.
 
# I don't Even know What this ad is trying to promote.
# i don't even remember taking this pic!
 
 
# I don't get it either.
 
# I don't get it either.
 
# i don't have time for this!
 
# i don't have time for this!
Line 1,337: Line 1,109:
 
# I found a three fingered kitten!
 
# I found a three fingered kitten!
 
# I found it!!!!!!!
 
# I found it!!!!!!!
# I found the missing pieces!
 
# i found this ancient manuscript. can anyone translate it?
 
 
# I found this in my navel, should I be worried?
 
# I found this in my navel, should I be worried?
 
# I found this little guy in the woods near my house
 
# I found this little guy in the woods near my house
# I found this on my arm when I woke up this morning. Can anyone tell me what it is?!
 
 
# I got a new geigerteller
 
# I got a new geigerteller
 
# I GOT MY EYEBROWS DID
 
# I GOT MY EYEBROWS DID
 
# I got the job!
 
# I got the job!
# I got the keys to the city.
 
 
# I got this in the mail today
 
# I got this in the mail today
 
# I guess I only have myself to blame.
 
# I guess I only have myself to blame.
# I guess the cat didn't really want to go to the vet
 
 
# I has a sad
 
# I has a sad
 
# i hate
 
# i hate
Line 1,356: Line 1,123:
 
# I hate trying to win bowls of cereal in 'skill tester' machines
 
# I hate trying to win bowls of cereal in 'skill tester' machines
 
# I hate waking up from a really good dream
 
# I hate waking up from a really good dream
# i hate you.  die in a fire.
 
 
# i have a bad feeling about this.
 
# i have a bad feeling about this.
 
# I havE A SLIGHT MELTING MOTHER-IN-LAW ISSUE
 
# I havE A SLIGHT MELTING MOTHER-IN-LAW ISSUE
Line 1,363: Line 1,129:
 
# I hear someone yelling at me... i have no idea why
 
# I hear someone yelling at me... i have no idea why
 
# I hope he's not hungry
 
# I hope he's not hungry
# I immediately regret eating that
 
 
# i invented a thing
 
# i invented a thing
 
# I just bought this
 
# I just bought this
Line 1,373: Line 1,138:
 
# I knew I nailed it!
 
# I knew I nailed it!
 
# I KNEW I WASN'T GOING TO BE ABLE TO WALK IN THESE!
 
# I KNEW I WASN'T GOING TO BE ABLE TO WALK IN THESE!
# I knew it wasn't cheese after the first bite, but i didn't want to be rude to God. He worked so hard on it.
 
 
# I knew it would be a bad idea to go during the mating season
 
# I knew it would be a bad idea to go during the mating season
 
# I knew pi would lead to this
 
# I knew pi would lead to this
Line 1,384: Line 1,148:
 
# I lost my wrist
 
# I lost my wrist
 
# i love a good featureless white void
 
# i love a good featureless white void
# i love my family
 
 
# I Love Playing Piano during Duck Mating season
 
# I Love Playing Piano during Duck Mating season
 
# I love star wars!
 
# I love star wars!
Line 1,393: Line 1,156:
 
# i need one of those 'l'-shaped tetris pieces. you seen any?
 
# i need one of those 'l'-shaped tetris pieces. you seen any?
 
# i need to do my laundry more often.
 
# i need to do my laundry more often.
# I never get a space ship, I never get anything!
 
 
# I never thought that the job of data mining would be so aerobic
 
# I never thought that the job of data mining would be so aerobic
 
# I never understood that part of the bibile
 
# I never understood that part of the bibile
Line 1,400: Line 1,162:
 
# I put on my wizard robe and hat
 
# I put on my wizard robe and hat
 
# I REALLY, REALLY DIDN'T THINK THIS THROUGH.
 
# I REALLY, REALLY DIDN'T THINK THIS THROUGH.
# i refuse to regret this decision
 
 
# I said we'd get on like a house on fire.
 
# I said we'd get on like a house on fire.
 
# i say, the cheat, let us prey upon that poor sap, the home star runner!
 
# i say, the cheat, let us prey upon that poor sap, the home star runner!
Line 1,406: Line 1,167:
 
# I see you have constructed a new lightsaber
 
# I see you have constructed a new lightsaber
 
# I sentence you to deliciousness!
 
# I sentence you to deliciousness!
# I should not have tried those shrooms...
 
 
# I should really separate those
 
# I should really separate those
 
# I solved the debt crisis!
 
# I solved the debt crisis!
Line 1,414: Line 1,174:
 
# I TELL YA, NOTHING BEATS A FRIED EGG ON TOAST!
 
# I TELL YA, NOTHING BEATS A FRIED EGG ON TOAST!
 
# I think I can... I think I can
 
# I think I can... I think I can
# I think I have too many swords
 
 
# I think I just came across a QUANTUM teleporter
 
# I think I just came across a QUANTUM teleporter
 
# I think i lost my dorsal fin
 
# I think i lost my dorsal fin
# I think i made a point!
 
 
# i think i need to get out more.
 
# i think i need to get out more.
 
# I think I've figured out how to setup PostgreSQL
 
# I think I've figured out how to setup PostgreSQL
Line 1,432: Line 1,190:
 
# I thought it was a good idea at the time
 
# I thought it was a good idea at the time
 
# I thought it would be bigger
 
# I thought it would be bigger
# i thought maybe if I uninstalled flash...
 
 
# I thought of it, and it happened
 
# I thought of it, and it happened
 
# I thought this ball pit would be more fun
 
# I thought this ball pit would be more fun
Line 1,445: Line 1,202:
 
# I want to run, but my legs won't move :(
 
# I want to run, but my legs won't move :(
 
# I warned him about the Star Wars Holiday Special.
 
# I warned him about the Star Wars Holiday Special.
# I was an adventurer like you, but then i took an arrow to the knee
 
 
# I was cleaning jello off the floor for *AGES*
 
# I was cleaning jello off the floor for *AGES*
# I was going to eat it, but then I found Out It had Gluten
 
 
# i was gonna eat that
 
# i was gonna eat that
 
# I was just mugged by an angry mob of hipsters!
 
# I was just mugged by an angry mob of hipsters!
 
# I was just trying to install freebsd...
 
# I was just trying to install freebsd...
 
# I was late
 
# I was late
# I was making a mind map but I fell off the edge...
 
 
# i was told this came with a bowl of soup.
 
# i was told this came with a bowl of soup.
 
# I welcome our event-driven overlords
 
# I welcome our event-driven overlords
 
# I will take that one please
 
# I will take that one please
# I will use it if it is web scale
 
 
# I will wear this shirt until one of us dies.
 
# I will wear this shirt until one of us dies.
 
# I wish I could afford the monopolar model...
 
# I wish I could afford the monopolar model...
 
# I wish I could ride in a balloon
 
# I wish I could ride in a balloon
# I wish they'd standardize the charger
 
# I wish this was fake...
 
 
# I woke up sleeping next to this. #yolo
 
# I woke up sleeping next to this. #yolo
 
# I wonder if it will be friends with me
 
# I wonder if it will be friends with me
Line 1,484: Line 1,235:
 
# i'll see you on the dark side of the moon
 
# i'll see you on the dark side of the moon
 
# I'll show you a forbidden electronic transition!
 
# I'll show you a forbidden electronic transition!
# i'M 12 AND WHAT IS THIS?
 
 
# I'm 95% percent certain this is battletoads
 
# I'm 95% percent certain this is battletoads
# I'm a bird lol
 
 
# I'm a fighter!
 
# I'm a fighter!
 
# I'm a Real Boy!
 
# I'm a Real Boy!
Line 1,504: Line 1,253:
 
# I'm ready!
 
# I'm ready!
 
# i'm really diggin' your shovel
 
# i'm really diggin' your shovel
# i'm so funny and original
 
 
# I'm so lost. My gps told me to go this way, and now it has stopped working entirely
 
# I'm so lost. My gps told me to go this way, and now it has stopped working entirely
 
# I'm sorry, I'm gluten free
 
# I'm sorry, I'm gluten free
Line 1,512: Line 1,260:
 
# I've found a new way to feed the poor
 
# I've found a new way to feed the poor
 
# I've got a tombstone disposition and a graveyard mind.
 
# I've got a tombstone disposition and a graveyard mind.
# i've got hurt feelings
 
 
# i've made a huge mistake
 
# i've made a huge mistake
 
# I've made a huge mistake
 
# I've made a huge mistake
Line 1,521: Line 1,268:
 
# I've seen enough hentai to know where this is going.
 
# I've seen enough hentai to know where this is going.
 
# If classy cats evolved from regular cats, why are there still regular cats? checkmate, evolution.
 
# If classy cats evolved from regular cats, why are there still regular cats? checkmate, evolution.
# if democracy fails you can count on stalin!
 
 
# if dreams can't come true, then why not pretend?
 
# if dreams can't come true, then why not pretend?
 
# If i am in your dreams at night, in those dreams i want you to describe to me the sources of international law
 
# If i am in your dreams at night, in those dreams i want you to describe to me the sources of international law
 
# if i don't return by 5pm give this photo to my kids when they grow up
 
# if i don't return by 5pm give this photo to my kids when they grow up
 
# If it quacks like a duck... in spaaace!!!
 
# If it quacks like a duck... in spaaace!!!
# if only i had friends...
 
 
# if there is no water on mars, at least there is data
 
# if there is no water on mars, at least there is data
 
# if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
 
# if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
# if you got it, flaunt it
 
 
# If you hadn't invented it, it would have to exist.
 
# If you hadn't invented it, it would have to exist.
 
# If you liked it then you should've put a ring on it
 
# If you liked it then you should've put a ring on it
Line 1,541: Line 1,285:
 
# In an N-dimensional space, optimal strategy is to think *inside* the box.
 
# In an N-dimensional space, optimal strategy is to think *inside* the box.
 
# In case you didn't know, that's an entire city running away. Buildings and all. You should run too.
 
# In case you didn't know, that's an entire city running away. Buildings and all. You should run too.
# In D&D you *are* your equipment
 
 
# In hindsight, it makes perfect sense
 
# In hindsight, it makes perfect sense
 
# In hindsight, this probably wasn't the best way to teach addition
 
# In hindsight, this probably wasn't the best way to teach addition
Line 1,557: Line 1,300:
 
# Interior Crocodile alligator, I drive a Chevrolet movie theater
 
# Interior Crocodile alligator, I drive a Chevrolet movie theater
 
# International relationships are getting worse
 
# International relationships are getting worse
# Interns wanted: Must have 5TB+ of Storage Space.
 
 
# intertial reference frame, activate!
 
# intertial reference frame, activate!
 
# introducing the yolo distribution
 
# introducing the yolo distribution
 
# is good idea yes
 
# is good idea yes
# Is it a bird, is it a plane, no it is spiderpig!
 
 
# Is it canibalism if i eat my own nose?
 
# Is it canibalism if i eat my own nose?
 
# is it midnight yet?
 
# is it midnight yet?
Line 1,582: Line 1,323:
 
# Is this room 101?
 
# Is this room 101?
 
# Is this too cheesy?
 
# Is this too cheesy?
# Isn't he cute?
 
 
# it all fits together, guys!
 
# it all fits together, guys!
 
# it is better to light a kindle than to be a cursor in the darkness
 
# it is better to light a kindle than to be a cursor in the darkness
Line 1,596: Line 1,336:
 
# It was then that the ugly duckling realized that beauty was an arbitrarily-defined  cultural construct, and that true beauty came from within.
 
# It was then that the ugly duckling realized that beauty was an arbitrarily-defined  cultural construct, and that true beauty came from within.
 
# It's a cat ass trophy
 
# It's a cat ass trophy
# it's a faaaaake!
 
 
# It's a Finger trap
 
# It's a Finger trap
# it's a metaphor
 
 
# It's a timey-wimey time-lord
 
# It's a timey-wimey time-lord
# It's ALIVE!
 
 
# it's bicycles all the way down
 
# it's bicycles all the way down
 
# It's bigger after you put it together.
 
# It's bigger after you put it together.
# it's called "depleted" 'cause it's heavier
 
 
# it's fun to do bad things
 
# it's fun to do bad things
 
# it's in a good part of town
 
# it's in a good part of town
Line 1,616: Line 1,352:
 
# it's pretty dark in this box
 
# it's pretty dark in this box
 
# It's smaller on the outside
 
# It's smaller on the outside
# It's the great pumpkin, Charlie Brown!
 
 
# It's the little things
 
# It's the little things
# it's the minecraft world
 
 
# Jesus Wept
 
# Jesus Wept
 
# Jet fuel *can* melt steal beams.
 
# Jet fuel *can* melt steal beams.
Line 1,626: Line 1,360:
 
# John never thought a tongue fractal would hurt so much
 
# John never thought a tongue fractal would hurt so much
 
# John really wanted to travel north, however that side of the road was missing
 
# John really wanted to travel north, however that side of the road was missing
# Joining the illuminati was the best decision EVER!
 
 
# Journey warned you what would happen if you stopped believing.
 
# Journey warned you what would happen if you stopped believing.
 
# Jugghead got nothing on me :p
 
# Jugghead got nothing on me :p
Line 1,632: Line 1,365:
 
# just another cat video
 
# just another cat video
 
# Just another day in paradise
 
# Just another day in paradise
# Just another standard morning coffee
 
 
# Just combing my M.C. Escher
 
# Just combing my M.C. Escher
 
# just cos()
 
# just cos()
Line 1,640: Line 1,372:
 
# just learned where milk comes from! #vegan4ever
 
# just learned where milk comes from! #vegan4ever
 
# just look at that motherfucking satellite
 
# just look at that motherfucking satellite
# Just not myself today.
 
 
# Just one of those days
 
# Just one of those days
 
# just playing with my pet
 
# just playing with my pet
# Just prior to learning I should have paid more attention in Kinematics.
 
 
# Just some home decorating
 
# Just some home decorating
 
# Just took a Fourier transform of my nightmares.
 
# Just took a Fourier transform of my nightmares.
Line 1,665: Line 1,395:
 
# Legal Issues
 
# Legal Issues
 
# Lego: hours of preparation, 5 minutes of Godzilla re-enactment
 
# Lego: hours of preparation, 5 minutes of Godzilla re-enactment
# lemme at dem boigas!!!
 
# Lemons don't smell like cheese when you burn them.
 
 
# Let it go, let it go.... the cold never bothered me anyway.
 
# Let it go, let it go.... the cold never bothered me anyway.
 
# Let's go left, they said. The other path looks boring, they said.  
 
# Let's go left, they said. The other path looks boring, they said.  
Line 1,682: Line 1,410:
 
# like my new haircut?
 
# like my new haircut?
 
# Like my new nails?
 
# Like my new nails?
# Likes grains of sand in an hourglass...
 
 
# linux compatible toaster at last!
 
# linux compatible toaster at last!
 
# Listen, I wouldn't worry about that. . .
 
# Listen, I wouldn't worry about that. . .
Line 1,699: Line 1,426:
 
# Look guys! I'm Vincent Van Gogh!  
 
# Look guys! I'm Vincent Van Gogh!  
 
# Look I genehacked a cowhorse!
 
# Look I genehacked a cowhorse!
# look into my eyes, look deep into my eyes.
 
 
# look ma, no hands!
 
# look ma, no hands!
 
# Look man, it's never gonna happen
 
# Look man, it's never gonna happen
Line 1,713: Line 1,439:
 
# Los Angeles sure is beautiful this time of year
 
# Los Angeles sure is beautiful this time of year
 
# Lost in Space...
 
# Lost in Space...
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
 
 
# lost, no gps. does anyone recognize this landmark?
 
# lost, no gps. does anyone recognize this landmark?
 
# Love is creepy
 
# Love is creepy
Line 1,720: Line 1,445:
 
# Lucky Charms, now with the Higgs Bozon!
 
# Lucky Charms, now with the Higgs Bozon!
 
# Lunar hatchet throwing contest champion
 
# Lunar hatchet throwing contest champion
# Luuunch-Tiiiiiime
 
 
# Macklemore concert was awesome!
 
# Macklemore concert was awesome!
 
# Made in god's own image, yessiree!
 
# Made in god's own image, yessiree!
Line 1,729: Line 1,453:
 
# Making grape Plasma, om nom nom!
 
# Making grape Plasma, om nom nom!
 
# Malcovic, Malcovic, Malcovic, Malcovic!
 
# Malcovic, Malcovic, Malcovic, Malcovic!
# Malkovich Malkovich Malkovich
 
 
# Man in the Moon slumming
 
# Man in the Moon slumming
# man it's hot today
 
 
# Man or mouse? No need to decide!
 
# Man or mouse? No need to decide!
 
# Man with face of clock discovered in Beatty, Nevada; Scientists befuddled
 
# Man with face of clock discovered in Beatty, Nevada; Scientists befuddled
Line 1,750: Line 1,472:
 
# Maybe "Sandworm Petting Zoo" was a bad idea.
 
# Maybe "Sandworm Petting Zoo" was a bad idea.
 
# Maybe they should have put the gun control check point outside the building...
 
# Maybe they should have put the gun control check point outside the building...
# Maybe this counts as clean energy
 
 
# McDonald's 1 Dollar burger explained
 
# McDonald's 1 Dollar burger explained
 
# me and all my friends
 
# me and all my friends
Line 1,758: Line 1,479:
 
# Me, when I realised I hadn't packed any Messenger pigeons. Awkward!
 
# Me, when I realised I hadn't packed any Messenger pigeons. Awkward!
 
# Medieval theme on the internal company conference. My Logo proposal. Comments?
 
# Medieval theme on the internal company conference. My Logo proposal. Comments?
# Meet fluffy, just showed up at my door one night
 
 
# Meet the new CEO of my Bank!
 
# Meet the new CEO of my Bank!
 
# memories of me and my papa at the creek. life was so much simpler then...
 
# memories of me and my papa at the creek. life was so much simpler then...
 
# Mentos and lava
 
# Mentos and lava
# Meow what seems to be the problem?
 
 
# Mercator projection on a cube... Globes are boring.
 
# Mercator projection on a cube... Globes are boring.
 
# Meritocracy is a pipe dream
 
# Meritocracy is a pipe dream
Line 1,771: Line 1,490:
 
# Mistakes were made.
 
# Mistakes were made.
 
# Mmm, Spider cake!
 
# Mmm, Spider cake!
# Mmm... Vegemite
 
 
# mmm...vegemite...
 
# mmm...vegemite...
# mmmmm.... Bones....
 
 
# Modern art is getting a little too modern for me.
 
# Modern art is getting a little too modern for me.
 
# modest pile of dinosaurs
 
# modest pile of dinosaurs
Line 1,782: Line 1,499:
 
# More advantages to USB type c revealed
 
# More advantages to USB type c revealed
 
# More like, Peek-a-Pooh!
 
# More like, Peek-a-Pooh!
# morning selfie :-)
 
 
# Moses lied to me.
 
# Moses lied to me.
# Mother died today. Or maybe yesterday; I can't be sure.
 
 
# Mr. Potato-Head human hybrid discovered  
 
# Mr. Potato-Head human hybrid discovered  
 
# Muahahahahahah
 
# Muahahahahahah
 
# My 7 picture is upside down
 
# My 7 picture is upside down
 
# My baby is learning how to write!
 
# My baby is learning how to write!
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
 
 
# My boyfriend finally proposed!
 
# My boyfriend finally proposed!
 
# my castles stand on pillars of sand
 
# my castles stand on pillars of sand
Line 1,809: Line 1,523:
 
# My feet are cold. Can anyone warm them up?
 
# My feet are cold. Can anyone warm them up?
 
# My first selfie!
 
# My first selfie!
# my flatmate told me he would cook diner.
 
 
# My four other heads and I are counting on your vote!
 
# My four other heads and I are counting on your vote!
 
# my friend posing while a plane flies by
 
# my friend posing while a plane flies by
 
# MY GIRL'S SCIENCE FAIR PROJECT WAS A BLAST!
 
# MY GIRL'S SCIENCE FAIR PROJECT WAS A BLAST!
 
# My girlfriend thinks I need to shave my beard.  Thoughts?
 
# My girlfriend thinks I need to shave my beard.  Thoughts?
# My God do I hate being right all the time
 
 
# My God! It's full of stars. No, wait. Swords, it's full of swords!
 
# My God! It's full of stars. No, wait. Swords, it's full of swords!
 
# My gout's acting up again
 
# My gout's acting up again
Line 1,833: Line 1,545:
 
# my new duvet cover!
 
# my new duvet cover!
 
# my new haircut only exists in another dimension
 
# my new haircut only exists in another dimension
 +
# My new haircut!
 
# My new haircut!  
 
# My new haircut!  
 
# My new neighbor seems a  bit odd
 
# My new neighbor seems a  bit odd
Line 1,844: Line 1,557:
 
# My parents took away my phone privileges
 
# My parents took away my phone privileges
 
# my rockets have formed a cooperative but I have to do the dishes
 
# my rockets have formed a cooperative but I have to do the dishes
# My roomba is slower than normal
 
 
# My roommate Just got home and barged into my room
 
# My roommate Just got home and barged into my room
# My roommate ordered pizza - I didn't save him any.
 
 
# my scarecrow took some additional measures of its own...
 
# my scarecrow took some additional measures of its own...
 
# My screen test for Top Gear didn't go well...
 
# My screen test for Top Gear didn't go well...
Line 1,855: Line 1,566:
 
# my time machine isn't working again! D:
 
# my time machine isn't working again! D:
 
# my toothache has got worse recently
 
# my toothache has got worse recently
# My trip to Europe #selfie
 
 
# My vacation to the Area 51 Testing site!
 
# My vacation to the Area 51 Testing site!
 
# my wonderful dad!
 
# my wonderful dad!
Line 1,886: Line 1,596:
 
# New pet! #soadorable #imbleeding
 
# New pet! #soadorable #imbleeding
 
# new phone who dis
 
# new phone who dis
# new president misuses "literal", becomes a duck
 
 
# New selfy stick you can hold with your foot
 
# New selfy stick you can hold with your foot
 
# New Super Mario bros in real life!
 
# New Super Mario bros in real life!
Line 1,892: Line 1,601:
 
# new tattoo on the back of my head so no one can sneak up on me
 
# new tattoo on the back of my head so no one can sneak up on me
 
# Newest cheesy movie: When trees attack
 
# Newest cheesy movie: When trees attack
# Nice leg.
 
 
# NICE MULTIPANTS
 
# NICE MULTIPANTS
 
# night sledding deserves a quiet night
 
# night sledding deserves a quiet night
# No good deed goes unpunished
 
 
# No guitar without a sombrero
 
# No guitar without a sombrero
 
# No lie, this is delicious
 
# No lie, this is delicious
Line 1,914: Line 1,621:
 
# nonononononononononononononononononononononononono
 
# nonononononononononononononononononononononononono
 
# Nope nope nope nope nope
 
# Nope nope nope nope nope
# Northrop Grumman has released the world's first Macrowave Oven. Enclosed in this prototype is the entire nation of iran.
 
 
# Not a fruit
 
# Not a fruit
 
# Not Again :(
 
# Not Again :(
# Not all dreams can come true
 
 
# Not as healthy as it looks
 
# Not as healthy as it looks
 
# Not even once
 
# Not even once
# Not even once...
 
 
# Not gonna lie. No idea what this is.
 
# Not gonna lie. No idea what this is.
 
# Not only was the moon landing staged, but it was done with puppets.
 
# Not only was the moon landing staged, but it was done with puppets.
# not sure whether or not to tip him
 
# Note 2: Use a frozen potato
 
 
# Note: HUGE SUCCess
 
# Note: HUGE SUCCess
 
# Nothing new under the sun
 
# Nothing new under the sun
# Nothing to see here.
 
 
# Notice anything different?
 
# Notice anything different?
 
# Notice: thank you for noticing. Your noticing has been noted.
 
# Notice: thank you for noticing. Your noticing has been noted.
# Now that I am an adult I can decide what that means.
 
 
# Now turn it upside-down
 
# Now turn it upside-down
 
# Now we play... the most dangerous game
 
# Now we play... the most dangerous game
 
# Now we're ready to attach the spiders.  Remember, be gentle.
 
# Now we're ready to attach the spiders.  Remember, be gentle.
# Now where did i leave my ocarina. . .
 
 
# now you're hungry too.
 
# now you're hungry too.
 
# Now, It's not every Day you get to be glorious leader
 
# Now, It's not every Day you get to be glorious leader
Line 1,942: Line 1,641:
 
# obsession is a dangerous thing
 
# obsession is a dangerous thing
 
# Office gamification has got out of hand.
 
# Office gamification has got out of hand.
# Officer, You could arrest me, but just this once, let's Just Hug it Out.
 
 
# Oh bother not again
 
# Oh bother not again
 
# oh damn! it's that time of the year again!
 
# oh damn! it's that time of the year again!
Line 1,948: Line 1,646:
 
# OH GOD HOW DO I COMPUTER?!?!?!!
 
# OH GOD HOW DO I COMPUTER?!?!?!!
 
# Oh god is it still following me?
 
# Oh god is it still following me?
# OH GOD SPIDERS
 
 
# OH GOD WHAT HAVE I DONE
 
# OH GOD WHAT HAVE I DONE
 
# OH GOD WHAT HAVE I DONE?!
 
# OH GOD WHAT HAVE I DONE?!
Line 1,962: Line 1,659:
 
# Oh no, it's the moon
 
# Oh no, it's the moon
 
# Oh No! Not again!
 
# Oh No! Not again!
 +
# Oh no! Not Again.
 
# Oh no! Not again.
 
# Oh no! Not again.
# Oh no! Not Again.
 
 
# Oh shit, not again.
 
# Oh shit, not again.
 
# Oh, Canada...
 
# Oh, Canada...
# oh, god, why?
 
 
# oh, is that godot? Finally...
 
# oh, is that godot? Finally...
 
# Oh, that's where I left them!
 
# Oh, that's where I left them!
Line 1,973: Line 1,669:
 
# Okay, bradford pears grow *really* fast.
 
# Okay, bradford pears grow *really* fast.
 
# Okay, I concede that maybe using a trebuchet is not the best shortcut
 
# Okay, I concede that maybe using a trebuchet is not the best shortcut
# omfg who would wear that hat
 
 
# omfg, space bugs
 
# omfg, space bugs
 
# OMG Becky look at her butt
 
# OMG Becky look at her butt
Line 1,983: Line 1,678:
 
# On a scale of one to ten, I fucked up.
 
# On a scale of one to ten, I fucked up.
 
# On the plus side, the exhaust system does work
 
# On the plus side, the exhaust system does work
# On what planet is this an acceptable shade tree? #Goaway
 
 
# one does not simply wok into mordor
 
# one does not simply wok into mordor
 
# one electrocution can ruin your entire day
 
# one electrocution can ruin your entire day
Line 1,994: Line 1,688:
 
# Only 90s kids will remember
 
# Only 90s kids will remember
 
# Only managed to clock 87 miles Per hour. Crap.
 
# Only managed to clock 87 miles Per hour. Crap.
# Only way to be sure #nukefromorbit
 
 
# onomatopoeia? I hardly know ia!
 
# onomatopoeia? I hardly know ia!
 
# oompa loompa diggeti doo
 
# oompa loompa diggeti doo
# OOooommmm bop, bop bop bah boo whop
 
 
# Oops, I forgot the cowboy hat
 
# Oops, I forgot the cowboy hat
 
# oops, oops, oops, okay this is happening  
 
# oops, oops, oops, okay this is happening  
Line 2,004: Line 1,696:
 
# Optimus prime was having a bad day.
 
# Optimus prime was having a bad day.
 
# Otters. They are the craziest.
 
# Otters. They are the craziest.
# ouch!
 
 
# our ballistic artillery now come with advanced fire-control systems
 
# our ballistic artillery now come with advanced fire-control systems
 
# Our flying car attemps seems to got out of hand
 
# Our flying car attemps seems to got out of hand
Line 2,012: Line 1,703:
 
# Oy, my giblets!
 
# Oy, my giblets!
 
# Pac-man's missing piece
 
# Pac-man's missing piece
# Pacman or ms.Pacman?
 
 
# Pants Optional
 
# Pants Optional
 
# paper can't substitute the smell of an old kindle
 
# paper can't substitute the smell of an old kindle
Line 2,041: Line 1,731:
 
# picture proof that alien invasion is real! #thanksobama
 
# picture proof that alien invasion is real! #thanksobama
 
# PIctures from my trip to Mount Binary
 
# PIctures from my trip to Mount Binary
# Piglet was not amused
 
 
# Pintsize what are you doing?!
 
# Pintsize what are you doing?!
 
# Pizza TIME
 
# Pizza TIME
Line 2,047: Line 1,736:
 
# Please note that our professional disaster recovery team are working tirelessly to rebuild your data. We apologise for the delay. - xkcloud
 
# Please note that our professional disaster recovery team are working tirelessly to rebuild your data. We apologise for the delay. - xkcloud
 
# Please send help.
 
# Please send help.
# Please, please, please not again!
 
# Please. Save yourself.
 
 
# Plotting the Extrapolation of a Quasi-Exponential Function On Non-Orthogonal Cartesionoid Axes
 
# Plotting the Extrapolation of a Quasi-Exponential Function On Non-Orthogonal Cartesionoid Axes
 
# Posting my garden to Etsy. #humbleswag
 
# Posting my garden to Etsy. #humbleswag
Line 2,064: Line 1,751:
 
# pronounced duh-jango
 
# pronounced duh-jango
 
# Proof Global Warming Is hoax!!!!!
 
# Proof Global Warming Is hoax!!!!!
# Proof that dinosaurs and humans coexisted
 
# proof that we didn't actually land on the moon. Americans are sheep
 
 
# PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
 
# PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
 
# Proof: loch ness monster.
 
# Proof: loch ness monster.
Line 2,076: Line 1,761:
 
# Quite.
 
# Quite.
 
# QWANTZ Fanfic
 
# QWANTZ Fanfic
# Rabbits are vicious creatures when their data are stolen
 
 
# racing stripes on hoodies are cool.
 
# racing stripes on hoodies are cool.
 
# Ramen is squishy and soft
 
# Ramen is squishy and soft
 
# RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
 
# RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
 
# Real Eyes Realize real lies.
 
# Real Eyes Realize real lies.
# real landscapes have curves
 
 
# real letters have curves #Serif
 
# real letters have curves #Serif
 
# Real pirates put the hook on their feet! Yarr!
 
# Real pirates put the hook on their feet! Yarr!
 
# really not how I thought I would die
 
# really not how I thought I would die
# Really, the star wars prequels are under-rated if you think about it
 
 
# Reblog to 500 people or your cat will die.
 
# Reblog to 500 people or your cat will die.
# rebranding of national park service almost complete
 
 
# rehearsals ARE going great! AnD Don't forget to come to the premiere on Thursday!
 
# rehearsals ARE going great! AnD Don't forget to come to the premiere on Thursday!
 
# release the kraken
 
# release the kraken
Line 2,096: Line 1,777:
 
# reverse et
 
# reverse et
 
# reverse microwave oven
 
# reverse microwave oven
# Riemann should have had this idea
 
# RIP SPEAK N SPELL
 
 
# rm -rf /
 
# rm -rf /
 
# Roadrunner is the new transport minister
 
# Roadrunner is the new transport minister
Line 2,104: Line 1,783:
 
# rock beats scissors
 
# rock beats scissors
 
# Rock, paper, FACE
 
# Rock, paper, FACE
# Rocket pseudo-science!
 
 
# rodeo!!
 
# rodeo!!
 
# rofl
 
# rofl
# Roll of toilet paper reacts to US Deficit
 
 
# Rollerskating always was overrated
 
# Rollerskating always was overrated
 
# run little ghost, run!
 
# run little ghost, run!
Line 2,119: Line 1,796:
 
# Saw this in a safari park, the rangers wouldn't help it
 
# Saw this in a safari park, the rangers wouldn't help it
 
# Saw this on the TV. I didn't turn it on. It was just there. The TV is unplugged and it's still there. Should I call a repairman?
 
# Saw this on the TV. I didn't turn it on. It was just there. The TV is unplugged and it's still there. Should I call a repairman?
# Saw this outside last night. Is it dangerous?
 
 
# school's out!
 
# school's out!
 
# Scientists create first man-clock hybrid
 
# Scientists create first man-clock hybrid
Line 2,134: Line 1,810:
 
# Selfie in corner store #35.  $10,000.
 
# Selfie in corner store #35.  $10,000.
 
# Selfie in the morning
 
# Selfie in the morning
# Selfie with Benedict Cumberbatch
 
 
# senpai noticed me! ^_^
 
# senpai noticed me! ^_^
 
# sentient IPOD deleted all my music. again.
 
# sentient IPOD deleted all my music. again.
Line 2,140: Line 1,815:
 
# share this so xkcd cannot sell our data to the reptilians
 
# share this so xkcd cannot sell our data to the reptilians
 
# She's got interesting taste in men.
 
# She's got interesting taste in men.
# Sheena, who dis
 
 
# Ships that pass in the night, and speak each other in passing
 
# Ships that pass in the night, and speak each other in passing
# Should i fall from grace?
 
 
# should i see a doctor about this?
 
# should i see a doctor about this?
 
# Should I sue my hairdresser or not really
 
# Should I sue my hairdresser or not really
 
# SIDE GOER 4
 
# SIDE GOER 4
 
# Since the Droste Incident, federal regulations have prohibited these types of experiments.
 
# Since the Droste Incident, federal regulations have prohibited these types of experiments.
# SINgle mom discovers incredible way to overthrow capitalism. you won't believe it!
 
 
# Skydiving #photobomb #shark #AAAAAAAAAAAAAAAAAAA
 
# Skydiving #photobomb #shark #AAAAAAAAAAAAAAAAAAA
# slippin' into the future
 
 
# smile for the camera!
 
# smile for the camera!
 
# Smile!  You're on Candid Microscope
 
# Smile!  You're on Candid Microscope
Line 2,157: Line 1,828:
 
# Snowman accident
 
# Snowman accident
 
# So I figured out that "inflammable" means the same thing as "flammable" today!  
 
# So I figured out that "inflammable" means the same thing as "flammable" today!  
# So i found this on my phone?
 
 
# so I went and summoned hitler but he got old
 
# so I went and summoned hitler but he got old
# So it's true, then.
 
# So it's true, then.
 
 
# so like my GF said cutting flowers is like totally bad, but she gets like really pissed if I forget ANY little anniversay, so #ifixed it
 
# so like my GF said cutting flowers is like totally bad, but she gets like really pissed if I forget ANY little anniversay, so #ifixed it
 
# So long and thanks for all the fish!
 
# So long and thanks for all the fish!
 
# So long, and thanks for all the fish
 
# So long, and thanks for all the fish
# So long, and thanks for the fistbumps
 
# so much for your "Democracy"
 
# So that happened
 
 
# So that's where that hour went on Sunday night
 
# So that's where that hour went on Sunday night
 
# So thats What Jesus did
 
# So thats What Jesus did
# So this happened.
 
 
# So turns out 'recycling' is not Riding a bike twice.
 
# So turns out 'recycling' is not Riding a bike twice.
 
# So, how many IT guys does it take to change a light bulb?
 
# So, how many IT guys does it take to change a light bulb?
Line 2,176: Line 1,840:
 
# So, this happened.  
 
# So, this happened.  
 
# so. sick. of. this. pic.
 
# so. sick. of. this. pic.
# So... the other day, I was minding my own business...you'll never guess what happened next!
 
 
# So... those were real
 
# So... those were real
 
# So...Magnets, right?
 
# So...Magnets, right?
 
# Solo Thumbwar
 
# Solo Thumbwar
 
# solve all your problems with hemlock
 
# solve all your problems with hemlock
# Some days you're the pigeon, some days you're the statue.
 
 
# some men just want to watch the world burn.
 
# some men just want to watch the world burn.
 
# Somebody sneezed in the Bathtub
 
# Somebody sneezed in the Bathtub
# Somehow the welcome mat ended up inside the house.
 
 
# someone just gave me this. I don't know what it means...
 
# someone just gave me this. I don't know what it means...
 
# someone take this banana off my face
 
# someone take this banana off my face
Line 2,216: Line 1,877:
 
# Stay in the moment. I want you to fully enjoy it.
 
# Stay in the moment. I want you to fully enjoy it.
 
# stay out of my house, santa
 
# stay out of my house, santa
# steel beams taste best with a dallop of gasoline
 
 
# Step 1:  Jump the shark.
 
# Step 1:  Jump the shark.
 
# sTEP ONE CUT A HOLE IN THE BOX
 
# sTEP ONE CUT A HOLE IN THE BOX
Line 2,223: Line 1,883:
 
# Still a better love story than "Last Tango in Paris."
 
# Still a better love story than "Last Tango in Paris."
 
# still better than last year in ottawa
 
# still better than last year in ottawa
# Still no martians
 
 
# still, i think it was a good idea
 
# still, i think it was a good idea
 
# stipple slash of saturn
 
# stipple slash of saturn
Line 2,231: Line 1,890:
 
# stork carrying a babby rabbit!
 
# stork carrying a babby rabbit!
 
# straight out of the hacker's jargon file!
 
# straight out of the hacker's jargon file!
# Straight outta compton
 
 
# Strange ingredients for a grilled cheese sandwich, but the recipe did say 'epic'...
 
# Strange ingredients for a grilled cheese sandwich, but the recipe did say 'epic'...
# Strangely, my patients don't like this new couch.
 
 
# Strolling down the street, saw this. #uglybeauty
 
# Strolling down the street, saw this. #uglybeauty
 
# Stuck in a loaded canon. Again. FML!
 
# Stuck in a loaded canon. Again. FML!
# Stupid Bird!
 
 
# Submarine-world promblems, amirite?
 
# Submarine-world promblems, amirite?
 
# such bike. so sustainable! very carbon-negative.
 
# such bike. so sustainable! very carbon-negative.
 
# such lambda
 
# such lambda
 
# Sun deflation: optimal
 
# Sun deflation: optimal
# Sunrise over the La brea tar pits! #majestic
 
 
# sunshine, lollipops, and rainbows...
 
# sunshine, lollipops, and rainbows...
# sup brah
 
 
# super high intensity training at NORAD
 
# super high intensity training at NORAD
# Support my kick-starter! A whole new devise with bluetooth and a button!
 
 
# SUPPOrt this new alarm clock on kickergogo!
 
# SUPPOrt this new alarm clock on kickergogo!
 
# Sure, they taught a robot to sing, but can they teach it to love?
 
# Sure, they taught a robot to sing, but can they teach it to love?
# Sweet, they new red shirts are on sale again!
 
 
# T-Rex in a snowfield #cretaceous #nofilter #cold
 
# T-Rex in a snowfield #cretaceous #nofilter #cold
 
# Taco bells give away resulted in unplanned consequences for downtown Houston.  
 
# Taco bells give away resulted in unplanned consequences for downtown Houston.  
Line 2,266: Line 1,918:
 
# Terms and conditions apply, actual product may vary
 
# Terms and conditions apply, actual product may vary
 
# Testing my new DIY nuclear power plant
 
# Testing my new DIY nuclear power plant
# Testing my new high-contrast filter outside the unicyclist meet up
 
 
# thank you for restoring my faith in the justice system
 
# thank you for restoring my faith in the justice system
 
# Thanks Obama!
 
# Thanks Obama!
Line 2,272: Line 1,923:
 
# that awkward moment when you are staring at Barad-dûr for its architectural merits.
 
# that awkward moment when you are staring at Barad-dûr for its architectural merits.
 
# That awkward moment when you realise that the dragon that you've been gossiping about is standing right behind you.
 
# That awkward moment when you realise that the dragon that you've been gossiping about is standing right behind you.
# That is not how you Ikea
 
 
# That is one dapper bird.
 
# That is one dapper bird.
 
# That is, in fact, a squirrel.
 
# That is, in fact, a squirrel.
Line 2,289: Line 1,939:
 
# THAT'S NUMBERWANG!
 
# THAT'S NUMBERWANG!
 
# that's one nasty burn!
 
# that's one nasty burn!
# That's the princess I want to save
 
 
# That's too much, man!
 
# That's too much, man!
 
# that's what she said... assuming I heard Her right. Can I come home now?
 
# that's what she said... assuming I heard Her right. Can I come home now?
# thats what she said
 
 
# The abyss stares longingly into my heart.
 
# The abyss stares longingly into my heart.
# The answer is blowing in the wind...
 
 
# The Arecibo Observatory looked bigger in the movie #disappoint #bummer #bond
 
# The Arecibo Observatory looked bigger in the movie #disappoint #bummer #bond
 
# The basis for fast and furious 13.
 
# The basis for fast and furious 13.
# THE BEES!!!!!
 
 
# The best brick joke possible.
 
# The best brick joke possible.
# the best stars are sky stars!
 
 
# The birds found the hobbit hole
 
# The birds found the hobbit hole
 
# The building blocks of life
 
# The building blocks of life
Line 2,328: Line 1,973:
 
# the game begins...
 
# the game begins...
 
# the game no please why do you haunt me the game i lost the game
 
# the game no please why do you haunt me the game i lost the game
# The gang destroyed the context
 
 
# The glow cloud (all hail) stopped by today.
 
# The glow cloud (all hail) stopped by today.
 
# The goats! They mutated! They are now airborne!
 
# The goats! They mutated! They are now airborne!
Line 2,349: Line 1,993:
 
# The little prince is full of siht
 
# The little prince is full of siht
 
# the lotr movies had some subtle changes from the books
 
# the lotr movies had some subtle changes from the books
# The machine was supposed to show the future, but it never turned on. I was horrified to realize this wasn't because it was broken.
 
 
# The magic smoke escaped :(
 
# The magic smoke escaped :(
 
# The man leaned in close, and that was when she discovered he had clockwork eyes!
 
# The man leaned in close, and that was when she discovered he had clockwork eyes!
Line 2,358: Line 2,001:
 
# The moon looks weird today
 
# The moon looks weird today
 
# The Moon Will Eat What it will
 
# The Moon Will Eat What it will
# The most diabolical teamup in history
 
 
# The Mushroom war claimed most of us. MOST....
 
# The Mushroom war claimed most of us. MOST....
 
# The new Doctor Who is quite the quack.
 
# The new Doctor Who is quite the quack.
Line 2,364: Line 2,006:
 
# the new usb feels like a step backward
 
# the new usb feels like a step backward
 
# The newest Olympic sport
 
# The newest Olympic sport
 +
# The next generation of crypto currencies
 
# The next generation of crypto currencies  
 
# The next generation of crypto currencies  
 
# The ninetys called, and I had to answer.
 
# The ninetys called, and I had to answer.
 
# The normal distribution looks higher from the bottom...
 
# The normal distribution looks higher from the bottom...
 
# the oceans are made of sky tears
 
# the oceans are made of sky tears
# The one true way
 
 
# the only people for me are the mad ones
 
# the only people for me are the mad ones
 
# The press conference lasted shorter than expected!
 
# The press conference lasted shorter than expected!
Line 2,378: Line 2,020:
 
# the rest is darkness and decay
 
# the rest is darkness and decay
 
# The Return to the escape from Skull Emerald Island IV: The Re-Escapening
 
# The Return to the escape from Skull Emerald Island IV: The Re-Escapening
# The ritual has begun.
 
 
# The rook is getting closer. Help me.
 
# The rook is getting closer. Help me.
 
# the saddest moment of my childhood
 
# the saddest moment of my childhood
Line 2,403: Line 2,044:
 
# The weight of life in a starry landscape
 
# The weight of life in a starry landscape
 
# the world isn't flat, it's a cube!
 
# the world isn't flat, it's a cube!
# The world isn't Flat, it's Sharp
 
 
# The Zebra was lying down
 
# The Zebra was lying down
# the zoidberg axis
 
 
# their love was doomed from the start...
 
# their love was doomed from the start...
 
# Their vengeance was swift, but surprisingly subtle...
 
# Their vengeance was swift, but surprisingly subtle...
 
# Thelma and louise was reaaaaaallll
 
# Thelma and louise was reaaaaaallll
 
# There goes the neighborhood...
 
# There goes the neighborhood...
# There is a whole other world in my navel
 
 
# There is no curse in elvish, entish, or the tongues of men for this treachery.
 
# There is no curse in elvish, entish, or the tongues of men for this treachery.
 
# There is no way you can back up that claim. And that's okay.
 
# There is no way you can back up that claim. And that's okay.
Line 2,418: Line 2,056:
 
# There's a third bump, growing fast
 
# There's a third bump, growing fast
 
# There's an rfid tag in every slice of pepperoni.
 
# There's an rfid tag in every slice of pepperoni.
# There's no more time!
 
 
# These aren't my sandwiches
 
# These aren't my sandwiches
 
# These cravings will never stop
 
# These cravings will never stop
 
# These hoof warmers are incredibly comfortable!
 
# These hoof warmers are incredibly comfortable!
# These night vision goggles don't work
 
# these pretzels are making me thirsty.
 
 
# These two impress me every single day! #proudfather
 
# These two impress me every single day! #proudfather
 
# THEY added extra salami!! I told them i HAte salami!! they hate me!!! fml!!!!!
 
# THEY added extra salami!! I told them i HAte salami!! they hate me!!! fml!!!!!
# They can see me!
 
 
# they dont need us anymore
 
# they dont need us anymore
 
# they had no idea the damage they had done
 
# they had no idea the damage they had done
Line 2,436: Line 2,070:
 
# They see me rolling, they hating
 
# They see me rolling, they hating
 
# they told me carrots were good for eye health
 
# they told me carrots were good for eye health
# they told me cat eyes would make me look good
 
 
# they're all dead, dave.
 
# they're all dead, dave.
 
# They're all watching me
 
# They're all watching me
Line 2,460: Line 2,093:
 
# THis is a love/hate poem.
 
# THis is a love/hate poem.
 
# This is exactly what you think it is
 
# This is exactly what you think it is
# this is for all you haters who said i'd never make it as a conductor.
 
# THIS IS FOR KIBO!
 
 
# This is how we celebrate easter usually
 
# This is how we celebrate easter usually
 
# This is how you get ants!
 
# This is how you get ants!
Line 2,472: Line 2,103:
 
# This is not a camera, it's a washing machine!
 
# This is not a camera, it's a washing machine!
 
# this is not what i meant it to be
 
# this is not what i meant it to be
# tHis is not what i was looking for
 
 
# This is so awsome! Picture of the year! So glad that I got that new camera!!!!!
 
# This is so awsome! Picture of the year! So glad that I got that new camera!!!!!
 
# This is still what I had for breakfast
 
# This is still what I had for breakfast
Line 2,480: Line 2,110:
 
# this is the last time i go skiing @mammoth
 
# this is the last time i go skiing @mammoth
 
# this is the lowest budget version of "day of the Triffids" yet
 
# this is the lowest budget version of "day of the Triffids" yet
# This is the second worst day of my life.
 
 
# This is the story of a boy. who sneezed a hurricane and disintegrated the whole world.
 
# This is the story of a boy. who sneezed a hurricane and disintegrated the whole world.
# This is the strangest weasel I've ever seen.
 
 
# this is the weirdest hickey.
 
# this is the weirdest hickey.
# This is the year of linux
 
 
# This is twitter, right? #confused
 
# This is twitter, right? #confused
 
# This is what happens when you don't listen to your parents
 
# This is what happens when you don't listen to your parents
Line 2,491: Line 2,118:
 
# This is what I do on friday evenings now
 
# This is what I do on friday evenings now
 
# This is what i had for breakfast
 
# This is what i had for breakfast
# This is whom the nsa uses to watch you.
 
# This is why I don't order take-out
 
 
# This is why I'm not an EMT
 
# This is why I'm not an EMT
 
# This is why we can't have good things
 
# This is why we can't have good things
Line 2,511: Line 2,136:
 
# This photo was taken from my iphone
 
# This photo was taken from my iphone
 
# this plot is odd.
 
# this plot is odd.
# This song describes me perfectly
 
 
# This squirrel really knows how to cook
 
# This squirrel really knows how to cook
 
# this thing just showed up in my garden. is it safe?
 
# this thing just showed up in my garden. is it safe?
Line 2,523: Line 2,147:
 
# This will require more delta-V than we expected.
 
# This will require more delta-V than we expected.
 
# This would be a great Emoji
 
# This would be a great Emoji
# Thorax Cluster
 
# Those Eyes! @_@
 
 
# those weren't Altoids.
 
# those weren't Altoids.
 
# Threaten large birds... check.
 
# Threaten large birds... check.
Line 2,530: Line 2,152:
 
# Thus Ended Alexander the great's conquest
 
# Thus Ended Alexander the great's conquest
 
# Tic Tac Toe, motherfucker
 
# Tic Tac Toe, motherfucker
# Ticks, it's what's for breakfast.
 
# Time time time time
 
# Time to end the trial run, this was a failure. abort!
 
 
# Time to reap the whirlwind!
 
# Time to reap the whirlwind!
 
# tiny man with tiny hat found in upturned regular-sized hat
 
# tiny man with tiny hat found in upturned regular-sized hat
Line 2,575: Line 2,194:
 
# Turns out the tiles at home depot aren't the good kind
 
# Turns out the tiles at home depot aren't the good kind
 
# Turns out, Hillary deleted my E-Mails too. Honest.
 
# Turns out, Hillary deleted my E-Mails too. Honest.
# Two days on this new diet. How do I look?
 
 
# two great tastes that go great together
 
# two great tastes that go great together
 
# Tycho and gabe stepped up their game
 
# Tycho and gabe stepped up their game
Line 2,581: Line 2,199:
 
# Ugh, I hate how people take pictures instead of just enjoying the view.
 
# Ugh, I hate how people take pictures instead of just enjoying the view.
 
# Ugh, i'll never understand art.
 
# Ugh, i'll never understand art.
# Ugh, not the polar vortex again.
 
 
# Uglier than modern art
 
# Uglier than modern art
# uh... I think I'm going vegan.
 
 
# um no.
 
# um no.
 
# uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
 
# uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
Line 2,590: Line 2,206:
 
# unicycle beowulf cluster seeks riders
 
# unicycle beowulf cluster seeks riders
 
# Universe man, Universe man...
 
# Universe man, Universe man...
# unsubscribe
 
 
# Unzipped sock
 
# Unzipped sock
 
# USB SUX
 
# USB SUX
Line 2,601: Line 2,216:
 
# vegeta? vegeta? vegeta? aaaaaaaaaagggghhh!!!                                            I'm back, and now i'm a ghost.
 
# vegeta? vegeta? vegeta? aaaaaaaaaagggghhh!!!                                            I'm back, and now i'm a ghost.
 
# Vegetable-flavored meat, that's how they'll get us!
 
# Vegetable-flavored meat, that's how they'll get us!
# vinyls were always better!
 
 
# Visited mom today
 
# Visited mom today
# visual from Most important meeting today
 
 
# Visual representation of Dubstep
 
# Visual representation of Dubstep
 
# void main() { fork; }
 
# void main() { fork; }
# Voynic Manuscript ain't got nothin' on this!
 
 
# Wait ... what? I don't even...
 
# Wait ... what? I don't even...
 
# Wait a minute. We put the helium in the pool, or the balloon?
 
# Wait a minute. We put the helium in the pool, or the balloon?
Line 2,618: Line 2,230:
 
# wake up sheeple!
 
# wake up sheeple!
 
# Wake up sheeple!! the rich are stockpiling candles. This is our future!!!!
 
# Wake up sheeple!! the rich are stockpiling candles. This is our future!!!!
# Wake up sheeple!!!!!!!1
 
 
# Wake up, sheeple.
 
# Wake up, sheeple.
 
# walked in on my roommate being terrifying
 
# walked in on my roommate being terrifying
# Walrus!
 
 
# Wanted for murder. If found, contact the police immediately.
 
# Wanted for murder. If found, contact the police immediately.
 
# Warning, cadbury eggs should be consumed in moderation, even if supplied for free by air
 
# Warning, cadbury eggs should be consumed in moderation, even if supplied for free by air
Line 2,644: Line 2,254:
 
# We look into each other's  eyes as we drive. it's to show our love.
 
# We look into each other's  eyes as we drive. it's to show our love.
 
# We made some simplifying assumptions before designing the plate tectonics code.
 
# We made some simplifying assumptions before designing the plate tectonics code.
# we need to keep our sex life fresh
 
 
# We pointed the Hubble into another supposedly empty patch of sky.
 
# We pointed the Hubble into another supposedly empty patch of sky.
 
# we sail the ocean orange
 
# we sail the ocean orange
Line 2,658: Line 2,267:
 
# welcome to the internet
 
# welcome to the internet
 
# welcome to the space jam
 
# welcome to the space jam
# Well crap, snow's covered everything on earth again!
 
# Well, here's a real cock-up.
 
 
# Well, I guess than answers the age-old question!
 
# Well, I guess than answers the age-old question!
 
# Well, Mr. Bond, we meat again
 
# Well, Mr. Bond, we meat again
Line 2,669: Line 2,276:
 
# Well, you can't fix what isn't broken.
 
# Well, you can't fix what isn't broken.
 
# Welp, there's your problem
 
# Welp, there's your problem
# Welp, we're done here.
 
 
# WENT ALL ZELDA ON THIS CRACKED WALL! #YOLO
 
# WENT ALL ZELDA ON THIS CRACKED WALL! #YOLO
 
# WHAAAAAAaAT?!?!?!?
 
# WHAAAAAAaAT?!?!?!?
Line 2,677: Line 2,283:
 
# WHAT A MISUNDERSTANDING!
 
# WHAT A MISUNDERSTANDING!
 
# What are pixels?
 
# What are pixels?
# what are you complaining about?  three legs are inherently stable!
 
 
# What are you, a dictionary?
 
# What are you, a dictionary?
 
# What could go wrong?
 
# What could go wrong?
 
# What could possibly go wrong™?
 
# What could possibly go wrong™?
# What do we really know about the dark side of the moon?
 
 
# What do you mean it wasn't set to radians?
 
# What do you mean it wasn't set to radians?
 
# What do you mean, don't talk about fight club?  That's just stupid.
 
# What do you mean, don't talk about fight club?  That's just stupid.
 
# What do you see? I see a cat!
 
# What do you see? I see a cat!
 
# what happens when you take a selfie with a 500mm lens
 
# what happens when you take a selfie with a 500mm lens
# what has begun cannot be undone. God and devil alike has forsaken us.
 
 
# What has science done?!
 
# What has science done?!
 
# What have facebook been doing with my data? #Whatisgoingon
 
# What have facebook been doing with my data? #Whatisgoingon
Line 2,692: Line 2,295:
 
# What if jellyfish could combine, like voltron?
 
# What if jellyfish could combine, like voltron?
 
# What in the hell was I thinking ?
 
# What in the hell was I thinking ?
# what is in the box?  Only pain.
 
 
# What is your Pony Personality?
 
# What is your Pony Personality?
# what the sun looks like!
 
 
# what to have for breakfast?
 
# what to have for breakfast?
 
# What, Me worry?
 
# What, Me worry?
Line 2,701: Line 2,302:
 
# What's this thing here in the bathroom?
 
# What's this thing here in the bathroom?
 
# whatever you do, don't make eye contact with it
 
# whatever you do, don't make eye contact with it
# when did i put on a bow tie???
 
 
# When everything looks like a hammer
 
# When everything looks like a hammer
# When he keeps trying to talk to you...
 
 
# When I grow up I am *so* getting out of here
 
# When I grow up I am *so* getting out of here
 
# When in doubt, just blow on it!
 
# When in doubt, just blow on it!
Line 2,714: Line 2,313:
 
# when you give a chicken hgh, weird things happen.
 
# when you give a chicken hgh, weird things happen.
 
# when you see it...
 
# when you see it...
# When you see it...
 
 
# Where are the three sea shells?  
 
# Where are the three sea shells?  
 
# Where did THAT come from?
 
# Where did THAT come from?
Line 2,725: Line 2,323:
 
# which end is the head of a chocolate cornet?
 
# which end is the head of a chocolate cornet?
 
# whiskers expecting a new friend :)
 
# whiskers expecting a new friend :)
# who ate half my cookie?
 
 
# Who came first?
 
# Who came first?
 
# who do you think I am?
 
# who do you think I am?
 
# Who dropped this? This is no way to run a student council!!
 
# Who dropped this? This is no way to run a student council!!
# Who is the latest person to be offended by "duck Dynasty"
 
# Who knows how to restart Windows 97? Help
 
 
# Who Made all these Don quixote clones?
 
# Who Made all these Don quixote clones?
# Who needs the Chunnel?
 
 
# Who put import superman in the python configuration script?
 
# Who put import superman in the python configuration script?
 
# Who said an antique car wouldn't work on the moon?
 
# Who said an antique car wouldn't work on the moon?
Line 2,739: Line 2,333:
 
# Who the fck deleted development branch?!?!
 
# Who the fck deleted development branch?!?!
 
# Who the shit left the fertilizer out in the open? Now we have to deal with this!
 
# Who the shit left the fertilizer out in the open? Now we have to deal with this!
# Who wants an omelette?
 
 
# WHO'S THAT POKEMON?
 
# WHO'S THAT POKEMON?
 
# Who's that Pokémon?
 
# Who's that Pokémon?
Line 2,760: Line 2,353:
 
# WHY WHY WHY #WHY
 
# WHY WHY WHY #WHY
 
# Why?  
 
# Why?  
# With a mirror, it's 00:50 right now
 
 
# with google iris, see the inside of your eyelids like never before  
 
# with google iris, see the inside of your eyelids like never before  
# With this, nobody can stop me!
 
 
# WOMAN on ground, Abstract, digital, 2015~ $19E6
 
# WOMAN on ground, Abstract, digital, 2015~ $19E6
 
# Woops, miscounted. sorry.
 
# Woops, miscounted. sorry.
 
# Words, words, words
 
# Words, words, words
 
# Works fine with a custom linux kernel
 
# Works fine with a custom linux kernel
# Worlds saddest bomber drops worlds happiest payload
 
 
# wORRIED ABOUT V2 ROCKETS
 
# wORRIED ABOUT V2 ROCKETS
 
# worst horse ever :(
 
# worst horse ever :(
 
# Worst pokemon ever
 
# Worst pokemon ever
# Worst roomMate Ever
 
 
# worst transformers generation ever. bring back gen 1.
 
# worst transformers generation ever. bring back gen 1.
 
# Worth it for the karma.
 
# Worth it for the karma.
Line 2,783: Line 2,372:
 
# WTF!?
 
# WTF!?
 
# wwmd: what would mcgyver do?
 
# wwmd: what would mcgyver do?
# Yay, worms!
 
 
# Yeah I just like to make my martinis properly, ok?
 
# Yeah I just like to make my martinis properly, ok?
 
# Yeah... never gonna happen
 
# Yeah... never gonna happen
Line 2,789: Line 2,377:
 
# Yes, finally the proof I am looking for!
 
# Yes, finally the proof I am looking for!
 
# Yes, I followed the instructions!  
 
# Yes, I followed the instructions!  
# yes, your baby is beautiful
 
 
# Yesterday was not good
 
# Yesterday was not good
 
# yo anybody seen my dog, responds to "sauron"
 
# yo anybody seen my dog, responds to "sauron"
Line 2,801: Line 2,388:
 
# you know what they say about guys with big feet
 
# you know what they say about guys with big feet
 
# you know, for kids
 
# you know, for kids
# You lied to me.
 
 
# You must be new here.
 
# You must be new here.
# You only learn as much as you can put in one Cup of coffee
 
 
# You want to  know how i got these scars?
 
# You want to  know how i got these scars?
 
# YOU WONT BELIEVE WHAT THE CLOVERFIELD MONSTER ACTUALLY LOOKED LIKE! CLICK TO SEE IT AND 10 OTHER FAMOUS MOVIE CHARACTERS YOU NEVER SAW ON SCREEN!
 
# YOU WONT BELIEVE WHAT THE CLOVERFIELD MONSTER ACTUALLY LOOKED LIKE! CLICK TO SEE IT AND 10 OTHER FAMOUS MOVIE CHARACTERS YOU NEVER SAW ON SCREEN!
# you wouldn't kill a policeman and then steal his helmet!
 
 
# You'd think it was a tuesday, but it was not.
 
# You'd think it was a tuesday, but it was not.
 
# you'll NEVER belive what kind of planet those scientists found
 
# you'll NEVER belive what kind of planet those scientists found
 
# You'll never guess what happens next...
 
# You'll never guess what happens next...
 
# you're not as good at this as you think you are.
 
# you're not as good at this as you think you are.
# you've really let me down this time.
 
 
# Your conspiracy theories are dumb.
 
# Your conspiracy theories are dumb.
 
# Your free pony is on the way. Sorry for any inconvenience.
 
# Your free pony is on the way. Sorry for any inconvenience.
# Your viewpoints offend my sensibilities. please change them.
 
 
# Zeus takes his revenge
 
# Zeus takes his revenge
 
# Zoidgebra 101
 
# Zoidgebra 101
Line 2,823: Line 2,405:
 
# 突っ込むところもねい!
 
# 突っ込むところもねい!
  
===Captions without permalinks ===
+
===Old feed text===
Some of these captions were found in the feed text before I started recording permalinks, others have been found in the prompt.
+
183 strings found in the feed text before I started recording permalinks. It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
 
+
# No wants to hear me talk about my cat
It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
+
# Prius Love
 
+
# Early Heavy Metal Story Boards Discovered
 
+
# This trebuchet is set to self-destruct!
# (ღ˘⌣˘ღ)
+
# Foiled again by the bell curve
# ...just no.
+
# My hero
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
+
# Grab that snake, dont let it go, its lunchtime ya'know
# "Cat-like Reflexes"
+
# My house is my castle
# "I Never watch porn"
+
# anyone seen some uruk-hai? Asking for a friend.
# (ღ˘⌣˘ღ)
+
# did this exist as a microwave?
# *glomp*
+
# Anyone craving some soup right about now?
# #beatingheartinabox
+
# CERN's soLUtion to a cut in funding.
# #drbalanced
+
# monkey movember
# #essentialsupplies
+
# #blessed
# #fishy!
+
# Being john "Bowler Hat" Malkovich
# #Hashtag #ironicSelfie
+
# Somebody sneezed in the Bathtub
# #hashtag #yinyl #yolo #thanksobama
+
# Ok, playing soccer in a snowstorm MIGHT not be the best idea ever
# #ivisitedthegrandcanyon #yolo
+
# "ARIANA GRANDE" is spanish for "GIANT SPIDER"
# #NewProfilepic
+
# Ted Cruz 20-Infinity
# #rememberthetitans
+
# My vacation to the Area 51 Testing site!
# #sorrynotsorry
+
# I lost my wrist
# #underkill
+
# The Mushroom war claimed most of us. MOST....
# <reported for inappropriate content>
+
# Mars Instant Messenger Prototype
# 100% legit free hugs
+
# still, i think it was a good idea
# 15 Mindblowing facts that prove jaws was real
+
# One of the less popular Transformers.
# 500 gold for the private show
 
# 7 amazing ways of taking off your pants that will surprise you!
 
# A kid peed in the ball pit, I took action
 
# A land war in asia
 
# Aaaaaaaaaah
 
# All these science spheres are made out of asbestos, by the way. Keeps out the rats. Let us know if you feel a shortness of breath, a persistent dry cough, or your heart stopping. Because that's not part of the test. That's asbestos.
 
# always darekst before the dawn
 
# Amazing! Discovery! on mars!
 
# And so it began...
 
# and that is the story of the very angry caterpillar
 
# And then, you lightly drill the oven for 15 minutes on high
 
# Angry sofa is angry.
 
# Animé girls don't look at explosions
 
# another day on california public transportation
 
# Ants close in on the tender eye-flesh
 
# astonishing how xenia flew that plane
 
# At least it stopped bleeding acid
 
# Aw, man, I hate gelatinous cubes...
 
# awkward! . . .
 
# best easter ever
 
# big black orb #shit #soyuzfail
 
# bob ross has only become more powerful in death
 
# Brb, burning house down
 
# BUT WHERE DOES THE BLOOD GO?
 
# Cant sleep, clowns will kill me. Cant sleep, clowns will ...
 
# Catman
 
# CERN proves existence of "the force"
 
# Check out my new OC
 
# cheese = life
 
# CLOCK FACE-OFF
 
# come at me, pro!
 
# come on iiiiin!
 
# Conflicting messages
 
# curiosity fed the cat
 
# cuteness depleted after 20 pictures!! #ripoff
 
 
# damnit, another drunken tree in the road
 
# damnit, another drunken tree in the road
# Dawn of the Bread
+
# What in the hell was I thinking ?
# Dawn of the last day: 24 hours remain.
+
# Pentagonal head? That's nuts!!!  *cough* *ahem* I think you mean bolts.
# Dawn: The Final day
+
# The next generation of crypto currencies
# Day:38 Bird Disguise works, No one knows I am a Worm
+
# LET'S PLAY A GAME OF FORCED PERSPECTIVE.
# Did i remember to lock the car?
+
# AND THAT'S HOW i MET YOUR MOTHER.
# Does my hair look like it's thinning?
+
# THis is a love/hate poem.
# Does this look infected?
+
# I wish I could afford the monopolar model...
# Doing Laundry on the TARDIS is hard. It's why companions wear the same clothes.
+
# 9 out of 10 scientists couldn't solve this equation
# Don't Press Turbo boost. Something tells me you should never press turbo boost.
+
# And so the hunt begins!
# Dons Quixote start their parallel quests
 
# Drat, the internet is leaking again.
 
# Dude Did you know you could smoke almost anything?
 
# eclipse o'clock
 
# Edward, no!
 
# Even More Pictures of My Sweet little babies.
 
# even the sun cowers in fear!
 
# Everything's coming up Milhouse
 
# FACESWAP  lol
 
# First day at school
 
# fond this creepy ass painting in my basement. how much do you guys think it's worth ?
 
# Forgot to blow out my candles before I cut the cake
 
# fourier transforms are too hard!!
 
# free the beast!
 
# Gentlemen, fire up your emacs buffers
 
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
 
# George insisted there were better things to worry about, but I had a feeling this was important.
 
# get spare glasses before meeting rod serling
 
# Giant sentient banana found in space
 
# God i love sesame street
 
# God Save The Queen
 
# good old troubleshootin'
 
# got Peanut allergies #yolo #swag
 
# gotta take big ben down a peg
 
 
# Guys, I Found a Unicorn!
 
# Guys, I Found a Unicorn!
# haha! i am dead inside!
+
# Sailor Moon Cosplay Queen
# has anyone seen my force field generator?
+
# Oh shit, not again.
# Have you closed the airlock before we took off?
+
# PHOTOSYNTHESIS HELL YEAH
# have you heard?
+
# Look upon my works, ye mighty, and despair!
# Have you two seen a small person come through here recently? He may have been carying a blue sword.
+
# i was told this came with a bowl of soup.
# Hello earthlings
+
# The electric dirk was a better dance move than a weapon
# hello you're on car talk
+
# at least I don't have to spend more time with sandra bullock
# help being attacked by wormsaaaaaagghh
+
# I should really separate those
# Heres a pic of a wild catus, who just saw a balloon
+
# new drupal logo
# Hey there cutie
+
# good old troubleshootin'
# Hey, check out my new green colored shirt!
+
# memories of me and my papa at the creek. life was so much simpler then...
# Hey, check out this cool website i found!
+
# Tycoon Simulator 2015
# hey! check out larry's new aloe vera cream recipe! it works wonders on the skin and lips!
+
# My new haircut!
# High Bro, five.
+
# actually, around here we itemize our taxes
# His name is robert palmer.
+
# Look man, it's never gonna happen
# Honest, officer, that's what happened!
+
# Do the Harlem Shake
# how do i resize the city?
+
# Life on the moon.
# Hunka Hunka burnin' steel
+
# Dawn of the last day: 24 hours remain.
# I always fast forward through this part.
+
# it's not what you think
# i am wearing a bolo tie
+
# You are not a good person
# I can can hear satellites crying in my teeth
 
# I can control the BEES! But I only make them turn right
 
# I Don't believe in primordial black holes... I don't believe in primordial black holes...
 
# i don't have time for this!
 
# I found the missing pieces!
 
# I got the keys to the city.
 
# i hate
 
# I knew it wasn't cheese after the first bite, but i didn't want to be rude to God. He worked so hard on it.
 
# i love my family
 
# i refuse to regret this decision
 
# I think I have too many swords
 
# I think i made a point!
 
# i thought maybe if I uninstalled flash...
 
# I was an adventurer like you, but then i took an arrow to the knee
 
# I was making a mind map but I fell off the edge...
 
# i was told this came with a bowl of soup.
 
# I will use it if it is web scale
 
# I wish this was fake...
 
# I woke up sleeping next to this. #yolo
 
# i'M 12 AND WHAT IS THIS?
 
# i'm being ironic
 
# i'm really diggin' your shovel
 
# i've got hurt feelings
 
# I've never felt so empty before
 
# if only i had friends...
 
# If you've got a moustache...
 
# In D&D you *are* your equipment
 
# Interns wanted: Must have 5TB+ of Storage Space.
 
# Is it a bird, is it a plane, no it is spiderpig!
 
# Is there a bee on my nose?
 
# Is this a horse man or a duck man? The answer may surprise you!
 
# Isn't he cute?
 
 
# It's a cat ass trophy
 
# It's a cat ass trophy
# it's a metaphor
+
# Hat in the cat strike back!
# It's bigger after you put it together.
+
# ... It's about ethics in games journalism.
# it's called "depleted" 'cause it's heavier
+
# This wasn't a problem back in the usenet days
# It's Loch Ness Turtles all the way down.
+
# where do all the cheetos go
# it's the minecraft world
+
# such lambda
# Jet fuel *can* melt steal beams.
+
# Does this look infected?
# Joining the illuminati was the best decision EVER!
 
# Khan!
 
# ladies
 
# lemme at dem boigas!!!
 
# Life on the moon.
 
# Like a G6, baby, like a g6
 
# Likes grains of sand in an hourglass...
 
# linux compatible toaster at last!
 
# Lost in Space...
 
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
 
# Malkovich Malkovich Malkovich
 
# Massive orgy reaches climax
 
# Maybe this counts as clean energy
 
# Meow what seems to be the problem?
 
# Mmm... Vegemite
 
# mmmmm.... Bones....
 
# modest pile of dinosaurs
 
# morning selfie :-)
 
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
 
 
# my castles stand on pillars of sand
 
# my castles stand on pillars of sand
# my euler circuit is alive!
+
# #justnasathings
# My girlfriend thinks I need to shave my beard.  Thoughts?
+
# What are you, a dictionary?
# My God do I hate being right all the time
+
# Why did the cypress cross the road?
# my new app for power outages - may need to rethink this.
+
# I don't know if this is proof of anything other than old habits dying hard
# My trip to Europe #selfie
+
# Help! HELP! I need an adult
# Never divide by zero
+
# Jet fuel *can* melt steal beams.
# new drupal logo
+
# This is the story of a boy. who sneezed a hurricane and disintegrated the whole world.
# New microwave over cures/causes cancer!
 
# new president misuses "literal", becomes a duck
 
# No good deed goes unpunished
 
# Nom nom nom
 
# Not all dreams can come true
 
# Not even once
 
# Not even once...
 
# Nothing to see here.
 
# Now where did i leave my ocarina. . .
 
# OH GOD SPIDERS
 
# oh, god, why?
 
# Open wide!
 
# ouch!
 
# peacekeeping mission is a total success
 
# photobombed again
 
# Please. Save yourself.
 
# Prius Love
 
 
# Prom Night at tentacle monster HIgh
 
# Prom Night at tentacle monster HIgh
# pronounced duh-jango
+
# waiting for the toilet for 2 hours? sucker yolo
# Proof that dinosaurs and humans coexisted
+
# I can control the BEES! But I only make them turn right
# QWANTZ Fanfic
+
# got Peanut allergies #yolo #swag
# Rabbits are vicious creatures when their data are stolen
+
# They're watching us.
# Really, the star wars prequels are under-rated if you think about it
+
# Proof: loch ness monster.
# rebranding of national park service almost complete
+
# ACK-scuse me sir, Stop shaking hands and transmit some data.
# rehearsals ARE going great! AnD Don't forget to come to the premiere on Thursday!
+
# Gentlemen, fire up your emacs buffers
# release the kraken
+
# Tic Tac Toe, motherfucker
# Riemann should have had this idea
+
# Always watching, never speaking. WHAT does he want?!
# RIP SPEAK N SPELL
+
# Amazing! Discovery! on mars!
# rock beats scissors
+
# New microwave over cures/causes cancer!
# Rocket pseudo-science!
 
# rodeo!!
 
# Roll of toilet paper reacts to US Deficit
 
# Saw this outside last night. Is it dangerous?
 
# Sheena, who dis
 
# slippin' into the future
 
# smile for the camera!
 
# So it's true, then.
 
# So it's true, then.  
 
# So long, and thanks for the fistbumps
 
# So that happened
 
# So this happened.
 
# solve all your problems with hemlock
 
# Somebody sneezed in the Bathtub
 
# Somehow the welcome mat ended up inside the house.
 
# steel beams taste best with a dallop of gasoline
 
# Strangely, my patients don't like this new couch.
 
# Support my kick-starter! A whole new devise with bluetooth and a button!
 
# Sweet, they new red shirts are on sale again!
 
# Ted Cruz imagines himself like this and things it's normal.
 
# Testing my new high-contrast filter outside the unicyclist meet up
 
# That's the princess I want to save
 
# the best stars are sky stars!
 
# The castle was in you, all along!
 
# The gang destroyed the context
 
# The little prince is full of siht
 
# The machine was supposed to show the future, but it never turned on. I was horrified to realize this wasn't because it was broken.
 
# The most diabolical teamup in history
 
 
# The new Doctor Who is quite the quack.
 
# The new Doctor Who is quite the quack.
# the oceans are made of sky tears
+
# bob ross has only become more powerful in death
# the prophecy was true !
+
# First day at school
# The ritual has begun.
+
# BANG! ZOOM! STRAIGHT TO THE MOON!
# the zoidberg axis
+
# The dress is black and white!
# There is no way you can back up that claim. And that's okay.
+
# It's bigger after you put it together.
# There's no more time!
+
# If you've got a moustache...
# These night vision goggles don't work
+
# Look at my new blue dress!
# these pretzels are making me thirsty.
+
# where the streets have no untagged unconnected nodes
# They can see me!  
+
# someone take this banana off my face
# They're watching us.
+
# DOMINO'S PIZZA IS MADE OF TURTLES! IT'S MADE OF TURTLES!!!!!!
# this guy can't believe what i'm doing.
+
# Edward James Olmos to reprise his role as captain picard
# THIS IS FOR KIBO!
+
# QWANTZ Fanfic
# this is the last time i go skiing @mammoth
+
# FENTON!!! FENTON!
# This is the second worst day of my life.
+
# omg too much chiplote
# This is the strangest weasel I've ever seen.
+
# PSA: If you don't see this, don't ask your embarrassing medical questions
# This is whom the nsa uses to watch you.
+
# Dawn: The Final day
# This is why I don't order take-out
+
# Not gonna lie. No idea what this is.
# This one weird object blocks out the light!
+
# Starbucks <3 <3 <3
# This wasn't a problem back in the usenet days
+
# "Cat-like Reflexes"
# This would be a great Emoji
+
# crenellate good times, c'Mon!
# Those Eyes! @_@
+
# HAN SHOT THIRD #YOLO
# Ticks, it's what's for breakfast.
+
# My 7 picture is upside down
# Time to end the trial run, this was a failure. abort!
+
# i'm being ironic
# To avoid going bankrupt, Polaroid activates its subliminal message feature on old photographs to try to get more buyers,
+
# you know what they say about guys with big feet
# To weather the storm of outrageous fortune.
+
# could anyone help me find my contacts?
# Too many in line. I'll come back later.
+
# photobombed again
# Too many potatoes, not enough butter
+
# Heres a pic of a wild catus, who just saw a balloon
# Two days on this new diet. How do I look?
+
# Pintsize what are you doing?!
# Ugh, I hate how people take pictures instead of just enjoying the view.
+
# He's been there for three days
# Ugh, not the polar vortex again.
+
# Found this mushroom, thought of you
# unsubscribe
+
# Is this a horse man or a duck man? The answer may surprise you!
# vinyls were always better!
+
# HELP I'M just a pheasant
# Wake up sheeple!!!!!!!1
+
# i'm really diggin' your shovel
# We look into each other's  eyes as we drive. it's to show our love.
+
# Weather's Crazy today
# we need to keep our sex life fresh
+
# play it cool
# Well crap, snow's covered everything on earth again!
+
# it's fun to do bad things
# Well, here's a real cock-up.
+
# This caught my eye
# well, the keys are definitely lost....
+
# Do my feet smell?
# what are you complaining about? three legs are inherently stable!
+
# I'm no longer welcome at the play centre.
# What do we really know about the dark side of the moon?
+
# rodeo!!
# What do you mean, don't talk about fight club?  That's just stupid.
+
# who sent me a bobcat?
# what is in the box?  Only pain.
+
# And the least of the five evils is....
# what the sun looks like!
+
# peacekeeping mission is a total success
# when did i put on a bow tie???
+
# do you reckon i can feed this to my pet spider?
# When I grow up I am *so* getting out of here
+
# Like a G6, baby, like a g6
# when they said samurai robot i thought they meant something else!
+
# What's this thing here in the bathroom?
# When you see it...
+
# I'm, like, a minecraft genie!
# who ate half my cookie?
+
# Looks like he wants a ride. Should we pull over?
# Who dropped this? This is no way to run a student council!!
+
# #rememberthetitans
# Why can't I eat all this chicken?
+
# Does my hair look like it's thinning?
# Why did the cypress cross the road?
+
# Nom nom nom
# With a mirror, it's 00:50 right now
+
# Pac-man's missing piece
# Words, words, words
+
# This new LP is on fire, yo! I love that warm vinyl sound.
# Worlds saddest bomber drops worlds happiest payload
+
# I can can hear satellites crying in my teeth
# Yay, worms!
+
# breakfast in 'merica
# Yesterday was not good
+
# curiosity fed the cat
# you know what they say about guys with big feet
+
# Come back! We aren't really going to eat you!
# You only learn as much as you can put in one Cup of coffee
+
# Dawn of the Bread
# you've really let me down this time.
+
# #drbalanced
#
+
# Massive orgy reaches climax
 
+
# i don't have time for this!
===Images without permalinks ===
+
# I woke up sleeping next to this. #yolo
Images in the prompt which have not been found in the feed
+
# check out my new sauron fanfic
 
+
# What do you mean, don't talk about fight club?  That's just stupid.
# 00154572-02e2-5e63-a3e4-bde3ab4b1934
+
# so like my GF said cutting flowers is like totally bad, but she gets like really pissed if I forget ANY little anniversay, so #ifixed it
# 046bc891-392e-58ac-880d-d202b3810bdd
+
# Curiosity Stops Sending Photos, Transmits Crude Line Drawings Instead.
# 08584d88-4186-5ea6-bc49-5f1f796d37de
+
# picture of my boyfriend
# 08757175-c59e-52a6-9fc9-9c72e473ceba
+
# #ivisitedthegrandcanyon #yolo
# 0b148e1f-e4bc-5100-92fc-5ec84c20eecc
+
# Not even once
# 0d3b2461-d927-5d99-969a-c6a52d071461
+
# #Hashtag #ironicSelfie
# 0ecdc175-34e2-563f-a290-33c0f5549420
+
# The last thing you see before you die
# 0ef43321-8a3f-5afb-912e-d4439a64f8a1
+
# Never divide by zero
# 102a8fef-0b03-51c9-8ace-0017f18ed7d1
+
# Click "Like" when you see it!
# 135ec01b-fa2c-5eb6-9354-87c4c3e12f63
+
# ...monsters from the id...
# 172832dd-7c7c-5640-aefa-3e0d142ea1c8
+
# Angry sofa is angry.
# 17ae1505-dc66-5fa6-b6fc-76e2e571dcca
+
# the dog scanned my homework
# 1def8ba2-ed1f-5049-a814-ce84cd7a9f7b
+
# awkward! . . .
# 1f420516-0eda-50f0-80db-d675525278e9
+
# Open wide!
# 209a35ed-6e02-544b-952b-d4d0615d8c3c
+
# gone fishing
# 2133fa57-71c7-52ad-93be-adebb04251a9
+
# Appropriately enough, the jury voted guilty
# 2158ef67-cc5c-52aa-b437-87ad938d5430
+
# the oceans are made of sky tears
# 23000a39-d407-5fd7-9956-3d90a0bc283c
+
# smile for the camera!
# 23029be0-b127-5777-912f-664613740e58
+
# If you hadn't invented it, it would have to exist.
# 230e82f1-3a97-5657-93b4-a1538237a7bd
+
# has anyone seen my force field generator?
# 25da16d6-e6a6-52a5-8507-91f2e4e68875
+
# Is there a bee on my nose?
# 27773d87-9fc1-5fa3-945d-8602b334d630
+
# Nutritionists hate this simple trick
# 2904fcef-5c88-58e6-b651-c8db16da8b4e
+
# well, the keys are definitely lost....
# 29a80edb-16d6-5da1-9d7c-34f80c7826d8
+
# Before his untimely death.
# 2aad5103-42b4-5836-a997-9c5d41ef18d0
+
# stay out of my house, santa
# 2ca667ea-3e06-5b04-ae11-c2e81ed10333
+
# rofl
# 2cd3e0f7-2009-52d2-b526-d34fb21723fe
+
# As long as there aren't any snake I should be fi- Shit! Snakes!
# 35327ccb-4c06-5054-b3a1-b1871ac0c928
+
# ▒☺▒
# 35547760-624c-5f0f-aa6f-05827e5396dd
+
# High Bro, five.
# 3602c6d2-660d-5d6f-b3bf-8aad19c3c492
+
# i am wearing a bolo tie
# 37e8070f-4690-5a1e-9118-3b0a4e4af248
+
# George insisted there were better things to worry about, but I had a feeling this was important.
# 38ed173d-7a12-5294-80cb-03deb8896dfc
+
# I blame lack of regulation
# 39540864-cfcb-5819-bdd9-16f314fa7aa4
+
# Snapchat with aliens sure takes forever. #damnlag
# 3b3aed58-a224-50be-9129-ba20483846b6
+
# #teamplayer
# 3d9ffba2-c0f6-5fcb-b3b2-ee8795c1f720
+
# 'Murica, hell yeah!
# 3e62ef75-49ce-5e12-bd8a-b173a9c4269d
 
# 3e74af7e-d5fe-561a-9835-2baa0724af3e
 
# 3e7765a5-f766-5a74-8711-2720bef89403
 
# 41e41ecd-5ed0-5ae0-891e-652664dfde38
 
# 4334a9ee-88d9-5be8-b019-723c34e7a83f
 
# 43637145-5846-5213-bbd2-62c51fc68393
 
# 464e554b-b208-5249-8f37-64ce5e075d9d
 
# 4912282c-ec7a-5a0d-9e6e-10d3418ab330
 
# 49a75cc1-bd31-5e44-9b08-d43f91c666de
 
# 49de1a38-5ca8-5831-a90f-e676aed4bbc6
 
# 4b0d6770-c68c-5d87-9cc7-d33fae6dc98e
 
# 4b963434-6486-5baf-a02b-e2ba5fd2ebd8
 
# 553d2e98-2bcb-516d-8eaf-5442f1c9d0d6
 
# 56f3037e-639d-5011-8fee-c4b0912baa83
 
# 57c2fed8-6e80-5c80-a398-0edfc27cf754
 
# 5a8d1f9a-b07d-5a7b-be1e-525b50d5258c
 
# 5c39d369-cba1-59d8-965b-d1b068809e6b
 
# 5dd8151e-6bab-5302-8c3e-611ae32825b7
 
# 64edaa0d-1f4f-5ebe-a9c7-de0f2eabf74d
 
# 65c4a415-ada8-5487-8c67-59ad4bdac78f
 
# 65e7cf48-31dd-546f-98b1-d235ef5c9100
 
# 6691672e-826a-53ba-a42a-8cbf38ad511d
 
# 673eec8a-d30a-5f43-a3b0-8535a9b464e7
 
# 67d13536-af25-5a31-b81e-021e2e9676f5
 
# 6b1a016b-877b-5451-b250-e979e72ea44a
 
# 6b7cd4ef-9ee9-50d5-8d77-493dbbadcb9f
 
# 6bead760-585c-5fea-a296-164189e886ed
 
# 6bf5c6a4-e2e0-5c9d-b768-c39227ea1a22
 
# 6f4485f2-b904-519e-a027-7d731c785331
 
# 6f534227-fcc8-50a1-94f8-40e9fec2241f
 
# 6f7c3202-9bc7-5bbf-8bb9-d0ead792c632
 
# 6fd02b30-262e-5c45-b966-1e1550446dbf
 
# 713a7c42-fbf3-5305-b821-ffd5f871bd84
 
# 71405975-e88a-5bc8-bb33-58201ed52528
 
# 725e2413-9cf9-562f-9bad-4231fea16e28
 
# 726847dc-c652-5ef6-8696-53830c0a1e2b
 
# 72f1f6f8-d49a-50f4-85ef-5f571240bd09
 
# 773eee34-46e4-5b3f-a653-9371796e8b58
 
# 7d60a449-d8d8-5444-9ba2-6f1c98edd903
 
# 7ea6bc06-01e7-5915-b6c1-1141386bb99c
 
# 81dde1b4-ed9b-5925-a879-70efb841d5fd
 
# 85dd384f-37bf-5365-af59-78a0cb78aed8
 
# 86cc4be5-f25e-5289-8566-602b9d6e634a
 
# 882bc233-3966-5d04-bccb-ae2e0e5e763b
 
# 895b2fec-6090-50b3-b736-12915362995c
 
# 898a37b4-252d-54bd-933e-c456f95dadee
 
# 8a4ca1ad-96aa-569b-8bde-8c57ea815ae9
 
# 8a58ccb4-f327-592a-b946-72d7a56d9d2e
 
# 8e1b0bfa-bc19-5cf8-888c-d31247c71190
 
# 8f7d83f9-7007-5f7b-901b-bcb35f900859
 
# 900af948-f3f8-5d21-b015-6667461dd215
 
# 903f52cf-cb81-5c26-97f7-7d87a6d3b243
 
# 91168585-a6ee-5b76-ba2b-c41f5685180c
 
# 935e73e9-ecf1-5d4f-8668-8fb907cdee4f
 
# 9491599b-459c-5e6e-9ee0-d85a0497ef55
 
# 97127900-4d61-591a-95c8-851ad788386c
 
# 995623b5-4ded-5315-9f2d-f44a0db0ee7c
 
# 9d1b6f68-d4ea-5932-8b47-d05b142a72ee
 
# 9e4ad090-7e0e-5aa7-9a55-8e0bb0b8ea8b
 
# 9fa68e29-e97a-5496-9edf-f3d9ce528f0a
 
# 9fac5c76-ef99-5c5c-a8ed-b36fa44e50bf
 
# a0bc51e1-ff72-56b8-8574-a4204759a872
 
# a1c63d58-b0b6-5029-bc8a-b0318119f506
 
# a399201b-61ec-5bc2-8041-57fdbcb572cd
 
# a5dce98e-3e17-555e-b67c-4448bad354bc
 
# a8bd5dc6-24a0-516f-862a-dbef66f9f688
 
# ab1d561b-6bfa-5686-97a8-259ed0e4b200
 
# acebb7e3-9d07-5c49-85b7-7adfc8fc41fd
 
# ae5f5094-3168-546b-84ca-22c8b80d5922
 
# b09c0be6-756d-52a8-97a0-db71a93d0a1d
 
# b337d406-6624-57cb-95cd-dd68431ee649
 
# b3404349-725f-5b2a-b9c7-dceae37d53ba
 
# b45835d7-ea26-548c-b904-ae20f678e131
 
# b4a40718-739a-5580-95be-52ac57cf80ac
 
# b67a51a3-938e-5ce3-83df-cb623f278864
 
# b832f9a3-fc8c-532d-b1f7-d7b9dd0e2d6e
 
# b8976cf8-d5d0-5c24-a5eb-bc40190f85fd
 
# ba1421d7-bbee-54c1-8026-bd95cfedc92b
 
# ba89ae53-04bf-5a43-9489-f41b20d42f8f
 
# bad65b6f-9a98-559f-bcd0-5844ee3cc5ee
 
# bb76621a-ed64-57ff-bb30-eaf319c66381
 
# bdae9e2c-8c92-50ba-92da-c0235955c36b
 
# c35556ad-67f0-5b66-9276-73e07117c329
 
# c3be6486-bf0a-5d4c-98f9-e09b7a48cd02
 
# c53125eb-36f2-58f6-b890-3fdddbb02219
 
# c92343f2-bc7f-538c-ae59-051331c561b7
 
# ca8f102e-4186-5b9b-90ad-a562e0009d73
 
# cbd65958-d879-5f15-a21b-b5685d30d9bd
 
# ce035b77-82af-583b-a3e8-e84a6aee60a7
 
# cfaeca24-0887-5d13-acd0-70e475f6551b
 
# cfdd19a9-fd37-5164-a3f0-6e749567fc8b
 
# cfe6887a-407f-5be7-b541-85d219012b5b
 
# d001ee75-ce44-56e9-8b22-6110cc2a2a17
 
# d0d56e0e-46df-5679-a082-3034b64e5197
 
# d4163e0b-71c3-5b98-bc28-fe6ad6c1cbe3
 
# d5efa477-cc71-5302-b79a-3be14615bb6d
 
# d840aefe-d163-5e9d-bbf7-346a1a93207c
 
# d87b4b0d-1af7-521d-93e5-705b9c064b4e
 
# d8c518c6-35d9-55b3-b9b4-3610f7064839
 
# d8d79c97-5aee-5ae5-a3fe-e7da0eae4cfc
 
# d96c5875-533d-5a16-8199-50942d5d8f0d
 
# da7fbaeb-34ab-5de8-8dab-8c43dbb78ed9
 
# dc2e5974-2afb-5c81-a0f3-6882fbfaaccf
 
# ddc27138-5274-5187-a396-98524911e10d
 
# df22fe73-a4af-5b9a-bcd6-5803594329d0
 
# e21b7bd5-3f7f-5595-80d4-e32eccd37d60
 
# e2c76ec3-2530-553e-8513-52825fc415f5
 
# e3fc783d-50bf-5c28-813f-42aa6cd5d945
 
# e557518b-75b2-5a55-86e0-a1f9555e857e
 
# e70090a8-06bc-5f4d-8961-fe8799a7f758
 
# e7b40c39-aa6e-5077-9689-a261b39e070f
 
# e82b25d9-37ad-533f-888b-dd687ec819dc
 
# ea37dc88-c40c-530c-a466-130c4ac49f20
 
# ea77fda6-fc06-5f5b-a48a-a5294dfc9396
 
# eb5dffc4-fa51-5a2d-880f-35ab1391f8c8
 
# ec989eb9-12d4-5725-8711-99bc216282c2
 
# ee1440c2-a7c8-5856-8bb9-b1d2ad39f9a6
 
# f076aac5-ca8c-5cfc-80e9-00c006f6562b
 
# f0d43ac6-b030-539a-8fd4-1799c01edca2
 
# f0e3833f-b09f-5bc4-8b8f-f449084b6846
 
# f16a97b5-a9e9-5aaf-aa59-9bd1841508d2
 
# f1ee6fb0-212f-5cd2-b5c7-21bc13a4693f
 
# f2c50136-40db-54f8-bc92-deebabf69dee
 
# f2d510b5-6bab-5c69-a045-806ce2cb4d5a
 
# f3917274-b91c-5846-bee4-d928b3f15d92
 
# f58a17c8-24bd-59f6-a189-7231bf3b74f1
 
# f61c519b-7315-5061-a763-8057b3ba6fb5
 
# f757813d-b5b5-5446-a752-4a589dc4ac11
 
# f95151a1-29f4-5fa8-9e40-611a6c5544d0
 
# fa0ba376-6c87-55b6-a58b-de5a4a2c42b3
 
# fa5dea52-e700-5e6e-863f-c53fd9b72264
 
# fb6e8946-6266-5a70-a193-8038b4dfd0aa
 
# fd1b32fc-7422-56ea-9e31-995ba9a26893
 
# fdb3fea3-4555-581b-ba1b-58baecc3e1c4
 

Please note that all contributions to explain xkcd may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see explain xkcd:Copyrights for details). Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel | Editing help (opens in new window)