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: 3129 IDs found so far, containing 2447 unique images and 1332 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 (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);
+
if (typeof data.prompt.text != "undefined") 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);
+
    break;
      temparray = [];
+
    case "feed_ids":
 +
templist = ""; tempcount=0;
 +
for(j in xkcd.feed_ids) {
 +
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;
 +
tempcount++;
 +
}
 +
$("#desc").append(" ("+tempcount+")");
 +
$("#magic textarea").val(templist);
 +
delete templist;
 
     break;
 
     break;
 
 
     case "feed_text":
 
     case "feed_text":
 
     case "feed_images":
 
     case "feed_images":
      $("#desc").html(which+" must be loaded via feed_ids");
+
tempwhich = which=="feed_text"?"text":"img";
 +
for(i in xkcd.feed_ids)
 +
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# "));
 +
$("#desc").append(" ("+xkcd[which].length+")");
 +
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";
  
    default:
+
for(i in xkcd.feed_ids)
      $("#desc").html(" (Error: "+which+" not implemented)");
+
if (xkcd[tempwhich].indexOf(xkcd.feed_ids[i][tempwhich2]) == -1)
  }
+
xkcd[tempwhich].push(xkcd.feed_ids[i][tempwhich2]);
}
+
 
 
+
for(i in xkcd[tempwhich])
function update(which) {
+
if (xkcd[temptest1].indexOf(xkcd[tempwhich][i]) == -1 && xkcd[temptest2].indexOf(xkcd[tempwhich][i]) == -1)
  if ($("#loadarray").prop('checked')) {
+
xkcd[which].push(xkcd[tempwhich][i]);
    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) {
 
temp.countall++;
 
if (xkcd.feed_ids[j].text && xkcd.feed_ids[j].img) { //can be null when duplicate
 
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+")");
 
$("#magic textarea").val(temp.list+"\n|}\n");
 
delete temp;
 
    break;
 
 
 
    case "feed_text":
 
    case "feed_images":
 
tempwhich = which=="feed_text"?"text":"img";
 
 
mergearrays(xkcd[which], xkcd.feed_ids, 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
 +
xkcd[tempwhich] = []; //no need to keep this in memory
 
     break;
 
     break;
 
+
    case "prompt_textonly":
 +
if (!temptest) temptest = "prompt_captions";
 
     case "prompt_captionsonly":
 
     case "prompt_captionsonly":
 +
if (!temptest) temptest = "prompt_text";
 +
    case "prompt_albumonly":
 +
if (!temptest) temptest = "prompt_images";
 
     case "prompt_imagesonly":
 
     case "prompt_imagesonly":
 +
if (!temptest) temptest = "prompt_album";
  
tempprop = which=="prompt_captionsonly"?"text":"img";
+
tempwhich = which.replace("only","");
tempwhich = which=="prompt_captionsonly"?"feed_text":"feed_images";
 
temptest = which.replace("only",""); //don't wipe
 
 
 
mergearrays(xkcd[tempwhich], xkcd.feed_ids, tempprop)
 
 
 
for(i in xkcd[temptest])
 
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);
 
   }
 
   }
 
}
 
}
 
+
//for(i in xkcd) xkcd[i] = xkcdold[i];
function restore() {
+
//$("#magic textarea").val("xkcdold = "+JSON.stringify(xkcd));
window.tempOld = JSON.parse(localStorage.getItem('NewFeedIDs'));
+
</nowiki>
if (window.tempOld == null) window.tempOld = new Array();
+
:(Go to xkcd, and paste it in the browser console.)
restoreLoop();
 
}
 
function restoreLoop() {
 
if (window.tempOld.length) {
 
next(window.tempOld.pop());
 
window.clearTimeout(window.nextTimer);
 
window.nextTimer = setTimeout('restoreLoop()', 5000);
 
}
 
}
 
</nowiki>
 
:(Go to xkcd, and paste it in the browser console.)
 
 
I've determined 10 seconds to be the time you keep getting the same data, so there's no reason to poll the server more frequently than that.
 
I've determined 10 seconds to be the time you keep getting the same data, so there's no reason to poll the server more frequently than that.
 
:However, since the server is now blocking my requests after 20 minutes of doing that, perhaps 10 seconds is too frequent, so I've updated the example to only make 1 request per minute.
 
:However, since the server is now blocking my requests after 20 minutes of doing that, perhaps 10 seconds is too frequent, so I've updated the example to only make 1 request per minute.
Line 399: Line 247:
  
 
<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==
*prompt_reasons: [107] - None new.
+
current unprocessed totals:
*prompt_posters: [205] - None new.
+
*prompt_reasons: Array[107] - None new.
*feed_posters: [205] - None new.
+
*prompt_posters: Array[205] - None new.
 +
*feed_posters: Array[205] - None new.
  
*feed_table: [2252] (See [[1506:_xkcloud/Table_of_Permalinks]])
+
*feed_id: Array[7428]
*feed_id: [26733] (See [[1506:_xkcloud/List_of_Permalinks]])
 
  
*feed_images: [1528]
+
*feed_images: Array[1230] (only: Array[27])
*prompt_images: [1697] (crashed and found again)
+
*prompt_images: Array[609] (only: Array[6])
*prompt_images without permalinks: [169]
+
*prompt_album: Array[1372] (only: Array[765])
  
*feed_text: [1993]
+
*feed_text2: Array[1626] (only: Array[7]) (old only: 224)
*prompt_captions: [2287] (crashed and found again)
+
*prompt_captions: Array[1897] (only: Array[609])
*prompt_captions without permalinks: [295]
+
*prompt_text: Array[1290] (only: Array[2])
 
 
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.
 
  
 
===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 376:
 
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
 
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
  
===Captions ===
+
===feed_posters===
This is the combined list of all captions I have found, in the feed and in prompts.
+
Usernames used in the feed. All users in the feed are also in the prompt
 +
 
 +
# @meganamram
 +
# Addison1
 +
# Addison8
 +
# Agric Silverfinger
 +
# Aidan2
 +
# Aiden1
 +
# Aiden5
 +
# Aidenn Aberforth Milne
 +
# Alice1956
 +
# Amanda08
 +
# Anonymous
 +
# Apple Martin
 +
# Arthur17
 +
# Arthur19
 +
# Ashley8
 +
# Ashley92
 +
# Ashley2009
 +
# Austin72
 +
# Ayden1952
 +
# Bailey08
 +
# Bailey2001
 +
# Barbara1974
 +
# Benjamin1970
 +
# Benjamin Kenobi Sr
 +
# Bool Hand Luke
 +
# Brandi9
 +
# Brittany1
 +
# Caden14
 +
# Caden2010
 +
# Candice10
 +
# Carol04
 +
# Chad80
 +
# Charles18
 +
# Chelsea2006
 +
# Cheyenne15
 +
# Cheyenne1988
 +
# Christina Applecare
 +
# CMOS Def
 +
# Curic Copperfinger
 +
# Cynthia99
 +
# Cynthia1995
 +
# Dakota09
 +
# Dakota94
 +
# David St. Hubbins
 +
# Debbie3
 +
# Debbie26
 +
# Debbie62
 +
# Deborah3
 +
# Delta Elroy Backslash
 +
# Destiny89
 +
# Destiny1983
 +
# Dillon2008
 +
# Donald19
 +
# Donna2
 +
# Dorothy7
 +
# DragonBall Cooper
 +
# Dunston Chexin
 +
# Dustin46
 +
# Earl Sinclair
 +
# Egbert Bentley White
 +
# Eliezer Yudkowsky
 +
# Elon Musk
 +
# Emily15
 +
# Eowyn L'Oreal James
 +
# Euphegenia Doubtfire
 +
# Facebook Scott Fitzgerald
 +
# Flash Groupon
 +
# Frances29
 +
# Frances51
 +
# Frances99
 +
# Gary8
 +
# Gary86
 +
# Gary1951
 +
# George Debian Bush
 +
# George Reagan Renesmee Martin
 +
# Green Mario
 +
# Greg2004
 +
# Hatsy Collins
 +
# Henry05
 +
# Henry4
 +
# Horsepower Lovecraft
 +
# J. Alfred Leftshark
 +
# Jack3
 +
# Jack39
 +
# Jacob10
 +
# Jada5
 +
# Jaden21
 +
# Jaden Riley Rufio Tolkien
 +
# Jaina Khloe Rowling
 +
# Jalen81
 +
# James URL Jones
 +
# Jason15
 +
# Jayden79
 +
# Jennifer1
 +
# Jeph Jacques
 +
# Jerry18
 +
# Joe Biden
 +
# John2
 +
# John Wilkes Knuth
 +
# Jonathan27
 +
# Joshua80
 +
# Joshua84
 +
# Justin28
 +
# Justin87
 +
# Kaden61
 +
# Kaitlin1976
 +
# Karen3
 +
# Kathleen78
 +
# Keira10
 +
# Keira48
 +
# Keira2002
 +
# Kelsey1970
 +
# Kelsey1996
 +
# Kenneth94
 +
# Kenneth96
 +
# Khloe2
 +
# Khloe14
 +
# Kilroy
 +
# Kim5
 +
# Kristy2007
 +
# Larry1994
 +
# Larry Ronald Hubbard
 +
# Lauren Ibsen Dolores Amit
 +
# Linda08
 +
# Lindsay2011
 +
# Lisa1995
 +
# Livemau5
 +
# Lord Gaga
 +
# Lord Mondegreen
 +
# Louis Reasoner
 +
# Madison19
 +
# Madison80
 +
# Malik2
 +
# Margaret5
 +
# Margaret11
 +
# Marie3
 +
# Marie10
 +
# Marie12
 +
# Marissa Mayer
 +
# Mark92
 +
# Mark2006
 +
# Mark2007
 +
# Mark Zuckerberg
 +
# Martin Van Halen
 +
# Matthew2006
 +
# Mavis Bitcoin
 +
# Michaela2006
 +
# Michelle11
 +
# Minecraft Holmes
 +
# Misty3
 +
# Myspace Tom
 +
# Norton Ghost Dad
 +
# Notorious L.H.C.
 +
# Padme Dorothy James
 +
# Pam06
 +
# Patricia03
 +
# Paul50
 +
# Paul1957
 +
# Player One
 +
# Player Two
 +
# Professor Monoculatus McToff
 +
# Raymond6
 +
# Ronald22
 +
# Ruth3
 +
# S. G. Dukat
 +
# Samuel19
 +
# Samuel49
 +
# Sarah55
 +
# Sarah1976
 +
# Sarah2005
 +
# Sharon91
 +
# Sharon99
 +
# Shaun6
 +
# Shaun46
 +
# Shaun1960
 +
# Sheena2005
 +
# Sherri97
 +
# Sidd Finch
 +
# Sierra3
 +
# Sierra7
 +
# Sierra10
 +
# Stacy07
 +
# Stacy14
 +
# Steven02
 +
# Steven50
 +
# Steven2002
 +
# Susan11
 +
# Susan25
 +
# Taylor1990
 +
# Taylor1998
 +
# Thomas2
 +
# Tim21
 +
# Tim87
 +
# Tina Belcher
 +
# Todd33
 +
# Tonya22
 +
# Tonya38
 +
# Tracy1977
 +
# Tricia1
 +
# Tricia14
 +
# Trinity1989
 +
# Virginia1961
 +
# Virginia2006
 +
# Wil
 +
# Wric Tungstenfinger
 +
 
 +
===prompt_posters===
 +
Usernames used in the prompts.
 +
:All of these usernames are also used in the feed
 +
 
 +
# @meganamram
 +
# Addison1
 +
# Addison8
 +
# Agric Silverfinger
 +
# Aidan2
 +
# Aiden1
 +
# Aiden5
 +
# Aidenn Aberforth Milne
 +
# Alice1956
 +
# Amanda08
 +
# Anonymous
 +
# Apple Martin
 +
# Arthur17
 +
# Arthur19
 +
# Ashley8
 +
# Ashley92
 +
# Ashley2009
 +
# Austin72
 +
# Ayden1952
 +
# Bailey08
 +
# Bailey2001
 +
# Barbara1974
 +
# Benjamin1970
 +
# Benjamin Kenobi Sr
 +
# Bool Hand Luke
 +
# Brandi9
 +
# Brittany1
 +
# Caden14
 +
# Caden2010
 +
# Candice10
 +
# Carol04
 +
# Chad80
 +
# Charles18
 +
# Chelsea2006
 +
# Cheyenne15
 +
# Cheyenne1988
 +
# Christina Applecare
 +
# CMOS Def
 +
# Curic Copperfinger
 +
# Cynthia99
 +
# Cynthia1995
 +
# Dakota09
 +
# Dakota94
 +
# David St. Hubbins
 +
# Debbie3
 +
# Debbie26
 +
# Debbie62
 +
# Deborah3
 +
# Delta Elroy Backslash
 +
# Destiny89
 +
# Destiny1983
 +
# Dillon2008
 +
# Donald19
 +
# Donna2
 +
# Dorothy7
 +
# DragonBall Cooper
 +
# Dunston Chexin
 +
# Dustin46
 +
# Earl Sinclair
 +
# Egbert Bentley White
 +
# Eliezer Yudkowsky
 +
# Elon Musk
 +
# Emily15
 +
# Eowyn L'Oreal James
 +
# Euphegenia Doubtfire
 +
# Facebook Scott Fitzgerald
 +
# Flash Groupon
 +
# Frances29
 +
# Frances51
 +
# Frances99
 +
# Gary8
 +
# Gary86
 +
# Gary1951
 +
# George Debian Bush
 +
# George Reagan Renesmee Martin
 +
# Green Mario
 +
# Greg2004
 +
# Hatsy Collins
 +
# Henry05
 +
# Henry4
 +
# Horsepower Lovecraft
 +
# J. Alfred Leftshark
 +
# Jack3
 +
# Jack39
 +
# Jacob10
 +
# Jada5
 +
# Jaden21
 +
# Jaden Riley Rufio Tolkien
 +
# Jaina Khloe Rowling
 +
# Jalen81
 +
# James URL Jones
 +
# Jason15
 +
# Jayden79
 +
# Jennifer1
 +
# Jeph Jacques
 +
# Jerry18
 +
# Joe Biden
 +
# John2
 +
# John Wilkes Knuth
 +
# Jonathan27
 +
# Joshua80
 +
# Joshua84
 +
# Justin28
 +
# Justin87
 +
# Kaden61
 +
# Kaitlin1976
 +
# Karen3
 +
# Kathleen78
 +
# Keira10
 +
# Keira48
 +
# Keira2002
 +
# Kelsey1970
 +
# Kelsey1996
 +
# Kenneth94
 +
# Kenneth96
 +
# Khloe2
 +
# Khloe14
 +
# Kilroy
 +
# Kim5
 +
# Kristy2007
 +
# Larry1994
 +
# Larry Ronald Hubbard
 +
# Lauren Ibsen Dolores Amit
 +
# Linda08
 +
# Lindsay2011
 +
# Lisa1995
 +
# Livemau5
 +
# Lord Gaga
 +
# Lord Mondegreen
 +
# Louis Reasoner
 +
# Madison19
 +
# Madison80
 +
# Malik2
 +
# Margaret5
 +
# Margaret11
 +
# Marie3
 +
# Marie10
 +
# Marie12
 +
# Marissa Mayer
 +
# Mark92
 +
# Mark2006
 +
# Mark2007
 +
# Mark Zuckerberg
 +
# Martin Van Halen
 +
# Matthew2006
 +
# Mavis Bitcoin
 +
# Michaela2006
 +
# Michelle11
 +
# Minecraft Holmes
 +
# Misty3
 +
# Myspace Tom
 +
# Norton Ghost Dad
 +
# Notorious L.H.C.
 +
# Padme Dorothy James
 +
# Pam06
 +
# Patricia03
 +
# Paul50
 +
# Paul1957
 +
# Player One
 +
# Player Two
 +
# Professor Monoculatus McToff
 +
# Raymond6
 +
# Ronald22
 +
# Ruth3
 +
# S. G. Dukat
 +
# Samuel19
 +
# Samuel49
 +
# Sarah55
 +
# Sarah1976
 +
# Sarah2005
 +
# Sharon91
 +
# Sharon99
 +
# Shaun6
 +
# Shaun46
 +
# Shaun1960
 +
# Sheena2005
 +
# Sherri97
 +
# Sidd Finch
 +
# Sierra3
 +
# Sierra7
 +
# Sierra10
 +
# Stacy07
 +
# Stacy14
 +
# Steven02
 +
# Steven50
 +
# Steven2002
 +
# Susan11
 +
# Susan25
 +
# Taylor1990
 +
# Taylor1998
 +
# Thomas2
 +
# Tim21
 +
# Tim87
 +
# Tina Belcher
 +
# Todd33
 +
# Tonya22
 +
# Tonya38
 +
# Tracy1977
 +
# Tricia1
 +
# Tricia14
 +
# Trinity1989
 +
# Virginia1961
 +
# Virginia2006
 +
# Wil
 +
# Wric Tungstenfinger
 +
 
 +
===feed_text===
 +
Captions used in the feed.  Contains user submissions.  (8 have not been found as prompts)
 +
----
 +
 
  
#  (ღ˘⌣˘ღ)
 
 
# :-(
 
# :-(
 
# ?????????????
 
# ?????????????
# ... It's about ethics in games journalism.
 
 
# ...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...
 
 
# 'BOOM' goes the dynamite!
 
# 'BOOM' goes the dynamite!
# 'Murica, hell yeah!
 
 
# "...The Aristocrats."
 
# "...The Aristocrats."
# "ARIANA GRANDE" is spanish for "GIANT SPIDER"
 
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
 
 
# "Bake him away, toys"
 
# "Bake him away, toys"
 
# "Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
 
# "Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
# "Cat-like Reflexes"
 
 
# "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 820:
 
# “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*
Line 575: Line 829:
 
# #ALLLLLLBYMYSELF
 
# #ALLLLLLBYMYSELF
 
# #awefullyNicetractsofland
 
# #awefullyNicetractsofland
# #beatingheartinabox
 
 
# #bedhead
 
# #bedhead
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
# #blessed
 
 
# #bornthisway
 
# #bornthisway
 
# #BROKEN
 
# #BROKEN
# #Canadian internet #price gouging
 
 
# #CATSANDBIRDS
 
# #CATSANDBIRDS
 
# #caturday
 
# #caturday
Line 591: Line 842:
 
# #delfie
 
# #delfie
 
# #Donthate #Truelove
 
# #Donthate #Truelove
# #drbalanced
 
 
# #DrinkSaltwater
 
# #DrinkSaltwater
 
# #duckface
 
# #duckface
# #essentialsupplies
 
 
# #fallingfromorbit
 
# #fallingfromorbit
# #fishy!
 
 
# #flavorbomb
 
# #flavorbomb
 
# #giganticflower #headshot
 
# #giganticflower #headshot
Line 602: Line 850:
 
# #gps be like
 
# #gps be like
 
# #hashtag
 
# #hashtag
# #Hashtag #ironicSelfie
 
# #hashtag #yinyl #yolo #thanksobama
 
 
# #HL3 #CONFIRMED #ILLUMINATI
 
# #HL3 #CONFIRMED #ILLUMINATI
 
# #hoax
 
# #hoax
Line 609: Line 855:
 
# #illuminati
 
# #illuminati
 
# #imnotracistbut
 
# #imnotracistbut
# #ivisitedthegrandcanyon #yolo
 
# #justnasathings
 
 
# #lifehacks
 
# #lifehacks
 
# #livefeed #colonoscopy
 
# #livefeed #colonoscopy
Line 620: Line 864:
 
# #Nailpolish
 
# #Nailpolish
 
# #newhipsterbike
 
# #newhipsterbike
# #NewProfilepic
 
 
# #nofilter
 
# #nofilter
 
# #nomakeup #justgotup #wow
 
# #nomakeup #justgotup #wow
Line 631: Line 874:
 
# #parsnipandoldlace
 
# #parsnipandoldlace
 
# #Photobomb
 
# #Photobomb
# #rememberthetitans
 
 
# #satellite #navigation
 
# #satellite #navigation
 
# #saturday #memories #beautiful
 
# #saturday #memories #beautiful
Line 638: Line 880:
 
# #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
# #teamplayer
 
 
# #this_is_how_an_angel_dies
 
# #this_is_how_an_angel_dies
 
# #this_is_sparta
 
# #this_is_sparta
Line 648: Line 887:
 
# #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 903:
 
# 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
# 2pm and i'm not drunk yet
 
 
# 3 year olds first lego experience
 
# 3 year olds first lego experience
 
# 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
 
# 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
 
 
# 99 bottles of beer on the wall
 
# 99 bottles of beer on the wall
 
# 99% of people are too scared to share this post! share if you are one of the 1%
 
# 99% of people are too scared to share this post! share if you are one of the 1%
 
# A boa constrictor that has swallowed a hat
 
# A boa constrictor that has swallowed a hat
 
# A classic battle between the word and the sword, represented by the most noble creature
 
# A classic battle between the word and the sword, represented by the most noble creature
# A delicate pear
 
 
# A Dozen roses, the Barnum Effect, and Thou
 
# A Dozen roses, the Barnum Effect, and Thou
 
# a fortuneteller told me to get my head out of the clouds.
 
# a fortuneteller told me to get my head out of the clouds.
 
# 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
 
# about to die lol
 
# about to die lol
 
# ack
 
# ack
# ACK-scuse me sir, Stop shaking hands and transmit some data.
 
 
# ACME anvil delivery service...Faster than Amazon!
 
# ACME anvil delivery service...Faster than Amazon!
# actually, around here we itemize our taxes
 
# Aesthetic.
 
 
# AGHHHHH
 
# AGHHHHH
 
# Ain't no mountain high enough, ain't no valley low enough...
 
# Ain't no mountain high enough, ain't no valley low enough...
Line 714: Line 935:
 
# 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 things considered, it turned out nice again
 
# All things considered, it turned out nice again
 
# Allons-Y!
 
# Allons-Y!
 
# almost, but not quite, entirely unlike tea
 
# almost, but not quite, entirely unlike tea
# always darekst before the dawn
 
 
# Always get a full nights rest
 
# Always get a full nights rest
 
# Always watching, never speaking. WHAT does he want?!
 
# Always watching, never speaking. WHAT does he want?!
 
# Am I a Pokemon?
 
# Am I a Pokemon?
 
# Amazing optical illusion! Can you see the duck?
 
# Amazing optical illusion! Can you see the duck?
# Amazing! Discovery! on mars!
 
 
# amazons newest delivery method  
 
# amazons newest delivery method  
 
# Amirite??
 
# Amirite??
Line 735: Line 951:
 
# An unsuccessful bike design...
 
# An unsuccessful bike design...
 
# ancient skull loses eye socket in fencing accident
 
# ancient skull loses eye socket in fencing accident
# and a bluetooth made of pretzel sticks
 
# And so it began...
 
# 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 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.
 
# 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 one bites the dust
 
# Another one bites the dust
 
# Another victim of 'got your nose!'
 
# Another victim of 'got your nose!'
 
# Antimater Universe wants a hug.
 
# Antimater Universe wants a hug.
# Ants close in on the tender eye-flesh
 
 
# ants, zomg, ants, everywhere
 
# ants, zomg, ants, everywhere
 
# Any hatchlings in here?
 
# Any hatchlings in here?
# Anyone craving some soup right about now?
 
 
# Anyone here have any advice on how to get it to stop singing?
 
# Anyone here have any advice on how to get it to stop singing?
 
# Anyone know what's wrong with my thumb?
 
# Anyone know what's wrong with my thumb?
# anyone seen some uruk-hai? Asking for a friend.
 
 
# Apparently i have retinoblastoma.
 
# Apparently i have retinoblastoma.
 
# Apparently it's a thing now...
 
# Apparently it's a thing now...
Line 768: Line 970:
 
# Apparently, it's called "BEAR Fishing"
 
# Apparently, it's called "BEAR Fishing"
 
# apple's new offering: iscream
 
# apple's new offering: iscream
# Appropriately enough, the jury voted guilty
 
 
# April Fools!
 
# April Fools!
 
# Are We Not Men? We Are Devo.
 
# Are We Not Men? We Are Devo.
Line 777: Line 978:
 
# Artistic recreation from new fossil find
 
# Artistic recreation from new fossil find
 
# As I place the flowers, I thought, "She will never forgive me for marrying her daughter."
 
# As I place the flowers, I thought, "She will never forgive me for marrying her daughter."
# As long as there aren't any snake I should be fi- Shit! Snakes!
 
 
# as sir nibbles of acorn surveyed the destruction, he realized that he had forgotten to account for drag
 
# as sir nibbles of acorn surveyed the destruction, he realized that he had forgotten to account for drag
 
# As the sun set on the day, I thought about all of my failings, and didn't realize it mattered anymore.  I was finally free of the day and could start all over again tomorrow without any judgement weighing on me.
 
# As the sun set on the day, I thought about all of my failings, and didn't realize it mattered anymore.  I was finally free of the day and could start all over again tomorrow without any judgement weighing on me.
Line 785: Line 985:
 
# 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 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?"
# Attracted to black holes, HELP!
 
 
# australia is not NZ!
 
# australia is not NZ!
 
# AUUUGH
 
# AUUUGH
# Aw, man, I hate gelatinous cubes...
 
# Aw, yisss!
 
 
# awesome sunrise this morning #lenscap #nofilter #hashtag
 
# awesome sunrise this morning #lenscap #nofilter #hashtag
 
# AWESOME! This cloud was so much larger than my thumb!
 
# AWESOME! This cloud was so much larger than my thumb!
# awkward! . . .
 
 
# Aww, honey, don't cry...
 
# Aww, honey, don't cry...
 
# Awwwwwwwwww, poor meteor!
 
# Awwwwwwwwww, poor meteor!
Line 809: Line 999:
 
# 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
# BANG! ZOOM! STRAIGHT TO THE MOON!
 
 
# Bangarang Motherfuckers
 
# Bangarang Motherfuckers
 
# Barraco Barner is our nasion's prezident.
 
# Barraco Barner is our nasion's prezident.
 
# Bay-bae lolz
 
# Bay-bae lolz
 
# Bazookateer crossing
 
# Bazookateer crossing
# BDSM bringing another relationship together
 
 
# been stuck here for a while, any ideas?
 
# been stuck here for a while, any ideas?
 
# Beer Pong alone again! #YOLO
 
# Beer Pong alone again! #YOLO
# Before his untimely death.
 
# 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 836: Line 1,019:
 
# big ben is going down.
 
# big ben is going down.
 
# Big Bird, An orwellian Short
 
# Big Bird, An orwellian Short
# big black orb #shit #soyuzfail
 
 
# Big bowl of star-flakes
 
# Big bowl of star-flakes
 
# big data strikes back
 
# big data strikes back
 
# bip bip bip bip bip bip bip bip bip bip bip bip bip
 
# bip bip bip bip bip bip bip bip bip bip bip bip bip
# Bird seed companies HATE him
 
 
# birdcoin is looking to be a huge success
 
# birdcoin is looking to be a huge success
 
# Birds are less cute the closer they are.
 
# Birds are less cute the closer they are.
# Birds: secretly a type of banana.
 
 
# Birdwatching is an exhausting affair, especially when the birds fight back
 
# Birdwatching is an exhausting affair, especially when the birds fight back
 
# bit nosy, aren't you?
 
# bit nosy, aren't you?
Line 852: Line 1,032:
 
# blob monster attacking our city lol brb avoiding certain slimy doom lol
 
# blob monster attacking our city lol brb avoiding certain slimy doom lol
 
# Blood for the blood god! Skulls for the skull throne!
 
# Blood for the blood god! Skulls for the skull throne!
# bob ross has only become more powerful in death
 
 
# Boba fett? Boba Fett? Where!?
 
# Boba fett? Boba Fett? Where!?
# Bomber one on approach
 
# Bonehenge
 
 
# 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
 
 
# 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 1,044:
 
# 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 1,050:
 
# 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
 
 
# 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
# captcha: Enter picture description
 
 
# Car broke down on the side of the highway.
 
# Car broke down on the side of the highway.
 
# Car tiddlywinks proves success
 
# Car tiddlywinks proves success
 
# Cat in a hat or fox in a box?
 
# Cat in a hat or fox in a box?
 
# Cat tax paid
 
# Cat tax paid
# Catman
 
 
# caught the sunset tonight at midday
 
# caught the sunset tonight at midday
 
# Ce n'est pas un canard
 
# Ce n'est pas un canard
 
# CeCi N'est Pas Une Pipe
 
# CeCi N'est Pas Une Pipe
# CERN proves existence of "the force"
 
# CERN's soLUtion to a cut in funding.
 
 
# cest ne pas un pipe
 
# cest ne pas un pipe
 
# Changing Guard at Buckingham Palace
 
# Changing Guard at Buckingham Palace
 
# 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 sonic oc!
 
# Check out my new sonic oc!
 
# 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.
 
# clever girl.....
 
# clever girl.....
# Click "Like" when you see it!
 
 
# 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
# Combining that old vax with a microwave oven was a bad idea!
 
# come at me, pro!
 
# 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
 
 
# conspiracy theorists crestfallen after taking photo of platonic ideal rather than its specific manifestation
 
# conspiracy theorists crestfallen after taking photo of platonic ideal rather than its specific manifestation
 
# Contains 8 essential types of spiders!
 
# Contains 8 essential types of spiders!
Line 931: Line 1,085:
 
# CORNFLAKES AGAIN!?!?!??!?!??!
 
# CORNFLAKES AGAIN!?!?!??!?!??!
 
# Cory Doctrow finds Ron Paul's secret Lunar base
 
# Cory Doctrow finds Ron Paul's secret Lunar base
# could anyone help me find my contacts?
 
 
# cowabunga dude
 
# cowabunga dude
 
# cowabunga, dudes!
 
# cowabunga, dudes!
 
# crawling and texting #badcombination
 
# crawling and texting #badcombination
 
# crawling in my skiiiiiiiiiiiiiiin
 
# crawling in my skiiiiiiiiiiiiiiin
# crenellate good times, c'Mon!
 
 
# Crocodile Pink Eye
 
# Crocodile Pink Eye
 
# Cruise Kingdom  
 
# Cruise Kingdom  
 
# cthulu caught me slipping  
 
# cthulu caught me slipping  
 
# cthulu wants what cthulu wants
 
# cthulu wants what cthulu wants
# Cuneiform writing influenced fence makers for generations
 
# curiosity fed the cat
 
# Curiosity Stops Sending Photos, Transmits Crude Line Drawings Instead.
 
# cuteness depleted after 20 pictures!! #ripoff
 
 
# Da_FEELS###!
 
# Da_FEELS###!
 
# Dad is going to lose his head over this. FML.
 
# Dad is going to lose his head over this. FML.
Line 955: Line 1,103:
 
# damn. that squirrel's got a ball
 
# damn. that squirrel's got a ball
 
# damned ninjas
 
# damned ninjas
# damnit, another drunken tree in the road
+
# Dang! Inflated tires with Helium again!
# Dance contest! #YOLO
 
# 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 last day: 24 hours remain.
 
# Dawn: The Final day
 
 
# Day 12: it's going well I think
 
# Day 12: it's going well I think
 
# 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 1,117:
 
# 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?
 
 
# Diet is working!
 
# Diet is working!
 
# Dinosaur extinction: The final Phase
 
# Dinosaur extinction: The final Phase
 
# discovered a new shortcut for making toast
 
# discovered a new shortcut for making toast
# Dispatch, I'm not Really Sure we have a Violation Number for this one
 
 
# Dividing by zero prematurely ended his research career.
 
# Dividing by zero prematurely ended his research career.
 
# diy abortion
 
# diy abortion
Line 989: Line 1,126:
 
# Do I look like a penguin?
 
# Do I look like a penguin?
 
# Do my feet look fat?
 
# Do my feet look fat?
# Do my feet smell?
 
 
# Do Notte Buye Betamacks.
 
# Do Notte Buye Betamacks.
# Do the Harlem Shake
 
 
# Do you care to #engage with this #content
 
# Do you care to #engage with this #content
 
# Do you feline lucky, punk?
 
# Do you feline lucky, punk?
 
# Do you have a lighter?
 
# Do you have a lighter?
# 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 if this is supposed to happen
 
# Does anyone know if this is supposed to happen
 
# Does anyone know why it is doing this?
 
# Does anyone know why it is doing this?
 
# does my ass look big in this?
 
# does my ass look big in this?
 
# Does my eye look bloodshot?
 
# Does my eye look bloodshot?
# Does my hair look like it's thinning?
 
# Does this look infected?
 
 
# Does this look like pink eye to you?
 
# Does this look like pink eye to you?
 
# 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!!!!!!
 
 
# Dominos delivers!
 
# Dominos delivers!
 
# don't be silly, horses cant fly planes.
 
# don't be silly, horses cant fly planes.
Line 1,018: Line 1,146:
 
# Don't have a cow, man
 
# Don't have a cow, man
 
# Don't inhale!
 
# Don't inhale!
# Don't Press Turbo boost. Something tells me you should never press turbo boost.
 
 
# 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?
# Dons Quixote start their parallel quests
 
 
# 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,036: Line 1,160:
 
# DuckDuckGoes!
 
# DuckDuckGoes!
 
# duckface is the new radians
 
# duckface is the new radians
# Dude Did you know you could smoke almost anything?
 
 
# Dude, I can totally catch this!
 
# Dude, I can totally catch this!
 
# Dude, where's my car?
 
# Dude, where's my car?
# Dude!  Dude?  Dude.
 
 
# DX(X^LN(Y!)/xy*pi=screw you
 
# DX(X^LN(Y!)/xy*pi=screw you
# Early Heavy Metal Story Boards Discovered
 
# Early stages of Giraffe evolution
 
 
# EARTH HAS 4 CORNER  SIMULTANEOUS 4-DAY  TIME CUBE  WITHIN SINGLE ROTATION.  4 CORNER DAYS PROVES 1  DAY 1 GOD IS TAUGHT EVIL.
 
# EARTH HAS 4 CORNER  SIMULTANEOUS 4-DAY  TIME CUBE  WITHIN SINGLE ROTATION.  4 CORNER DAYS PROVES 1  DAY 1 GOD IS TAUGHT EVIL.
 
# 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, 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 1,173:
 
# 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!
 
 
# Evenutally, they'll write moby dick.
 
# Evenutally, they'll write moby dick.
 
# ever get the feeling you're being watched?
 
# ever get the feeling you're being watched?
Line 1,066: Line 1,181:
 
# 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 1,186:
 
# 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,079: Line 1,192:
 
# Fear the day we Mole People breach the surface of the Earth like Mewling Babes, FOR THAT WILL BE YOUR LAST! #Ihatethesun #goditsbright #isthisworthit?
 
# Fear the day we Mole People breach the surface of the Earth like Mewling Babes, FOR THAT WILL BE YOUR LAST! #Ihatethesun #goditsbright #isthisworthit?
 
# feeding my pet
 
# feeding my pet
# FENTON!!! FENTON!
 
 
# Field Trip!
 
# Field Trip!
 
# File not found ... creating fake file...
 
# File not found ... creating fake file...
Line 1,089: Line 1,201:
 
# Finally, new tires
 
# Finally, new tires
 
# Fire can sometimes be hot?
 
# Fire can sometimes be hot?
# First day at school
 
 
# First day of school.  
 
# First day of school.  
 
# First found evidence for Einstein–Rosen bridges.
 
# First found evidence for Einstein–Rosen bridges.
Line 1,097: Line 1,208:
 
# First time posting, please be nice
 
# First time posting, please be nice
 
# First, thoroughly lubricate the conspiracy theory
 
# First, thoroughly lubricate the conspiracy theory
# Fish hooks REALLY REALLY HURT
 
 
# Fission, fusion, what's the difference?
 
# Fission, fusion, what's the difference?
 
# Flat file viewing
 
# Flat file viewing
Line 1,105: Line 1,215:
 
# FML
 
# FML
 
# Fnnnaarrrrr!
 
# Fnnnaarrrrr!
# Foiled again by the bell curve
 
# fond this creepy ass painting in my basement. how much do you guys think it's worth ?
 
# food crisis strategy
 
 
# for a long time i was accustomed to going to Bed early.
 
# for a long time i was accustomed to going to Bed early.
 
# For my book report presentation, i'll be acting out "50 shades of gray"
 
# For my book report presentation, i'll be acting out "50 shades of gray"
Line 1,114: Line 1,221:
 
# 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?
# Found this mushroom, thought of you
 
 
# found this on google maps earlier.
 
# found this on google maps earlier.
 
# Found: bra left abandoned on romantic beach.  
 
# Found: bra left abandoned on romantic beach.  
# 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,138: Line 1,239:
 
# funny how we type xoxoxo for kisses but oxoxox for an oxen stampede
 
# funny how we type xoxoxo for kisses but oxoxox for an oxen stampede
 
# furrowed mustache
 
# furrowed mustache
# 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 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
 
# good old troubleshootin'
 
 
# Goodnight moon
 
# Goodnight moon
 
# google bots have uncovered some missing bits
 
# google bots have uncovered some missing bits
Line 1,163: Line 1,254:
 
# Got a hip mustache! What do y'all think?
 
# Got a hip mustache! What do y'all think?
 
# Got a message from an adoring fan today! <3
 
# Got a message from an adoring fan today! <3
# got Peanut allergies #yolo #swag
 
# got to meet with charlie sheen
 
 
# Got your nose!
 
# Got your nose!
 
# Gotta catch em all.
 
# Gotta catch em all.
# gotta take big ben down a peg
 
 
# GPS Signal lost.. damn it!
 
# GPS Signal lost.. damn it!
# 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,182: Line 1,268:
 
# Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
 
# Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
 
# GUYS HELP IS THIS SWINE FLU?
 
# GUYS HELP IS THIS SWINE FLU?
# 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
 
 
# Happy Birthday, M C Escher
 
# Happy Birthday, M C Escher
 
# Happy Birthday!
 
# Happy Birthday!
 
# Has anyone really been as far even as decided to use even go what to do look more like?
 
# Has anyone really been as far even as decided to use even go what to do look more like?
# has anyone seen my force field generator?
 
 
# Has science gone too far?  
 
# Has science gone too far?  
 
# Hasbro's new product targets both the small girl and the adult male demographics.
 
# Hasbro's new product targets both the small girl and the adult male demographics.
# Hat in the cat strike back!
 
 
# 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.
 
 
# havin fun in the wind tunnel. WHOOOSH!
 
# havin fun in the wind tunnel. WHOOOSH!
 
# He did say it was edible
 
# He did say it was edible
Line 1,211: Line 1,288:
 
# He thought 'chutes were for the insecure
 
# He thought 'chutes were for the insecure
 
# He was never seen again
 
# He was never seen again
# 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
 
# help being attacked by wormsaaaaaagghh
 
# 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.
 
# help wanted. inquire within.
 
# help wanted. inquire within.
# Help! HELP! I need an adult
 
 
# Help! my mustache is eating my fammmmmrhmhghhh
 
# Help! my mustache is eating my fammmmmrhmhghhh
 
# Here comes the sun, do do do do...
 
# Here comes the sun, do do do do...
 
# Here we see the last two simple machines; the inclined plane and the rocket board
 
# Here we see the last two simple machines; the inclined plane and the rocket board
# Heres a pic of a wild catus, who just saw a balloon
 
 
# Hey guys, watch this
 
# Hey guys, watch this
 
# hey is that an event horizon of a blaaaaaa!
 
# hey is that an event horizon of a blaaaaaa!
# Hey there cutie
 
# 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.
 
# Hey, what did you mortals do with my chariot?
 
# Hey, what did you mortals do with my chariot?
# hey! check out larry's new aloe vera cream recipe! it works wonders on the skin and lips!
 
 
# Hey! My cloaca is down here!
 
# Hey! My cloaca is down here!
 
# hgghjg
 
# hgghjg
 
# Hi ho, hi ho, it's off to work we go
 
# Hi ho, hi ho, it's off to work we go
 
# Hide! It's Un Chien Andalou!
 
# Hide! It's Un Chien Andalou!
# 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,311:
 
# 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,320:
 
# 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?
# How much absinthe did you say was in this?
 
 
# how to make roommate stop pooping everywhere
 
# how to make roommate stop pooping everywhere
 
# How's My new haircut?
 
# How's My new haircut?
 
# hungry hungry fencing subcontractors  
 
# hungry hungry fencing subcontractors  
# Hunka Hunka burnin' steel
 
 
# I  think I need new glasses.
 
# I  think I need new glasses.
 
# I 'M out of the acorn
 
# I 'M out of the acorn
# I always fast forward through this part.
 
 
# I am a beautiful person.
 
# I am a beautiful person.
 
# I am become Death, Destroyer of insects smaller than 4mm
 
# I am become Death, Destroyer of insects smaller than 4mm
Line 1,279: Line 1,336:
 
# I am infinite.  i am eternal.
 
# I am infinite.  i am eternal.
 
# i am never going to the beauty school for my manicure again
 
# i am never going to the beauty school for my manicure again
# I am the creator.
 
# i am wearing a bolo tie
 
 
# I believe in an afterbirth.
 
# I believe in an afterbirth.
 
# I beseech you, in the bowels of Christ, think it possible that you may be mistaken.
 
# I beseech you, in the bowels of Christ, think it possible that you may be mistaken.
# I blame lack of regulation
 
 
# I blame supernasa
 
# I blame supernasa
 
# I bought you a RING... ooh shinything!
 
# I bought you a RING... ooh shinything!
Line 1,291: Line 1,345:
 
# I call it: "The Futility of American Anything"
 
# I call it: "The Futility of American Anything"
 
# I call zeno's paradox on this... thing.
 
# I call zeno's paradox on this... thing.
# I can can hear satellites crying in my teeth
 
# I can control the BEES! But I only make them turn right
 
 
# I can has cheezburger?
 
# I can has cheezburger?
# I can jump that far!
 
# I CAN NEVER STOP SCREAMING
 
 
# I can ride my bike with no handlebars.
 
# I can ride my bike with no handlebars.
 
# I can take photos with my teeth!
 
# I can take photos with my teeth!
Line 1,304: Line 1,354:
 
# 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 know
 
# I don't know
 
# I don't know how to play...
 
# I don't know how to play...
# I don't know if this is proof of anything other than old habits dying hard
 
# I DON'T KNOW WHAT HE'S SAYING, BUT HE SOUNDS LIKE HE'D MAKE A GREAT PRESIDENT
 
 
# I don't regret pressing the button
 
# I don't regret pressing the button
 
# i don't remember this scene form star wars
 
# i don't remember this scene form star wars
# I don't see how sniffing this globe will help my complexion, but I'll try anything at this point.
 
 
# I don't think I really understand what this is.
 
# I don't think I really understand what this is.
 
# I don't think that's supposed to go there...
 
# I don't think that's supposed to go there...
Line 1,323: Line 1,366:
 
# i don't think we're playing zelda anymore...
 
# i don't think we're playing zelda anymore...
 
# I don't want to set the world on fire
 
# I don't want to set the world on fire
# i donna think it means what you think it means
 
 
# I dream of death
 
# I dream of death
 
# I EXPECT YOU TO SAY 'OW OW OW,' MR. BOND
 
# I EXPECT YOU TO SAY 'OW OW OW,' MR. BOND
Line 1,330: Line 1,372:
 
# I find this picture reflects my soul.
 
# I find this picture reflects my soul.
 
# I finished building our pool, but now i realise we can't afford the water to fill it.
 
# I finished building our pool, but now i realise we can't afford the water to fill it.
# I fixed it guys
 
 
# I forgot the two scoops of rasins!
 
# I forgot the two scoops of rasins!
 
# I forgot to get a plane
 
# I forgot to get a plane
Line 1,337: Line 1,378:
 
# 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 it when this happens
 
# i hate it when this happens
 
# I hate the carnival so much right now
 
# I hate the carnival so much right now
Line 1,356: Line 1,391:
 
# 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
 
# I have never been happy
 
# I have never been happy
 
# I have tasted many fish
 
# I have tasted many fish
# 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,372: Line 1,404:
 
# I just want to watch the world burn
 
# I just want to watch the world burn
 
# 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 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,382: Line 1,412:
 
# I lost my tooth
 
# I lost my tooth
 
# I lost my wits
 
# I lost my wits
# 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,421:
 
# 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,427:
 
# 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,432:
 
# 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 solved the debt crisis!
 
# I solved the debt crisis!
 
# I still say it looks White and Gold!
 
# I still say it looks White and Gold!
Line 1,414: Line 1,438:
 
# 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
# i think it's working now, ask me anything
 
 
# I think my houseplant is doing pretty good #greenthumb
 
# I think my houseplant is doing pretty good #greenthumb
 
# I think the white balance on my new SLR is off
 
# I think the white balance on my new SLR is off
Line 1,432: Line 1,453:
 
# 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,465:
 
# 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 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 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 wonder if it will be friends with me
 
# I wonder if it will be friends with me
 
# I wonder what will this lead to...
 
# I wonder what will this lead to...
Line 1,471: Line 1,482:
 
# I. AM. BELLSPROUT.
 
# I. AM. BELLSPROUT.
 
# I'd call this experiment a success.
 
# I'd call this experiment a success.
# i'd like bacteria a lot more if they smiled.
 
# I'd like to advise everyone not to eat avocados.
 
# I'd take the stairs, but...
 
 
# I'd tap dat.
 
# I'd tap dat.
 
# I'd tap that
 
# I'd tap that
Line 1,479: Line 1,487:
 
# I'll just go buy cigarettes
 
# I'll just go buy cigarettes
 
# I'll miss the sparrow with my sparrow missile
 
# I'll miss the sparrow with my sparrow missile
# I'll never fit in!
 
 
# i'll never get tired of this.
 
# i'll never get tired of this.
 
# I'll never see her again... i just... i just don't know how to go on... :(
 
# I'll never see her again... i just... i just don't know how to go on... :(
 
# 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!
 
# I'm a wizard!
 
# I'm a wizard!
 
# I'm afraid I can't explain myself, sir.  
 
# I'm afraid I can't explain myself, sir.  
# i'm being ironic
 
 
# I'm going to be smashed to bits
 
# I'm going to be smashed to bits
 
# i'm just surprised it took this long.
 
# i'm just surprised it took this long.
Line 1,497: Line 1,501:
 
# I'm making my own emojis now! do you like it?
 
# I'm making my own emojis now! do you like it?
 
# I'm never going on chatroulette again
 
# I'm never going on chatroulette again
# I'm no longer welcome at the play centre.
 
 
# I'm not aging gracefully, am I?
 
# I'm not aging gracefully, am I?
 
# I'm not even mad. that's amazing
 
# I'm not even mad. that's amazing
Line 1,503: Line 1,506:
 
# i'm now 75% more efficient
 
# i'm now 75% more efficient
 
# I'm ready!
 
# I'm ready!
# 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
# I'm, like, a minecraft genie!
 
 
# I've been robbed!
 
# I've been robbed!
 
# I've discovered a new clean-power source
 
# I've discovered a new clean-power source
 
# 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
 
 
# I've never been so aware of my own hunger
 
# I've never been so aware of my own hunger
 
# i've never felt so alone.
 
# i've never felt so alone.
# I've never felt so empty before
+
# I've seen enough hentai to know where this is going.
 
# i've seen enough hentai to know where this is going.
 
# 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 liked it then you should've put a ring on it
 
# If you liked it then you should've put a ring on it
 
# if you squint, you can see that it's actually an adequately bearded grain of 1986 millet signing the insurance policy of versailles.
 
# if you squint, you can see that it's actually an adequately bearded grain of 1986 millet signing the insurance policy of versailles.
 
# If you're brave enough...
 
# If you're brave enough...
 
# If you're happy and you know it, keep it to yourself
 
# If you're happy and you know it, keep it to yourself
# If you've got a moustache...
 
 
# Ikea art
 
# Ikea art
 
# im sure there is a dad joke in this somewhere
 
# im sure there is a dad joke in this somewhere
 
# in an ideal vacuum, at what point does this fish realize it's going to die?
 
# in an ideal vacuum, at what point does this fish realize it's going to die?
 
# 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 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,554: Line 1,545:
 
# Ink-blots describe how they see students
 
# Ink-blots describe how they see students
 
# inner city air conditioning
 
# inner city air conditioning
# Insert a turnip into the serial port.
 
 
# 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,571: Line 1,559:
 
# Is that what I think it is? in my salad?
 
# Is that what I think it is? in my salad?
 
# is the eject button meant to do this?
 
# is the eject button meant to do this?
# Is there a bee on my nose?
 
 
# Is there really any point? FML
 
# Is there really any point? FML
 
# IS there something in my nose?  #Nofilter
 
# IS there something in my nose?  #Nofilter
# Is this a horse man or a duck man? The answer may surprise you!
 
 
# Is this a rhombus? No one seems to know.
 
# Is this a rhombus? No one seems to know.
 
# Is this an april fools joke?  why did this show up at my door?
 
# Is this an april fools joke?  why did this show up at my door?
Line 1,582: Line 1,568:
 
# 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,595: Line 1,580:
 
# It was the rational response  
 
# It was the rational response  
 
# 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 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 called "depleted" 'cause it's heavier
 
# it's fun to do bad things
 
 
# it's in a good part of town
 
# it's in a good part of town
 
# it's like rain on your wedding day!
 
# it's like rain on your wedding day!
# It's Loch Ness Turtles all the way down.
 
 
# it's my hand supposed to do this? #thanksobama
 
# it's my hand supposed to do this? #thanksobama
 
# It's not a good part of town
 
# It's not a good part of town
 
# It's not a moon, it's a space dolphin!
 
# It's not a moon, it's a space dolphin!
# it's not what you think
 
 
# it's only awkward if you think it's awkward #awkotaco
 
# it's only awkward if you think it's awkward #awkotaco
 
# It's only what I've been looking for for my entire life!
 
# It's only what I've been looking for for my entire life!
 
# 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't melt steel beams
 
# Jet fuel can't melt steel beams
 
# Jet memes cant fuel steel belts
 
# Jet memes cant fuel steel belts
Line 1,626: Line 1,599:
 
# 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,604:
 
# 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,611:
 
# 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.
 
# just two more trips over the horizon
 
# just two more trips over the horizon
 
# kang, do i look good in this?
 
# kang, do i look good in this?
# keep on truckin...
 
# Khan!
 
 
# Kids, you aren't cool enough to do this
 
# Kids, you aren't cool enough to do this
 
# kill the pig cut his throat spill his blood
 
# kill the pig cut his throat spill his blood
Line 1,655: Line 1,622:
 
# ksp mission success
 
# ksp mission success
 
# Lack of cucumbers
 
# Lack of cucumbers
# ladies
 
 
# Larry asked me to be his wingman
 
# Larry asked me to be his wingman
 
# last march of the ents
 
# last march of the ents
Line 1,665: Line 1,631:
 
# 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.  
 
# Let's have a blinking contest
 
# Let's have a blinking contest
 
# Let's play "Guess what andy the anaconda ate"
 
# Let's play "Guess what andy the anaconda ate"
# LET'S PLAY A GAME OF FORCED PERSPECTIVE.
 
 
# Life comes from the Ocean. We just Give them the opportunity to go back
 
# Life comes from the Ocean. We just Give them the opportunity to go back
# Life is a matter of perspective, really.
 
 
# Life is cruel and unyielding, and what must be must be
 
# Life is cruel and unyielding, and what must be must be
 
# Life is hard three standard deviations to the left.
 
# Life is hard three standard deviations to the left.
# Life on the moon.
 
 
# Life outside the matrix
 
# Life outside the matrix
 
# Light traffic today.
 
# Light traffic today.
# Like a G6, baby, like a g6
 
 
# 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!
 
 
# Listen, I wouldn't worry about that. . .
 
# Listen, I wouldn't worry about that. . .
 
# lol, no i didn't jump
 
# lol, no i didn't jump
Line 1,693: Line 1,651:
 
# look at me, i'm from England!
 
# look at me, i'm from England!
 
# Look at my dollar coin
 
# Look at my dollar coin
# Look at my new blue dress!
 
 
# look at my new dog!
 
# look at my new dog!
 
# look at my new watch! #justflavourflavthings
 
# look at my new watch! #justflavourflavthings
Line 1,699: Line 1,656:
 
# 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 out!
 
# Look out!
 
# Look upon my works, ye mighty, and despair
 
# Look upon my works, ye mighty, and despair
# Look upon my works, ye mighty, and despair!
 
 
# look what happened to my satellite
 
# look what happened to my satellite
 
# look what i found underneath my pillow
 
# look what i found underneath my pillow
 
# Look what I just ordered on amazon.com!
 
# Look what I just ordered on amazon.com!
# look what the doctors found in me!
 
# Looks like he wants a ride. Should we pull over?
 
 
# Lord of the Rings Episode IV: Revenge of the ents
 
# Lord of the Rings Episode IV: Revenge of the ents
 
# Los Angeles sure is beautiful this time of year
 
# Los Angeles sure is beautiful this time of year
# 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?
 
 
# Love is creepy
 
# Love is creepy
 
# love it!
 
# love it!
Line 1,720: Line 1,669:
 
# 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,677:
 
# 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,741: Line 1,687:
 
# mario Kart is harder in real life
 
# mario Kart is harder in real life
 
# married a cat  
 
# married a cat  
# Mars Instant Messenger Prototype
 
 
# marvel universe howard the duck returns
 
# marvel universe howard the duck returns
# Massive orgy reaches climax
 
 
# MATE YOU HAVE FORGOT YOUR STICK
 
# MATE YOU HAVE FORGOT YOUR STICK
 
# Maths are hard
 
# Maths are hard
Line 1,750: Line 1,694:
 
# 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
 
 
# me and all my friends
 
# me and all my friends
 
# Me llamo t-bone
 
# Me llamo t-bone
 
# Me, before the topical ointment
 
# Me, before the topical ointment
 
# Me, Graduation from villain Acadamy
 
# Me, Graduation from villain Acadamy
# 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...
 
 
# 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,709:
 
# 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
 
 
# Molten steel can't fuel jet beams
 
# Molten steel can't fuel jet beams
 
# Monday mornings
 
# Monday mornings
# monkey movember
 
 
# moo!
 
# moo!
 
# 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 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 cat barfed this out
 
# My cat barfed this out
 
# my cat got into the *other* catnip
 
# my cat got into the *other* catnip
Line 1,797: Line 1,726:
 
# my cat is sick
 
# my cat is sick
 
# My cats used to lie all over the floor and block hallways, but thanks to the furniture store, my problems are solved!
 
# My cats used to lie all over the floor and block hallways, but thanks to the furniture store, my problems are solved!
# my children will never understand me
 
 
# my choice of flat-mate may have been a mistake.
 
# my choice of flat-mate may have been a mistake.
 
# my class bet me this couldn't get 500 clicks!
 
# my class bet me this couldn't get 500 clicks!
Line 1,804: Line 1,732:
 
# My dad in the army
 
# My dad in the army
 
# My doctor said to take two of these and call him in the morning.
 
# My doctor said to take two of these and call him in the morning.
# my edvard munch housen syndrome is acting up
 
 
# My elephant is disgruntled with your food service
 
# My elephant is disgruntled with your food service
# my euler circuit is alive!
 
 
# 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 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
 
# My halloween costume
 
# My halloween costume
# My hero
 
 
# My Hobby: freaking people out
 
# My Hobby: freaking people out
 
# MY HOBBY: Life size Sock Puppets
 
# MY HOBBY: Life size Sock Puppets
 
# My hobby: photography
 
# My hobby: photography
 
# My hobby: pretending blank posts have content.
 
# My hobby: pretending blank posts have content.
# My house is my castle
 
 
# my lasik didn't go so well.
 
# my lasik didn't go so well.
 
# MY MOUSE GOT A FACIAL TATTOO. WILL IT LIMIT HIS RESEARCH JOB PROSPECTS?
 
# MY MOUSE GOT A FACIAL TATTOO. WILL IT LIMIT HIS RESEARCH JOB PROSPECTS?
 
# my neighbor got a job as a watchmaker. He stands around all day making faces!
 
# my neighbor got a job as a watchmaker. He stands around all day making faces!
 
# my neighbors don't understand the concept of privacy
 
# my neighbors don't understand the concept of privacy
# my new app for power outages - may need to rethink this.
 
 
# my new boss
 
# my new boss
 
# My new cat is awesome  
 
# My new cat is awesome  
 
# 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 neighbor seems a  bit odd
 
# My new neighbor seems a  bit odd
 
# My new oscilloscope has some missing parts
 
# My new oscilloscope has some missing parts
# My new pony <3<3<3xoxo<3<3<3
 
 
# My new tattoo
 
# My new tattoo
 
# my new toaster has some strange attachments
 
# my new toaster has some strange attachments
 
# My next tattoo! It means "strength and Bravery".
 
# My next tattoo! It means "strength and Bravery".
# My nieghbor totoro loses his mind
 
 
# My nose will grow now.
 
# My nose will grow now.
 
# 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,770:
 
# 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 wonderful dad!
 
# my wonderful dad!
 
# Myspace tom to ground control-   
 
# Myspace tom to ground control-   
Line 1,869: Line 1,782:
 
# Neither the hero this city needs or deserves, still he was the only hero this city had.
 
# Neither the hero this city needs or deserves, still he was the only hero this city had.
 
# Never bring a blowgun to a knife fight.
 
# Never bring a blowgun to a knife fight.
# Never divide by zero
 
 
# Never gonna give you up...
 
# Never gonna give you up...
 
# Never will follow the instructions on google maps again.
 
# Never will follow the instructions on google maps again.
Line 1,876: Line 1,788:
 
# New candidate announces run for presidency of the united states
 
# New candidate announces run for presidency of the united states
 
# New car flipping world record set
 
# New car flipping world record set
# new drupal logo
 
 
# New false color imagery from mars curiousity
 
# New false color imagery from mars curiousity
 
# New haircut!
 
# New haircut!
 
# New headcanon:
 
# New headcanon:
 
# New means to help collect more evidence
 
# New means to help collect more evidence
# new member of the family
 
# New microwave over cures/causes cancer!
 
 
# New neighbor treats me like an idiot. "Does your species really exclude sustainability from economics?" smh
 
# New neighbor treats me like an idiot. "Does your species really exclude sustainability from economics?" smh
 
# 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,800:
 
# 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,903: Line 1,809:
 
# No regrets on this new roofing material
 
# No regrets on this new roofing material
 
# no stars in the sky tonight. Sigh #lonely
 
# no stars in the sky tonight. Sigh #lonely
# No wants to hear me talk about my cat
 
 
# No way, man! Bento box disappointment.  Lone green pea.
 
# No way, man! Bento box disappointment.  Lone green pea.
 
# no wonder the cat always sits here
 
# no wonder the cat always sits here
Line 1,910: Line 1,815:
 
# NO. JUST NO.
 
# NO. JUST NO.
 
# nobody knows the trouble i've seen
 
# nobody knows the trouble i've seen
# Nom nom nom
 
 
# nomnomnomnom nomnom om nom nom
 
# nomnomnomnom nomnom om nom nom
 
# 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 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
# Nutritionists hate this simple trick
 
 
# NUTS!
 
# NUTS!
 
# Obama pardons Santa claus
 
# Obama pardons Santa claus
 
# 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,840:
 
# 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,964: Line 1,855:
 
# Oh no! Not again.
 
# Oh no! Not again.
 
# Oh no! Not Again.
 
# Oh no! 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!
 
# oK, LISTEN. nO ONE WILL CHECK HERE. aGENT 27 IS  COMPROMISED. nEW pASSWORD IS "rECURSIVE"
 
# oK, LISTEN. nO ONE WILL CHECK HERE. aGENT 27 IS  COMPROMISED. nEW pASSWORD IS "rECURSIVE"
# Ok, playing soccer in a snowstorm MIGHT not be the best idea ever
 
 
# 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
 
# OMG I cannot even
 
# OMG I cannot even
# omg too much chiplote
 
# OMG TotalLy want that body!! <3
 
 
# OMG! Kittens!
 
# OMG! Kittens!
 
# OMG! r u 4 real?! this is like the best thing evaaaar! #yay #blessed #someonelovesme
 
# OMG! r u 4 real?! this is like the best thing evaaaar! #yay #blessed #someonelovesme
 
# 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
# One of the less popular Transformers.
 
 
# One of these things doesn't belong.
 
# One of these things doesn't belong.
 
# One of those mornings...
 
# One of those mornings...
Line 1,994: Line 1,877:
 
# 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  
 
# Oops.
 
# Oops.
# Open wide!
 
 
# Optimus prime was having a bad day.
 
# Optimus prime was having a bad day.
# 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,011: Line 1,889:
 
# Ow.
 
# Ow.
 
# Oy, my giblets!
 
# Oy, my giblets!
# 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,021: Line 1,897:
 
# Parrot to the nth root of a short journey
 
# Parrot to the nth root of a short journey
 
# passed another hitch hiker
 
# passed another hitch hiker
# peacekeeping mission is a total success
 
 
# peeling back the pages of history
 
# peeling back the pages of history
 
# Penguins are people too #equality
 
# Penguins are people too #equality
# Pentagonal head?  That's nuts!!!  *cough* *ahem* I think you mean bolts.
 
 
# Person at checkout freaked when she saw what I was buying.
 
# Person at checkout freaked when she saw what I was buying.
 
# Perspective issues
 
# Perspective issues
 
# Philae lander found!
 
# Philae lander found!
 
# photo proof for you skeptics out there
 
# photo proof for you skeptics out there
# photobombed again
 
 
# photobombed by a bird trying to take a picture of a bird
 
# photobombed by a bird trying to take a picture of a bird
 
# Photographic evidence that cookies exist on other planets.
 
# Photographic evidence that cookies exist on other planets.
# PHOTOSYNTHESIS HELL YEAH
 
 
# Pic of my organic free range flowers. Only $79 on etsy.
 
# Pic of my organic free range flowers. Only $79 on etsy.
 
# Picasso's illegitimate child...
 
# Picasso's illegitimate child...
# Picked this up at the thrift shop
 
 
# Picked up this little fellow from the pound!
 
# Picked up this little fellow from the pound!
 
# Picking mushrooms
 
# Picking mushrooms
# picture of my boyfriend
 
 
# 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?!
 
 
# Pizza TIME
 
# Pizza TIME
# play it cool
 
 
# 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,058: Line 1,923:
 
# Pretty sure jimmers will love this new door.
 
# Pretty sure jimmers will love this new door.
 
# pretty sure the void is staring back #whenyoustarelongenough #lostsanity
 
# pretty sure the void is staring back #whenyoustarelongenough #lostsanity
# Prius Love
 
 
# Probably a universal turing machine, but too lazy to solve proof
 
# Probably a universal turing machine, but too lazy to solve proof
 
# product testing has confirmed our suspicions...
 
# product testing has confirmed our suspicions...
# Prom Night at tentacle monster HIgh
 
# 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.
 
 
# Prop Failure #Lol#Hustonwehaveaproblem
 
# Prop Failure #Lol#Hustonwehaveaproblem
 
# prototype soccer ball
 
# prototype soccer ball
# PSA:  If you don't see this, don't ask your embarrassing medical questions
 
 
# Purple mushrooms roaming the world killing people
 
# Purple mushrooms roaming the world killing people
# Putin Putin in orbit
 
 
# quack quack, motherflipper
 
# quack quack, motherflipper
 
# Quite.
 
# Quite.
# 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!
 
# release the kraken
 
 
# Removed microwave door, new easier to watch the food cook
 
# Removed microwave door, new easier to watch the food cook
 
# Research shows a new perspective is easily gained.
 
# Research shows a new perspective is easily gained.
Line 2,096: Line 1,946:
 
# 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
 
# Robert'); Drop Table students;--
 
# Robert'); Drop Table students;--
 
# Robots in much better disguise
 
# Robots in much better disguise
# rock beats scissors
 
 
# Rock, paper, FACE
 
# Rock, paper, FACE
# Rocket pseudo-science!
 
# rodeo!!
 
# 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,114: Line 1,957:
 
# Safety: it's more like 'Guidelines'
 
# Safety: it's more like 'Guidelines'
 
# Said the duchess to the vicar.
 
# Said the duchess to the vicar.
# Sailor Moon Cosplay Queen
 
 
# Sarlac ball pit!
 
# Sarlac ball pit!
 
# sarlac ball-pit!!!
 
# sarlac ball-pit!!!
 
# 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,975:
 
# 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,980:
 
# 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
 
# 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
 
# slippin' into the future
 
# smile for the camera!
 
 
# Smile!  You're on Candid Microscope
 
# Smile!  You're on Candid Microscope
 
# smiling is for optimists
 
# smiling is for optimists
# Snapchat with aliens sure takes forever. #damnlag
 
 
# Snapped this with my phone, what is it?
 
# Snapped this with my phone, what is it?
 
# 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 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 2,000:
 
# 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
 
# 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
 
# 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 will Make this About ObamaCare
 
# Someone will Make this About ObamaCare
 
# SOMETHING IS WRONG WITH THIS POWER OUTLET CALL AN ELEXORCISTRICIAN
 
# SOMETHING IS WRONG WITH THIS POWER OUTLET CALL AN ELEXORCISTRICIAN
Line 2,210: Line 2,028:
 
# Spring has sprang
 
# Spring has sprang
 
# SQUIRREL WITH PENCil in mouth running around in circles
 
# SQUIRREL WITH PENCil in mouth running around in circles
# Stalemate
 
# Starbucks <3 <3 <3
 
 
# Starting to regret my OUYA purchase
 
# Starting to regret my OUYA purchase
 
# stay away from my eggcorns
 
# stay away from my eggcorns
 
# 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
 
# 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 2,037:
 
# 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
 
 
# stipple slash of saturn
 
# stipple slash of saturn
 
# Stop flexing in the mirror, you narcissist
 
# Stop flexing in the mirror, you narcissist
 
# Stop stalin and make up your mind
 
# Stop stalin and make up your mind
# Stop! Hammer time!
 
 
# stork carrying a babby rabbit!
 
# stork carrying a babby rabbit!
# 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
 
 
# 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.  
 
# tail recursion spotted in the wild!!
 
# tail recursion spotted in the wild!!
# Take my money!
 
 
# take that atheists
 
# take that atheists
 
# take two, they are small
 
# take two, they are small
Line 2,262: Line 2,063:
 
# Teach a fis how to to man... wait?
 
# Teach a fis how to to man... wait?
 
# Ted Cruz 20-Infinity
 
# Ted Cruz 20-Infinity
# Ted Cruz imagines himself like this and things it's normal.
 
 
# terminal velocity is a myth
 
# terminal velocity is a myth
# 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 2,070:
 
# 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.
# That makes me very angry...
 
 
# That sweater is so 2013
 
# That sweater is so 2013
 
# That was one hell of a party last night.
 
# That was one hell of a party last night.
Line 2,289: Line 2,085:
 
# 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
 
# The Captain Crunch Kraken
 
# The Captain Crunch Kraken
# The castle was in you, all along!
 
 
# The cat brought in another bird.
 
# The cat brought in another bird.
 
# the charge of the light brigade
 
# the charge of the light brigade
Line 2,314: Line 2,104:
 
# The Dissolution of Parliament.
 
# The Dissolution of Parliament.
 
# The doctor says it is colon cancer :(
 
# The doctor says it is colon cancer :(
# the dog scanned my homework
 
# The dress is black and white!
 
# The Earth is a very small stage in a vast cosmic arena. Think of the rivers of blood spilled by all those generals and emperors so that in glory and triumph they could become the momentary masters of a fraction of a dot.
 
# The electric dirk was a better dance move than a weapon
 
 
# The ents met the triffids
 
# The ents met the triffids
 
# the event horizon returned
 
# the event horizon returned
Line 2,328: Line 2,114:
 
# 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!
# The hills are alive!
 
 
# the hills have eyes
 
# the hills have eyes
 
# The HORROR!
 
# The HORROR!
Line 2,342: Line 2,126:
 
# The last thing I heard was "I swear this will be fun"
 
# The last thing I heard was "I swear this will be fun"
 
# The last thing we see before we die
 
# The last thing we see before we die
# The last thing you see before you die
 
 
# the latest Werner Herzog is a masterpiece #thelamphasnofeelings #outofslatsoutofpier
 
# the latest Werner Herzog is a masterpiece #thelamphasnofeelings #outofslatsoutofpier
 
# The less you look at it, the funnier it gets.
 
# The less you look at it, the funnier it gets.
 
# The lifts never worked properly in the Volcano Lair
 
# The lifts never worked properly in the Volcano Lair
 
# The Little Borg Prince
 
# The Little Borg Prince
# 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 metric system costs thousands of lives each year
 
# The metric system costs thousands of lives each year
# the microsoft promised land
+
# The moon landing was a lie
# The Mitochondria is the powerhouse of the cell
 
# The moon landing was a lie
 
 
# 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 new Doctor Who is quite the quack.
 
 
# The new Kerbal Scientific mission is out!
 
# The new Kerbal Scientific mission is out!
 
# 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 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 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!
 
# The Prodigy is in town!
 
# The Prodigy is in town!
# the prophecy was true !
 
 
# The prophecy was true!
 
# The prophecy was true!
 
# The real reason for hillary's sudden data loss
 
# The real reason for hillary's sudden data loss
Line 2,378: Line 2,149:
 
# 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,173:
 
# 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 none of this left in the men's room #help
 
# there is none of this left in the men's room #help
 
# there snow such thing as global warming
 
# there snow such thing as global warming
Line 2,418: Line 2,184:
 
# 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 moved the headstones, but they didn't move the bodies
 
# they moved the headstones, but they didn't move the bodies
 
# they said be careful, we said yolo
 
# they said be careful, we said yolo
Line 2,436: Line 2,197:
 
# 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
# They're watching us.
 
 
# Things Lost in couch cushions  
 
# Things Lost in couch cushions  
 
# this "one small step" will make you cry. you won't belive why. #moonselfie
 
# this "one small step" will make you cry. you won't belive why. #moonselfie
 
# This apple got a face on it dog
 
# This apple got a face on it dog
# This caught my eye
 
# this could be improved by laser technology
 
 
# This definitely wasn't in the Bible.
 
# This definitely wasn't in the Bible.
 
# This diagram of the solar system is not to scale
 
# This diagram of the solar system is not to scale
Line 2,452: Line 2,209:
 
# This explains it all
 
# This explains it all
 
# this got me banned from chuck e. cheese's
 
# this got me banned from chuck e. cheese's
# this guy can't believe what i'm doing.
 
 
# this guy keeps following me
 
# this guy keeps following me
 
# this guy took a photo of his food every day for a year, you won't believe what happens next!
 
# this guy took a photo of his food every day for a year, you won't believe what happens next!
Line 2,458: Line 2,214:
 
# This is a cat
 
# This is a cat
 
# This is a good idea
 
# This is a good idea
# 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,468: Line 2,221:
 
# THis is kinda philosophical if you think about it.  If you don't think about it too much.
 
# THis is kinda philosophical if you think about it.  If you don't think about it too much.
 
# this is literally the hardest decision I've ever had to make.
 
# this is literally the hardest decision I've ever had to make.
# This is my birthday gift for you. I hope to see it hanging in your living room!
 
 
# This is no cave
 
# This is no cave
 
# 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
 
# This is symbolic.
 
# This is symbolic.
 
# This is the crankiest potato I've ever seen.
 
# This is the crankiest potato I've ever seen.
# This is the last hetero-normative domino Game i plan to attend
 
# 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 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,236:
 
# 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,503: Line 2,246:
 
# This Military Dictator Thought He knew Everything...And then He Learned these 3 tips for losing weight!
 
# This Military Dictator Thought He knew Everything...And then He Learned these 3 tips for losing weight!
 
# This needs a motivational text
 
# This needs a motivational text
# This new LP is on fire, yo! I love that warm vinyl sound.
 
 
# This NSA intercept program is really getting out of hand.
 
# This NSA intercept program is really getting out of hand.
# This one weird object blocks out the light!
 
 
# this one's over 15 kt bitches!
 
# this one's over 15 kt bitches!
 
# This photo mooves me
 
# This photo mooves me
Line 2,511: Line 2,252:
 
# 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?
# This trebuchet is set to self-destruct!
 
 
# this was in the bible
 
# this was in the bible
 
# this was my inspiration
 
# this was my inspiration
 
# This was the most unkindest cut of all
 
# This was the most unkindest cut of all
# This wasn't a problem back in the usenet days
 
 
# this will make me a millionaire (patent pending)
 
# this will make me a millionaire (patent pending)
 
# This will make sense if you look at it upside down
 
# This will make sense if you look at it upside down
# This will require more delta-V than we expected.
 
# 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.
 
# throwing epic shade!
 
# throwing epic shade!
 
# Thus Ended Alexander the great's conquest
 
# Thus Ended Alexander the great's conquest
# 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
# To avoid going bankrupt, Polaroid activates its subliminal message feature on old photographs to try to get more buyers,
 
 
# To get to the other tree and leaf!
 
# To get to the other tree and leaf!
 
# To infinity and Birdyond!
 
# To infinity and Birdyond!
 
# To the victor go the spoils.
 
# To the victor go the spoils.
# To weather the storm of outrageous fortune.
 
 
# Today i am a Chinese clock
 
# Today i am a Chinese clock
 
# Today was my pets elephant's birthday; He liked the ribbons best.
 
# Today was my pets elephant's birthday; He liked the ribbons best.
 
# today's to do list
 
# today's to do list
 
# Tom was feeling frisky, but i just laughed and took this pic! XD
 
# Tom was feeling frisky, but i just laughed and took this pic! XD
# Too many in line. I'll come back later.
 
# Too many potatoes, not enough butter
 
 
# Too many quixotes, not enough giants
 
# Too many quixotes, not enough giants
 
# Too much Acid. Got to sort life out.
 
# Too much Acid. Got to sort life out.
 
# too much lens flare?
 
# too much lens flare?
 
# too much right beef
 
# too much right beef
# Took a wrong turn in Albuquerque
 
 
# Top of the world
 
# Top of the world
 
# TOTAL ECLIPSE OF MY RETINA.
 
# TOTAL ECLIPSE OF MY RETINA.
 
# toto i don't think we're in camelot anymore.
 
# toto i don't think we're in camelot anymore.
 
# Tower of Hanoi puzzles have gotten really weird.
 
# Tower of Hanoi puzzles have gotten really weird.
# transformers, electrical devices that transfer energy between two or more circuits through electromagnetic induction
 
 
# Transmogrifier 2.01.5 prototype
 
# Transmogrifier 2.01.5 prototype
 
# Travel the length of these massive bison
 
# Travel the length of these massive bison
Line 2,575: Line 2,299:
 
# 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
# Tycoon Simulator 2015
 
# 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, I THINK SOMETHINGS WRONG WITH MY CARROT...
 
# uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
 
# Unfriendly comet eats latest probe
 
# Unfriendly comet eats latest probe
Line 2,590: Line 2,308:
 
# 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,318:
 
# 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,613: Line 2,327:
 
# Wait, what does ⨍(𝕎) represent again?
 
# Wait, what does ⨍(𝕎) represent again?
 
# Wait, you can see that too
 
# Wait, you can see that too
# waiting for the toilet for 2 hours? sucker yolo
 
 
# Waiting on hold with the insurance company
 
# Waiting on hold with the insurance company
# WAKA WAKA WAKA WAKA WAKA WAKA WAKA
 
 
# 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,642: Line 2,352:
 
# we have the technology.
 
# we have the technology.
 
# We live in a golden age!
 
# We live in a golden age!
# 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,651: Line 2,359:
 
# We've given up trying to justify this.
 
# We've given up trying to justify this.
 
# We've got a problem
 
# We've got a problem
# Weather's Crazy today
 
 
# Weeeee!!!
 
# Weeeee!!!
 
# Weird trick to losing belly fat and parts of face
 
# Weird trick to losing belly fat and parts of face
Line 2,658: Line 2,365:
 
# 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
 
# Well, now this is a thing.
 
# Well, now this is a thing.
 
# well, so much for the space program
 
# well, so much for the space program
# well, the keys are definitely lost....
 
 
# Well, this is a puzzling development.
 
# Well, this is a puzzling development.
 
# well, this really puts things in perspective.
 
# well, this really puts things in perspective.
 
# Well, you can't fix what isn't broken.
 
# Well, you can't fix what isn't broken.
# 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,379:
 
# 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 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 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
 
# what if it's a ghost pepper?
 
# what if it's a ghost pepper?
 
# What if jellyfish could combine, like voltron?
 
# What if jellyfish could combine, like voltron?
# 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?
 
# What? It's always that color.
 
# What? It's always that color.
 
# what's a lens cap?
 
# what's a lens cap?
# 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 in doubt, just blow on it!
 
# When in doubt, just blow on it!
 
# When pandas have nightmares
 
# When pandas have nightmares
 
# WhEN THE INTERNET OF THINGS MADE MICROWAVES SENTIENT, THEY DISCOVERED THAT FROZEN BURRITOS WERE EVERY BIT AS DELICIOUS AS THEY'D ALWAYS HOPED.
 
# WhEN THE INTERNET OF THINGS MADE MICROWAVES SENTIENT, THEY DISCOVERED THAT FROZEN BURRITOS WERE EVERY BIT AS DELICIOUS AS THEY'D ALWAYS HOPED.
 
# When they realised the comets core was yellow, philae started digging and uncovered this!
 
# When they realised the comets core was yellow, philae started digging and uncovered this!
# when they said samurai robot i thought they meant something else!
 
 
# When you gaze into the abyss, the abyss gazes back
 
# When you gaze into the abyss, the abyss gazes back
 
# When you get a perfect score on your test
 
# When you get a perfect score on your test
 
# 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?
 
# Where did this road come from?!?
 
# Where did this road come from?!?
# where do all the cheetos go
 
 
# Where do I plug this in?
 
# Where do I plug this in?
 
# where should i put this cool new tatto?
 
# where should i put this cool new tatto?
# where the streets have no untagged unconnected nodes
 
 
# where to buy spanish ham ?
 
# where to buy spanish ham ?
 
# 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 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?
# who sent me a bobcat?
 
 
# Who stepped on my pop tart?
 
# Who stepped on my pop tart?
 
# 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?
 
 
# whoops GPS error
 
# whoops GPS error
 
# Whoops I left the Lens Cap on for this one. :S
 
# Whoops I left the Lens Cap on for this one. :S
 
# why are my eyebrows purple and who stole my hat?!
 
# why are my eyebrows purple and who stole my hat?!
 
# Why are there ants on my face?!
 
# Why are there ants on my face?!
# Why can't I eat all this chicken?
 
 
# Why did it have to end this Way?
 
# Why did it have to end this Way?
# Why did the cypress cross the road?
 
 
# Why do dogs like this?
 
# Why do dogs like this?
 
# Why do people do this?
 
# Why do people do this?
Line 2,760: Line 2,436:
 
# 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
 
# 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,453:
 
# 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
 
# YES
 
# YES
# 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
 
 
# yo anybody seen my dog, responds to "sauron"
 
# yo anybody seen my dog, responds to "sauron"
# You are not a good person
 
# you are the jets beneath my wings
 
 
# You can now enter the matrix via homework. education will never be the same
 
# You can now enter the matrix via homework. education will never be the same
 
# you cannot lift a mountain, but if the mountain sustens itself just on top OF you, do you lift it ? #think
 
# you cannot lift a mountain, but if the mountain sustens itself just on top OF you, do you lift it ? #think
Line 2,799: Line 2,463:
 
# you didn't have to come if you were just going to complain the whole time.
 
# you didn't have to come if you were just going to complain the whole time.
 
# YOU JUST GOT RICKROLLED.
 
# YOU JUST GOT RICKROLLED.
# 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'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
# ඏ
 
 
# ก็็็็็็็็็็็็็ʕ•͡ᴥ•ʔ ก้้้้้้้้้้้
 
# ก็็็็็็็็็็็็็ʕ•͡ᴥ•ʔ ก้้้้้้้้้้้
# ᕙ༼ຈل͜ຈ༽ᕗ
 
 
# ちょっとまってください!
 
# ちょっとまってください!
 
# 突っ込むところもねい!
 
# 突っ込むところもねい!
  
===Captions without permalinks ===
+
===prompt_text===
Some of these captions were found in the feed text before I started recording permalinks, others have been found in the prompt.
+
The text for when there are multiple images to choose from (95 have not been found in the feed)
  
It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
 
  
 +
# 'BOOM' goes the dynamite!
 +
# "...The Aristocrats."
 +
# "ARIANA GRANDE" is spanish for "GIANT SPIDER"
 +
# "Bake him away, toys"
 +
# "Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
 +
# "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'm sorry, i can't do long distance right now"
 +
# "Innocent X" by Diego Velazquez, c. 1650, oil on canvas
 +
# "Is it symmetric this way?"
 +
# "sun" glasses.. lolz. heh.
 +
# "Use the force, Harry" - Gandalf
 +
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 +
# ((╬ಠิ﹏ಠิ))
 +
# [Metal Gear sound effect]
 +
# [USER BANNED FOR THIS TEXT]
 +
# [user was banned for this text]
 +
# *Darth Vader Breathing*
 +
# *Sigh* not cat food for diner again
 +
# *Tips fedora*
 +
# #ALLLLLLBYMYSELF
 +
# #awefullyNicetractsofland
 +
# #bedhead
 +
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 +
# #bornthisway
 +
# #BROKEN
 +
# #CATSANDBIRDS
 +
# #caturday
 +
# #cloudywithachanceofmeatballs
 +
# #comfortfood
 +
# #Compromise
 +
# #DANGERZONE
 +
# #delfie
 +
# #Donthate #Truelove
 +
# #DrinkSaltwater
 +
# #duckface
 +
# #fallingfromorbit
 +
# #flavorbomb
 +
# #giganticflower #headshot
 +
# #GOD
 +
# #gps be like
 +
# #hashtag
 +
# #Hopeicanfly
 +
# #illuminati
 +
# #imnotracistbut
 +
# #lifehacks
 +
# #livefeed #colonoscopy
 +
# #Long_Exposure
 +
# #LOVEATFIRSTSIGHT#JUSTMARRIED
 +
# #me #throwbackthursday
 +
# #Moses #riverbabies #passover y'all!!!
 +
# #Nailpolish
 +
# #newhipsterbike
 +
# #nofilter
 +
# #nomakeup #justgotup #wow
 +
# #nomakeup #justnatural
 +
# #nomakeup #natural
 +
# #notallmen
 +
# #notamodel #nofilter
 +
# #paleo #rawlifestyle #tasty #nofilter
 +
# #Photobomb
 +
# #saturday #memories #beautiful
 +
# #selfie #atwork #nofilter #potatoduty #yolo
 +
# #selfie #imatree #thuglife
 +
# #selfie #nomakeup #nofilter
 +
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
 +
# #stublife
 +
# #sudowoodoproblems
 +
# #Toobigtofall
 +
# #toothproblems
 +
# #twinsies
 +
# #vampiremirrorselfie
 +
# <3 hanging out with saruman
 +
# >< ))*>
 +
# ┬──┬◡ノ(° -°ノ)
 +
# ☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭
 +
# ♪♫♪♫♪♫♪♫
 +
# 🇺🇸 USA! USA! USA! 🇺🇸
 +
# ✔ ONE MORE THING CHECKED OFF MY BUCKET LIST
 +
# 💩
 +
# 1 like = 1 little girl feeded to this cancer dying walrus :'(
 +
# 1 like = 1 respect  1 share = 15 respect  500 respect = 1 cool
 +
# 100 meters in 4 and a half seconds
 +
# 11 Mario facts that will blow-a your mind
 +
# 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
 +
# 27 things you won't believe are in your local playground
 +
# 3 year olds first lego experience
 +
# 5 nights at freddies 4 #letsplay
 +
# 8.5 hours later...
 +
# 99 bottles of beer on the wall
 +
# A classic battle between the word and the sword, represented by the most noble creature
 +
# A delicate pear
 +
# A Dozen roses, the Barnum Effect, and Thou
 +
# a fortuneteller told me to get my head out of the clouds.
 +
# a graph showing the amount of time i spend outside
 +
# A job so boring a bird could do it
 +
# A soulful rendition of "old man river"
 +
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 +
# Aaaaaargh
 +
# About time someone brought me that flattened basketball
 +
# about to die lol
 +
# ack
 +
# ACK-scuse me sir, Stop shaking hands and transmit some data.
 +
# ACME anvil delivery service...Faster than Amazon!
 +
# Ain't no mountain high enough, ain't no valley low enough...
 +
# All flesh is grass
 +
# All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
 +
# All things considered, it turned out nice again
 +
# Allons-Y!
 +
# Always get a full nights rest
 +
# Always watching, never speaking. WHAT does he want?!
 +
# Am I a Pokemon?
 +
# amazons newest delivery method
 +
# Amirite??
 +
# An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
 +
# An eight-stringed octopus?
 +
# AN I wuz like, GRRRRL Yo beak is so flash!
 +
# ancient skull loses eye socket in fencing accident
 +
# and suddenly, popcorn
 +
# AND THAT'S HOW i MET YOUR MOTHER.
 +
# and then there were nine
 +
# And thus, the polar carrot displaced the earth.
 +
# and to think this is where it all started
 +
# Annoyance of the week: people who take photos of their food
 +
# Another one bites the dust
 +
# Antimater Universe wants a hug.
 +
# ants, zomg, ants, everywhere
 +
# Anyone craving some soup right about now?
 +
# Anyone here have any advice on how to get it to stop singing?
 +
# anyone seen some uruk-hai? Asking for a friend.
 +
# Apparently it's a thing now...
 +
# Apparently the cat didn't want to go to the vet...
 +
# Apparently the NSA have been keeping secrets from us
 +
# Apparently, it's called "BEAR Fishing"
 +
# apple's new offering: iscream
 +
# Appropriately enough, the jury voted guilty
 +
# April Fools!
 +
# Are We Not Men? We Are Devo.
 +
# Are you feeling lucky, punk?
 +
# are you sure this is a commandline?
 +
# aren't rabbits supposed to jump out??
 +
# As I place the flowers, I thought, "She will never forgive me for marrying her daughter."
 +
# as sir nibbles of acorn surveyed the destruction, he realized that he had forgotten to account for drag
 +
# As the sun set on the day, I thought about all of my failings, and didn't realize it mattered anymore.  I was finally free of the day and could start all over again tomorrow without any judgement weighing on me.
 +
# Astronauts tossed out of ISC called "Nuisance" by commuters
 +
# 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?"
 +
# australia is not NZ!
 +
# AUUUGH
 +
# awesome sunrise this morning #lenscap #nofilter #hashtag
 +
# AWESOME! This cloud was so much larger than my thumb!
 +
# Aww, honey, don't cry...
 +
# Awwwwwwwwww, poor meteor!
 +
# back on tinder!
 +
# BALDUR's GATE YOU have all been poisoned and have 14 days to give me 2000 gold HA HA HA
 +
# Banana invasion in progress
 +
# BANANANANANANANANANA
 +
# BANG! ZOOM! STRAIGHT TO THE MOON!
 +
# Bangarang Motherfuckers
 +
# Barraco Barner is our nasion's prezident.
 +
# Bay-bae lolz
 +
# Bazookateer crossing
 +
# been stuck here for a while, any ideas?
 +
# Beer Pong alone again! #YOLO
 +
# Belgium
 +
# Best Christmas gift EVER!
 +
# Best funeral ever!!!!! YOLO
 +
# Best Halloween costume yet!
 +
# Best map projection ever
 +
# best republican caucus ever!
 +
# Best. Funeral. Ever.
 +
# better go inside, I need to polish my shoes
 +
# big ben is going down.
 +
# Big bowl of star-flakes
 +
# bip bip bip bip bip bip bip bip bip bip bip bip bip
 +
# birdcoin is looking to be a huge success
 +
# Birdwatching is an exhausting affair, especially when the birds fight back
 +
# bit nosy, aren't you?
 +
# Black as the crows that peck out my eyes
 +
# Black box recorder
 +
# Blackout @ moscov metros station, i have no idea which way the peron is. #yolo
 +
# blob monster attacking our city lol brb avoiding certain slimy doom lol
 +
# Boba fett? Boba Fett? Where!?
 +
# Bomber one on approach
 +
# bowTieght!
 +
# Boy, I tell you what. I bet the roads on the moon ain't this smooth.
 +
# breakfast in 'merica
 +
# brokkolis and sweet potato, nice
 +
# Bunny eating lettuce. tots adorbs! ^_^
 +
# bURMA sHAVE!
 +
# Burnination? Huh?
 +
# Burrito night
 +
# But I wanted to see the roof...  #FirstWorldProblems
 +
# BuzzFeed Quiz: Which bone are you?
 +
# Cakephants are my new friends
 +
# Can anybody help me identify this animal?
 +
# Can you see it? #illuminati #war #drobe #conspiracy
 +
# Can't believe what I almost threw away!
 +
# Cant explain that
 +
# Car broke down on the side of the highway.
 +
# Cat tax paid
 +
# caught the sunset tonight at midday
 +
# CeCi N'est Pas Une Pipe
 +
# Changing Guard at Buckingham Palace
 +
# Check out my bowling Ball trophy!
 +
# Check out my new cat! Sooooo cute!
 +
# check out my new sauron fanfic
 +
# Check out my new sonic oc!
 +
# Check out my new turntable! #audiophile #lookatme #vinyl
 +
# check out my usb sword!
 +
# Choose your snuggle toy
 +
# Christ, what an asshole.
 +
# clever girl.....
 +
# 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
 +
# Close the pod bay door, Hal.
 +
# Coco Puffs: Now with your complete daily dose of gamma radiation
 +
# come on, put on the slippers.
 +
# Come with me on a journey into time and space
 +
# Connect the dots to see the correct Nixon cabinet member
 +
# conspiracy theorists crestfallen after taking photo of platonic ideal rather than its specific manifestation
 +
# Contains 8 essential types of spiders!
 +
# Coordinates of the ants walking across my screen, as a function of time
 +
# Copernicus: The early years
 +
# CORNFLAKES AGAIN!?!?!??!?!??!
 +
# cowabunga, dudes!
 +
# crawling and texting #badcombination
 +
# crenellate good times, c'Mon!
 +
# Cruise Kingdom
 +
# cthulu caught me slipping
 +
# cthulu wants what cthulu wants
 +
# Da_FEELS###!
 +
# Dad is going to lose his head over this. FML.
 +
# Dad, Mom, meet my boyfriend
 +
# Daisy, Daisy, Tell me your Answer True.
 +
# damn tree!
 +
# Damn, she said no capes. I should have listened.
 +
# Damn, two o'clock already?
 +
# Darn Pylon built in the cow field again
 +
# Dawn of the Bread
 +
# Dawn of the last day: 24 hours remain.
 +
# Day 12: it's going well I think
 +
# Day 19 of my face wash avoidance program
 +
# day 3: the turnip still refuses to break up on re-entry
 +
# Daylight spending time!
 +
# Deal with it
 +
# Death star model 0.0.73
 +
# Deep down I think everyone's about 10 percent gangster.
 +
# Definitely not ordering from Walt Orfman's Pizza Restaurant again.
 +
# Dinosaur extinction: The final Phase
 +
# Dispatch, I'm not Really Sure we have a Violation Number for this one
 +
# Dividing by zero prematurely ended his research career.
 +
# diy abortion
 +
# Do I look like a penguin?
 +
# Do my feet look fat?
 +
# Do Notte Buye Betamacks.
 +
# Do the Harlem Shake
 +
# Do you feline lucky, punk?
 +
# Does anyone know if this is supposed to happen
 +
# does my ass look big in this?
 +
# Does my hair look like it's thinning?
 +
# Does this look like pink eye to you?
 +
# Doesn't like being referred to as garfield
 +
# dOG SHAMING
 +
# Dominos delivers!
 +
# Don't be thrown by the pareidolia, this is actually an Instagram of bacon & eggs
 +
# Don't Blink. Blink and you're dead. don't turn your back. don't look away. and don't blink!
 +
# Don't even say you understand my pain #problems #dontask
 +
# Don't have a cow, man
 +
# Don't send bees, send lions! and send them to france!
 +
# Don't you love it when a pet looks like it's owner
 +
# Done my nails, don't they look pretty?
 +
# doors from ikea: the pinnacle of excellency
 +
# drive like an ass, be slapped like an ass!
 +
# drivers feel stupid for not knowing this one simple trick
 +
# Duck Duck Go's secret algorithm
 +
# DuckDuckGoes!
 +
# duckface is the new radians
 +
# Dude, I can totally catch this!
 +
# Dude, where's my car?
 +
# Dude!  Dude?  Dude.
 +
# DX(X^LN(Y!)/xy*pi=screw you
 +
# Early Heavy Metal Story Boards Discovered
 +
# EARTH HAS 4 CORNER  SIMULTANEOUS 4-DAY  TIME CUBE  WITHIN SINGLE ROTATION.  4 CORNER DAYS PROVES 1  DAY 1 GOD IS TAUGHT EVIL.
 +
# Eat my shorts
 +
# Einstein, protesting the copenhagen interpretation, shaves his head.
 +
# emergency butter delivery
 +
# engage!
 +
# Et boum! C'est le choc!
 +
# Even if you bind his beak, an eagle will drool on you out of spite
 +
# Evenutally, they'll write moby dick.
 +
# ever get the feeling you're being watched?
 +
# every breath you take, every move you make
 +
# Every day my damn cat makes this face
 +
# everyday i'm shoveling
 +
# Everything maKes perfect sense now.
 +
# everything makes sense now
 +
# Everything truly IS awesome!
 +
# Evolution of puzzles
 +
# Existance is an illusion
 +
# Extreme beer pong
 +
# FACING east. 3.15pm. Can someone tell me where i am?
 +
# Family vacation has taken a turn for the worse.
 +
# Fancy
 +
# father & daughter re-unite!
 +
# Fear the day we Mole People breach the surface of the Earth like Mewling Babes, FOR THAT WILL BE YOUR LAST! #Ihatethesun #goditsbright #isthisworthit?
 +
# FENTON!!! FENTON!
 +
# Field Trip!
 +
# File not found ... creating fake file...
 +
# filming the sky was boring. Turns out my foot is more boring...
 +
# Finally found a way to disable the flash on my camera
 +
# finally got that squid stache
 +
# Finally here!
 +
# Fire can sometimes be hot?
 +
# First day of school.
 +
# First I glued him to the wall, then I took pictures for my grandma's scrapbook
 +
# First post, be friendly
 +
# First screenshot of portal 3 !!
 +
# First time posting, please be nice
 +
# First, thoroughly lubricate the conspiracy theory
 +
# Fission, fusion, what's the difference?
 +
# Flat file viewing
 +
# flying car - it is now officially the future
 +
# FML
 +
# Fnnnaarrrrr!
 +
# Foiled again by the bell curve
 +
# food crisis strategy
 +
# for a long time i was accustomed to going to Bed early.
 +
# For sale: planet, barely used. slight pest problem
 +
# for science!
 +
# Foreign clouds take british clouds' jobs
 +
# forgot to turn the oven off!
 +
# Formal on top, party on the bottom
 +
# Fortunately this is posted on Google+, so nobody will ever see it.
 +
# found this in my fridge. Think it's still good?
 +
# Found this in my garden, wtf?
 +
# Found this mushroom, thought of you
 +
# found this on google maps earlier.
 +
# Found: bra left abandoned on romantic beach.
 +
# Freshly waxed floors + new socks
 +
# fuck fuck shit shit, what did i do last night?
 +
# FUCK NOT AGAIN
 +
# Fucking CAKE
 +
# Fulfilling western ideals!
 +
# funny how we type xoxoxo for kisses but oxoxox for an oxen stampede
 +
# furrowed mustache
 +
# George was a good little monkey, and always very curious.
 +
# get your ass to mars
 +
# go home chitty chitty bang bang you are drunk
 +
# go home elephant you are drunk
 +
# goddamnit, that's the fourth time this week!
 +
# Goldilocks party!
 +
# google bots have uncovered some missing bits
 +
# GOOGLE GLASS IS WORKING GREAT
 +
# Google's streetview prank zoomed way out.
 +
# Got a hip mustache! What do y'all think?
 +
# Got a message from an adoring fan today! <3
 +
# Got your nose!
 +
# Gotta catch em all.
 +
# gotta take big ben down a peg
 +
# GPS Signal lost.. damn it!
 +
# Grandma's new boyfriend is a keeper!
 +
# GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
 +
# Great ScotT!
 +
# Guess that "sun" was really important after all
 +
# Guess where I'm taking this photo from.
 +
# Guillotine needs to be recalibrated
 +
# GUYS HELP IS THIS SWINE FLU?
 +
# ha ha ha... no.
 +
# Had to settle for a beard
 +
# haha oh my cat
 +
# Hams apparently don't make good wheel replacements
 +
# HAN SHOT THIRD #YOLO
 +
# Happy Birthday, M C Escher
 +
# Has anyone really been as far even as decided to use even go what to do look more like?
 +
# Hasbro's new product targets both the small girl and the adult male demographics.
 +
# Have fun stormin' da castle.
 +
# Have you ever seen a sitting cow before?
 +
# 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!
 +
# He did say it was edible
 +
# He had to learn the hard way: if i clean a window, it will definitely be clean
 +
# He nailed it!
 +
# He was never seen again
 +
# hello darkness my old friend
 +
# Help the police catch this violent criminal before he strikes again.
 +
# help wanted. inquire within.
 +
# Here comes the sun, do do do do...
 +
# Here we see the last two simple machines; the inclined plane and the rocket board
 +
# hey is that an event horizon of a blaaaaaa!
 +
# Hey, check out my new green colored shirt!
 +
# Hey, it's windows 7 again!
 +
# Hey, what did you mortals do with my chariot?
 +
# Hey! My cloaca is down here!
 +
# Hide! It's Un Chien Andalou!
 +
# hobbitses
 +
# HODOR!
 +
# holy crap, seems the generate dog function works for humans too!
 +
# Holy Meals on Wheels
 +
# Homo helicopteris captured in bali
 +
# Hope that wasn't a granny knot
 +
# horses can't use chalk. stupid horse.
 +
# Houston, we are the problem
 +
# How did I get here?!?
 +
# how do I take photos with this?
 +
# how do you get the screensaver off?
 +
# How does this work again?
 +
# How many can there be?
 +
# how to make roommate stop pooping everywhere
 +
# hungry hungry fencing subcontractors
 +
# Hunka Hunka burnin' steel
 +
# I  think I need new glasses.
 +
# I 'M out of the acorn
 +
# I am a beautiful person.
 +
# I am become Death, Destroyer of insects smaller than 4mm
 +
# I AM BECOME DERP destroyer of brains
 +
# i am never going to the beauty school for my manicure again
 +
# I believe in an afterbirth.
 +
# I blame supernasa
 +
# I bought you a RING... ooh shinything!
 +
# I broke cookie clicker...
 +
# i broke it
 +
# I broke the etch & sketch
 +
# I call it: "The Futility of American Anything"
 +
# I can has cheezburger?
 +
# I can ride my bike with no handlebars.
 +
# I can take photos with my teeth!
 +
# I can walk on my hands
 +
# I can't believe it's not cake batter
 +
# I can't even. But I am taking evening classes.
 +
# i can't form the words to describe such beauty
 +
# I certainly wasn't going to bury this one
 +
# I CHOOSE YOU!
 +
# i do the same thing at frat parties
 +
# I don't Even know What this ad is trying to promote.
 +
# I don't get it either.
 +
# I don't know
 +
# I don't know how to play...
 +
# i don't remember this scene form star wars
 +
# I don't think I really understand what this is.
 +
# I don't think that's supposed to go there...
 +
# I don't think this is working
 +
# i don't think we're playing zelda anymore...
 +
# i donna think it means what you think it means
 +
# I dream of death
 +
# I EXPECT YOU TO SAY 'OW OW OW,' MR. BOND
 +
# I feel like I've been saying "wow, my mom was right" a lot recently
 +
# I find this picture reflects my soul.
 +
# I finished building our pool, but now i realise we can't afford the water to fill it.
 +
# I forgot the two scoops of rasins!
 +
# I forgot to get a plane
 +
# I fought the law. They won
 +
# I found a three fingered kitten!
 +
# I found this in my navel, should I be worried?
 +
# I got a new geigerteller
 +
# I got the job!
 +
# I guess I only have myself to blame.
 +
# I has a sad
 +
# i hate it when this happens
 +
# I hate trying to win bowls of cereal in 'skill tester' machines
 +
# I hate waking up from a really good dream
 +
# i have a bad feeling about this.
 +
# I havE A SLIGHT MELTING MOTHER-IN-LAW ISSUE
 +
# I have never been happy
 +
# I hope he's not hungry
 +
# I just bought this
 +
# I just can't see the point anymore
 +
# I just don't get recursion.
 +
# I just joined the Kite Kite Kite!
 +
# i just want to do existential things with my friends
 +
# I just want to watch the world burn
 +
# I KNEW I WASN'T GOING TO BE ABLE TO WALK IN THESE!
 +
# I knew there would be side effects
 +
# I like this picture
 +
# I looked, and behold, an ashen horse; and he who sat on it had the name Death; and Hades was following with him.
 +
# I lost my tooth
 +
# I lost my wits
 +
# i love a good featureless white void
 +
# I Love Playing Piano during Duck Mating season
 +
# I love star wars!
 +
# I mean, it's no mona lisa, but I think it's at least, like, a last supper
 +
# i miss myspace. *sigh* #thegoodolddays
 +
# I need an adult. -- I am an adult.
 +
# i need one of those 'l'-shaped tetris pieces. you seen any?
 +
# i need to do my laundry more often.
 +
# I never thought that the job of data mining would be so aerobic
 +
# I never understood that part of the bibile
 +
# I only wanted a cheeseburger
 +
# i pushed this.  was that bad?
 +
# I put on my wizard robe and hat
 +
# 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: nuts to that!
 +
# I see you have constructed a new lightsaber
 +
# I sentence you to deliciousness!
 +
# I solved the debt crisis!
 +
# I still say it looks White and Gold!
 +
# I suppose things could probably be worse somehow.
 +
# I Swear this dress was yellow and blue
 +
# I think I can... I think I can
 +
# i think i need to get out more.
 +
# I think I've figured out how to setup PostgreSQL
 +
# I think my houseplant is doing pretty good #greenthumb
 +
# I think the white balance on my new SLR is off
 +
# I think there's something here
 +
# I think this is actually kind of a big step for a man.
 +
# i THINK WE'RE BEING WATCHED!
 +
# I thought aircraft carriers were bigger....
 +
# I thought getting my body cut in half would be the end of my golf career... but i proved the haters wrong.
 +
# I thought it was a good idea at the time
 +
# I thought it would be bigger
 +
# I thought of it, and it happened
 +
# I thought this ball pit would be more fun
 +
# I told him we were closed and all he said in reply was "You won't like me when I'm angry."
 +
# I told him, that retracting flaps would destabilize plane, but he wouldn't listen
 +
# I told you I would make it. I'm just a little late...
 +
# I told you to keep the raptors secure
 +
# I trained him to do this, but now he won't stop.
 +
# I used to be like... but then i was all...
 +
# i want to ride my bicykle (i found it in pripjat)
 +
# I warned him about the Star Wars Holiday Special.
 +
# I was cleaning jello off the floor for *AGES*
 +
# I was just trying to install freebsd...
 +
# I was late
 +
# I welcome our event-driven overlords
 +
# I will take that one please
 +
# I wish I could afford the monopolar model...
 +
# I wish I could ride in a balloon
 +
# i wonder why you left me here.
 +
# I would never have believed in atlas if I hadn't seen him for myself
 +
# I wouldn't eat that if I were you.
 +
# I, for one, welcome our new rocktopus overlords
 +
# I. AM. BELLSPROUT.
 +
# I'd call this experiment a success.
 +
# I'd tap dat.
 +
# I'll catch it one day
 +
# I'll never fit in!
 +
# i'll never get tired of this.
 +
# I'll never see her again... i just... i just don't know how to go on... :(
 +
# I'll show you a forbidden electronic transition!
 +
# I'm 95% percent certain this is battletoads
 +
# I'm a fighter!
 +
# I'm a wizard!
 +
# I'm afraid I can't explain myself, sir.
 +
# i'm just surprised it took this long.
 +
# I'm lost without your love, baby
 +
# I'm making my own emojis now! do you like it?
 +
# I'm never going on chatroulette again
 +
# I'm no longer welcome at the play centre.
 +
# I'm not aging gracefully, am I?
 +
# I'm not even mad. that's amazing
 +
# i'm now 75% more efficient
 +
# I'm ready!
 +
# I'm sorry, I'm gluten free
 +
# I've been robbed!
 +
# I've discovered a new clean-power source
 +
# I've found a new way to feed the poor
 +
# I've got a tombstone disposition and a graveyard mind.
 +
# I've made a huge mistake
 +
# I've never been so aware of my own hunger
 +
# i've never felt so alone.
 +
# 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 dreams can't come true, then why not pretend?
 +
# 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 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 hadn't invented it, it would have to exist.
 +
# If you liked it then you should've put a ring on it
 +
# If you're brave enough...
 +
# If you're happy and you know it, keep it to yourself
 +
# Ikea art
 +
# in an ideal vacuum, at what point does this fish realize it's going to die?
 +
# In an N-dimensional space, optimal strategy is to think *inside* the box.
 +
# In hindsight, it makes perfect sense
 +
# in line at the dmv
 +
# In my dreams I'm always strong
 +
# In that moment, the reddit realized he'd never wanted it to be this way. He'd never wanted any of it.
 +
# in the future, EVERYTHING will be wireless
 +
# in the future, we will evolve into limbless creatures who subsist on judging.
 +
# In the land of the blind, the one eyed man is king
 +
# in theathers, close to you
 +
# Interior Crocodile alligator, I drive a Chevrolet movie theater
 +
# International relationships are getting worse
 +
# intertial reference frame, activate!
 +
# is good idea yes
 +
# is it wrong how turned on i am by this?
 +
# Is that a huge salad falling over new york?
 +
# Is that a new pokemon?
 +
# Is that what I think it is? in my salad?
 +
# IS there something in my nose?  #Nofilter
 +
# Is this a horse man or a duck man? The answer may surprise you!
 +
# Is this a rhombus? No one seems to know.
 +
# Is this an april fools joke?  why did this show up at my door?
 +
# is this illegal?
 +
# is this just a fantasy?
 +
# Is this real life?
 +
# Is this room 101?
 +
# Is this too cheesy?
 +
# it all fits together, guys!
 +
# it is better to light a kindle than to be a cursor in the darkness
 +
# It is never safe.
 +
# It isn't safe on earth any more. Goodbye!
 +
# it makes sense if you think about it
 +
# It seemed better in my head
 +
# It showed up on the photo, but not irl???
 +
# IT WAS A METAPHOR! A METAPHOR DAMN IT!
 +
# it was an odd place to find a stop sign
 +
# it was never this complicated when I was a kid
 +
# It was the rational response
 +
# 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 Finger trap
 +
# It's a timey-wimey time-lord
 +
# It's bigger after you put it together.
 +
# it's in a good part of town
 +
# it's like rain on your wedding day!
 +
# it's my hand supposed to do this? #thanksobama
 +
# It's not a good part of town
 +
# It's smaller on the outside
 +
# Jet fuel can't melt steel beams
 +
# Jet memes cant fuel steel belts
 +
# Journey warned you what would happen if you stopped believing.
 +
# Jugghead got nothing on me :p
 +
# Just a little more to the right
 +
# Just another day in paradise
 +
# Just combing my M.C. Escher
 +
# just found this in my garden. Should i be worried?
 +
# Just Got A new camera phone!
 +
# Just one of those days
 +
# just playing with my pet
 +
# Just some home decorating
 +
# Just took a Fourier transform of my nightmares.
 +
# kang, do i look good in this?
 +
# keep on truckin...
 +
# Kids, you aren't cool enough to do this
 +
# Kite powered bike leaves oil executives speachless.
 +
# ksp mission success
 +
# ladies
 +
# Larry asked me to be his wingman
 +
# last march of the ents
 +
# Last time i buy a budget hairdryer
 +
# Later levels in Luna Lander get really fucking harsh.
 +
# leaked photo of hellraiser reboot
 +
# Leave this one adrift, Ishmael. Let the ocean take her
 +
# Legal Issues
 +
# Lego: hours of preparation, 5 minutes of Godzilla re-enactment
 +
# Let's go left, they said. The other path looks boring, they said.
 +
# Let's have a blinking contest
 +
# Life comes from the Ocean. We just Give them the opportunity to go back
 +
# Life is a matter of perspective, really.
 +
# Light traffic today.
 +
# Like a G6, baby, like a g6
 +
# like my new haircut?
 +
# Like my new nails?
 +
# Listen, I wouldn't worry about that. . .
 +
# London
 +
# london bridge gets a songg, where is mine?
 +
# Long, long ago in a forest far, far away...
 +
# Look 10 years younger with this one easy trick!
 +
# Look at me jumping!
 +
# Look at my dollar coin
 +
# Look at my new blue dress!
 +
# look at my new dog!
 +
# look at my new watch! #justflavourflavthings
 +
# Look at that fart propulsion
 +
# Look guys! I'm Vincent Van Gogh!
 +
# look ma, no hands!
 +
# Look upon my works, ye mighty, and despair
 +
# look what happened to my satellite
 +
# look what i found underneath my pillow
 +
# Lord of the Rings Episode IV: Revenge of the ents
 +
# Lost in Space...
 +
# love it!
 +
# love it!"...The Aristocrats."
 +
# Lunar hatchet throwing contest champion
 +
# Macklemore concert was awesome!
 +
# Made in god's own image, yessiree!
 +
# Magnificent as fuck
 +
# Magnified 10,000 times
 +
# Making a selfie.
 +
# Making grape Plasma, om nom nom!
 +
# Malcovic, Malcovic, Malcovic, Malcovic!
 +
# Man with face of clock discovered in Beatty, Nevada; Scientists befuddled
 +
# Man, it's windy
 +
# Man, that cool-ade guy really lost some weight lately.
 +
# Manchester United had made a terrible mistake with their new striker...
 +
# Mari-OH
 +
# mario Kart is harder in real life
 +
# married a cat
 +
# MATE YOU HAVE FORGOT YOUR STICK
 +
# Maths are hard
 +
# may 4th, 2015 nasa finally launches the long delayed Starbucks module for the iss. The first barista is scheduled for a three month stint
 +
# Maybe "Sandworm Petting Zoo" was a bad idea.
 +
# Maybe they should have put the gun control check point outside the building...
 +
# me and all my friends
 +
# Me, before the topical ointment
 +
# Medieval theme on the internal company conference. My Logo proposal. Comments?
 +
# memories of me and my papa at the creek. life was so much simpler then...
 +
# Mentos and lava
 +
# Meritocracy is a pipe dream
 +
# Met Andrew Hussie At Dashcon
 +
# Minimalist cat
 +
# Minister!  We're running out of time.
 +
# Mistakes were made.
 +
# Mmm, Spider cake!
 +
# Modern art is getting a little too modern for me.
 +
# modest pile of dinosaurs
 +
# Molten steel can't fuel jet beams
 +
# Monday mornings
 +
# monkey movember
 +
# More advantages to USB type c revealed
 +
# More like, Peek-a-Pooh!
 +
# Moses lied to me.
 +
# Mr. Potato-Head human hybrid discovered
 +
# Muahahahahahah
 +
# My 7 picture is upside down
 +
# My baby is learning how to write!
 +
# My boyfriend finally proposed!
 +
# my castles stand on pillars of sand
 +
# My cat barfed this out
 +
# my cat got into the *other* catnip
 +
# My cat is cuter than yours.
 +
# My cats used to lie all over the floor and block hallways, but thanks to the furniture store, my problems are solved!
 +
# my children will never understand me
 +
# my choice of flat-mate may have been a mistake.
 +
# My clothes need a wash...
 +
# My elephant is disgruntled with your food service
 +
# My feet are cold. Can anyone warm them up?
 +
# my friend posing while a plane flies by
 +
# MY GIRL'S SCIENCE FAIR PROJECT WAS A BLAST!
 +
# My God! It's full of stars. No, wait. Swords, it's full of swords!
 +
# My gout's acting up again
 +
# MY HOBBY: Life size Sock Puppets
 +
# My hobby: pretending blank posts have content.
 +
# My house is my castle
 +
# my lasik didn't go so well.
 +
# MY MOUSE GOT A FACIAL TATTOO. WILL IT LIMIT HIS RESEARCH JOB PROSPECTS?
 +
# my neighbors don't understand the concept of privacy
 +
# My new cat is awesome
 +
# my new duvet cover!
 +
# my new haircut only exists in another dimension
 +
# My new neighbor seems a  bit odd
 +
# My new oscilloscope has some missing parts
 +
# My new tattoo
 +
# my new toaster has some strange attachments
 +
# My next tattoo! It means "strength and Bravery".
 +
# My nieghbor totoro loses his mind
 +
# My nose will grow now.
 +
# My parents took away my phone privileges
 +
# my rockets have formed a cooperative but I have to do the dishes
 +
# My roommate Just got home and barged into my room
 +
# my scarecrow took some additional measures of its own...
 +
# My selfie stick broke.
 +
# My tastes are very... singular
 +
# my time machine isn't working again! D:
 +
# my toothache has got worse recently
 +
# My vacation to the Area 51 Testing site!
 +
# my wonderful dad!
 +
# Myspace tom to ground control- 
 +
# mYTH BUSTED!
 +
# nasa and the Post office collaborate on new postage stamp
 +
# Nasa declares war on Gwaihir, Lord of the Eagles
 +
# NASA deny budget cuts have changed their plans
 +
# Neil Degrasse Tyson is having a bit of an odd day.
 +
# Never bring a blowgun to a knife fight.
 +
# Never gonna give you up...
 +
# Never will follow the instructions on google maps again.
 +
# New amazon product
 +
# New boyfriend.  Don't know why my parents don't like him?
 +
# New candidate announces run for presidency of the united states
 +
# New false color imagery from mars curiousity
 +
# New haircut!
 +
# New means to help collect more evidence
 +
# New microwave over cures/causes cancer!
 +
# New neighbor treats me like an idiot. "Does your species really exclude sustainability from economics?" smh
 +
# New pet! #soadorable #imbleeding
 +
# New selfy stick you can hold with your foot
 +
# Newest cheesy movie: When trees attack
 +
# night sledding deserves a quiet night
 +
# No guitar without a sombrero
 +
# No lie, this is delicious
 +
# no one ever suspected the shovel
 +
# no stars in the sky tonight. Sigh #lonely
 +
# No wants to hear me talk about my cat
 +
# No way, man! Bento box disappointment.  Lone green pea.
 +
# no wonder the cat always sits here
 +
# No, I've never performed brain surgery before, but how hard can it be?
 +
# No, really; I'm an 8-legged dog. Come Closer.
 +
# NO. JUST NO.
 +
# nobody knows the trouble i've seen
 +
# nomnomnomnom nomnom om nom nom
 +
# nonononononononononononononononononononononononono
 +
# Nope nope nope nope nope
 +
# Not a fruit
 +
# Not Again :(
 +
# Not gonna lie. No idea what this is.
 +
# Not only was the moon landing staged, but it was done with puppets.
 +
# Note: HUGE SUCCess
 +
# Nothing new under the sun
 +
# Notice anything different?
 +
# Now turn it upside-down
 +
# Now we're ready to attach the spiders.  Remember, be gentle.
 +
# now you're hungry too.
 +
# NUTS!
 +
# obsession is a dangerous thing
 +
# Office gamification has got out of hand.
 +
# oh damn! it's that time of the year again!
 +
# Oh god how did this get in here I am not good with cameras
 +
# OH GOD HOW DO I COMPUTER?!?!?!!
 +
# Oh god is it still following me?
 +
# OH GOD WHAT HAVE I DONE
 +
# OH GOD WHAT HAVE I DONE?!
 +
# Oh God! It's happening again!
 +
# Oh here we go
 +
# oh I feel a yearning so bad
 +
# oh look, a penny
 +
# OH MY GOD A HORSE
 +
# oh no you didn't
 +
# Oh no, I'm not equipped to ride a digital wave of this size!
 +
# Oh no, i've got glue-cose stuck to my hand!
 +
# Oh no, it's the moon
 +
# Oh No! Not again!
 +
# Oh no! Not Again.
 +
# Oh no! Not again.
 +
# Ok, playing soccer in a snowstorm MIGHT not be the best idea ever
 +
# Okay, I concede that maybe using a trebuchet is not the best shortcut
 +
# omfg, space bugs
 +
# OMG Becky look at her butt
 +
# OMG I cannot even
 +
# OMG! Kittens!
 +
# OMG! r u 4 real?! this is like the best thing evaaaar! #yay #blessed #someonelovesme
 +
# On the plus side, the exhaust system does work
 +
# one does not simply wok into mordor
 +
# one electrocution can ruin your entire day
 +
# One of the less popular Transformers.
 +
# One of these things doesn't belong.
 +
# One of those mornings...
 +
# One year ago I looked like this
 +
# only 90s kids will get this!
 +
# Only managed to clock 87 miles Per hour. Crap.
 +
# onomatopoeia? I hardly know ia!
 +
# oompa loompa diggeti doo
 +
# oops, oops, oops, okay this is happening
 +
# Oops.
 +
# Optimus prime was having a bad day.
 +
# Otters. They are the craziest.
 +
# our ballistic artillery now come with advanced fire-control systems
 +
# Our flying car attemps seems to got out of hand
 +
# Our proudest moment
 +
# Our son has no arms but has a duck's beak.
 +
# Ow.
 +
# Oy, my giblets!
 +
# Pac-man's missing piece
 +
# Pants Optional
 +
# paper can't substitute the smell of an old kindle
 +
# parallel universe, here i come! #sweet!
 +
# Park and ride
 +
# PARKOUR IN ACTION
 +
# Parlez vous Francais?
 +
# passed another hitch hiker
 +
# peeling back the pages of history
 +
# Penguins are people too #equality
 +
# Pentagonal head?  That's nuts!!!  *cough* *ahem* I think you mean bolts.
 +
# Perspective issues
 +
# photo proof for you skeptics out there
 +
# photobombed by a bird trying to take a picture of a bird
 +
# Photographic evidence that cookies exist on other planets.
 +
# Pic of my organic free range flowers. Only $79 on etsy.
 +
# Picasso's illegitimate child...
 +
# Picked this up at the thrift shop
 +
# Picked up this little fellow from the pound!
 +
# Picking mushrooms
 +
# picture proof that alien invasion is real! #thanksobama
 +
# PIctures from my trip to Mount Binary
 +
# Pintsize what are you doing?!
 +
# Pizza TIME
 +
# play it cool
 +
# Plotting the Extrapolation of a Quasi-Exponential Function On Non-Orthogonal Cartesionoid Axes
 +
# Posting my garden to Etsy. #humbleswag
 +
# PostPostModern art
 +
# Praise robot jesus!  humans, convert and roll out!
 +
# Press 'continue' to abort.
 +
# Pretty sure ball pits aren't supposed to be like this
 +
# Pretty sure jimmers will love this new door.
 +
# Probably a universal turing machine, but too lazy to solve proof
 +
# product testing has confirmed our suspicions...
 +
# Proof Global Warming Is hoax!!!!!
 +
# PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
 +
# Prop Failure #Lol#Hustonwehaveaproblem
 +
# prototype soccer ball
 +
# Purple mushrooms roaming the world killing people
 +
# Putin Putin in orbit
 +
# Quite.
 +
# racing stripes on hoodies are cool.
 +
# Ramen is squishy and soft
 +
# RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
 +
# Real Eyes Realize real lies.
 +
# real letters have curves #Serif
 +
# Real pirates put the hook on their feet! Yarr!
 +
# really not how I thought I would die
 +
# Reblog to 500 people or your cat will die.
 +
# rehearsals ARE going great! AnD Don't forget to come to the premiere on Thursday!
 +
# release the kraken
 +
# Removed microwave door, new easier to watch the food cook
 +
# Research shows a new perspective is easily gained.
 +
# results of toddler-sourced upscaling algorithm
 +
# reverse et
 +
# rm -rf /
 +
# Roadrunner is the new transport minister
 +
# Robert'); Drop Table students;--
 +
# Robots in much better disguise
 +
# rodeo!!
 +
# Rollerskating always was overrated
 +
# run little ghost, run!
 +
# RUNAWAY UNICYCLE!!
 +
# Safety: it's more like 'Guidelines'
 +
# Said the duchess to the vicar.
 +
# Sarlac ball pit!
 +
# sarlac ball-pit!!!
 +
# 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?
 +
# school's out!
 +
# Scientists create first man-clock hybrid
 +
# Scorned again, Bob left the party without a date
 +
# Screw it, here's a cat pic
 +
# searching for brain, found this instead
 +
# See a carrot deflate a pool ball
 +
# See it again in slo mo
 +
# SEINFELD in SPAAAAAACE!
 +
# SELDOM UTILIZED DIET TRICKS
 +
# Self Portrait: Complete.
 +
# Selfie in corner store #35.  $10,000.
 +
# Selfie in the morning
 +
# sentient IPOD deleted all my music. again.
 +
# share and enjoy
 +
# should i see a doctor about this?
 +
# Should I sue my hairdresser or not really
 +
# Smile!  You're on Candid Microscope
 +
# smiling is for optimists
 +
# Snapchat with aliens sure takes forever. #damnlag
 +
# Snowman accident
 +
# So I figured out that "inflammable" means the same thing as "flammable" today!
 +
# so I went and summoned hitler but he got old
 +
# 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 that's where that hour went on Sunday night
 +
# So thats What Jesus did
 +
# So turns out 'recycling' is not Riding a bike twice.
 +
# So, how many IT guys does it take to change a light bulb?
 +
# So, it has come to this...
 +
# So, this happened.
 +
# so. sick. of. this. pic.
 +
# So... those were real
 +
# So...Magnets, right?
 +
# some men just want to watch the world burn.
 +
# Somebody sneezed in the Bathtub
 +
# someone just gave me this. I don't know what it means...
 +
# someone take this banana off my face
 +
# Someone will Make this About ObamaCare
 +
# SOMETHING IS WRONG WITH THIS POWER OUTLET CALL AN ELEXORCISTRICIAN
 +
# Something tells me this is all part of a larger experiment
 +
# Sometimes all you can do is wait
 +
# Sometimes I just want to be in the moment.
 +
# Sometimes pickles just have to be pickles.
 +
# Sometimes, a spherical cow is a reasonable assumption.
 +
# Somewhere, this exists.
 +
# Sonogram of our baby! Adorable, Don't you think!? Looks JUST like daddy!
 +
# sorry dad
 +
# Sorry for the potato quality.
 +
# SPAAAAAAAAcE
 +
# Spaaaaaaaace!
 +
# Space from my window
 +
# Spiders. Nope.
 +
# Spring has sprang
 +
# Starbucks <3 <3 <3
 +
# Starting to regret my OUYA purchase
 +
# stay away from my eggcorns
 +
# Stay in the moment. I want you to fully enjoy it.
 +
# Step 1:  Jump the shark.
 +
# sTEP ONE CUT A HOLE IN THE BOX
 +
# step one: cut a hole in the box
 +
# Steve is realxing
 +
# Still a better love story than "Last Tango in Paris."
 +
# still better than last year in ottawa
 +
# stipple slash of saturn
 +
# Stop flexing in the mirror, you narcissist
 +
# Stop stalin and make up your mind
 +
# stork carrying a babby rabbit!
 +
# Strange ingredients for a grilled cheese sandwich, but the recipe did say 'epic'...
 +
# Strolling down the street, saw this. #uglybeauty
 +
# Submarine-world promblems, amirite?
 +
# such bike. so sustainable! very carbon-negative.
 +
# sunshine, lollipops, and rainbows...
 +
# T-Rex in a snowfield #cretaceous #nofilter #cold
 +
# Taco bells give away resulted in unplanned consequences for downtown Houston.
 +
# tail recursion spotted in the wild!!
 +
# take that atheists
 +
# take two, they are small
 +
# taken from earth orbit
 +
# TANSTAAFL... Mostly
 +
# Target Found.
 +
# Testing my new DIY nuclear power plant
 +
# thank you for restoring my faith in the justice system
 +
# Thanks Obama!
 +
# Thanks!
 +
# 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 is, in fact, a squirrel.
 +
# That sweater is so 2013
 +
# That was one hell of a party last night.
 +
# That was when things started to get a little weird.
 +
# That'll teach them not to misspell my name at Starbucks
 +
# That's just not very funny
 +
# that's me!
 +
# That's not a nut!
 +
# that's one nasty burn!
 +
# That's too much, man!
 +
# that's what she said... assuming I heard Her right. Can I come home now?
 +
# The abyss stares longingly into my heart.
 +
# The basis for fast and furious 13.
 +
# The best brick joke possible.
 +
# The birds found the hobbit hole
 +
# The building blocks of life
 +
# The Captain Crunch Kraken
 +
# The cat brought in another bird.
 +
# the charge of the light brigade
 +
# The choice is simple.
 +
# The dark helps me see in the carrots
 +
# the dark side of the moon, amirite?
 +
# the day of the fingernail clipping has dawned
 +
# The designers of this camera literally nailed it
 +
# The Dissolution of Parliament.
 +
# The doctor says it is colon cancer :(
 +
# the dog scanned my homework
 +
# The dress is black and white!
 +
# The electric dirk was a better dance move than a weapon
 +
# The ents met the triffids
 +
# the event horizon returned
 +
# The Excresence of Indifference (mixed media, 2015)
 +
# The feeling that somewhere, a duck is watching you
 +
# the floor is made of lava. send help.
 +
# The French space program
 +
# the game begins...
 +
# the game no please why do you haunt me the game i lost the game
 +
# The goats! They mutated! They are now airborne!
 +
# the hills have eyes
 +
# The HORROR!
 +
# The horrors of war
 +
# The last known picture of my dignity, as it reaches from below the waves
 +
# The last person to be surprised by a selfie
 +
# The last thing we see before we die
 +
# the latest Werner Herzog is a masterpiece #thelamphasnofeelings #outofslatsoutofpier
 +
# The less you look at it, the funnier it gets.
 +
# The Little Borg Prince
 +
# the lotr movies had some subtle changes from the books
 +
# The magic smoke escaped :(
 +
# The metric system costs thousands of lives each year
 +
# The moon landing was a lie
 +
# The moon looks weird today
 +
# The Moon Will Eat What it will
 +
# The Mushroom war claimed most of us. MOST....
 +
# The new Doctor Who is quite the quack.
 +
# The new Kerbal Scientific mission is out!
 +
# the new usb feels like a step backward
 +
# The newest Olympic sport
 +
# The ninetys called, and I had to answer.
 +
# The normal distribution looks higher from the bottom...
 +
# the only people for me are the mad ones
 +
# The press conference lasted shorter than expected!
 +
# The prophecy was true!
 +
# The real reason for hillary's sudden data loss
 +
# The recursive algorithm produces this unique Fractal Image
 +
# the saddest moment of my childhood
 +
# The second mouse gets the cheese
 +
# The secret to infinite storage space
 +
# The side of my car. #roadrage
 +
# The soap bubble music experiment went rather well.
 +
# The solution to all life's problems
 +
# The spirit is strong, but the car is totaled.
 +
# The strangest thing subway ever gave me
 +
# THe Tanzanian bargin was notoriously one sided and resulted in the bloodiest genocides in the history of man. #YOLO
 +
# The time has come.
 +
# The top half of his face looked exactly like this, officer
 +
# The unforgiving war on health
 +
# The view outside of my airplane window.
 +
# The vlog was better than the movie
 +
# the way of the future
 +
# The weight of life in a starry landscape
 +
# the world isn't flat, it's a cube!
 +
# The Zebra was lying down
 +
# their love was doomed from the start...
 +
# Their vengeance was swift, but surprisingly subtle...
 +
# There goes the neighborhood...
 +
# There is no curse in elvish, entish, or the tongues of men for this treachery.
 +
# there snow such thing as global warming
 +
# There's a 66% chance that the other door won't be broken.
 +
# There's a third bump, growing fast
 +
# There's an rfid tag in every slice of pepperoni.
 +
# These cravings will never stop
 +
# These hoof warmers are incredibly comfortable!
 +
# These two impress me every single day! #proudfather
 +
# THEY added extra salami!! I told them i HAte salami!! they hate me!!! fml!!!!!
 +
# they dont need us anymore
 +
# they moved the headstones, but they didn't move the bodies
 +
# they said be careful, we said yolo
 +
# THEy said it was "futuristic" and "useful"
 +
# They see me rolling, they hating
 +
# they told me carrots were good for eye health
 +
# they're all dead, dave.
 +
# They're all watching me
 +
# Things Lost in couch cushions
 +
# This apple got a face on it dog
 +
# This diagram of the solar system is not to scale
 +
# this didn't last long.
 +
# This explains everything
 +
# This explains it all
 +
# this got me banned from chuck e. cheese's
 +
# this guy keeps following me
 +
# This guy...
 +
# This is a cat
 +
# This is a good idea
 +
# This is exactly what you think it is
 +
# This is how we celebrate easter usually
 +
# This is how you get ants!
 +
# This is just like my 5th birthday party.
 +
# THis is kinda philosophical if you think about it.  If you don't think about it too much.
 +
# this is literally the hardest decision I've ever had to make.
 +
# This is not a camera, it's a washing machine!
 +
# this is not what i meant it to be
 +
# This is so awsome! Picture of the year! So glad that I got that new camera!!!!!
 +
# This is the crankiest potato I've ever seen.
 +
# This is the last hetero-normative domino Game i plan to attend
 +
# this is the weirdest hickey.
 +
# This is twitter, right? #confused
 +
# This is what happens when you don't listen to your parents
 +
# THIS IS WHAT HAPPENS WHEN YOU JOKE ABOUT HALF-LIFE 3.
 +
# This is what happiness looks like
 +
# This is what I do on friday evenings now
 +
# This is what i had for breakfast
 +
# This is why I'm not an EMT
 +
# This is why we can't have good things
 +
# This is worse than when the vending machine ate my change.
 +
# This isn't where i parked my zeppelin!
 +
# This just in: baby robot duck terrorises populace
 +
# This makes my dog twitch when it sleeps
 +
# This Military Dictator Thought He knew Everything...And then He Learned these 3 tips for losing weight!
 +
# This needs a motivational text
 +
# This new LP is on fire, yo! I love that warm vinyl sound.
 +
# This NSA intercept program is really getting out of hand.
 +
# This one weird object blocks out the light!
 +
# this one's over 15 kt bitches!
 +
# This photo mooves me
 +
# This photo was taken from my basement
 +
# This photo was taken from my iphone
 +
# This trebuchet is set to self-destruct!
 +
# this was in the bible
 +
# this was my inspiration
 +
# This wasn't a problem back in the usenet days
 +
# this will make me a millionaire (patent pending)
 +
# This will require more delta-V than we expected.
 +
# those weren't Altoids.
 +
# Threaten large birds... check.
 +
# throwing epic shade!
 +
# Thus Ended Alexander the great's conquest
 +
# Time to reap the whirlwind!
 +
# tiny man with tiny hat found in upturned regular-sized hat
 +
# To infinity and Birdyond!
 +
# To the victor go the spoils.
 +
# Today i am a Chinese clock
 +
# Tom was feeling frisky, but i just laughed and took this pic! XD
 +
# Too many quixotes, not enough giants
 +
# too much lens flare?
 +
# too much right beef
 +
# toto i don't think we're in camelot anymore.
 +
# Tower of Hanoi puzzles have gotten really weird.
 +
# Transmogrifier 2.01.5 prototype
 +
# Travel the length of these massive bison
 +
# Trebuchet-launched into a skyscraper...
 +
# Trees on a hill #nofilter
 +
# Trip to the Rockies #DUCKFACE #NOFILTER #NEVERSTOPEXPLORING
 +
# Triumph. Pure triumph.
 +
# True Self-Control
 +
# Trurl and Klapaucius at large again!
 +
# TRY{throw Baby;}Catch baby{Throwable cause = baby.getCause(); Throw cause;}
 +
# trying out apple's new gadget. expensive but it's worth it.
 +
# Turkey Drumstick Stonehenge was surprisingly compelling!
 +
# Turning into a crow was less upsetting than being unable to tweet about it!
 +
# turns out building a shrink ray was cheaper than genetically engineering giant carrots
 +
# Turns out my explosive frisbees are duds
 +
# Turns out the stars were pentagrams all along
 +
# Turns out the tiles at home depot aren't the good kind
 +
# two great tastes that go great together
 +
# Tycho and gabe stepped up their game
 +
# Tycoon Simulator 2015
 +
# Ugh, i'll never understand art.
 +
# uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
 +
# Unfriendly comet eats latest probe
 +
# unhappy in space
 +
# unicycle beowulf cluster seeks riders
 +
# Universe man, Universe man...
 +
# Unzipped sock
 +
# USB SUX
 +
# Use the force responsibly.
 +
# using hollowed-out carrots to smuggle drugs across the border.
 +
# Using your phone camera is a neat workaround when you have lost your glasses
 +
# van gogh's secret masterpiece uncovered in french family's basement
 +
# vegeta? vegeta? vegeta? aaaaaaaaaagggghhh!!!                                            I'm back, and now i'm a ghost.
 +
# Visited mom today
 +
# Visual representation of Dubstep
 +
# Wait ... what? I don't even...
 +
# Wait a minute. We put the helium in the pool, or the balloon?
 +
# Wait for it...
 +
# Wait, what does ⨍(𝕎) represent again?
 +
# Wait, you can see that too
 +
# WAKA WAKA WAKA WAKA WAKA WAKA WAKA
 +
# Wake up sheeple!! the rich are stockpiling candles. This is our future!!!!
 +
# walked in on my roommate being terrifying
 +
# Warning, cadbury eggs should be consumed in moderation, even if supplied for free by air
 +
# watch me become the next favorite kardashian
 +
# Watch out for the squirrely wrath!
 +
# Waynes World, Waynes world!!!
 +
# we appear to have exhausted the low-hanging scientific fruit
 +
# We are not men. we are devo.
 +
# We can't do it, the moon is in the way
 +
# We claim this iceberg for the Motherland
 +
# We didn't start the fire
 +
# we do these things not because they are easy, but because they are hard
 +
# we had to get creative when the bentley didn't show
 +
# we have the technology.
 +
# We live in a golden age!
 +
# We made some simplifying assumptions before designing the plate tectonics code.
 +
# We pointed the Hubble into another supposedly empty patch of sky.
 +
# we sail the ocean orange
 +
# We told iran that atomic energy is unsafe
 +
# We've given up trying to justify this.
 +
# We've got a problem
 +
# Weeeee!!!
 +
# Weird trick to losing belly fat and parts of face
 +
# welcome to Argentina
 +
# Welcome to carrot facts. Did you know Carrots can improve your vision?
 +
# welcome to the internet
 +
# welcome to the space jam
 +
# Well, I guess than answers the age-old question!
 +
# Well, Mr. Bond, we meat again
 +
# Well, now this is a thing.
 +
# well, so much for the space program
 +
# Well, this is a puzzling development.
 +
# well, this really puts things in perspective.
 +
# Welp, there's your problem
 +
# WENT ALL ZELDA ON THIS CRACKED WALL! #YOLO
 +
# WHAAAAAAaAT?!?!?!?
 +
# Whale Selfie!
 +
# What a beautiful time to be alive!
 +
# What are pixels?
 +
# What are you, a dictionary?
 +
# What could go wrong?
 +
# What could possibly go wrong™?
 +
# what happens when you take a selfie with a 500mm lens
 +
# What have facebook been doing with my data? #Whatisgoingon
 +
# what to have for breakfast?
 +
# What, Me worry?
 +
# What? It's always that color.
 +
# What's this thing here in the bathroom?
 +
# When everything looks like a hammer
 +
# When in doubt, just blow on it!
 +
# When pandas have nightmares
 +
# WhEN THE INTERNET OF THINGS MADE MICROWAVES SENTIENT, THEY DISCOVERED THAT FROZEN BURRITOS WERE EVERY BIT AS DELICIOUS AS THEY'D ALWAYS HOPED.
 +
# When they realised the comets core was yellow, philae started digging and uncovered this!
 +
# Where are the three sea shells?
 +
# Where did THAT come from?
 +
# Where did this road come from?!?
 +
# where do all the cheetos go
 +
# Where do I plug this in?
 +
# where should i put this cool new tatto?
 +
# where the streets have no untagged unconnected nodes
 +
# where to buy spanish ham ?
 +
# which end is the head of a chocolate cornet?
 +
# Who came first?
 +
# who do you think I am?
 +
# Who dropped this? This is no way to run a student council!!
 +
# Who Made all these Don quixote clones?
 +
# Who said an antique car wouldn't work on the moon?
 +
# Who stepped on my pop tart?
 +
# Who the fck deleted development branch?!?!
 +
# Who the shit left the fertilizer out in the open? Now we have to deal with this!
 +
# WHO'S THAT POKEMON?
 +
# Who's that Pokémon?
 +
# Whoops I left the Lens Cap on for this one. :S
 +
# why are my eyebrows purple and who stole my hat?!
 +
# Why did it have to end this Way?
 +
# Why did the cypress cross the road?
 +
# Why do dogs like this?
 +
# Why do people do this?
 +
# Why do we call it "behedding" and not "bebodying"?
 +
# why do we want to go to space if we're already in space
 +
# Why does a tree cross the road? To destroy mankind, obviously.
 +
# Why don't chimpanzees have beards?
 +
# Why potato why?
 +
# Why should squirrel learn baseball
 +
# WHY WHY WHY #WHY
 +
# Why?
 +
# WOMAN on ground, Abstract, digital, 2015~ $19E6
 +
# Woops, miscounted. sorry.
 +
# worst horse ever :(
 +
# Worst pokemon ever
 +
# worst transformers generation ever. bring back gen 1.
 +
# Worth it for the karma.
 +
# wow signal deciphered: they want #53 with extra soy sauce.
 +
# Wow, did you see that??!!
 +
# Wow, I didn't expect that spell to work.  #Sorrydude
 +
# Wow. Just, Wow.
 +
# wrangled my first ufo! YEEHAAH!!
 +
# WTF!?
 +
# wwmd: what would mcgyver do?
 +
# Yeah I just like to make my martinis properly, ok?
 +
# Yeah... never gonna happen
 +
# YES
 +
# Yes, I followed the instructions!
 +
# You are not a good person
 +
# you cannot lift a mountain, but if the mountain sustens itself just on top OF you, do you lift it ? #think
 +
# you know, for kids
 +
# You must be new here.
 +
# 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'd think it was a tuesday, but it was not.
 +
# you'll NEVER belive what kind of planet those scientists found
 +
# You'll never guess what happens next...
 +
# Zoidgebra 101
 +
# ก็็็็็็็็็็็็็ʕ•͡ᴥ•ʔ ก้้้้้้้้้้้
 +
# ちょっとまってください!
  
#  (ღ˘⌣˘ღ)
+
===prompt_captions===
# ...just no.
+
The captions to choose from for a single image (318 have not been found in the feed)
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
+
 
# "Cat-like Reflexes"
+
#  (ღ˘⌣˘ღ)
# "I Never watch porn"
+
# :-(
# (ღ˘⌣˘ღ)
+
# ?????????????
# *glomp*
+
# ... It's about ethics in games journalism.
# #beatingheartinabox
+
# ...And then we decided it was time to leave
# #drbalanced
+
# ...Freudian sense tingling...
# #essentialsupplies
+
# ...monsters from the id...
# #fishy!
+
# 'BOOM' goes the dynamite!
# #Hashtag #ironicSelfie
+
# 'Murica, hell yeah!
# #hashtag #yinyl #yolo #thanksobama
+
# "...The Aristocrats."
# #ivisitedthegrandcanyon #yolo
+
# "ARIANA GRANDE" is spanish for "GIANT SPIDER"
# #NewProfilepic
+
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
# #rememberthetitans
+
# "Bake him away, toys"
# #sorrynotsorry
+
# "Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
# #underkill
+
# "Cat-like Reflexes"
# <reported for inappropriate content>
+
# "Honey, I think the assembly instructions for this washing machine are a bit... What's the opposite of verbose?"
# 100% legit free hugs
+
# "I am So. Much. More."
# 15 Mindblowing facts that prove jaws was real
+
# "I'm sorry, i can't do long distance right now"
# 500 gold for the private show
+
# "Innocent X" by Diego Velazquez, c. 1650, oil on canvas
# 7 amazing ways of taking off your pants that will surprise you!
+
# "Is it symmetric this way?"
# A kid peed in the ball pit, I took action
+
# "My God, it's full of starS." "WeLL, DURR"
# A land war in asia
+
# "Space duckin'" By led blimp
# Aaaaaaaaaah
+
# "sun" glasses.. lolz. heh.
# 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.
+
# "The colour out of space" and black.
# always darekst before the dawn
+
# "Use the force, Harry" - Gandalf
# Amazing! Discovery! on mars!
+
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
# And so it began...
+
# ((╬ಠิ﹏ಠิ))
# and that is the story of the very angry caterpillar
+
# [Metal Gear sound effect]
# And then, you lightly drill the oven for 15 minutes on high
+
# [USER BANNED FOR THIS TEXT]
# Angry sofa is angry.
+
# [user was banned for this text]
# Animé girls don't look at explosions
+
# *Darth Vader Breathing*
# another day on california public transportation
+
# *Sigh* not cat food for diner again
# Ants close in on the tender eye-flesh
+
# *Tips fedora*
# astonishing how xenia flew that plane
+
# #720_no_scope
# At least it stopped bleeding acid
+
# #ALLLLLLBYMYSELF
# Aw, man, I hate gelatinous cubes...
+
# #awefullyNicetractsofland
# awkward! . . .
+
# #bedhead
# best easter ever
+
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
# big black orb #shit #soyuzfail
+
# #blessed
# bob ross has only become more powerful in death
+
# #bornthisway
# Brb, burning house down
+
# #BROKEN
# BUT WHERE DOES THE BLOOD GO?
+
# #CATSANDBIRDS
# Cant sleep, clowns will kill me. Cant sleep, clowns will ...
+
# #caturday
# Catman
+
# #cloudywithachanceofmeatballs
# CERN proves existence of "the force"
+
# #comfortfood
# Check out my new OC
+
# #Compromise
# cheese = life
+
# #DANGERZONE
# CLOCK FACE-OFF
+
# #DARE to #DREAM
# come at me, pro!
+
# #delfie
# come on iiiiin!
+
# #Donthate #Truelove
#
+
# #drbalanced
 +
# #DrinkSaltwater
 +
# #duckface
 +
# #essentialsupplies
 +
# #fallingfromorbit
 +
# #flavorbomb
 +
# #giganticflower #headshot
 +
# #GOD
 +
# #gps be like
 +
# #hashtag
 +
# #Hashtag #ironicSelfie
 +
# #HL3 #CONFIRMED #ILLUMINATI
 +
# #hoax
 +
# #Hopeicanfly
 +
# #illuminati
 +
# #imnotracistbut
 +
# #ivisitedthegrandcanyon #yolo
 +
# #justnasathings
 +
# #lifehacks
 +
# #livefeed #colonoscopy
 +
# #lolcats
 +
# #Long_Exposure
 +
# #LOVEATFIRSTSIGHT#JUSTMARRIED
 +
# #me #throwbackthursday
 +
# #Moses #riverbabies #passover y'all!!!
 +
# #Nailpolish
 +
# #newhipsterbike
 +
# #nofilter
 +
# #nomakeup #justgotup #wow
 +
# #nomakeup #justnatural
 +
# #nomakeup #natural
 +
# #notallmen
 +
# #notamodel #nofilter
 +
# #onering #fuckhobbits
 +
# #paleo #rawlifestyle #tasty #nofilter
 +
# #parsnipandoldlace
 +
# #Photobomb
 +
# #rememberthetitans
 +
# #satellite #navigation
 +
# #saturday #memories #beautiful
 +
# #selfie #atwork #nofilter #potatoduty #yolo
 +
# #selfie #imatree #thuglife
 +
# #selfie #nomakeup #nofilter
 +
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
 +
# #stublife
 +
# #sudowoodoproblems
 +
# #teamplayer
 +
# #this_is_how_an_angel_dies
 +
# #this_is_sparta
 +
# #Toobigtofall
 +
# #toothproblems
 +
# #twinsies
 +
# #vampiremirrorselfie
 +
# <3 hanging out with saruman
 +
# >< ))*>
 +
# ┬──┬◡ノ(° -°ノ)
 +
# ▒☺▒
 +
# ☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭
 +
# ♪♫♪♫♪♫♪♫
 +
# 🇺🇸 USA! USA! 🇺🇸
 +
# 🇺🇸 USA! USA! USA! 🇺🇸
 +
# ✔ ONE MORE THING CHECKED OFF MY BUCKET LIST
 +
# 🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢
 +
# 💩
 +
# 1 Like = 1 attempt to Perform space rendezvous
 +
# 1 like = 1 little girl feeded to this cancer dying walrus :'(
 +
# 1 like = 1 respect  1 share = 15 respect  500 respect = 1 cool
 +
# 100 meters in 4 and a half seconds
 +
# 11 Mario facts that will blow-a your mind
 +
# 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
 +
# 20 Facts that will infuriate hipsters
 +
# 27 things you won't believe are in your local playground
 +
# 2pm and i'm not drunk yet
 +
# 3 year olds first lego experience
 +
# 4 8 15 16 23 42
 +
# 5 nights at freddies 4 #letsplay
 +
# 5th of November went too far this year
 +
# 8.5 hours later...
 +
# 9 out of 10 scientists couldn't solve this equation
 +
# 99 bottles of beer on the wall
 +
# 99% of people are too scared to share this post! share if you are one of the 1%
 +
# A boa constrictor that has swallowed a hat
 +
# A classic battle between the word and the sword, represented by the most noble creature
 +
# A delicate pear
 +
# A Dozen roses, the Barnum Effect, and Thou
 +
# a fortuneteller told me to get my head out of the clouds.
 +
# a graph showing the amount of time i spend outside
 +
# A job so boring a bird could do it
 +
# A soulful rendition of "old man river"
 +
# a spherical cow
 +
# A window into my soul
 +
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 +
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 +
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH
 +
# Aaaaaargh
 +
# About time someone brought me that flattened basketball
 +
# about to die lol
 +
# ack
 +
# ACK-scuse me sir, Stop shaking hands and transmit some data.
 +
# ACME anvil delivery service...Faster than Amazon!
 +
# actually, around here we itemize our taxes
 +
# Aesthetic.
 +
# AGHHHHH
 +
# Ain't no mountain high enough, ain't no valley low enough...
 +
# Alan?
 +
# alas, poor yorick, I knew him well.
 +
# All flesh is grass
 +
# All my selfies be like
 +
# 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 things considered, it turned out nice again
 +
# Allons-Y!
 +
# almost, but not quite, entirely unlike tea
 +
# always darekst before the dawn
 +
# Always get a full nights rest
 +
# Always watching, never speaking. WHAT does he want?!
 +
# Am I a Pokemon?
 +
# Amazing optical illusion! Can you see the duck?
 +
# Amazing! Discovery! on mars!
 +
# amazons newest delivery method
 +
# Amirite??
 +
# An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
 +
# An eight-stringed octopus?
 +
# AN I wuz like, GRRRRL Yo beak is so flash!
 +
# An unsuccessful bike design...
 +
# ancient skull loses eye socket in fencing accident
 +
# and a bluetooth made of pretzel sticks
 +
# And so the hunt begins!
 +
# and suddenly, popcorn
 +
# AND THAT'S HOW i MET YOUR MOTHER.
 +
# And the least of the five evils is....
 +
# and then there were nine
 +
# And thus, the polar carrot displaced the earth.
 +
# and to think this is where it all started
 +
# ANGRY CATS SMASH ANGRY BIRDS
 +
# Angry sofa is angry.
 +
# Annoyance of the week: people who take photos of their food
 +
# another day on california public transportation
 +
# Another one bites the dust
 +
# Another victim of 'got your nose!'
 +
# Antimater Universe wants a hug.
 +
# Ants close in on the tender eye-flesh
 +
# ants, zomg, ants, everywhere
 +
# Any hatchlings in here?
 +
# Anyone craving some soup right about now?
 +
# Anyone here have any advice on how to get it to stop singing?
 +
# Anyone know what's wrong with my thumb?
 +
# anyone seen some uruk-hai? Asking for a friend.
 +
# Apparently i have retinoblastoma.
 +
# Apparently it's a thing now...
 +
# Apparently the cat didn't want to go to the vet...
 +
# Apparently the NSA have been keeping secrets from us
 +
# Apparently, it's called "BEAR Fishing"
 +
# apple's new offering: iscream
 +
# Appropriately enough, the jury voted guilty
 +
# April Fools!
 +
# Are We Not Men? We Are Devo.
 +
# Are you feeling lucky, punk?
 +
# Are you kidding me?
 +
# are you sure this is a commandline?
 +
# aren't rabbits supposed to jump out??
 +
# As I place the flowers, I thought, "She will never forgive me for marrying her daughter."
 +
# As long as there aren't any snake I should be fi- Shit! Snakes!
 +
# as sir nibbles of acorn surveyed the destruction, he realized that he had forgotten to account for drag
 +
# As the sun set on the day, I thought about all of my failings, and didn't realize it mattered anymore.  I was finally free of the day and could start all over again tomorrow without any judgement weighing on me.
 +
# As the sun sets on us, we know we must escape.
 +
# As viewed on a Macintosh plus
 +
# As you can see It's windy out here
 +
# Aside from the Fact I Was Buried Alive, The day has been surprisingly good.
 +
# Asteroids hate him!
 +
# Astronauts tossed out of ISC called "Nuisance" by commuters
 +
# at least I don't have to spend more time with sandra bullock
 +
# At least it stopped bleeding acid
 +
# at least the last thing i'll ever see is pretty
 +
# 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?"
 +
# Attracted to black holes, HELP!
 +
# australia is not NZ!
 +
 

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)