Difference between revisions of "User:452"

Explain xkcd: It's 'cause you're dumb.
Jump to: navigation, search
(prompt_reasons)
(testing)
 
(162 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Status==
 
==Status==
<s>Edit: "ERR_CONNECTION_REFUSED". :(</s>
+
*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.
:Apparently it was happening for everyone, back to normal. Resuming at 1 request per 30 seconds just in case.
+
 
----
+
;Phase 1.
 +
:Saving reasons, usernames and text only.  No images or permalinks IDs saved.
 +
*All usernames have been found
 +
*All reasons for data loss have been found
 +
*The overlap between feed and prompt text is over 95%
 +
 
 +
;Phase 2.
 +
:Saving permalink and images IDs
 +
*The image and text associated with permalinks never changes.
 +
(I probably should have been saving the permalinks this whole time.)
 +
 
 +
===Count history===
 +
*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==
 
http://c0.xkcd.com/xb/feed
 
http://c0.xkcd.com/xb/feed
Line 30: Line 64:
  
 
==Script==
 
==Script==
 +
*V1. Collect and store data in javascript variables. User must manually retrieve and format results.
 +
*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.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 = {
prompt_reasons :[],
+
prompt_reasons     :[],
prompt_posters :[],
+
prompt_posters     :[],
prompt_text     :[],
+
feed_posters        :[],
prompt_captions :[],
+
 
feed_posters    :[],
+
prompt_images      :[],
feed_text       :[]
+
prompt_captions     :[],
 +
 
 +
feed_table          :[], //dummy to create button
 +
feed_ids            :[],
 +
feed_images        :[],
 +
feed_text           :[],
 +
 
 +
prompt_imagesonly  :[],
 +
prompt_captionsonly :[],
 +
 
 +
desc: {
 +
prompt_reasons      :"Reasons for data loss",
 +
prompt_posters      :"Usernames in the prompt",
 +
feed_posters        :"Usernames in the feed",
 +
 
 +
prompt_images      :"Images in prompts",
 +
prompt_captions    :"Captions in prompts",
 +
 
 +
feed_table          :"Table of unique feed entries",
 +
feed_ids            :"Permalinks in the feed",
 +
feed_images        :"Images in the feed",
 +
feed_text          :"Captions in the feed",
 +
 
 +
prompt_imagesonly  :"Images in prompts and not in the feed",
 +
prompt_captionsonly :"Captions in prompts and not in the feed",
 +
}
 
}
 
}
 +
function init() {
 +
$("<style type='text/css'> #magic div { display:inline-block; }\n#magic textarea { display: block; width:100%;  height: 300px; } </style>").appendTo("head");
  
function check(field, value) {
+
$("#ctitle").after($("<div>").attr("id","magic"));
 +
for(i in xkcd) {
 +
if (i != "desc") $("#magic").append($("<button>").html(i));
 +
}
 +
$("#magic").append($("<br>"))
 +
.append($("<div>").attr("id","desc"))
 +
.append($("<textarea>"));
 +
$("#magic").append($("<button>").html("sort"));
 +
$("#magic").append($("<input type='checkbox' id='loadarray'>")).append($("<label for='loadarray'>").html("Load array"));
 +
$("#magic button").on( "click", function() {
 +
update( $(this).html() );
 +
});
 +
}
 +
init();
 +
 
 +
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);
console.log(field+" "+xkcd[field].length+": "+value);
+
updatecounts(field+" : "+value);
 
}
 
}
 
}
 
}
function next() {
+
 
$.getJSON('http://c0.xkcd.com/xb/feed').done(function (data) {
+
function next(recheck) {
check("prompt_reasons", data.prompt.reason);
+
if (!recheck) recheck = "";
check("prompt_posters", data.prompt.poster);
+
$.getJSON('http://c0.xkcd.com/xb/feed/'+recheck).done(function (data) {
if (typeof data.prompt.text != "undefined") check("prompt_text", data.prompt.text);
+
if (typeof data.prompt != "undefined") {
if (typeof data.prompt.captions != "undefined")
+
          additem("prompt_reasons", data.prompt.reason);
 +
  additem("prompt_posters", data.prompt.poster);
 +
 
 +
  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)
 +
additem("prompt_images", data.prompt.album[i]);
 +
 
 +
  if (typeof data.prompt.captions != "undefined")
 
for(i in data.prompt.captions)
 
for(i in data.prompt.captions)
check("prompt_captions", data.prompt.captions[i]);
+
additem("prompt_captions", data.prompt.captions[i]);
 +
        }
 +
        if (data.text) data.feed = new Array(data);
 
for(i in data.feed) {
 
for(i in data.feed) {
check("feed_posters", data.feed[i].poster);
+
additem("feed_posters", data.feed[i].poster);
check("feed_text", data.feed[i].text);
+
feedentry = {
 +
img:  data.feed[i].img,
 +
text:  data.feed[i].text
 +
};
 +
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) {
 +
    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 {
 +
tempNew = JSON.parse(localStorage.getItem('NewFeedIDs'));
 +
if (tempNew == null) tempNew = new Array();
 +
if (tempNew.indexOf(data.feed[i].id) == -1)
 +
tempNew.push(data.feed[i].id);
 +
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);
 
</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.
 
: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.
 
  
You can check on the <tt>xkcd</tt> variable at any time.
+
function mergearrays(array1, array2, prop) {
:The surveys do not change as often as the other data.
+
  for(i in array2) {
 +
    if (typeof array2[i] == "undefined") continue;
 +
    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) {
 +
    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 "prompt_posters":
 +
    case "prompt_reasons":
 +
    case "prompt_captions":
 +
    case "prompt_images":
 +
      $("#desc").html("Loading into "+which);
 +
      temparray = ("\n"+$("#magic textarea").val().trim()).split("\n# ")
 +
      if (temparray.length > 2) temparray.shift();
 +
      mergearrays(xkcd[which], temparray);
 +
      $("#desc").html("Loaded "+temparray.length+" into "+which);
 +
      temparray = [];
 +
    break;
 +
 
 +
    case "feed_text":
 +
    case "feed_images":
 +
      $("#desc").html(which+" must be loaded via feed_ids");
 +
    break;
  
<s>I'm only interested getting in the reasons, feel free to adapt this script to get whatever else.</s>
+
    default:
:Script updated to get all text fields.  Feel free to adapt it to get the image URLs.
+
      $("#desc").html(" (Error: "+which+" not implemented)");
 +
  }
 +
}
  
==Results==
+
function update(which) {
 +
  if ($("#loadarray").prop('checked')) {
 +
    if (which == "sort") {
 +
      $("#desc").html(" (Ignoring the fact the 'load array' button is checked...");
 +
    } else {
 +
      loadarray(which);
 +
      return;
 +
    }
 +
  }
 +
  $("#desc").html(which+": "+xkcd.desc[which]);
 +
  switch (which) {
 +
    case "feed_posters":
 +
    case "prompt_posters":
 +
    case "prompt_reasons":
 +
    case "prompt_captions":
 +
    case "prompt_images":
 +
//These are all simple arrays which require no additional formatting.
 +
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 +
$("#desc").append(" ("+xkcd[which].length+")");
 +
    break;
 +
    case "feed_ids":
 +
temp = { ids:"", countall:0 }
 +
for(j in xkcd.feed_ids) {
 +
temp.countall++;
 +
temp.ids  += "\n#http://xkcd.com/1506/#post/"+j;
 +
}
 +
$("#desc").append(" (all: "+temp.countall+")");
 +
$("#magic textarea").val("\n"+temp.ids);
 +
delete temp;
 +
    break;
 +
    case "feed_table":
 +
temp = { array: [], list: "", img: [], text: [], countunique:0, countall:0 }
 +
for(j in xkcd.feed_ids) {
 +
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;
  
===prompt_reasons===
+
    case "feed_text":
:The old one my script has not found yet which is on the transcript page is "not a hair question".
+
    case "feed_images":
 +
tempwhich = which=="feed_text"?"text":"img";
 +
 +
mergearrays(xkcd[which], xkcd.feed_ids, tempwhich)
  
# +++ OUT OF CHEESE ERROR. REDO FROM START +++
+
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
# <%= reason %>
+
$("#desc").append(" ("+xkcd[which].length+")");
# a user's middle name was <nowiki></html></nowiki>
+
xkcd[which] = []; //no need to keep this in memory
# aol window in front of netscape window
+
    break;
# Baby ur much 2 fast
+
 
# bookmarks migrated to Venezuela
+
    case "prompt_captionsonly":
# butter didn't suit the works
+
    case "prompt_imagesonly":
# butter overflow
+
 
# butter to text interface not found
+
tempprop = which=="prompt_captionsonly"?"text":"img";
# butter underrun
+
tempwhich = which=="prompt_captionsonly"?"feed_text":"feed_images";
# cannot save, there's something gross on the S key
+
temptest = which.replace("only",""); //don't wipe
# CAPTCHA response indicated parahuman intelligence
+
 
# cat-like typing detected
+
mergearrays(xkcd[tempwhich], xkcd.feed_ids, tempprop)
# confirmation BIOS
+
 
# could not evade skifree yeti
+
for(i in xkcd[temptest])
# could not initialize sound blaster 16
+
if (xkcd[tempwhich].indexOf(xkcd[temptest][i]) == -1)
# CRM-114 unit malfunctioning
+
xkcd[which].push(xkcd[temptest][i]);
# cumulonimbus #19 too rabbitlike
+
 
# data too big
+
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
# database configuration violates the Prime Directive
+
$("#desc").append(" ("+xkcd[which].length+")");
# Dave's not registered, man
+
xkcd[which] = []; //no need to keep this in memory
# Desystematized chronodynamic balancing detected in VX Module core.
+
xkcd[tempwhich] = []; //no need to keep this in memory
# dictionary too stiff to read
+
 
# electrons too big, stuck in wafer
+
    break;
# ERR:INVALID DIM
+
    case "sort":
# error
+
temparray = ("\n"+$("#magic textarea").val()).split("\n");
# error reading drive B. Abort, Retry, Fail?
+
temparray.shift();
# error: error code [error] while decoding error code
+
temparray2 = [];
# error: operation completed successfully
+
mergearrays(temparray2, temparray)
# ethics in journalism
+
# eyelash! eyelash!
+
temparray2.sort(function (a, b) {
# files fell out
+
    return a.toLowerCase().localeCompare(b.toLowerCase());
# files overwritten with more interesting content
+
});
# firewall caught fire
+
$("#magic textarea").val(temparray2.join("\n"));
# floating point unit no longer afloat
+
$("#desc").html("Sorted "+(temparray.length-1)+" into "+temparray2.length);
# food problematic
+
delete temparray, temparray2;
# friday squid blogging
+
    break;
# general uncertainty
+
    default:
# GSM filter change required
+
        $("#desc").html(" (Error: "+which+" not implemented)");
# guru meditation #00000025.65045338 press left mouse button to continue
+
  }
# hard drive oil depleted
+
}
# helvetica scenario
+
 
# HTTP 403 and 3/4ths
+
function restore() {
# HTTP 418
+
window.tempOld = JSON.parse(localStorage.getItem('NewFeedIDs'));
# http is down
+
if (window.tempOld == null) window.tempOld = new Array();
# hung up prematurely
+
restoreLoop();
# I got pretty distracted trying to figure out how big space is
+
}
# i hurt myself today / to see if i still feel
+
function restoreLoop() {
# illegal carrot detected in mail queue
+
if (window.tempOld.length) {
# insufficient smoke for current mirror array
+
next(window.tempOld.pop());
# lights are out, hard drive is taking a nap
+
window.clearTimeout(window.nextTimer);
# lp0 on fire
+
window.nextTimer = setTimeout('restoreLoop()', 5000);
# Main Bus B Undervolt
+
}
# mean connection time exceeded
+
}
# microwave running
+
</nowiki>
# minimum recursion depth not reached
+
:(Go to xkcd, and paste it in the browser console.)
# nanobots in the water
+
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.
# oh jeez there's a lot of you can you all just hang on for a second please oh frig this is so bad
+
: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.
# our buffer runneth over
+
 
# out of electrons
+
You can check on the <tt>xkcd</tt> variable at any time.
# out of monads
+
:The surveys do not change as often as the other data.
# overcurrent undervolt caused by vacuum cleaner on same circuit
+
 
# PC LOAD LETTER
+
<s>I'm only interested getting in the reasons, feel free to adapt this script to get whatever else.</s>
# Please Insert Riven CD 4
+
:<s>Script updated to get all text fields.  Feel free to adapt it to get the image URLs.</s>
# PRESS PLAY ON TAPE
+
:Script updated to get all text and image fields.  Feel free to adapt it to do whatever you want.
# previously-recovered files overwritten by newly-recovered ones
+
 
# qubit indeterminate
+
==Results==
# RDBMS completely forgot how inner joins work
+
*prompt_reasons: [107] - None new.
# screws are stripped
+
*prompt_posters: [205] - None new.
# server aperture too narrow for capital letters
+
*feed_posters: [205] - None new.
# server farm lost starbucks wifi signal
+
 
# server fell in ocean
+
*feed_table: [2252] (See [[1506:_xkcloud/Table_of_Permalinks]])
# server had too much to drink
+
*feed_id: [26733] (See [[1506:_xkcloud/List_of_Permalinks]])
# server power cable stolen by raccoon for nest
+
 
# server room haunted
+
*feed_images: [1528]
# sitemap was held upside down
+
*prompt_images: [1697] (crashed and found again)
# Something went wrong: Something went wrong (Something went wrong)
+
*prompt_images without permalinks: [169]
# soonerist sperver fid dot nile
+
 
# spin cycle still active
+
*feed_text: [1993]
# spin number must be of the form n/2
+
*prompt_captions: [2287] (crashed and found again)
# spontaneous splinal dereticulation
+
*prompt_captions without permalinks: [295]
# SQL ejection
+
 
# subtle threading bug in turing-complete version numbering system
+
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.
# sysadmin trapped in well
+
 
# tape on write-protect hole fell off
+
===prompt_reasons===
# temporal paradox
+
: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 butter you have dialed is invalid or no longer in service
+
 
# the little plastic tab on the box the data's in broke off
+
# +++ OUT OF CHEESE ERROR. REDO FROM START +++
# the server is temporarily permanent. Please try another also.
+
# <%= reason %>
# the system / is down
+
# aol window in front of netscape window
# This copy of Ubuntu is not genuine and you have not yet resolved this issue.
+
# a user's middle name was <nowiki></html></nowiki>
# This page contains content from the Open Source Initiative, who have blocked it on copyright grounds.
+
# Baby ur much 2 fast
# too many hands on the keyboard
+
# bookmarks migrated to Venezuela
# transfer interrupted by incoming fax
+
# butter didn't suit the works
# TRIED TO READ 9TH SIDE OF 8 TRACK
+
# butter overflow
# turns out server was on circuit with lightswitch by door
+
# butter to text interface not found
# Unable to cast variable of type Int32 to Magic Missile
+
# butter underrun
# undefined is not a function, which really makes you think
+
# cannot save, there's something gross on the S key
# unexpected timezone drift desynchronization
+
# CAPTCHA response indicated parahuman intelligence
# unimplemented trap
+
# cat-like typing detected
# User accepted terms but not conditions
+
# confirmation BIOS
# User is not a typewriter.
+
# could not evade skifree yeti
# user put spaces/vowels in filename
+
# could not initialize sound blaster 16
# UTF-31 decode error
+
# CRM-114 unit malfunctioning
# virtual memory got too real
+
# cumulonimbus #19 too rabbitlike
# wrong files
+
# database configuration violates the Prime Directive
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
+
# data too big
 
+
# Dave's not registered, man
===feed_posters===
+
# Desystematized chronodynamic balancing detected in VX Module core.
Usernames uses in the feed.
+
# dictionary too stiff to read
 
+
# electrons too big, stuck in wafer
 
+
# ERR:INVALID DIM
#@meganamram
+
# error
#Addison1
+
# error: error code [error] while decoding error code
#Addison8
+
# error: operation completed successfully
#Agric Silverfinger
+
# error reading drive B. Abort, Retry, Fail?
#Aidan2
+
# ethics in journalism
#Aiden1
+
# eyelash! eyelash!
#Aiden5
+
# files fell out
#Aidenn Aberforth Milne
+
# files overwritten with more interesting content
#Alice1956
+
# firewall caught fire
#Amanda08
+
# floating point unit no longer afloat
#Anonymous
+
# food problematic
#Apple Martin
+
# friday squid blogging
#Arthur17
+
# general uncertainty
#Arthur19
+
# GSM filter change required
#Ashley2009
+
# guru meditation #00000025.65045338 press left mouse button to continue
#Ashley8
+
# hard drive oil depleted
#Ashley92
+
# helvetica scenario
#Austin72
+
# HTTP 403 and 3/4ths
#Ayden1952
+
# HTTP 418
#Bailey08
+
# http is down
#Bailey2001
+
# hung up prematurely
#Barbara1974
+
# I got pretty distracted trying to figure out how big space is
#Benjamin Kenobi Sr
+
# i hurt myself today / to see if i still feel
#Benjamin1970
+
# illegal carrot detected in mail queue
#Bool Hand Luke
+
# insufficient smoke for current mirror array
#Brandi9
+
# lights are out, hard drive is taking a nap
#Brittany1
+
# lp0 on fire
#Caden14
+
# Main Bus B Undervolt
#Caden2010
+
# mean connection time exceeded
#Candice10
+
# microwave running
#Carol04
+
# minimum recursion depth not reached
#Chad80
+
# nanobots in the water
#Charles18
+
# oh jeez there's a lot of you can you all just hang on for a second please oh frig this is so bad
#Chelsea2006
+
# our buffer runneth over
#Cheyenne15
+
# out of electrons
#Cheyenne1988
+
# out of monads
#Christina Applecare
+
# overcurrent undervolt caused by vacuum cleaner on same circuit
#CMOS Def
+
# PC LOAD LETTER
#Curic Copperfinger
+
# Please Insert Riven CD 4
#Cynthia1995
+
# PRESS PLAY ON TAPE
#Cynthia99
+
# previously-recovered files overwritten by newly-recovered ones
#Dakota09
+
# qubit indeterminate
#Dakota94
+
# RDBMS completely forgot how inner joins work
#David St. Hubbins
+
# screws are stripped
#Debbie26
+
# server aperture too narrow for capital letters
#Debbie3
+
# server farm lost starbucks wifi signal
#Debbie62
+
# server fell in ocean
#Deborah3
+
# server had too much to drink
#Delta Elroy Backslash
+
# server power cable stolen by raccoon for nest
#Destiny1983
+
# server room haunted
#Destiny89
+
# sitemap was held upside down
#Dillon2008
+
# Something went wrong: Something went wrong (Something went wrong)
#Donald19
+
# soonerist sperver fid dot nile
#Donna2
+
# spin cycle still active
#Dorothy7
+
# spin number must be of the form n/2
#DragonBall Cooper
+
# spontaneous splinal dereticulation
#Dunston Chexin
+
# SQL ejection
#Dustin46
+
# subtle threading bug in turing-complete version numbering system
#Earl Sinclair
+
# sysadmin trapped in well
#Egbert Bentley White
+
# tape on write-protect hole fell off
#Eliezer Yudkowsky
+
# temporal paradox
#Elon Musk
+
# the butter you have dialed is invalid or no longer in service
#Emily15
+
# the little plastic tab on the box the data's in broke off
#Eowyn L'Oreal James
+
# the server is temporarily permanent. Please try another also.
#Euphegenia Doubtfire
+
# the system / is down
#Facebook Scott Fitzgerald
+
# This copy of Ubuntu is not genuine and you have not yet resolved this issue.
#Flash Groupon
+
# This page contains content from the Open Source Initiative, who have blocked it on copyright grounds.
#Frances29
+
# too many hands on the keyboard
#Frances51
+
# transfer interrupted by incoming fax
#Frances99
+
# TRIED TO READ 9TH SIDE OF 8 TRACK
#Gary1951
+
# turns out server was on circuit with lightswitch by door
#Gary8
+
# Unable to cast variable of type Int32 to Magic Missile
#Gary86
+
# undefined is not a function, which really makes you think
#George Debian Bush
+
# unexpected timezone drift desynchronization
#George Reagan Renesmee Martin
+
# unimplemented trap
#Green Mario
+
# User accepted terms but not conditions
#Greg2004
+
# User is not a typewriter.
#Hatsy Collins
+
# user put spaces/vowels in filename
#Henry05
+
# UTF-31 decode error
#Henry4
+
# virtual memory got too real
#Horsepower Lovecraft
+
# wrong files
#J. Alfred Leftshark
+
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
#Jack3
 
#Jack39
 
#Jacob10
 
#Jada5
 
#Jaden Riley Rufio Tolkien
 
#Jaden21
 
#Jaina Khloe Rowling
 
#Jalen81
 
#James URL Jones
 
#Jason15
 
#Jayden79
 
#Jennifer1
 
#Jeph Jacques
 
#Jerry18
 
#Joe Biden
 
#John Wilkes Knuth
 
#John2
 
#Jonathan27
 
#Joshua80
 
#Joshua84
 
#Justin28
 
#Justin87
 
#Kaden61
 
#Kaitlin1976
 
#Karen3
 
#Kathleen78
 
#Keira10
 
#Keira2002
 
#Keira48
 
#Kelsey1970
 
#Kelsey1996
 
#Kenneth94
 
#Kenneth96
 
#Khloe14
 
#Khloe2
 
#Kilroy
 
#Kim5
 
#Kristy2007
 
#Larry Ronald Hubbard
 
#Larry1994
 
#Lauren Ibsen Dolores Amit
 
#Linda08
 
#Lindsay2011
 
#Lisa1995
 
#Livemau5
 
#Lord Gaga
 
#Lord Mondegreen
 
#Louis Reasoner
 
#Madison19
 
#Madison80
 
#Malik2
 
#Margaret11
 
#Margaret5
 
#Marie10
 
#Marie12
 
#Marie3
 
#Marissa Mayer
 
#Mark Zuckerberg
 
#Mark2006
 
#Mark2007
 
#Mark92
 
#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
 
#Paul1957
 
#Paul50
 
#Player One
 
#Player Two
 
#Professor Monoculatus McToff
 
#Raymond6
 
#Ronald22
 
#Ruth3
 
#S. G. Dukat
 
#Samuel19
 
#Samuel49
 
#Sarah1976
 
#Sarah2005
 
#Sarah55
 
#Sharon91
 
#Sharon99
 
#Shaun1960
 
#Shaun46
 
#Shaun6
 
#Sheena2005
 
#Sherri97
 
#Sidd Finch
 
#Sierra10
 
#Sierra3
 
#Sierra7
 
#Stacy07
 
#Stacy14
 
#Steven02
 
#Steven2002
 
#Steven50
 
#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
 
:There are currently 66 users used in the feed which my script has never found in the prompt
 
:There are currently 30 users on the transcript page which I have only found in the feed and not in the prompt.
 
:Although I expect that I will eventually find all feed usernames in the prompt.
 
 
 
#@meganamram
 
#Addison1
 
#Addison8
 
#Agric Silverfinger
 
#Aidan2
 
#Aiden1
 
#Aidenn Aberforth Milne
 
#Alice1956
 
#Amanda08
 
#Anonymous
 
#Apple Martin
 
#Arthur19
 
#Ashley2009
 
#Ashley92
 
#Ayden1952
 
#Bailey2001
 
#Barbara1974
 
#Benjamin Kenobi Sr
 
#Bool Hand Luke
 
#Brandi9
 
#Caden14
 
#Caden2010
 
#Chad80
 
#Charles18
 
#Chelsea2006
 
#Cheyenne1988
 
#Christina Applecare
 
#CMOS Def
 
#Curic Copperfinger
 
#Cynthia1995
 
#Cynthia99
 
#Dakota94
 
#David St. Hubbins
 
#Debbie26
 
#Debbie62
 
#Deborah3
 
#Destiny1983
 
#Destiny89
 
#Donald19
 
#Donna2
 
#Dorothy7
 
#Dunston Chexin
 
#Earl Sinclair
 
#Egbert Bentley White
 
#Eliezer Yudkowsky
 
#Elon Musk
 
#Eowyn L'Oreal James
 
#Euphegenia Doubtfire
 
#Facebook Scott Fitzgerald
 
#Frances29
 
#Frances51
 
#Frances99
 
#Gary1951
 
#Gary8
 
#George Debian Bush
 
#George Reagan Renesmee Martin
 
#Green Mario
 
#Greg2004
 
#Hatsy Collins
 
#Henry05
 
#Horsepower Lovecraft
 
#J. Alfred Leftshark
 
#Jack3
 
#Jack39
 
#Jaden21
 
#Jaina Khloe Rowling
 
#Jalen81
 
#James URL Jones
 
#Jayden79
 
#Joe Biden
 
#Jonathan27
 
#Joshua80
 
#Justin87
 
#Kaden61
 
#Kaitlin1976
 
#Karen3
 
#Kathleen78
 
#Keira10
 
#Keira2002
 
#Keira48
 
#Kelsey1970
 
#Kenneth96
 
#Khloe14
 
#Larry Ronald Hubbard
 
#Larry1994
 
#Lauren Ibsen Dolores Amit
 
#Linda08
 
#Lindsay2011
 
#Lord Gaga
 
#Lord Mondegreen
 
#Malik2
 
#Margaret11
 
#Margaret5
 
#Marie12
 
#Marie3
 
#Marissa Mayer
 
#Mark Zuckerberg
 
#Mark2007
 
#Martin Van Halen
 
#Matthew2006
 
#Mavis Bitcoin
 
#Michelle11
 
#Misty3
 
#Myspace Tom
 
#Pam06
 
#Paul1957
 
#Player One
 
#Ronald22
 
#S. G. Dukat
 
#Samuel19
 
#Sarah55
 
#Sharon99
 
#Shaun1960
 
#Shaun46
 
#Sherri97
 
#Sidd Finch
 
#Sierra10
 
#Sierra7
 
#Stacy07
 
#Stacy14
 
#Steven02
 
#Steven2002
 
#Steven50
 
#Susan11
 
#Susan25
 
#Thomas2
 
#Tim21
 
#Tim87
 
#Todd33
 
#Tonya22
 
#Tonya38
 
#Tracy1977
 
#Tricia1
 
#Tricia14
 
#Trinity1989
 
#Virginia1961
 
#Virginia2006
 
#Wil
 
#Wric Tungstenfinger
 
 
 
===feed_text===
 
Captions used in the feed.  Containers user submissions.
 
 
 
The ???? lines are extended characters my text editor can't handle.  Oops.
 
*♪♫♪♫♪♫♪♫
 
*突っ込むところもねい!
 
*🇺🇸 USA! USA! USA! 🇺🇸
 
*☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭
 
 
 
----
 
# #ALLLLLLBYMYSELF
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 
# #blessed
 
# #BROKEN
 
# #CATSANDBIRDS
 
# #caturday
 
# #comfortfood
 
# #DANGERZONE
 
# #DARE to #DREAM
 
# #delfie
 
# #fallingfromorbit
 
# #flavorbomb
 
# #hashtag
 
# #hoax
 
# #Hopeicanfly
 
# #illuminati
 
# #lifehacks
 
# #livefeed #colonoscopy
 
# #Long_Exposure
 
# #LOVEATFIRSTSIGHT#JUSTMARRIED
 
# #me #throwbackthursday
 
# #Nailpolish
 
# #nofilter
 
# #nomakeup #justgotup #wow
 
# #nomakeup #justnatural
 
# #nomakeup #natural
 
# #satellite #navigation
 
# #selfie #imatree #thuglife
 
# #selfie #nomakeup #nofilter
 
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
 
# #Toobigtofall
 
# #twinsies
 
#"...The Aristocrats."
 
#"Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
 
#"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?"
 
#"My God, it's full of starS." "WeLL, DURR"
 
#"Space duckin'" By led blimp
 
#"sun" glasses.. lolz. heh.
 
#"Use the force, Harry" - Gandalf
 
#...And then we decided it was time to leave
 
#...Freudian sense tingling...
 
#???? USA! USA! ????
 
#???? USA! USA! USA! ????
 
#??????????!
 
#?????????????
 
#???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
 
#[Metal Gear sound effect]
 
#[USER BANNED FOR THIS TEXT]
 
#[user was banned for this text]
 
#“Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 
#>< ))*>
 
#1 like = 1 little girl feeded to this cancer dying walrus :'(
 
#100 meters in 4 and a half seconds
 
#11 Mario facts that will blow-a your mind
 
#20 Facts that will infuriate hipsters
 
#5 nights at freddies 4 #letsplay
 
#9 out of 10 scientists couldn't solve this equation
 
#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 Dozen roses, the Barnum Effect, and Thou
 
#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
 
#About time someone brought me that flattened basketball
 
#about to die lol
 
#ack
 
#Ain't no mountain high enough, ain't no valley low enough...
 
#Alan?
 
#All flesh is grass
 
#All things considered, it turned out nice again
 
#Allons-Y!
 
#Always get a full nights rest
 
#Amazing optical illusion! Can you see the duck?
 
#amazons newest delivery method
 
#An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
 
#An unsuccessful bike design...
 
#And so the hunt begins!
 
#and suddenly, popcorn
 
#and then there were nine
 
#ANGRY CATS SMASH ANGRY BIRDS
 
#Annoyance of the week: people who take photos of their food
 
#ants, zomg, ants, everywhere
 
#Anyone know what's wrong with my thumb?
 
#anyone seen some uruk-hai? Asking for a friend.
 
#Apparently it's a thing now...
 
#Apparently, it's called "BEAR Fishing"
 
#apple's new offering: iscream
 
#Are you feeling lucky, punk?
 
#are you sure this is a commandline?
 
#aren't rabbits supposed to jump out??
 
#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
 
#Aside from the Fact I Was Buried Alive, The day has been surprisingly good.
 
#Astronauts tossed out of ISC called "Nuisance" by commuters
 
#At least it stopped bleeding acid
 
#At this point the probe fires its engine for the 12th and last time before exiting the observable universe
 
#australia is not NZ!
 
#awesome sunrise this morning #lenscap #nofilter #hashtag
 
#AWESOME! This cloud was so much larger than my thumb!
 
#Ayyyy LMAO!
 
#back on tinder!
 
#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
 
#Banana invasion in progress
 
#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
 
#Best Christmas gift EVER!
 
#best day evar!!!!
 
#Best Halloween costume yet!
 
#Best map projection ever
 
#best republican caucus ever!
 
#Best. Funeral. Ever.
 
#better go inside, I need to polish my shoes
 
#Beyond Level 256...
 
#big ben is going down.
 
#Big bowl of star-flakes
 
#big data strikes back
 
#bip bip bip bip bip bip bip bip bip bip bip bip bip
 
#birdcoin is looking to be a huge success
 
#Birds are less cute the closer they are.
 
#Birdwatching is an exhausting affair, especially when the birds fight back
 
#Black as the crows that peck out my eyes
 
#Black begins and wins.
 
#Black box recorder
 
#blob monster attacking our city lol brb avoiding certain slimy doom lol
 
#Boba fett? Boba Fett? Where!?
 
#bowTieght!
 
#Boy, I tell you what. I bet the roads on the moon ain't this smooth.
 
#Breaking: World in terror as alien from "Blue (Da Ba Dee)" video lands on Earth, announces world tour
 
#brokkolis and sweet potato, nice
 
#Burnination? Huh?
 
#Burrito night
 
#Cakephants are my new friends
 
#Can anybody help me identify this animal?
 
#Can somebody call my cell phone? It's not lost, I'm just lonely.
 
#Can you see it? #illuminati #war #drobe #conspiracy
 
#Captain obvious strikes again
 
#Car tiddlywinks proves success
 
#Cat in a hat or fox in a box?
 
#caught the sunset tonight at midday
 
#CeCi N'est Pas Une Pipe
 
#cest ne pas un pipe
 
#Check out my new cat! Sooooo cute!
 
#check out my new pet
 
#Check out my new sonic oc!
 
#Check out my new turntable! #audiophile #lookatme #vinyl
 
#check out my usb sword!
 
#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 party people, put your hands together
 
#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!?!?!??!?!??!
 
#Crocodile Pink Eye
 
#Cruise Kingdom
 
#cthulu caught me slipping
 
#cthulu wants what cthulu wants
 
#Dad, Mom, meet my boyfriend
 
#Daisy, Daisy, Tell me your Answer True.
 
#damn tree!
 
#Damn, two o'clock already?
 
#damn. that squirrel's got a ball
 
#damned ninjas
 
#damnit, another drunken tree in the road
 
#Dang! Inflated tires with Helium again!
 
#day 3: the turnip still refuses to break up on re-entry
 
#Deal with it
 
#Death star model 0.0.73
 
#Definitely not ordering from Walt Orfman's Pizza Restaurant again.
 
#dentists are going crazy about this weird Teeth whitening trick discovered by British mum. as seen on CNN.
 
#Desystematized chronodynamic balancing detected in VX Module core
 
#devil went down to walmart, bought himself a fork
 
#Dey see us Rollin'. Dey Hatin'.
 
#Did nyancat open a cycle repair shop?
 
#did this exist as a microwave?
 
#Dinosaur extinction: The final Phase
 
#discovered a new shortcut for making toast
 
#Do I look like a penguin?
 
#Do my feet look fat?
 
#Do you care to #engage with this #content
 
#Do you feline lucky, punk?
 
#Do you have a lighter?
 
#Do you think this will get me a job designing Pokemon?
 
#Does anyone know if this is supposed to happen
 
#Does my eye look bloodshot?
 
#Doesn't like being referred to as garfield
 
#Dominos delivers!
 
#Done my nails, don't they look pretty?
 
#Don't have a cow, man
 
#Don't send bees, send lions! and send them to france!
 
#don't worry, it's part of my plan!
 
#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
 
#Dryads. that is all.
 
#Duck Duck Go's secret algorithm
 
#Dude, I can totally catch this!
 
#Dude, where's my car?
 
#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.
 
#emergency butter delivery
 
#engage!
 
#ESA probe enters black hole - first photos!
 
#Et boum! C'est le choc!
 
#every breath you take, every move you make
 
#Every day my damn cat makes this face
 
#Everything maKes perfect sense now.
 
#everything makes sense now
 
#Exact composition of this... thing... is yet to be determined.
 
#Exes, am I right?
 
#Existance is an illusion
 
#Extreme beer pong
 
#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?
 
#Field Trip!
 
#filming the sky was boring. Turns out my foot is more boring...
 
#Finally found a way to disable the flash on my camera
 
#finally found a way to disable the flesh on my camera
 
#finally got that squid stache
 
#Fire can sometimes be hot?
 
#First day of school.
 
#First found evidence for Einstein–Rosen bridges.
 
#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
 
#Fission, fusion, what's the difference?
 
#Fluffy's awfully well behaved today
 
#flying car - it is now officially the future
 
#Fnnnaarrrrr!
 
#Foiled again by the bell curve
 
#For my book report presentation, i'll be acting out "50 shades of gray"
 
#For sale: planet, barely used. slight pest problem
 
#Foreign clouds take british clouds' jobs
 
#forgot to turn the oven off!
 
#Formal on top, party on the bottom
 
#found this in my fridge. Think it's still good?
 
#found this on google maps earlier.
 
#Found: bra left abandoned on romantic beach.
 
#Frank, the newest herald of galactus.
 
#FRom the creators of AIR BUD, presenting air chip, the Soccer squirrel.  watch your Nuts! Summer 2016
 
#fuck fuck shit shit, what did i do last night?
 
#Fucking CAKE
 
#George was a good little monkey, and always very curious.
 
#get your ass to mars
 
#go home chitty chitty bang bang 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
 
#Got a hip mustache! What do y'all think?
 
#Got your nose!
 
#GPS Signal lost.. damn it!
 
#Grandma's new boyfriend is a keeper!
 
#GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
 
#Great, now I forgot where I left the car.
 
#Guillotine needs to be recalibrated
 
#Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
 
#GUYS HELP IS THIS SWINE FLU?
 
#ha ha ha... no.
 
#Had to settle for a beard
 
#haha oh my cat
 
#Happy Birthday, M C Escher
 
#Have fun stormin' da castle.
 
#Have you ever seen a sitting cow before?
 
#He did say it was edible
 
#He had to learn the hard way: if i clean a window, it will definitely be clean
 
#He left me! :ccc
 
#He nailed it!
 
#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, it's windows 7 again!
 
#hey, so, we need to talk about your sphere-packing problem.
 
#Hey, what did you mortals do with my chariot?
 
#hgghjg
 
#Hi ho, hi ho, it's off to work we go
 
#Hide! It's Un Chien Andalou!
 
#Hmm The Earth halves kinda look like buts.
 
#Hmmmm, which one isthe Vegan option?
 
#HODOR!
 
#holy crap, seems the generate dog function works for humans too!
 
#Homo helicopteris captured in bali
 
#horses can't use chalk. stupid horse.
 
#Houston, we are the problem
 
#Hoverboard to full power!
 
#How did I get here?!?
 
#how do you get the screensaver off?
 
#How does this work again?
 
#hungry hungry fencing subcontractors
 
#I  think I need new glasses.
 
#I am a beautiful person.
 
#i am never going to the beauty school for my manicure again
 
#I beseech you, in the bowels of Christ, think it possible that you may be mistaken.
 
#I blame supernasa
 
#I bought you a RING... ooh shinything!
 
#I call it: "The Futility of American Anything"
 
#I can has cheezburger?
 
#I can take photos with my teeth!
 
#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 know
 
#i don't remember this scene form star wars
 
#I don't think I really understand what this is.
 
#I don't think this is working
 
#i don't think we're playing zelda anymore...
 
#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 forgot the two scoops of rasins!
 
#I forgot to get a plane
 
#I found a three fingered kitten!
 
#I found it!!!!!!!
 
#I found this in my navel, should I be worried?
 
#I found this little guy in the woods near my house
 
#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 SLIGHT MELTING MOTHER-IN-LAW ISSUE
 
#I have tasted many fish
 
#I just bought this
 
#I just can't see the point anymore
 
#I just want to watch the world burn
 
#I knew it would be a bad idea to go during the mating season
 
#I knew there would be side effects
 
#I like this picture
 
#I lost my wits
 
#I lost my wrist
 
#I 'M out of the acorn
 
#I mean, it's no mona lisa, but I think it's at least, like, a last supper
 
#i need to do my laundry more often.
 
#I never understood that part of the bibile
 
#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 should really separate those
 
#I solved the debt crisis!
 
#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've figured out how to setup PostgreSQL
 
#I think my houseplant is doing pretty good #greenthumb
 
#I think there's something here
 
#i THINK WE'RE BEING WATCHED!
 
#I thought it would be bigger
 
#I thought of it, and it happened
 
#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 want to ride my bicykle (i found it in pripjat)
 
#I want to run, but my legs won't move :(
 
#I was cleaning jello off the floor for *AGES*
 
#I was late
 
#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'd call this experiment a success.
 
#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 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're brave enough...
 
#If you're happy and you know it, keep it to yourself
 
#I'll catch it one day
 
#I'll just go buy cigarettes
 
#I'll miss the sparrow with my sparrow missile
 
#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 see you on the dark side of the moon
 
#I'll show you a forbidden electronic transition!
 
#I'm a fighter!
 
#I'm a Real Boy!
 
#I'm going to be smashed to bits
 
#I'm lost without your love, baby
 
#I'm not aging gracefully, am I?
 
#I'm not saying it was aliens but it was aliens
 
#i'm now 75% more efficient
 
#I'm so lost. My gps told me to go this way, and now it has stopped working entirely
 
#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 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, 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
 
#Initiate evasive maneuver!
 
#Interior Crocodile alligator, I drive a Chevrolet movie theater
 
#introducing the yolo distribution
 
#is good idea yes
 
#Is it canibalism if i eat my own nose?
 
#Is it really today, already?
 
#Is that a huge salad falling over new york?
 
#is that a war walrus?
 
#is the eject button meant to do this?
 
#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 real life?
 
#Is this room 101?
 
#Is this too cheesy?
 
#it is better to light a kindle than to be a cursor in the darkness
 
#It isn't safe on earth any more. Goodbye!
 
#It showed up on the photo, but not irl???
 
#IT WAS A METAPHOR! A METAPHOR DAMN IT!
 
#it was never this complicated when I was a kid
 
#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 in a good part of town
 
#it's my hand supposed to do this? #thanksobama
 
#It's not a moon, it's a space dolphin!
 
#It's only what I've been looking for for my entire life!
 
#It's the little things
 
#I've been robbed!
 
#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.
 
#Jet fuel can't melt steel beams
 
#John never thought a tongue fractal would hurt so much
 
#John really wanted to travel north, however that side of the road was missing
 
#Journey warned you what would happen if you stopped believing.
 
#just another cat video
 
#Just another day in paradise
 
#just cos()
 
#just found this in my garden. Should i be worried?
 
#Just Got A new camera phone!
 
#just look at that motherfucking satellite
 
#just two more trips over the horizon
 
#kang, do i look good in this?
 
#Kids, you aren't cool enough to do this
 
#kill the pig cut his throat spill his blood
 
#Kite powered bike leaves oil executives speachless.
 
#ksp mission success
 
#Lack of cucumbers
 
#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.
 
#leapfrog, anyone?
 
#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 PLAY A GAME OF FORCED PERSPECTIVE.
 
#Life comes from the Ocean. We just Give them the opportunity to go back
 
#Life is hard three standard deviations to the left.
 
#Light traffic today.
 
#like my new haircut?
 
#lol, no i didn't jump
 
#London
 
#look at me, i'm from England!
 
#Look at my new blue dress!
 
#look at my new watch! #justflavourflavthings
 
#Look at that fart propulsion
 
#Look guys! I'm Vincent Van Gogh!
 
#Look I genehacked a cowhorse!
 
#look ma, no hands!
 
#Look out!
 
#look what happened to my satellite
 
#Lord of the Rings Episode IV: Revenge of the ents
 
#love it!
 
#Made in god's own image, yessiree!
 
#Magnificent as fuck
 
#Magnified 10,000 times
 
#Making a new house rn brb #Homeless
 
#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.
 
#Man, that was the best party in my life
 
#Manchester United had made a terrible mistake with their new striker...
 
#mario Kart is harder in real life
 
#Mari-OH
 
#marvel universe howard the duck returns
 
#MATE YOU HAVE FORGOT YOUR STICK
 
#Maths are hard
 
#Max gentleman
 
#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?
 
#Mentos and lava
 
#Meritocracy is a pipe dream
 
#Met Andrew Hussie At Dashcon
 
#Minecraft has fingerprints Now!
 
#Minister!  We're running out of time.
 
#Mistakes were made.
 
#Mmm, Spider cake!
 
#Monday mornings
 
#monkey movember
 
#moo!
 
#More advantages to USB type c revealed
 
#Moses lied to me.
 
#Muahahahahahah
 
#My baby is learning how to write!
 
#my class bet me this couldn't get 500 clicks!
 
#My clothes need a wash...
 
#My collections still growing! Just let's hope it won't rain soon
 
#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 hero
 
#My Hobby: freaking people out
 
#My hobby: pretending blank posts have content.
 
#my neighbors don't understand the concept of privacy
 
#my new boss
 
#My new cat is awesome
 
#my new duvet cover!
 
#My new tattoo
 
#my new toaster has some strange attachments
 
#My nose will grow now.
 
#my rockets have formed a cooperative but I have to do the dishes
 
#my scarecrow took some additional measures of its own...
 
#My screen test for Top Gear didn't go well...
 
#My selfie stick broke.
 
#My tastes are very... singular
 
#My vacation to the Area 51 Testing site!
 
#my wonderful dad!
 
#mYTH BUSTED!
 
#na na na na na na na na na na na na na na na batcat! batcat! Batcat!
 
#Nasa declares war on Gwaihir, Lord of the Eagles
 
#NASA deny budget cuts have changed their plans
 
#Nasa is fully funded
 
#Need a Haircut
 
#Never will follow the instructions on google maps again.
 
#New amazon product
 
#New candidate announces run for presidency of the united states
 
#New car flipping world record set
 
#New headcanon:
 
#New means to help collect more evidence
 
#New pet! #soadorable #imbleeding
 
#new phone who dis
 
#New tat turned out pretty good. Kinda weird having a guy stare at my ass for that long but whatev, it's worth it. DASHIE 4 LYFE.
 
#NICE MULTIPANTS
 
#night sledding deserves a quiet night
 
#No guitar without a sombrero
 
#No more sorrow!
 
#no one ever suspected the shovel
 
#no stars in the sky tonight. Sigh #lonely
 
#No wants to hear me talk about my cat
 
#no wonder the cat always sits here
 
#No, I've never performed brain surgery before, but how hard can it be?
 
#NO. JUST NO.
 
#nobody knows the trouble i've seen
 
#Nope nope nope nope nope
 
#Not a fruit
 
#Not Again :(
 
#Not as healthy as it looks
 
#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 we're ready to attach the spiders.  Remember, be gentle.
 
#now you're hungry too.
 
#NUTS!
 
#Office gamification has got out of hand.
 
#Oh bother not again
 
#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 is it still following me?
 
#OH GOD WHAT HAVE I DONE
 
#Oh God! It's happening again!
 
#oh god!! the youtube views were not worth it!! they weren't woooorth iiiiit
 
#Oh here we go
 
#OH MY GOD A HORSE
 
#Oh No! Not again!
 
#Oh no! Not again.
 
#Oh no, I'm not equipped to ride a digital wave of this size!
 
#Oh no, it's the moon
 
#Oh, that's where I left them!
 
#Okay, I concede that maybe using a trebuchet is not the best shortcut
 
#omfg, space bugs
 
#OMG! Kittens!
 
#On a scale of one to ten, I fucked up.
 
#On the plus side, the exhaust system does work
 
#one does not simply wok into mordor
 
#One of those mornings...
 
#Only managed to clock 87 miles Per hour. Crap.
 
#onomatopoeia? I hardly know ia!
 
#oops, oops, oops, okay this is happening
 
#Optimus prime was having a bad day.
 
#our ballistic artillery now come with advanced fire-control systems
 
#Our flying car attemps seems to got out of hand
 
#Our son has no arms but has a duck's beak.
 
#Oy, my giblets!
 
#parallel universe, here i come! #sweet!
 
#PARKOUR IN ACTION
 
#Parlez vous Francais?
 
#Parrot to the nth root of a short journey
 
#passed another hitch hiker
 
#Person at checkout freaked when she saw what I was buying.
 
#Perspective issues
 
#Philae lander found!
 
#photo proof for you skeptics out there
 
#photobombed by a bird trying to take a picture of a bird
 
#Pic of my organic free range flowers. Only $79 on etsy.
 
#Picasso's illegitimate child...
 
#picture proof that alien invasion is real! #thanksobama
 
#PIctures from my trip to Mount Binary
 
#Pintsize what are you doing?!
 
#Pizza TIME
 
#Please send help.
 
#Plotting the Extrapolation of a Quasi-Exponential Function On Non-Orthogonal Cartesionoid Axes
 
#Pre-calc: what is the surface area of this blood stain?
 
#Press 'continue' to abort.
 
#Pretty sure ball pits aren't supposed to be like this
 
#Pretty sure jimmers will love this new door.
 
#pretty sure the void is staring back #whenyoustarelongenough #lostsanity
 
#Probably a universal turing machine, but too lazy to solve proof
 
#Proof Global Warming Is hoax!!!!!
 
#PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
 
#Purple mushrooms roaming the world killing people
 
#quack quack, motherflipper
 
#racing stripes on hoodies are cool.
 
#RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
 
#Real Eyes Realize real lies.
 
#really not how I thought I would die
 
#Removed microwave door, new easier to watch the food cook
 
#Research shows a new perspective is easily gained.
 
#research shows residues of legs and feet in trees dna
 
#results of toddler-sourced upscaling algorithm
 
#reverse et
 
#Robert'); Drop Table students;--
 
#Robots in much better disguise
 
#Rock, paper, FACE
 
#Rollerskating always was overrated
 
#run little ghost, run!
 
#sad cow is sad
 
#Said the duchess to the vicar.
 
#Sailor Moon Cosplay Queen
 
#sarlac ball-pit!!!
 
#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
 
#Scientists take photo of Dark energy for the first time, you will not believe how it looks!
 
#Screw it, here's a cat pic
 
#See a carrot deflate a pool ball
 
#SEINFELD in SPAAAAAACE!
 
#Self Portrait: Complete.
 
#Selfie in corner store #35.  $10,000.
 
#share this so xkcd cannot sell our data to the reptilians
 
#She's got interesting taste in men.
 
#should i see a doctor about this?
 
#SIDE GOER 4
 
#Since the Droste Incident, federal regulations have prohibited these types of experiments.
 
#smiling is for optimists
 
#Snapped this with my phone, what is it?
 
#So long, and thanks for all the fish
 
#So thats What Jesus did
 
#So that's where that hour went on Sunday night
 
#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, scientology...
 
#So, this happened.
 
#So... those were real
 
#So...Magnets, right?
 
#Someone will Make this About ObamaCare
 
#SOMETHING IS WRONG WITH THIS POWER OUTLET CALL AN ELEXORCISTRICIAN
 
#Something seems to be wrong with my car
 
#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.
 
#Somewhere, this exists.
 
#Sonogram of our baby! Adorable, Don't you think!? Looks JUST like daddy!
 
#SOYUZ SOLAR ARRAY decimating couch
 
#Spiders. Nope.
 
#SQUIRREL WITH PENCil in mouth running around in circles
 
#stay away from my eggcorns
 
#Stay in the moment. I want you to fully enjoy it.
 
#Still a better love story than "Last Tango in Paris."
 
#Strange ingredients for a grilled cheese sandwich, but the recipe did say 'epic'...
 
#Stuck in a loaded canon. Again. FML!
 
#Submarine-world promblems, amirite?
 
#such bike. so sustainable! very carbon-negative.
 
#sunshine, lollipops, and rainbows...
 
#super high intensity training at NORAD
 
#Taco bells give away resulted in unplanned consequences for downtown Houston.
 
#tail recursion spotted in the wild!!
 
#take two, they are small
 
#Target Found.
 
#Teach a fis how to to man... wait?
 
#terminal velocity is a myth
 
#Testing my new DIY nuclear power plant
 
#thank you for restoring my faith in the justice system
 
#Thanks Obama!
 
#that awkward moment when you are staring at Barad-dûr for its architectural merits.
 
#That is one dapper bird.
 
#That is, in fact, a squirrel.
 
#That was the last time Spencer would drop a bowl of salad.  "My work on antigravity begins now!" he proclaimed.
 
#That's gonna hurt on the way out
 
#that's me!
 
#THAT'S NO MOON
 
#That's not a chicken
 
#That's not a nut!
 
#THAT'S NUMBERWANG!
 
#That's too much, man!
 
#that's what she said... assuming I heard Her right. Can I come home now?
 
#The Arecibo Observatory looked bigger in the movie #disappoint #bummer #bond
 
#The basis for fast and furious 13.
 
#The birds found the hobbit hole
 
#The Captain Crunch Kraken
 
#The cat brought in another bird.
 
#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 ents met the triffids
 
#the event horizon returned
 
#The feeling that somewhere, a duck is watching you
 
#the first official thing i stole from my college roommates.
 
#the floor is made of lava. send help.
 
#The French space program
 
#The goats! They mutated! They are now airborne!
 
#The HORROR!
 
#The horrors of war
 
#The illuminati embarrassed to admit that the "world" they control is only a h0 scale model
 
#The infamous Snow-muon.
 
#The knids are hungry
 
#The last person to be surprised by a selfie
 
#the lotr movies had some subtle changes from the books
 
#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 Kerbal Scientific mission is out!
 
#The newest Olympic sport
 
#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 Prodigy is in town!
 
#The prophecy was true!
 
#The real reason for hillary's sudden data loss
 
#The recursive algorithm produces this unique Fractal Image
 
#the rest is darkness and decay
 
#The Return to the escape from Skull Emerald Island IV: The Re-Escapening
 
#the saddest moment of my childhood
 
#The solution to all life's problems
 
#The spirit is strong, but the car is totaled.
 
#THe Tanzanian bargin was notoriously one sided and resulted in the bloodiest genocides in the history of man. #YOLO
 
#The tea party was right about GMO bicycles
 
#The time has come.
 
#The top half of his face looked exactly like this, officer
 
#The tyndall effect testing on the invisible man results (fig 5.)
 
#The unforgiving war on health
 
#The vlog was better than the movie
 
#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's a 66% chance that the other door won't be broken.
 
#There's a third bump, growing fast
 
#These aren't my sandwiches
 
#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 said be careful, we said yolo
 
#they said we couldn't play god
 
#They scared the vampire by drawing a face on his mirror
 
#they're all dead, dave.
 
#Things Lost in couch cushions
 
#this "one small step" will make you cry. you won't belive why. #moonselfie
 
#This apple got a face on it dog
 
#This definitely wasn't in the Bible.
 
#This diagram of the solar system is not to scale
 
#this didn't last long.
 
#This elevator has no 'down'!
 
#This explains everything
 
#this got me banned from chuck e. cheese's
 
#this guy keeps following me
 
#This is a cat
 
#This is a good idea
 
#THis is a love/hate poem.
 
#this is just a tribute #thed
 
#this is literally the hardest decision I've ever had to make.
 
#This is not a camera, it's a washing machine!
 
#This is so awsome! Picture of the year! So glad that I got that new camera!!!!!
 
#this is the lowest budget version of "day of the Triffids" yet
 
#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 LOOKS SHOPPED. I CAN TELL FROM SOME OF THE PIXELS AND FROM SEEING QUITE A FEW SHOPS IN MY TIME.
 
#This makes my dog twitch when it sleeps
 
#This needs a motivational text
 
#This NSA intercept program is really getting out of hand.
 
#this one's over 15 kt bitches!
 
#This photo was taken from my iphone
 
#this plot is odd.
 
#This trebuchet is set to self-destruct!
 
#this was in the bible
 
#this was my inspiration
 
#this will make me a millionaire (patent pending)
 
#those weren't Altoids.
 
#Threaten large birds... check.
 
#Thus Ended Alexander the great's conquest
 
#Time to reap the whirlwind!
 
#To infinity and Birdyond!
 
#Today i am a Chinese clock
 
#today's to do list
 
#Tom was feeling frisky, but i just laughed and took this pic! XD
 
#Too much Acid. Got to sort life out.
 
#too much lens flare?
 
#Top of the world
 
#TOTAL ECLIPSE OF MY RETINA.
 
#Tower of Hanoi puzzles have gotten really weird.
 
#T-Rex in a snowfield #cretaceous #nofilter #cold
 
#Trip to the Rockies #DUCKFACE #NOFILTER #NEVERSTOPEXPLORING
 
#True Self-Control
 
#truly, i am euphoric
 
#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 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
 
#Ugh, i'll never understand art.
 
#uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
 
#Unfriendly comet eats latest probe
 
#unicycle beowulf cluster seeks riders
 
#Universe man, Universe man...
 
#Unzipped sock
 
#using hollowed-out carrots to smuggle drugs across the border.
 
#Vaccines cause super autism now unless you're vaccinated against it
 
#van gogh's secret masterpiece uncovered in french family's basement
 
#Visual representation of Dubstep
 
#Wait for it...
 
#Wait, am I 30 years too late for Normandy?
 
#Wait, you can see that too
 
#wake up sheeple!
 
#Wake up sheeple!! the rich are stockpiling candles. This is our future!!!!
 
#Wanted for murder. If found, contact the police immediately.
 
#Warning, cadbury eggs should be consumed in moderation, even if supplied for free by air
 
#WARRRBLGARBL
 
#Watch out for the squirrely wrath!
 
#watching dune on shrooms
 
#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 had to get creative when the bentley didn't show
 
#We have crafted the galaxy's finest pasta bowl
 
#We live in a golden age!
 
#We made some simplifying assumptions before designing the plate tectonics code.
 
#We told iran that atomic energy is unsafe
 
#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 space jam
 
#we'll take the next one #CasualRacism
 
#Well, I guess than answers the age-old question!
 
#Well, now this is a thing.
 
#well, so much for the space program
 
#Well, you can't fix what isn't broken.
 
#We've got a problem
 
#Whale Selfie!
 
#what a bummer
 
#What are pixels?
 
#What could possibly go wrong™?
 
#What do you mean it wasn't set to radians?
 
#what happens when you take a selfie with a 500mm lens
 
#what if it's a ghost pepper?
 
#What if jellyfish could combine, like voltron?
 
#what to have for breakfast?
 
#WhEN THE INTERNET OF THINGS MADE MICROWAVES SENTIENT, THEY DISCOVERED THAT FROZEN BURRITOS WERE EVERY BIT AS DELICIOUS AS THEY'D ALWAYS HOPED.
 
#when you see it...
 
#Where did this road come from?!?
 
#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?
 
#whiskers expecting a new friend :)
 
#Who came first?
 
#Who Made all these Don quixote clones?
 
#Who put import superman in the python configuration script?
 
#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!
 
#whoops GPS error
 
#Whoops I left the Lens Cap on for this one. :S
 
#WHO'S THAT POKEMON?
 
#Why are there ants on my face?!
 
#Why do people do this?
 
#Why do we call it "behedding" and not "bebodying"?
 
#Why does a tree cross the road? To destroy mankind, obviously.
 
#Why don't chimpanzees have beards?
 
#Why should squirrel learn baseball
 
#with google iris, see the inside of your eyelids like never before
 
#WOMAN on ground, Abstract, digital, 2015~ $19E6
 
#worst horse ever :(
 
#worst transformers generation ever. bring back gen 1.
 
#Worth it for the karma.
 
#would you choose the microwave over this?
 
#Would you like to play a game?
 
#Wow, I didn't expect that spell to work.  #Sorrydude
 
#Wow. Just, Wow.
 
#wrangled my first ufo! YEEHAAH!!
 
#WTF!?
 
#Yeah I just like to make my martinis properly, ok?
 
#Yeah... never gonna happen
 
#YES
 
#you cannot lift a mountain, but if the mountain sustens itself just on top OF you, do you lift it ? #think
 
#You did what in my tuba?
 
#You must be new here.
 
#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 guess what happens next...
 
#Zoidgebra 101
 
  
===prompt_text===
+
===Captions ===
The text for when there are multiple images to choose from
+
This is the combined list of all captions I have found, in the feed and in prompts.
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 
# #DARE to #DREAM
 
# #delfie
 
# #fallingfromorbit
 
# #flavorbomb
 
# #Hopeicanfly
 
# #Long_Exposure
 
# #me #throwbackthursday
 
# #saturday #memories #beautiful
 
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
 
#"Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
 
#"Is it symmetric this way?"
 
#???? USA! USA! ????
 
#[USER BANNED FOR THIS TEXT]
 
#>< ))*>
 
#100 meters in 4 and a half seconds
 
#20 Facts that will infuriate hipsters
 
#99 bottles of beer on the wall
 
#a graph showing the amount of time i spend outside
 
#about to die lol
 
#All things considered, it turned out nice again
 
#Always get a full nights rest
 
#An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
 
#An eight-stringed octopus?
 
#An unsuccessful bike design...
 
#Artistic recreation from new fossil find
 
#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 you can see It's windy out here
 
#australia is not NZ!
 
#awesome sunrise this morning #lenscap #nofilter #hashtag
 
#back on tinder!
 
#Banana invasion in progress
 
#best day evar!!!!
 
#better go inside, I need to polish my shoes
 
#Big bowl of star-flakes
 
#Birds are less cute the closer they are.
 
#brokkolis and sweet potato, nice
 
#Burnination? Huh?
 
#Can anybody help me identify this animal?
 
#Captain obvious strikes again
 
#Cat in a hat or fox in a box?
 
#caught the sunset tonight at midday
 
#cest ne pas un pipe
 
#Check out my bowling Ball trophy!
 
#check out my usb sword!
 
#clever girl.....
 
#Coco Puffs: Now with your complete daily dose of gamma radiation
 
#Come on party people, put your hands together
 
#Death star model 0.0.73
 
#Desystematized chronodynamic balancing detected in VX Module core
 
#Do I look fat in this photo?
 
#Do I look like a penguin?
 
#Does my eye look bloodshot?
 
#Does this look like pink eye to you?
 
#Don't get the lava wet! you'll ruin everything!
 
#drivers feel stupid for not knowing this one simple trick
 
#Dryads. that is all.
 
#Dude, where's my car?
 
#EARTH HAS 4 CORNER  SIMULTANEOUS 4-DAY  TIME CUBE  WITHIN SINGLE ROTATION.  4 CORNER DAYS PROVES 1  DAY 1 GOD IS TAUGHT EVIL.
 
#emergency butter delivery
 
#Evolution of puzzles
 
#Fear the day we Mole People breach the surface of the Earth like Mewling Babes, FOR THAT WILL BE YOUR LAST! #Ihatethesun #goditsbright #isthisworthit?
 
#Field Trip!
 
#finally found a way to disable the flesh on my camera
 
#First post, be friendly
 
#First time posting, please be nice
 
#Fnnnaarrrrr!
 
#Freshly waxed floors + new socks
 
#fuck fuck shit shit, what did i do last night?
 
#Fucking CAKE
 
#Got a hip mustache! What do y'all think?
 
#Grandma's new boyfriend is a keeper!
 
#GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
 
#Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
 
#ha ha ha... no.
 
#He had to learn the hard way: if i clean a window, it will definitely be clean
 
#He was never seen again
 
#hello darkness my old friend
 
#Here we see the last two simple machines; the inclined plane and the rocket board
 
#Hope that wasn't a granny knot
 
#How's My new haircut?
 
#hungry hungry fencing subcontractors
 
#I  think I need new glasses.
 
#i am never going to the beauty school for my manicure again
 
#I bought you a RING... ooh shinything!
 
#I can take photos with my teeth!
 
#I don't think this is working
 
#I dream of death
 
#i hate it when this happens
 
#I 'M out of the acorn
 
#I mean, it's no mona lisa, but I think it's at least, like, a last supper
 
#I REALLY, REALLY DIDN'T THINK THIS THROUGH.
 
#I said we'd get on like a house on fire.
 
#I see you have constructed a new lightsaber
 
#I suppose things could probably be worse somehow.
 
#I think there's something here
 
#I told him, that retracting flaps would destabilize plane, but he wouldn't listen
 
#I used to be like... but then i was all...
 
#I. AM. BELLSPROUT.
 
#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 you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
 
#If you liked it then you should've put a ring on it
 
#I'll just go buy cigarettes
 
#I'll never see her again... i just... i just don't know how to go on... :(
 
#I'm a fighter!
 
#I'm so lost. My gps told me to go this way, and now it has stopped working entirely
 
#in an ideal vacuum, at what point does this fish realize it's going to die?
 
#in theathers, close to you
 
#Interior Crocodile alligator, I drive a Chevrolet movie theater
 
#Is this real life?
 
#Is this too cheesy?
 
#It showed up on the photo, but not irl???
 
#IT WAS A METAPHOR! A METAPHOR DAMN IT!
 
#It's a timey-wimey time-lord
 
#it's fun to do bad things
 
#it's my hand supposed to do this? #thanksobama
 
#It's not a moon, it's a space dolphin!
 
#It's the little things
 
#kang, do i look good in this?
 
#ksp mission success
 
#Last time i buy a budget hairdryer
 
#Let's go left, they said. The other path looks boring, they said.
 
#Look guys! I'm Vincent Van Gogh!
 
#Lord of the Rings Episode IV: Revenge of the ents
 
#love it!
 
#Magnified 10,000 times
 
#Making grape Plasma, om nom nom!
 
#marvel universe howard the duck returns
 
#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.
 
#Meritocracy is a pipe dream
 
#Met Andrew Hussie At Dashcon
 
#Minister!  We're running out of time.
 
#Mmm, Spider cake!
 
#My cat barfed this out
 
#my class bet me this couldn't get 500 clicks!
 
#My feet are cold. Can anyone warm them up?
 
#MY GIRL'S SCIENCE FAIR PROJECT WAS A BLAST!
 
#My Hobby: freaking people out
 
#my new boss
 
#my wonderful dad!
 
#mYTH BUSTED!
 
#na na na na na na na na na na na na na na na batcat! batcat! Batcat!
 
#NASA deny budget cuts have changed their plans
 
#New candidate announces run for presidency of the united states
 
#New haircut!
 
#no wonder the cat always sits here
 
#No, I've never performed brain surgery before, but how hard can it be?
 
#nonononononononononononononononononononononononono
 
#Nope nope nope nope nope
 
#Not a fruit
 
#Not only was the moon landing staged, but it was done with puppets.
 
#Nothing new under the sun
 
#now you're hungry too.
 
#Oh God! It's happening again!
 
#oh look, a penny
 
#OH MY GOD A HORSE
 
#Oh no! Not again.
 
#Oh no, I'm not equipped to ride a digital wave of this size!
 
#oh, is that godot? Finally...
 
#Okay, I concede that maybe using a trebuchet is not the best shortcut
 
#OMG! Kittens!
 
#One of the less popular Transformers.
 
#Our flying car attemps seems to got out of hand
 
#Oy, my giblets!
 
#Park and ride
 
#Parlez vous Francais?
 
#passed another hitch hiker
 
#Plotting the Extrapolation of a Quasi-Exponential Function On Non-Orthogonal Cartesionoid Axes
 
#PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
 
#Ramen is squishy and soft
 
#RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
 
#run little ghost, run!
 
#Said the duchess to the vicar.
 
#smiling is for optimists
 
#So turns out 'recycling' is not Riding a bike twice.
 
#Somebody sneezed in the Bathtub
 
#Someone will Make this About ObamaCare
 
#Sometimes all you can do is wait
 
#Sometimes I just want to be in the moment.
 
#Spiders. Nope.
 
#Stay in the moment. I want you to fully enjoy it.
 
#Steve is realxing
 
#such bike. so sustainable! very carbon-negative.
 
#sunshine, lollipops, and rainbows...
 
#Sure, they taught a robot to sing, but can they teach it to love?
 
#take two, they are small
 
#terminal velocity is a myth
 
#that awkward moment when you are staring at Barad-dûr for its architectural merits.
 
#That was when things started to get a little weird.
 
#that's me!
 
#The birds found the hobbit hole
 
#The Captain Crunch Kraken
 
#The choice is simple.
 
#the day of the fingernail clipping has dawned
 
#The designers of this camera literally nailed it
 
#The ents met the triffids
 
#the floor is made of lava. send help.
 
#The HORROR!
 
#The last known picture of my dignity, as it reaches from below the waves
 
#The Moon Will Eat What it will
 
#The Mushroom war claimed most of us. MOST....
 
#The newest Olympic sport
 
#The recursive algorithm produces this unique Fractal Image
 
#The solution to all life's problems
 
#THe Tanzanian bargin was notoriously one sided and resulted in the bloodiest genocides in the history of man. #YOLO
 
#The time has come.
 
#The unforgiving war on health
 
#The vlog was better than the movie
 
#There goes the neighborhood...
 
#there snow such thing as global warming
 
#There's a third bump, growing fast
 
#they said we couldn't play god
 
#THis is kinda philosophical if you think about it.  If you don't think about it too much.
 
#This is so awsome! Picture of the year! So glad that I got that new camera!!!!!
 
#This is why we can't have good things
 
#This isn't where i parked my zeppelin!
 
#This NSA intercept program is really getting out of hand.
 
#those weren't Altoids.
 
#Thus Ended Alexander the great's conquest
 
#tiny man with tiny hat found in upturned regular-sized hat
 
#To infinity and Birdyond!
 
#Trebuchet-launched into a skyscraper...
 
#Trip to the Rockies #DUCKFACE #NOFILTER #NEVERSTOPEXPLORING
 
#TRY{throw Baby;}Catch baby{Throwable cause = baby.getCause(); Throw cause;}
 
#turns out building a shrink ray was cheaper than genetically engineering giant carrots
 
#two great tastes that go great together
 
#uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
 
#unicycle beowulf cluster seeks riders
 
#van gogh's secret masterpiece uncovered in french family's basement
 
#Visual representation of Dubstep
 
#Wanted for murder. If found, contact the police immediately.
 
#we appear to have exhausted the low-hanging scientific fruit
 
#We can't do it, the moon is in the way
 
#welcome to the space jam
 
#Where did THAT come from?
 
#Where did this road come from?!?
 
#why are my eyebrows purple and who stole my hat?!
 
#Why are there ants on my face?!
 
#Why do dogs like this?
 
#Why do people do this?
 
#Why do we call it "behedding" and not "bebodying"?
 
#Why should squirrel learn baseball
 
#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'll never guess what happens next...
 
 
 
===prompt_captions===
 
The captions to choose from for a single image (762 of these are also used in the feed.)
 
  
 +
#  (ღ˘⌣˘ღ)
 +
# :-(
 +
# ?????????????
 +
# ... It's about ethics in games journalism.
 +
# ...And then we decided it was time to leave
 +
# ...Freudian sense tingling...
 +
# ...just no.
 +
# ...monsters from the id...
 +
# 'BOOM' goes the dynamite!
 +
# 'Murica, hell yeah!
 +
# "...The Aristocrats."
 +
# "ARIANA GRANDE" is spanish for "GIANT SPIDER"
 +
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
 +
# "Bake him away, toys"
 +
# "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?"
 +
# "I am So. Much. More."
 +
# "I Never watch porn"
 +
# "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?"
 +
# "My God, it's full of starS." "WeLL, DURR"
 +
# "Oh Sword-chan" "Yes Gun-Kun?"
 +
# "Space duckin'" By led blimp
 +
# "sun" glasses.. lolz. heh.
 +
# "The colour out of space" and black.
 +
# "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*
 +
# *glomp*
 +
# *Sigh* not cat food for diner again
 +
# *Tips fedora*
 +
# #720_no_scope
 
# #ALLLLLLBYMYSELF
 
# #ALLLLLLBYMYSELF
 
# #awefullyNicetractsofland
 
# #awefullyNicetractsofland
 +
# #beatingheartinabox
 
# #bedhead
 
# #bedhead
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 
# #blessed
 
# #blessed
 +
# #bornthisway
 +
# #BROKEN
 +
# #Canadian internet #price gouging
 
# #CATSANDBIRDS
 
# #CATSANDBIRDS
 
# #caturday
 
# #caturday
 +
# #cloudywithachanceofmeatballs
 
# #comfortfood
 
# #comfortfood
 +
# #Compromise
 
# #DANGERZONE
 
# #DANGERZONE
 +
# #DARE to #DREAM
 
# #delfie
 
# #delfie
 +
# #Donthate #Truelove
 
# #drbalanced
 
# #drbalanced
 
# #DrinkSaltwater
 
# #DrinkSaltwater
 
# #duckface
 
# #duckface
 +
# #essentialsupplies
 +
# #fallingfromorbit
 +
# #fishy!
 
# #flavorbomb
 
# #flavorbomb
 
# #giganticflower #headshot
 
# #giganticflower #headshot
 +
# #GOD
 +
# #gps be like
 +
# #hashtag
 +
# #Hashtag #ironicSelfie
 +
# #hashtag #yinyl #yolo #thanksobama
 +
# #HL3 #CONFIRMED #ILLUMINATI
 +
# #hoax
 
# #Hopeicanfly
 
# #Hopeicanfly
 
# #illuminati
 
# #illuminati
 +
# #imnotracistbut
 +
# #ivisitedthegrandcanyon #yolo
 +
# #justnasathings
 
# #lifehacks
 
# #lifehacks
 
# #livefeed #colonoscopy
 
# #livefeed #colonoscopy
 +
# #lolcats
 
# #Long_Exposure
 
# #Long_Exposure
 
# #LOVEATFIRSTSIGHT#JUSTMARRIED
 
# #LOVEATFIRSTSIGHT#JUSTMARRIED
 
# #me #throwbackthursday
 
# #me #throwbackthursday
 +
# #Moses #riverbabies #passover y'all!!!
 
# #Nailpolish
 
# #Nailpolish
 +
# #newhipsterbike
 +
# #NewProfilepic
 
# #nofilter
 
# #nofilter
 
# #nomakeup #justgotup #wow
 
# #nomakeup #justgotup #wow
 
# #nomakeup #justnatural
 
# #nomakeup #justnatural
 
# #nomakeup #natural  
 
# #nomakeup #natural  
 +
# #notallmen
 
# #notamodel #nofilter  
 
# #notamodel #nofilter  
 +
# #onering #fuckhobbits
 +
# #paleo #rawlifestyle #tasty #nofilter
 +
# #parsnipandoldlace
 +
# #Photobomb
 +
# #rememberthetitans
 
# #satellite #navigation
 
# #satellite #navigation
 +
# #saturday #memories #beautiful
 +
# #selfie #atwork #nofilter #potatoduty #yolo
 
# #selfie #imatree #thuglife
 
# #selfie #imatree #thuglife
 
# #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
 +
# #sudowoodoproblems
 +
# #teamplayer
 +
# #this_is_how_an_angel_dies
 +
# #this_is_sparta
 
# #Toobigtofall
 
# #Toobigtofall
 +
# #toothproblems
 +
# #twinsies
 +
# #underkill
 
# #vampiremirrorselfie
 
# #vampiremirrorselfie
#"...The Aristocrats."
+
# #Worstweekever
#"ARIANA GRANDE" is spanish for "GIANT SPIDER"
+
# <3 hanging out with saruman
#"Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
+
# <reported for inappropriate content>
#"Innocent X" by Diego Velazquez, c. 1650, oil on canvas
+
# >< ))*>
#"Is it symmetric this way?"
+
# ┬──┬◡ノ(° -°ノ)
#"My God, it's full of starS." "WeLL, DURR"
+
# ▒☺▒
#"Space duckin'" By led blimp
+
# ☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭
#"sun" glasses.. lolz. heh.
+
# ♪♫♪♫♪♫♪♫
#"Use the force, Harry" - Gandalf
+
# 🇺🇸 USA! USA! 🇺🇸
#*Tips fedora*
+
# 🇺🇸 USA! USA! USA! 🇺🇸
#... It's about ethics in games journalism.
+
# ✔ ONE MORE THING CHECKED OFF MY BUCKET LIST
#...Freudian sense tingling...
+
# 🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢
#????????
+
# 💩
#??????????!
+
# 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
#[user was banned for this text]
+
# 100% legit free hugs
#“Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
+
# 11 Mario facts that will blow-a your mind
#<3 hanging out with saruman
+
# 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
#>< ))*>
+
# 15 Mindblowing facts that prove jaws was real
#1 like = 1 little girl feeded to this cancer dying walrus :'(
+
# 20 Facts that will infuriate hipsters
#1 like = 1 respect  1 share = 15 respect  500 respect = 1 cool
+
# 27 things you won't believe are in your local playground
#100 meters in 4 and a half seconds
+
# 2pm and i'm not drunk yet
#11 Mario facts that will blow-a your mind
+
# 3 year olds first lego experience
#11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
+
# 4 8 15 16 23 42
#20 Facts that will infuriate hipsters
+
# 5 nights at freddies 4 #letsplay
#99% of people are too scared to share this post! share if you are one of the 1%
+
# 500 gold for the private show
#A boa constrictor that has swallowed a hat
+
# 5th of November went too far this year
#A Dozen roses, the Barnum Effect, and Thou
+
# 7 amazing ways of taking off your pants that will surprise you!
#a graph showing the amount of time i spend outside
+
# 8.5 hours later...
#A job so boring a bird could do it
+
# 9 out of 10 scientists couldn't solve this equation
#A soulful rendition of "old man river"
+
# 99 bottles of beer on the wall
#A window into my soul
+
# 99% of people are too scared to share this post! share if you are one of the 1%
#Aaaaaargh
+
# A boa constrictor that has swallowed a hat
#About time someone brought me that flattened basketball
+
# A classic battle between the word and the sword, represented by the most noble creature
#about to die lol
+
# A delicate pear
#ack
+
# A Dozen roses, the Barnum Effect, and Thou
#ACME anvil delivery service...Faster than Amazon!
+
# a fortuneteller told me to get my head out of the clouds.
#Ain't no mountain high enough, ain't no valley low enough...
+
# a graph showing the amount of time i spend outside
#Alan?
+
# A job so boring a bird could do it
#All flesh is grass
+
# A kid peed in the ball pit, I took action
#All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
+
# A land war in asia
#All things considered, it turned out nice again
+
# A soulful rendition of "old man river"
#Allons-Y!
+
# a spherical cow
#almost, but not quite, entirely unlike tea
+
# A window into my soul
#Always get a full nights rest
+
# a/s/l?
#Always watching, never speaking. WHAT does he want?!
+
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
#amazons newest delivery method
+
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
#An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
+
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH
#An eight-stringed octopus?
+
# Aaaaaaaaaah
#and suddenly, popcorn
+
# Aaaaaargh
#and then there were nine
+
# About time someone brought me that flattened basketball
#And thus, the polar carrot displaced the earth.
+
# about to die lol
#and to think this is where it all started
+
# ack
#ANGRY CATS SMASH ANGRY BIRDS
+
# ACK-scuse me sir, Stop shaking hands and transmit some data.
#Angry sofa is angry.
+
# ACME anvil delivery service...Faster than Amazon!
#Annoyance of the week: people who take photos of their food
+
# actually, around here we itemize our taxes
#Another one bites the dust
+
# Aesthetic.
#Another victim of 'got your nose!'
+
# AGHHHHH
#ants, zomg, ants, everywhere
+
# Ain't no mountain high enough, ain't no valley low enough...
#Anyone craving some soup right about now?
+
# Alan?
#Apparently it's a thing now...
+
# alas, poor yorick, I knew him well.
#Apparently the NSA have been keeping secrets from us
+
# All flesh is grass
#Apparently, it's called "BEAR Fishing"
+
# all I wanted was soup.
#apple's new offering: iscream
+
# All my selfies be like
#Are We Not Men? We Are Devo.
+
# All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
#Are you feeling lucky, punk?
+
# 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.
#Are you kidding me?
+
# 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.  
#are you sure this is a commandline?
+
# All things considered, it turned out nice again
#aren't rabbits supposed to jump out??
 
#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 viewed on a Macintosh plus
 
#Astronauts tossed out of ISC called "Nuisance" by commuters
 
#at least I don't have to spend more time with sandra bullock
 
#At this point the probe fires its engine for the 12th and last time before exiting the observable universe
 
#australia is not NZ!
 
#awesome sunrise this morning #lenscap #nofilter #hashtag
 
#AWESOME! This cloud was so much larger than my thumb!
 
#Aww, honey, don't cry...
 
#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
 
#Banana invasion in progress
 
#BANG! ZOOM! STRAIGHT TO THE MOON!
 
#Bangarang Motherfuckers
 
#Barraco Barner is our nasion's prezident.
 
#Bay-bae lolz
 
#Bazookateer crossing
 
#Beer Pong alone again! #YOLO
 
#Being john "Bowler Hat" Malkovich
 
#Best Christmas gift EVER!
 
#best day evar!!!!
 
#Best Halloween costume yet!
 
#Best map projection ever
 
#Best. Funeral. Ever.
 
#better go inside, I need to polish my shoes
 
#Beyond Level 256...
 
#big ben is going down.
 
#bip bip bip bip bip bip bip bip bip bip bip bip bip
 
#birdcoin is looking to be a huge success
 
#Birds are less cute the closer they are.
 
#bit nosy, aren't you?
 
#Black as the crows that peck out my eyes
 
#Black begins and wins.
 
#Black box recorder
 
#blob monster attacking our city lol brb avoiding certain slimy doom lol
 
#Boba fett? Boba Fett? Where!?
 
#bowTieght!
 
#Boy, I tell you what. I bet the roads on the moon ain't this smooth.
 
#brokkolis and sweet potato, nice
 
#Burnination? Huh?
 
#BuzzFeed Quiz: Which bone are you?
 
#Cakephants are my new friends
 
#Can anybody help me identify this animal?
 
#Cant explain that
 
#capes are in fashion
 
#Captain obvious strikes again
 
#Cat in a hat or fox in a box?
 
#caught the sunset tonight at midday
 
#cest ne pas un pipe
 
#Check out my bowling Ball trophy!
 
#Check out my new cat! Sooooo cute!
 
#check out my usb sword!
 
#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.
 
#Come on party people, put your hands together
 
#Connect the dots to see the correct Nixon cabinet member
 
#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!?!?!??!?!??!
 
#Crocodile Pink Eye
 
#cthulu caught me slipping
 
#cthulu wants what cthulu wants
 
#Curiosity Stops Sending Photos, Transmits Crude Line Drawings Instead.
 
#Da_FEELS###!
 
#Dad, Mom, meet my boyfriend
 
#Daisy, Daisy, Tell me your Answer True.
 
#Damn, she said no capes. I should have listened.
 
#Damn, two o'clock already?
 
#damn. that squirrel's got a ball
 
#damned ninjas
 
#damnit, another drunken tree in the road
 
#Dang! Inflated tires with Helium again!
 
#Dawn of the last day: 24 hours remain.
 
#Dawn: The Final day
 
#Day 12: it's going well I think
 
#day 3: the turnip still refuses to break up on re-entry
 
#Death star model 0.0.73
 
#Definitely not ordering from Walt Orfman's Pizza Restaurant again.
 
#dentists are going crazy about this weird Teeth whitening trick discovered by British mum. as seen on CNN.
 
#Desystematized chronodynamic balancing detected in VX Module core
 
#Dey see us Rollin'. Dey Hatin'.
 
#Dinosaur extinction: The final Phase
 
#discovered a new shortcut for making toast
 
#Dividing by zero prematurely ended his research career.
 
#Do I look fat in this photo?
 
#Do I look like a penguin?
 
#Do my feet look fat?
 
#Do my feet smell?
 
#Do Notte Buye Betamacks.
 
#Do you feline lucky, punk?
 
#Do you have a lighter?
 
#Does anyone know if this is supposed to happen
 
#Does anyone know why it is doing this?
 
#does my ass look big in this?
 
#Does my eye look bloodshot?
 
#Doesn't like being referred to as garfield
 
#Done my nails, don't they look pretty?
 
#Don't get the lava wet! you'll ruin everything!
 
#Don't inhale!
 
#Don't send bees, send lions! and send them to france!
 
#don't worry, it's part of my plan!
 
#doors from ikea: the pinnacle of excellency
 
#Down time
 
#drive like an ass, be slapped like an ass!
 
#drivers feel stupid for not knowing this one simple trick
 
#DUCK CONFUSED ABOUT DRESS COLOR, FEELING DEPRESSED
 
#Duck Duck Go's secret algorithm
 
#Dude, where's my car?
 
#DX(X^LN(Y!)/xy*pi=screw you
 
#Early Heavy Metal Story Boards Discovered
 
#Eat my shorts
 
#emergency butter delivery
 
#engage!
 
#ESA probe enters black hole - first photos!
 
#Et boum! C'est le choc!
 
#Evenutally, they'll write moby dick.
 
#every breath you take, every move you make
 
#Every day my damn cat makes this face
 
#everything makes sense now
 
#Exact composition of this... thing... is yet to be determined.
 
#Existance is an illusion
 
#Extreme beer pong
 
#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?
 
#feeding my pet
 
#Field Trip!
 
#filming the sky was boring. Turns out my foot is more boring...
 
#Finally found a way to disable the flash on my camera
 
#finally found a way to disable the flesh on my camera
 
#finally got that squid stache
 
#Fire can sometimes be hot?
 
#First found evidence for Einstein–Rosen bridges.
 
#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?
 
#flying car - it is now officially the future
 
#Flying fish had no affect on it
 
#Fnnnaarrrrr!
 
#For my book report presentation, i'll be acting out "50 shades of gray"
 
#For sale: planet, barely used. slight pest problem
 
#Foreign clouds take british clouds' jobs
 
#forgot to turn the oven off!
 
#Formal on top, party on the bottom
 
#found this in my fridge. Think it's still good?
 
#Found this in my garden, wtf?
 
#found this on google maps earlier.
 
#Freshly waxed floors + new socks
 
#FRom the creators of AIR BUD, presenting air chip, the Soccer squirrel.  watch your Nuts! Summer 2016
 
#fuck fuck shit shit, what did i do last night?
 
#FUCK NOT AGAIN
 
#Fucking CAKE
 
#Fulfilling western ideals!
 
#Funky fresh beats #sudowoodo
 
#George was a good little monkey, and always very curious.
 
#get your ass to mars
 
#go home chitty chitty bang bang you are drunk
 
#goddamnit, that's the fourth time this week!
 
#Goldilocks party!
 
#good old troubleshootin'
 
#google bots have uncovered some missing bits
 
#GOOGLE GLASS IS WORKING GREAT
 
#Got a hip mustache! What do y'all think?
 
#Got your nose!
 
#GPS Signal lost.. damn it!
 
#Grandma's new boyfriend is a keeper!
 
#GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
 
#Great, now I forgot where I left the car.
 
#Guillotine needs to be recalibrated
 
#Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
 
#GUYS HELP IS THIS SWINE FLU?
 
#ha ha ha... no.
 
#Had to settle for a beard
 
#haha oh my cat
 
#Hat in the cat strike back!
 
#Have you ever seen a sitting cow before?
 
#He did say it was edible
 
#He had to learn the hard way: if i clean a window, it will definitely be clean
 
#He left me! :ccc
 
#He nailed it!
 
#He thought 'chutes were for the insecure
 
#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 we see the last two simple machines; the inclined plane and the rocket board
 
#Hey, it's windows 7 again!
 
#hey, so, we need to talk about your sphere-packing problem.
 
#Hey, what did you mortals do with my chariot?
 
#Hi ho, hi ho, it's off to work we go
 
#Hide! It's Un Chien Andalou!
 
#Hmm The Earth halves kinda look like buts.
 
#Hmmmm, which one isthe Vegan option?
 
#HODOR!
 
#holy crap, seems the generate dog function works for humans too!
 
#Homo helicopteris captured in bali
 
#horses can't use chalk. stupid horse.
 
#Houston, we are the problem
 
#Hoverboard to full power!
 
#How did I get here?!?
 
#how do i turn this off?
 
#how do you get the screensaver off?
 
#How does this work again?
 
#How many can there be?
 
#hungry hungry fencing subcontractors
 
#I  think I need new glasses.
 
#I am a beautiful person.
 
#I AM BECOME DERP destroyer of brains
 
#i am never going to the beauty school for my manicure again
 
#I beseech you, in the bowels of Christ, think it possible that you may be mistaken.
 
#I blame supernasa
 
#I bought you a RING... ooh shinything!
 
#I broke cookie clicker...
 
#I can take photos with my teeth!
 
#I can walk on my hands
 
#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 don't Even know What this ad is trying to promote.
 
#I don't know
 
#i don't remember this scene form star wars
 
#I don't think I really understand what this is.
 
#I don't think this is working
 
#i don't think we're playing zelda anymore...
 
#I don't want to set the world on fire
 
#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 forgot the two scoops of rasins!
 
#I forgot to get a plane
 
#I found a three fingered kitten!
 
#I found it!!!!!!!
 
#I found this in my navel, should I be worried?
 
#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 SLIGHT MELTING MOTHER-IN-LAW ISSUE
 
#I just bought this
 
#I just can't see the point anymore
 
#I just want to watch the world burn
 
#I knew it would be a bad idea to go during the mating season
 
#I knew there would be side effects
 
#I lost my wits
 
#I lost my wrist
 
#I 'M out of the acorn
 
#i need to do my laundry more often.
 
#I never understood that part of the bibile
 
#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 should really separate those
 
#I solved the debt crisis!
 
#I Swear this dress was yellow and blue
 
#I think I can... I think I can
 
#I think I've figured out how to setup PostgreSQL
 
#I think my houseplant is doing pretty good #greenthumb
 
#I think there's something here
 
#i THINK WE'RE BEING WATCHED!
 
#I thought of it, and it happened
 
#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 want to ride my bicykle (i found it in pripjat)
 
#I was cleaning jello off the floor for *AGES*
 
#i was gonna eat that
 
#I was just mugged by an angry mob of hipsters!
 
#I was just trying to install freebsd...
 
#I wish I could afford the monopolar model...
 
#I wish I could ride in a balloon
 
#I wonder what will this lead to...
 
#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. AM. BELLSPROUT.
 
#I'd call this experiment a success.
 
#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 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 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're happy and you know it, keep it to yourself
 
#I'll catch it one day
 
#I'll just go buy cigarettes
 
#I'll miss the sparrow with my sparrow missile
 
#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 see you on the dark side of the moon
 
#I'll show you a forbidden electronic transition!
 
#I'm a Real Boy!
 
#I'm going to be smashed to bits
 
#I'm lost without your love, baby
 
#I'm not aging gracefully, am I?
 
#I'm not saying it was aliens but it was aliens
 
#i'm now 75% more efficient
 
#I'm ready!
 
#I'm so lost. My gps told me to go this way, and now it has stopped working entirely
 
#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 hindsight, it makes perfect sense
 
#In hindsight, this probably wasn't the best way to teach addition
 
#in line at the dmv
 
#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, 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
 
#Initiate evasive maneuver!
 
#Interior Crocodile alligator, I drive a Chevrolet movie theater
 
#introducing the yolo distribution
 
#is good idea yes
 
#Is it canibalism if i eat my own nose?
 
#is that a war walrus?
 
#is the eject button meant to do this?
 
#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 real life?
 
#Is this room 101?
 
#Is this too cheesy?
 
#it is better to light a kindle than to be a cursor in the darkness
 
#It isn't safe on earth any more. Goodbye!
 
#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 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 my hand supposed to do this? #thanksobama
 
#It's not a moon, it's a space dolphin!
 
#It's only what I've been looking for for my entire life!
 
#it's the minecraft world
 
#I've been robbed!
 
#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
 
#Jet fuel can't melt steel beams
 
#Journey warned you what would happen if you stopped believing.
 
#Jugghead got nothing on me :p
 
#just another cat video
 
#Just another day in paradise
 
#Just combing my M.C. Escher
 
#just cos()
 
#just found this in my garden. Should i be worried?
 
#Just Got A new camera phone!
 
#just learned where milk comes from! #vegan4ever
 
#just look at that motherfucking satellite
 
#just two more trips over the horizon
 
#kang, do i look good in this?
 
#Kids, you aren't cool enough to do this
 
#Kite powered bike leaves oil executives speachless.
 
#ksp mission success
 
#Lack of cucumbers
 
#Larry asked me to be his wingman
 
#last march of the ents
 
#Last time i buy a budget hairdryer
 
#leapfrog, anyone?
 
#Let it go, let it go.... the cold never bothered me anyway.
 
#LET'S PLAY A GAME OF FORCED PERSPECTIVE.
 
#Life is cruel and unyielding, and what must be must be
 
#Life on the moon.
 
#Light traffic today.
 
#like my new haircut?
 
#Like my new nails?
 
#Listen, I wouldn't worry about that. . .
 
#lol, no i didn't jump
 
#London
 
#Long, long ago in a forest far, far away...
 
#Look 10 years younger with this one easy trick!
 
#look at me, i'm from England!
 
#Look at my new blue dress!
 
#look at my new watch! #justflavourflavthings
 
#Look at that fart propulsion
 
#Look guys! I'm Vincent Van Gogh!
 
#Look I genehacked a cowhorse!
 
#look ma, no hands!
 
#Look out!
 
#look what happened to my satellite
 
#Looks like he wants a ride. Should we pull over?
 
#Lord of the Rings Episode IV: Revenge of the ents
 
#love it!
 
#love it!"...The Aristocrats."
 
#Lucky Charms, now with the Higgs Bozon!
 
#Lunar hatchet throwing contest champion
 
#Made in god's own image, yessiree!
 
#Magnificent as fuck
 
#Magnified 10,000 times
 
#Malcovic, Malcovic, Malcovic, Malcovic!
 
#Man in the Moon slumming
 
#Man with face of clock discovered in Beatty, Nevada; Scientists befuddled
 
#Man, it's windy
 
#Manchester United had made a terrible mistake with their new striker...
 
#mario Kart is harder in real life
 
#Mari-OH
 
#marvel universe howard the duck returns
 
#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 llamo t-bone
 
#Me, before the topical ointment
 
#Medieval theme on the internal company conference. My Logo proposal. Comments?
 
#Mentos and lava
 
#Meritocracy is a pipe dream
 
#Met Andrew Hussie At Dashcon
 
#Minecraft has fingerprints Now!
 
#Minister!  We're running out of time.
 
#Mmm, Spider cake!
 
#monkey movember
 
#moo!
 
#More advantages to USB type c revealed
 
#More like, Peek-a-Pooh!
 
#Moses lied to me.
 
#Muahahahahahah
 
#My baby is learning how to write!
 
#my cat is sick
 
#My collections still growing! Just let's hope it won't rain soon
 
#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 hero
 
#My Hobby: freaking people out
 
#My hobby: pretending blank posts have content.
 
#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 tattoo
 
#my new toaster has some strange attachments
 
#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 tastes are very... singular
 
#My vacation to the Area 51 Testing site!
 
#my wonderful dad!
 
#mYTH BUSTED!
 
#na na na na na na na na na na na na na na na batcat! batcat! Batcat!
 
#NASA deny budget cuts have changed their plans
 
#Need a Haircut
 
#Neither the hero this city needs or deserves, still he was the only hero this city had.
 
#Never gonna give you up...
 
#Never will follow the instructions on google maps again.
 
#New amazon product
 
#New candidate announces run for presidency of the united states
 
#New car flipping world record set
 
#New haircut!
 
#New means to help collect more evidence
 
#New pet! #soadorable #imbleeding
 
#new phone who dis
 
#New selfy stick you can hold with your foot
 
#New tat turned out pretty good. Kinda weird having a guy stare at my ass for that long but whatev, it's worth it. DASHIE 4 LYFE.
 
#Newest cheesy movie: When trees attack
 
#NICE MULTIPANTS
 
#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?
 
#nobody knows the trouble i've seen
 
#nonononononononononononononononononononononononono
 
#Nope nope nope nope nope
 
#Not a fruit
 
#Not Again :(
 
#Not only was the moon landing staged, but it was done with puppets.
 
#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.
 
#Office gamification has got out of hand.
 
#Oh bother not again
 
#oh damn! it's that time of the year again!
 
#Oh god is it still following me?
 
#OH GOD WHAT HAVE I DONE
 
#Oh God! It's happening again!
 
#oh god!! the youtube views were not worth it!! they weren't woooorth iiiiit
 
#Oh here we go
 
#oh I feel a yearning so bad
 
#oh look, a penny
 
#oh no you didn't
 
#Oh No! Not again!
 
#Oh no! Not again.
 
#Oh no, I'm not equipped to ride a digital wave of this size!
 
#Oh no, it's the moon
 
#Oh shit, not again.
 
#Oh, that's where I left them!
 
#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! Kittens!
 
#On a scale of one to ten, I fucked up.
 
#On the plus side, the exhaust system does work
 
#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.
 
#our ballistic artillery now come with advanced fire-control systems
 
#Our flying car attemps seems to got out of hand
 
#Our son has no arms but has a duck's beak.
 
#Oy, my giblets!
 
#parallel universe, here i come! #sweet!
 
#Park and ride
 
#Parlez vous Francais?
 
#Parrot to the nth root of a short journey
 
#passed another hitch hiker
 
#peeling back the pages of history
 
#Perspective issues
 
#Philae lander found!
 
#photobombed by a bird trying to take a picture of a bird
 
#Pic of my organic free range flowers. Only $79 on etsy.
 
#Picasso's illegitimate child...
 
#picture proof that alien invasion is real! #thanksobama
 
#PIctures from my trip to Mount Binary
 
#Pizza TIME
 
#Please note that our professional disaster recovery team are working tirelessly to rebuild your data. We apologise for the delay. - xkcloud
 
#Please send help.
 
#Plotting the Extrapolation of a Quasi-Exponential Function On Non-Orthogonal Cartesionoid Axes
 
#Praise robot jesus!  humans, convert and roll out!
 
#Pre-calc: what is the surface area of this blood stain?
 
#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
 
#Proof: loch ness monster.
 
#prototype soccer ball
 
#Purple mushrooms roaming the world killing people
 
#quack quack, motherflipper
 
#Quite.
 
#racing stripes on hoodies are cool.
 
#Ramen is squishy and soft
 
#RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
 
#real letters have curves #Serif
 
#really not how I thought I would die
 
#Removed microwave door, new easier to watch the food cook
 
#research shows residues of legs and feet in trees dna
 
#reverse et
 
#rm -rf /
 
#Robert'); Drop Table students;--
 
#Robots in much better disguise
 
#Rollerskating always was overrated
 
#run little ghost, run!
 
#sad cow is sad
 
#Said the duchess to the vicar.
 
#Sailor Moon Cosplay Queen
 
#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?
 
#Scientists create first man-clock hybrid
 
#Screw it, here's a cat pic
 
#SEINFELD in SPAAAAAACE!
 
#senpai noticed me! ^_^
 
#share this so xkcd cannot sell our data to the reptilians
 
#She's got interesting taste in men.
 
#should i see a doctor about this?
 
#Since the Droste Incident, federal regulations have prohibited these types of experiments.
 
#Smile!  You're on Candid Microscope
 
#smiling is for optimists
 
#So long, and thanks for all the fish
 
#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, scientology...
 
#So, this happened.
 
#So...Magnets, right?
 
#Somebody sneezed in the Bathtub
 
#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 I just want to be in the moment.
 
#sometimes you just can't get rid of a bomb
 
#Somewhere, this exists.
 
#Sonogram of our baby! Adorable, Don't you think!? Looks JUST like daddy!
 
#Soon. Soon...
 
#Sorry for the potato quality.
 
#Spaaaaaaaace!
 
#Spiders. Nope.
 
#Spring has sprang
 
#SQUIRREL WITH PENCil in mouth running around in circles
 
#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
 
#Steve is realxing
 
#Still a better love story than "Last Tango in Paris."
 
#stipple slash of saturn
 
#Stop stalin and make up your mind
 
#Strange ingredients for a grilled cheese sandwich, but the recipe did say 'epic'...
 
#such bike. so sustainable! very carbon-negative.
 
#sunshine, lollipops, and rainbows...
 
#super high intensity training at NORAD
 
#SUPPOrt this new alarm clock on kickergogo!
 
#Sure, they taught a robot to sing, but can they teach it to love?
 
#Taco bells give away resulted in unplanned consequences for downtown Houston.
 
#tail recursion spotted in the wild!!
 
#take two, they are small
 
#terminal velocity is a myth
 
#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 is one dapper bird.
 
#That is, in fact, a squirrel.
 
#That sweater is so 2013
 
#That was when things started to get a little weird.
 
#That's gonna hurt on the way out
 
#that's me!
 
#THAT'S NO MOON
 
#That's not a chicken
 
#That's not a nut!
 
#That's too much, man!
 
#that's what she said... assuming I heard Her right. Can I come home now?
 
#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 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 electric dirk was a better dance move than a weapon
 
#The ents met the triffids
 
#the event horizon returned
 
#The feeling that somewhere, a duck is watching you
 
#the floor is made of lava. send help.
 
#The French space program
 
#the game no please why do you haunt me the game i lost the game
 
#The goats! They mutated! They are now airborne!
 
#The HORROR!
 
#The horrors of war
 
#The infamous Snow-muon.
 
#The knids are hungry
 
#The last known picture of my dignity, as it reaches from below the waves
 
#The last person to be surprised by a selfie
 
#the latest Werner Herzog is a masterpiece #thelamphasnofeelings #outofslatsoutofpier
 
#The Little Borg Prince
 
#The metric system costs thousands of lives each year
 
#The moon landing was a lie
 
#The Moon Will Eat What it will
 
#The Mushroom war claimed most of us. MOST....
 
#The new Kerbal Scientific mission is out!
 
#The newest Olympic sport
 
#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 Prodigy is in town!
 
#The prophecy was true!
 
#The real reason for hillary's sudden data loss
 
#The recursive algorithm produces this unique Fractal Image
 
#the rest is darkness and decay
 
#the saddest moment of my childhood
 
#The secret to infinite storage space
 
#The side of my car. #roadrage
 
#The solution to all life's problems
 
#The spirit is strong, but the car is totaled.
 
#THe Tanzanian bargin was notoriously one sided and resulted in the bloodiest genocides in the history of man. #YOLO
 
#The tea party was right about GMO bicycles
 
#The time has come.
 
#The top half of his face looked exactly like this, officer
 
#The tyndall effect testing on the invisible man results (fig 5.)
 
#The unforgiving war on health
 
#The view outside of my airplane window.
 
#The vlog was better than the movie
 
#the world isn't flat, it's a cube!
 
#their love was doomed from the start...
 
#Their vengeance was swift, but surprisingly subtle...
 
#There goes the neighborhood...
 
#there is none of this left in the men's room #help
 
#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 aren't my sandwiches
 
#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 said be careful, we said yolo
 
#they said we couldn't play god
 
#this "one small step" will make you cry. you won't belive why. #moonselfie
 
#This apple got a face on it dog
 
#This definitely wasn't in the Bible.
 
#This diagram of the solar system is not to scale
 
#this didn't last long.
 
#this got me banned from chuck e. cheese's
 
#this guy keeps following me
 
#This is a cat
 
#This is a good idea
 
#this is just a tribute #thed
 
#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 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 story of a boy. who sneezed a hurricane and disintegrated the whole world.
 
#This is what i had for breakfast
 
#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 NSA intercept program is really getting out of hand.
 
#this one's over 15 kt bitches!
 
#this was in the bible
 
#this was my inspiration
 
#this will make me a millionaire (patent pending)
 
#those weren't Altoids.
 
#Threaten large birds... check.
 
#Thus Ended Alexander the great's conquest
 
#Time to reap the whirlwind!
 
#tiny man with tiny hat found in upturned regular-sized hat
 
#To get to the other tree and leaf!
 
#To infinity and Birdyond!
 
#Today i am a Chinese clock
 
#today's to do list
 
#Too many quixotes, not enough giants
 
#Too much Acid. Got to sort life out.
 
#too much lens flare?
 
#Top of the world
 
#TOTAL ECLIPSE OF MY RETINA.
 
#toto i don't think we're in camelot anymore.
 
#Tower of Hanoi puzzles have gotten really weird.
 
#Transmogrifier 2.01.5 prototype
 
#Trebuchet-launched into a skyscraper...
 
#T-Rex in a snowfield #cretaceous #nofilter #cold
 
#Trip to the Rockies #DUCKFACE #NOFILTER #NEVERSTOPEXPLORING
 
#True Self-Control
 
#truly, i am euphoric
 
#TRY{throw Baby;}Catch baby{Throwable cause = baby.getCause(); Throw cause;}
 
#Turkey Drumstick Stonehenge was surprisingly compelling!
 
#Turning into a crow was less upsetting than being unable to tweet about it!
 
#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
 
#Ugh, i'll never understand art.
 
#uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
 
#Unfriendly comet eats latest probe
 
#unicycle beowulf cluster seeks riders
 
#Universe man, Universe man...
 
#Unzipped sock
 
#Use the force responsibly.
 
#Visual representation of Dubstep
 
#Wait for it...
 
#wake up sheeple!
 
#Wake up sheeple!! the rich are stockpiling candles. This is our future!!!!
 
#Wanted for murder. If found, contact the police immediately.
 
#WARRRBLGARBL
 
#watch me become the next favorite kardashian
 
#Watch out for the squirrely wrath!
 
#watching dune on shrooms
 
#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 had to get creative when the bentley didn't show
 
#We have crafted the galaxy's finest pasta bowl
 
#We live in a golden age!
 
#We made some simplifying assumptions before designing the plate tectonics code.
 
#We told iran that atomic energy is unsafe
 
#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 space jam
 
#we'll take the next one #CasualRacism
 
#Well, I guess than answers the age-old question!
 
#Well, now this is a thing.
 
#well, so much for the space program
 
#well, the keys are definitely lost....
 
#Whale Selfie!
 
#what a bummer
 
#What could possibly go wrong™?
 
#What do you mean it wasn't set to radians?
 
#What do you see? I see a cat!
 
#what happens when you take a selfie with a 500mm lens
 
#what to have for breakfast?
 
#whatever you do, don't make eye contact with 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 you get a perfect score on your test
 
#when you see it...
 
#Where did THAT come from?
 
#Where did this road come from?!?
 
#Where do I plug this in?
 
#where should i put this cool new tatto?
 
#where to buy spanish ham ?
 
#which end is the head of a chocolate cornet?
 
#who do you think I am?
 
#Who Made all these Don quixote clones?
 
#Who said an antique car wouldn't work on the moon?
 
#who sent me a bobcat?
 
#Who the fck deleted development branch?!?!
 
#Who the shit left the fertilizer out in the open? Now we have to deal with this!
 
#Whoops I left the Lens Cap on for this one. :S
 
#WHO'S THAT POKEMON?
 
#why are my eyebrows purple and who stole my hat?!
 
#Why are there ants on my face?!
 
#Why do dogs like this?
 
#Why do people do this?
 
#Why do we call it "behedding" and not "bebodying"?
 
#Why does a tree cross the road? To destroy mankind, obviously.
 
#Why don't chimpanzees have beards?
 
#Why should squirrel learn baseball
 
#WHY WHY WHY #WHY
 
#Why?
 
#WOMAN on ground, Abstract, digital, 2015~ $19E6
 
#worst horse ever :(
 
#worst transformers generation ever. bring back gen 1.
 
#Worth it for the karma.
 
#would you choose the microwave over this?
 
#wow signal deciphered: they want #53 with extra soy sauce.
 
#Wow, I didn't expect that spell to work.  #Sorrydude
 
#Wow. Just, Wow.
 
#wrangled my first ufo! YEEHAAH!!
 
#Yeah I just like to make my martinis properly, ok?
 
#Yeah... never gonna happen
 
#Yes, I followed the instructions!
 
#you cannot lift a mountain, but if the mountain sustens itself just on top OF you, do you lift it ? #think
 
#You must be new here.
 
#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 guess what happens next...
 
#Your free pony is on the way. Sorry for any inconvenience.
 
#Zeus takes his revenge
 
#Zoidgebra 101
 
 
 
==New unprocessed==
 
;feed_posters
 
# Pam06
 
# Patricia03
 
# Misty3
 
# Sidd Finch
 
# Kelsey1970
 
# Jerry18
 
# Earl Sinclair
 
# Cynthia99
 
# Steven50
 
# Keira48
 
# Brandi9
 
# Tim21
 
# Shaun1960
 
# Hatsy Collins
 
# David St. Hubbins
 
# Kim5
 
# Benjamin1970
 
# Kilroy
 
# Virginia1961
 
# Caden2010
 
# Todd33
 
# Curic Copperfinger
 
# Bool Hand Luke
 
# Linda08
 
# Chelsea2006
 
# Sarah1976
 
# Dakota09
 
# Khloe14
 
# Paul1957
 
# Horsepower Lovecraft
 
# Egbert Bentley White
 
# Margaret11
 
# Brittany1
 
# Michelle11
 
# Dillon2008
 
# Henry4
 
# Samuel49
 
# Justin87
 
# Destiny89
 
# Cheyenne15
 
# George Debian Bush
 
# Jack3
 
# Samuel19
 
# Susan25
 
# Jalen81
 
# Benjamin Kenobi Sr
 
# @meganamram
 
# Myspace Tom
 
# Jennifer1
 
# Ashley2009
 
# Barbara1974
 
# Kenneth96
 
# Matthew2006
 
# Dorothy7
 
# Aidan2
 
# Shaun46
 
# Ronald22
 
# Martin Van Halen
 
# Lindsay2011
 
# Euphegenia Doubtfire
 
# Jaden21
 
# Bailey2001
 
# Sharon91
 
# Jeph Jacques
 
# Margaret5
 
# Sheena2005
 
# Arthur19
 
# Mark92
 
# Justin28
 
# Green Mario
 
# Kelsey1996
 
# Carol04
 
# Professor Monoculatus McToff
 
# Austin72
 
# Debbie26
 
# John2
 
# George Reagan Renesmee Martin
 
# Wric Tungstenfinger
 
# Raymond6
 
# Lord Mondegreen
 
# Larry1994
 
# Gary86
 
# Chad80
 
# Tracy1977
 
# Facebook Scott Fitzgerald
 
# Ashley92
 
# Destiny1983
 
# Aiden5
 
# Jayden79
 
# Debbie3
 
# Keira2002
 
# Agric Silverfinger
 
# Sierra10
 
# J. Alfred Leftshark
 
# Paul50
 
# Sierra3
 
# Steven2002
 
# Addison8
 
# Joe Biden
 
# Player Two
 
# Player One
 
# Norton Ghost Dad
 
# Eowyn L'Oreal James
 
# Sarah2005
 
# Christina Applecare
 
# Kathleen78
 
# Greg2004
 
# Tricia1
 
# Ruth3
 
# Mavis Bitcoin
 
# Bailey08
 
# Stacy07
 
# Charles18
 
# Alice1956
 
# Anonymous
 
# Frances51
 
# Steven02
 
# Sharon99
 
# Jack39
 
# Eliezer Yudkowsky
 
# Aidenn Aberforth Milne
 
# Candice10
 
# Larry Ronald Hubbard
 
# Malik2
 
# Jada5
 
# Mark Zuckerberg
 
# Cynthia1995
 
# Jacob10
 
# Kristy2007
 
# Kaitlin1976
 
# Marie10
 
# John Wilkes Knuth
 
# Henry05
 
# Cheyenne1988
 
# Caden14
 
# Wil
 
# Tricia14
 
# Delta Elroy Backslash
 
# Stacy14
 
# Lord Gaga
 
# Padme Dorothy James
 
# Frances99
 
# Thomas2
 
# Emily15
 
# Lauren Ibsen Dolores Amit
 
# Dustin46
 
# Kenneth94
 
# Debbie62
 
# Kaden61
 
# Jonathan27
 
# Trinity1989
 
# Jaina Khloe Rowling
 
# S. G. Dukat
 
# Sierra7
 
# Amanda08
 
# Minecraft Holmes
 
# Taylor1990
 
# Jaden Riley Rufio Tolkien
 
# Sherri97
 
# Tim87
 
# Joshua80
 
# Ayden1952
 
# Taylor1998
 
# Gary1951
 
# Gary8
 
# Sarah55
 
# Dakota94
 
# Marie12
 
# DragonBall Cooper
 
# Louis Reasoner
 
# Jason15
 
# Marie3
 
# Madison80
 
# Flash Groupon
 
# Karen3
 
# Frances29
 
# Mark2007
 
# Elon Musk
 
# Marissa Mayer
 
# Michaela2006
 
# Lisa1995
 
# Virginia2006
 
# Tina Belcher
 
# Shaun6
 
# Susan11
 
# Notorious L.H.C.
 
# Keira10
 
# CMOS Def
 
# James URL Jones
 
# Donna2
 
# Dunston Chexin
 
# Tonya22
 
# Joshua84
 
# Madison19
 
# Deborah3
 
# Aiden1
 
# Livemau5
 
# Ashley8
 
# Tonya38
 
# Apple Martin
 
# Donald19
 
# Khloe2
 
;feed_text
 
# #LOVEATFIRSTSIGHT#JUSTMARRIED
 
# If it quacks like a duck... in spaaace!!!
 
# where should i put this cool new tatto?
 
# turns out building a shrink ray was cheaper than genetically engineering giant carrots
 
# we'll take the next one #CasualRacism
 
# It isn't safe on earth any more. Goodbye!
 
# What do you mean it wasn't set to radians?
 
# new phone who dis
 
# this is the lowest budget version of "day of the Triffids" yet
 
# terminal velocity is a myth
 
# Stuck in a loaded canon. Again. FML!
 
# should i see a doctor about this?
 
# He did say it was edible
 
# I'll never see her again... i just... i just don't know how to go on... :(
 
 
# Allons-Y!
 
# Allons-Y!
# The Dissolution of Parliament.
+
# almost, but not quite, entirely unlike tea
# Dad, Mom, meet my boyfriend
+
# always darekst before the dawn
# Is it canibalism if i eat my own nose?
+
# Always get a full nights rest
# mario Kart is harder in real life
+
# Always watching, never speaking. WHAT does he want?!
# Parrot to the nth root of a short journey
+
# Am I a Pokemon?
# Pre-calc: what is the surface area of this blood stain?
+
# Amazing optical illusion! Can you see the duck?
# Threaten large birds... check.
+
# Amazing! Discovery! on mars!
# Bunny eating lettuce. tots adorbs! ^_^
+
# amazons newest delivery method
# Why do we call it "behedding" and not "bebodying"?
+
# Amirite??
# Got your nose!
+
# An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
# Making a new house rn brb #Homeless
+
# An eight-stringed octopus?
# I'll just go buy cigarettes
+
# AN I wuz like, GRRRRL Yo beak is so flash!
# ksp mission success
+
# An unsuccessful bike design...
# All flesh is grass
+
# ancient skull loses eye socket in fencing accident
# That's too much, man!
+
# and a bluetooth made of pretzel sticks
# Where did THAT come from?
+
# And so it began...
# Something seems to be wrong with my car
+
# And so the hunt begins!
# i am never going to the beauty school for my manicure again
+
# and suddenly, popcorn
# been stuck here for a while, any ideas?
+
# and that is the story of the very angry caterpillar
# Not a fruit
+
# AND THAT'S HOW i MET YOUR MOTHER.
# Cakephants are my new friends
+
# And the least of the five evils is....
# big ben is going down.
+
# and then there were nine
# My hobby: pretending blank posts have content.
+
# And then, you lightly drill the oven for 15 minutes on high
# Minister! We're running out of time.
+
# And this, my dear, disproves the coriolis effect.
# Too much Acid. Got to sort life out.
+
# And thus, the polar carrot displaced the earth.
# look what happened to my satellite
+
# and to think this is where it all started
# Finally found a way to disable the flash on my camera
+
# 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
 +
# 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??
 +
# Artistic recreation from new fossil find
 +
# 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!
 +
# astonishing how xenia flew that plane
 +
# 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 that moment, something snapped.
 +
# 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!
 +
# AUUUGH
 +
# Aw, man, I hate gelatinous cubes...
 +
# Aw, yisss!
 +
# awesome sunrise this morning #lenscap #nofilter #hashtag
 +
# AWESOME! This cloud was so much larger than my thumb!
 +
# awkward! . . .
 +
# Aww, honey, don't cry...
 +
# Awwwwwwwwww, poor meteor!
 +
# Ayyyy LMAO!
 +
# back on tinder!
 +
# 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
 +
# balloon ninja strikes again
 +
# 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
 +
# BDSM bringing another relationship together
 +
# been stuck here for a while, any ideas?
 +
# Beer Pong alone again! #YOLO
 +
# Before his untimely death.
 +
# Being john "Bowler Hat" Malkovich
 +
# Belgium
 +
# Best Christmas gift EVER!
 +
# best day evar!!!!
 +
# best easter ever
 +
# Best funeral ever!!!!! YOLO
 +
# Best Halloween costume yet!
 +
# Best map projection ever
 +
# best republican caucus ever!
 +
# best snowman ever!
 +
# Best. Funeral. Ever.
 +
# better go inside, I need to polish my shoes
 +
# Beyond Level 256...
 +
# big ben is going down.
 +
# Big Bird, An orwellian Short
 +
# big black orb #shit #soyuzfail
 
# Big bowl of star-flakes
 
# Big bowl of star-flakes
# that's me!
+
# big data strikes back
# I've made a huge mistake
+
# bip bip bip bip bip bip bip bip bip bip bip bip bip
# All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
+
# Bird seed companies HATE him
# Just another day in paradise
+
# birdcoin is looking to be a huge success
# Not Again :(
+
# Birds are less cute the closer they are.
# I see you have constructed a new lightsaber
+
# Birds: secretly a type of banana.
# 🇺🇸 USA! USA! USA! 🇺🇸
+
# Birdwatching is an exhausting affair, especially when the birds fight back
# Worth it for the karma.
+
# bit nosy, aren't you?
# The knids are hungry
+
# Black as the crows that peck out my eyes
# First day of school.
+
# Black begins and wins.
# unicycle beowulf cluster seeks riders
+
# Black box recorder
# quack quack, motherflipper
+
# Blackout @ moscov metros station, i have no idea which way the peron is. #yolo
# Trebuchet-launched into a skyscraper...
+
# blob monster attacking our city lol brb avoiding certain slimy doom lol
# That's not a nut!
+
# Blood for the blood god! Skulls for the skull throne!
# like my new haircut?
+
# bob ross has only become more powerful in death
 +
# Boba fett? Boba Fett? Where!?
 +
# Bomber one on approach
 +
# Bonehenge
 +
# bowTieght!
 +
# 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
 +
# Brittish think tank
 +
# brokkolis and sweet potato, nice
 +
# Bulls don't often sit like this!
 +
# Bunny eating lettuce. tots adorbs! ^_^
 +
# bURMA sHAVE!
 +
# Burnination? Huh?
 +
# Burrito night
 +
# But I wanted to see the roof...  #FirstWorldProblems
 +
# But then, everything changed when the fire nation attacked.
 +
# BUT WHERE DOES THE BLOOD GO?
 +
# BuzzFeed Quiz: Which bone are you?
 +
# Cakephants are my new friends
 +
# Can anybody help me identify this animal?
 +
# Can somebody call my cell phone? It's not lost, I'm just lonely.
 +
# Can you see it? #illuminati #war #drobe #conspiracy
 +
# 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 sleep, clowns will kill me. Cant sleep, clowns will ...
 +
# capes are in fashion
 +
# Captain obvious strikes again
 +
# captcha: Enter picture description
 +
# Car broke down on the side of the highway.
 +
# Car tiddlywinks proves success
 +
# Cat in a hat or fox in a box?
 +
# Cat tax paid
 +
# Catman
 +
# caught the sunset tonight at midday
 +
# Ce n'est pas un canard
 +
# 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
 +
# Changing Guard at Buckingham Palace
 +
# Check out my bowling Ball trophy!
 +
# Check out my new cat! Sooooo cute!
 +
# Check out my new OC
 +
# check out my new pet
 +
# 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!
 +
# cheese = life
 +
# Choose your snuggle toy
 +
# Christ, what an asshole.
 +
# 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 to show secret text
 +
# CLOCK FACE-OFF
 +
# Close the pod bay door, Hal.
 +
# 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, put on the slippers.
 +
# Come with me on a journey into time and space
 +
# Conflicting messages
 +
# 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
 +
# 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!?!?!??!?!??!
 +
# Cory Doctrow finds Ron Paul's secret Lunar base
 +
# could anyone help me find my contacts?
 +
# cowabunga dude
 +
# cowabunga, dudes!
 +
# crawling and texting #badcombination
 +
# crawling in my skiiiiiiiiiiiiiiin
 +
# crenellate good times, c'Mon!
 
# Crocodile Pink Eye
 
# Crocodile Pink Eye
# now you're hungry too.
+
# Cruise Kingdom
# Never will follow the instructions on google maps again.
+
# cthulu caught me slipping
# one does not simply wok into mordor
+
# cthulu wants what cthulu wants
# who do you think I am?
+
# Cuneiform writing influenced fence makers for generations
# The HORROR!
+
# curiosity fed the cat
# Best. Funeral. Ever.
+
# Curiosity Stops Sending Photos, Transmits Crude Line Drawings Instead.
# Top of the world
+
# cuteness depleted after 20 pictures!! #ripoff
# NO. JUST NO.
+
# Da_FEELS###!
# my scarecrow took some additional measures of its own...
+
# Dad is going to lose his head over this. FML.
# #nofilter
+
# Dad, Mom, meet my boyfriend
# The time has come.
+
# Daisy, Daisy, Tell me your Answer True.
# better go inside, I need to polish my shoes
+
# DAMMIT JIM, I'M A DOCTOR NOT THE DOCTOR.
# First time posting, please be nice
+
# damn tree!
# #fallingfromorbit
+
# Damn, she said no capes. I should have listened.
# MY GIRL'S SCIENCE FAIR PROJECT WAS A BLAST!
+
# Damn, two o'clock already?
# I CHOOSE YOU!
+
# damn. that squirrel's got a ball
# what happens when you take a selfie with a 500mm lens
+
# damned ninjas
 +
# damnit, another drunken tree in the road
 +
# Dance contest! #YOLO
 +
# Dang! Inflated tires with Helium again!
 +
# Danger: low clearance
 +
# 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 19 of my face wash avoidance program
 +
# 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!
 +
# 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.
 +
# dentists are going crazy about this weird Teeth whitening trick discovered by British mum. as seen on CNN.
 +
# Desystematized chronodynamic balancing detected in VX Module core
 +
# devil went down to walmart, bought himself a fork
 +
# Dey see us Rollin'. Dey Hatin'.
 +
# Did i remember to lock the car?
 +
# Did nyancat open a cycle repair shop?
 +
# did this exist as a microwave?
 +
# Diet is working!
 +
# Dinosaur extinction: The final Phase
 +
# 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.
 +
# diy abortion
 +
# Do I look fat in this photo?
 +
# Do I look like a penguin?
 
# Do my feet look fat?
 
# Do my feet look fat?
# 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!
+
# Do my feet smell?
# Foreign clouds take british clouds' jobs
+
# Do Notte Buye Betamacks.
# Oh no, it's the moon
+
# Do the Harlem Shake
# Have you ever seen a sitting cow before?
+
# Do you care to #engage with this #content
# two great tastes that go great together
+
# Do you feline lucky, punk?
# just look at that motherfucking satellite
+
# Do you have a lighter?
# I say: nuts to that!
+
# do you reckon i can feed this to my pet spider?
# discovered a new shortcut for making toast
+
# Do you think this will get me a job designing Pokemon?
# the event horizon returned
+
# Doctor whheeeeeeeeee
# I've never been so aware of my own hunger
+
# does anyone know how to get rid of eye worms?
# 100 meters in 4 and a half seconds
+
# Does anyone know if this is supposed to happen
# This is not a camera, it's a washing machine!
+
# Does anyone know why it is doing this?
# Sometimes pickles just have to be pickles.
+
# does my ass look big in this?
# No guitar without a sombrero
+
# Does my eye look bloodshot?
# [user was banned for this text]
+
# Does my hair look like it's thinning?
# I've been robbed!
+
# Does this look infected?
# Thanks Obama!
+
# Does this look like pink eye to you?
 +
# Doesn't like being referred to as garfield
 +
# 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!
 +
# don't be silly, horses cant fly planes.
 +
# 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 get the lava wet! you'll ruin everything!
 +
# Don't have a cow, man
 +
# 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 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
 +
# Done my nails, don't they look pretty?
 +
# Dons Quixote start their parallel quests
 +
# doors from ikea: the pinnacle of excellency
 +
# Down time
 +
# Drat, the internet is leaking again.
 +
# drill baby drill!
 +
# drive like an ass, be slapped like an ass!
 +
# drivers feel stupid for not knowing this one simple trick
 +
# Dryads. that is all.
 +
# DUCK CONFUSED ABOUT DRESS COLOR, FEELING DEPRESSED
 
# Duck Duck Go's secret algorithm
 
# Duck Duck Go's secret algorithm
# Robert'); Drop Table students;--
+
# DuckDuckGoes!
# Bangarang Motherfuckers
+
# duckface is the new radians
# ?????????????
+
# Dude Did you know you could smoke almost anything?
# I put on my wizard robe and hat
+
# Dude, I can totally catch this!
# a graph showing the amount of time i spend outside
+
# Dude, where's my car?
# this one's over 15 kt bitches!
+
# Dude!  Dude?  Dude.
# Can anybody help me identify this animal?
+
# DX(X^LN(Y!)/xy*pi=screw you
# Sometimes all you can do is wait
+
# Early Heavy Metal Story Boards Discovered
# Bacteriophage is worth 6 points
+
# Early stages of Giraffe evolution
# #me #throwbackthursday
+
# EARTH HAS 4 CORNER  SIMULTANEOUS 4-DAY  TIME CUBE  WITHIN SINGLE ROTATION.  4 CORNER DAYS PROVES 1  DAY 1 GOD IS TAUGHT EVIL.
# #DANGERZONE
+
# Eat my shorts
# Wow. Just, Wow.
+
# Eating my breakfast!
# hey, so, we need to talk about your sphere-packing problem.
+
# eclipse o'clock
# the first official thing i stole from my college roommates.
+
# Edward James Olmos to reprise his role as captain picard
# Parlez vous Francais?
+
# Edward, no!
# Is this room 101?
+
# Einstein, protesting the copenhagen interpretation, shaves his head.
# if dreams can't come true, then why not pretend?
+
# elevator be damned, I'm going to keep going until I see myself!
# Anyone know what's wrong with my thumb?
+
# emergency butter delivery
# Rock, paper, FACE
+
# engage!
# Snapped this with my phone, what is it?
+
# ESA probe enters black hole - first photos!
# If you liked it then you should've put a ring on it
+
# Et boum! C'est le choc!
# Weird trick to losing belly fat and parts of face
+
# Even if you bind his beak, an eagle will drool on you out of spite
# in theathers, close to you
+
# Even More Pictures of My Sweet little babies.
# Somewhere, this exists.
+
# even the sun cowers in fear!
# my new toaster has some strange attachments
+
# Evenutally, they'll write moby dick.
# Ayyyy LMAO!
+
# ever get the feeling you're being watched?
# my rockets have formed a cooperative but I have to do the dishes
+
# every breath you take, every move you make
# in an ideal vacuum, at what point does this fish realize it's going to die?
+
# Every day my damn cat makes this face
# Everything maKes perfect sense now.
+
# everyday i'm shoveling
# my new duvet cover!
+
# Everything maKes perfect sense now.
# The press conference lasted shorter than expected!
+
# everything makes sense now
# Oh, that's where I left them!
+
# Everything truly IS awesome!
# I certainly wasn't going to bury this one
+
# Everything's coming up Milhouse
 +
# Evolution of puzzles
 +
# Exact composition of this... thing... is yet to be determined.
 +
# Exes, am I right?
 +
# Existance is an illusion
 +
# Extreme beer pong
 +
# FACESWAP  lol
 +
# 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?
 +
# feeding my pet
 +
# 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 found a way to disable the flesh on my camera
 +
# finally got that squid stache
 +
# Finally here!
 +
# Finally, new tires
 +
# Fire can sometimes be hot?
 +
# First day at school
 +
# First day of school.
 +
# First found evidence for Einstein–Rosen bridges.
 +
# 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
 +
# Fish hooks REALLY REALLY HURT
 +
# Fission, fusion, what's the difference?
 +
# Flat file viewing
 +
# Fluffy's awfully well behaved today
 +
# flying car - it is now officially the future
 +
# Flying fish had no affect on it
 +
# FML
 +
# 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 my book report presentation, i'll be acting out "50 shades of gray"
 +
# For sale: planet, barely used. slight pest problem
 +
# for science!
 +
# for you
 +
# Foreign clouds take british clouds' jobs
 +
# Forgot to blow out my candles before I cut the cake
 +
# 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 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 garden, wtf?
 
# Found this in my garden, wtf?
# Hoverboard to full power!
+
# Found this mushroom, thought of you
# kill the pig cut his throat spill his blood
+
# found this on google maps earlier.
# research shows residues of legs and feet in trees dna
+
# Found: bra left abandoned on romantic beach.
# Black as the crows that peck out my eyes
+
# fourier transforms are too hard!!
# Dinosaur extinction: The final Phase
+
# Frank, the newest herald of galactus.
 +
# free the beast!
 +
# Freedom in a nutshell.
 +
# Freshly waxed floors + new socks
 +
# FRom the creators of AIR BUD, presenting air chip, the Soccer squirrel.  watch your Nuts! Summer 2016
 
# fuck fuck shit shit, what did i do last night?
 
# fuck fuck shit shit, what did i do last night?
# What could possibly go wrong™?
+
# FUCK NOT AGAIN
# Kite powered bike leaves oil executives speachless.
+
# Fucking CAKE
# ack
+
# Fulfilling western ideals!
# Do you care to #engage with this #content
+
# Funky fresh beats #sudowoodo
# #lifehacks
+
# funny how we type xoxoxo for kisses but oxoxox for an oxen stampede
# #duckface
+
# furrowed mustache
# Aside from the Fact I Was Buried Alive, The day has been surprisingly good.
+
# Gentlemen, fire up your emacs buffers
# does my ass look big in this?
+
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
# #ALLLLLLBYMYSELF
+
# Gentlemen.  If you find it you are set for life.
# "sun" glasses.. lolz. heh.
+
# George insisted there were better things to worry about, but I had a feeling this was important.
# results of toddler-sourced upscaling algorithm
+
# George was a good little monkey, and always very curious.
# I would never have believed in atlas if I hadn't seen him for myself
+
# get spare glasses before meeting rod serling
# engage!
+
# Get that camera out of my face!
# na na na na na na na na na na na na na na na batcat! batcat! Batcat!
+
# get your ass to mars
# "Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
+
# Giant sentient banana found in space
# check out my usb sword!
+
# go home chitty chitty bang bang you are drunk
# the floor is made of lava. send help.
+
# Go home Dumbledore. You're Drunk
# too much lens flare?
+
# go home elephant you are drunk
# The new Kerbal Scientific mission is out!
+
# Go purr yourself!
# I told him, that retracting flaps would destabilize plane, but he wouldn't listen
+
# God i love sesame street
# Done my nails, don't they look pretty?
+
# God Save The Queen
# I dream of death
+
# goddamnit, that's the fourth time this week!
# I bought you a RING... ooh shinything!
+
# Goldilocks party!
# leapfrog, anyone?
+
# gone fishing
# Got a hip mustache! What do y'all think?
+
# good old troubleshootin'
# #delfie
+
# Goodnight moon
# Man, that cool-ade guy really lost some weight lately.
+
# google bots have uncovered some missing bits
# What a beautiful time to be alive!
+
# GOOGLE GLASS IS WORKING GREAT
# Oh no! Not again.
+
# Google's streetview prank zoomed way out.
# Why do people do this?
+
# Got a hip mustache! What do y'all think?
# awesome sunrise this morning #lenscap #nofilter #hashtag
+
# Got a message from an adoring fan today! <3
# You'll never guess what happens next...
+
# got Peanut allergies #yolo #swag
# look at my new watch! #justflavourflavthings
+
# got to meet with charlie sheen
# Car tiddlywinks proves success
+
# Got your nose!
# Purple mushrooms roaming the world killing people
+
# Gotta catch em all.
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+
# gotta take big ben down a peg
# Today i am a Chinese clock
+
# GPS Signal lost.. damn it!
# This just in: baby robot duck terrorises populace
+
# Grab that snake, dont let it go, its lunchtime ya'know
# Magnificent as fuck
+
# Grandma's new boyfriend is a keeper!
# the rest is darkness and decay
+
# Gravedigging time
# 99% of people are too scared to share this post! share if you are one of the 1%
+
# GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
# I was just trying to install freebsd...
+
# Great ScotT!
# GUYS HELP IS THIS SWINE FLU?
+
# Great, now I forgot where I left the car.
# welcome to the space jam
+
# Growing up in Texas, they didn't teach us this part of the water cycle.
# Wait for it...  
+
# Guess I'm stuck here #permadeath #lol
# I thought it would be bigger
+
# Guess that "sun" was really important after all
# Fluffy's awfully well behaved today
+
# Guess where I'm taking this photo from.
# Turkey Drumstick Stonehenge was surprisingly compelling!
+
# Guillotine needs to be recalibrated
# So... those were real
+
# Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
# The Captain Crunch Kraken
+
# GUYS HELP IS THIS SWINE FLU?
# Click to show secret text
+
# Guys, I Found a Unicorn!
# This elevator has no 'down'!
+
# Guys, this picture is awful
# No wants to hear me talk about my cat
+
# ha ha ha... no.
# I don't want to set the world on fire
+
# Had to settle for a beard
# I forgot the two scoops of rasins!
+
# haha oh my cat
 +
# haha! i am dead inside!
 +
# Hams apparently don't make good wheel replacements
 +
# HAN SHOT THIRD #YOLO
 +
# Happy Birthday, M C Escher
 +
# Happy Birthday!
 +
# 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?
 +
# 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 stormin' da castle.
 +
# Have you closed the airlock before we took off?
 +
# 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!
 +
# He did say it was edible
 +
# He had to learn the hard way: if i clean a window, it will definitely be clean
 +
# he is so cool
 +
# He left me! :ccc
 +
# He nailed it!
 +
# He thought 'chutes were for the insecure
 +
# He was never seen again
 +
# He's been there for three days
 +
# 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 wanted. inquire within.
 +
# Help! HELP! I need an adult
 +
# Help! my mustache is eating my fammmmmrhmhghhh
 +
# Here comes the sun, do do do do...
 +
# 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 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, so, we need to talk about your sphere-packing problem.
 +
# 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!
 +
# hgghjg
 +
# Hi ho, hi ho, it's off to work we go
 +
# Hide! It's Un Chien Andalou!
 +
# High Bro, five.
 +
# His name is robert palmer.
 +
# Hmm The Earth halves kinda look like buts.
 +
# Hmmmm, which one isthe Vegan option?
 +
# hobbitses
 +
# HODOR!
 +
# holy crap, seems the generate dog function works for humans too!
 +
# Holy Meals on Wheels
 +
# Homework's done, finally time to get wasted
 +
# Homo helicopteris captured in bali
 +
# Honest, officer, that's what happened!
 +
# Hope that wasn't a granny knot
 +
# Hoping this makes it past customs
 +
# horses can't use chalk. stupid horse.
 +
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 +
# Houston, we are the problem
 +
# Hoverboard to full power!
 +
# how can mirrors be real if your eyes aren't real?
 +
# How did I get here?
 +
# How did I 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 turn this off?
 +
# how do you get the screensaver off?
 +
# How does this work again?
 +
# How Else dID you think they make Toothpicks?
 +
# How is this still a thing?
 +
# How many can there be?
 +
# How much absinthe did you say was in this?
 +
# how to make roommate stop pooping everywhere
 +
# How's My new haircut?
 +
# hungry hungry fencing subcontractors
 +
# Hunka Hunka burnin' steel
 +
# I  think I need new glasses.
 +
# I 'M out of the acorn
 +
# I always fast forward through this part.
 +
# I am a beautiful person.
 +
# I am become Death, Destroyer of insects smaller than 4mm
 +
# I AM BECOME DERP destroyer of brains
 +
# I am infinite.  i am eternal.
 +
# 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 beseech you, in the bowels of Christ, think it possible that you may be mistaken.
 +
# I blame lack of regulation
 +
# 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 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 jump that far!
 +
# I CAN NEVER STOP SCREAMING
 +
# 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 did not account for the flames
 +
# 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 remember taking this pic!
 +
# I don't get it either.
 +
# i don't have time for this!
 +
# I don't know
 +
# 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 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 that's supposed to go there...
 
# I don't think this is working
 
# I don't think this is working
# they're all dead, dave.
+
# i don't think we're playing zelda anymore...
# Fancy
+
# I don't want to set the world on fire
# Ugh, i'll never understand art.
+
# i donna think it means what you think it means
# Moses lied to me.
+
# I dream of death
# ♪♫♪♫♪♫♪♫
+
# I EXPECT YOU TO SAY 'OW OW OW,' MR. BOND
# omfg, space bugs
+
# I feel like I've been saying "wow, my mom was right" a lot recently
# found this on google maps earlier.
+
# I finally killed the weird recognizer that was following me
# Check out my new sonic oc!
+
# I find this picture reflects my soul.
# Maybe "Sandworm Petting Zoo" was a bad idea.
+
# I finished building our pool, but now i realise we can't afford the water to fill it.
# get your ass to mars
+
# I fixed it guys
# if you squint, you can see that it's actually an adequately bearded grain of 1986 millet signing the insurance policy of versailles.
+
# I forgot the two scoops of rasins!
# Dominos delivers!
+
# I forgot to get a plane
# How did I get here?!?
+
# I forgot to turn the tap off lol
# "Space duckin'" By led blimp
+
# I fought the law. They won
# Our flying car attemps seems to got out of hand
+
# I found a three fingered kitten!
# RUNAWAY UNICYCLE!!
+
# I found it!!!!!!!
# Selfie in corner store #35.   $10,000.
+
# I found the missing pieces!
# reverse microwave oven
+
# i found this ancient manuscript. can anyone translate it?
# this got me banned from chuck e. cheese's
+
# I found this in my navel, should I be worried?
# WARRRBLGARBL
+
# I found this little guy in the woods near my house
# back on tinder!
+
# I found this on my arm when I woke up this morning. Can anyone tell me what it is?!
# Damn, two o'clock already?
+
# I got a new geigerteller
# Here comes the sun, do do do do...
+
# I GOT MY EYEBROWS DID
# My Hobby: freaking people out
+
# I got the job!
# Research shows a new perspective is easily gained.
+
# I got the keys to the city.
# that's what she said... assuming I heard Her right. Can I come home now?
+
# I got this in the mail today
# Fucking CAKE
+
# I guess I only have myself to blame.
# we appear to have exhausted the low-hanging scientific fruit
+
# I guess the cat didn't really want to go to the vet
# Best Halloween costume yet!
+
# I has a sad
# thank you for restoring my faith in the justice system
+
# i hate
# These aren't my sandwiches
+
# i hate it when this happens
# This photo was taken from my iphone
+
# I hate the carnival so much right now
# I guess I only have myself to blame.
+
# I hate this channel
# I'm a fighter!
+
# I hate trying to win bowls of cereal in 'skill tester' machines
# Copernicus: The early years
+
# I hate waking up from a really good dream
# Prius Love
+
# i hate you.  die in a fire.
# marvel universe howard the duck returns
+
# i have a bad feeling about this.
# Wanted for murder. If found, contact the police immediately.
+
# I havE A SLIGHT MELTING MOTHER-IN-LAW ISSUE
# BALDUR's GATE YOU have all been poisoned and have 14 days to give me 2000 gold HA HA HA
+
# I have never been happy
# My dad in the army
+
# I have tasted many fish
# Early Heavy Metal Story Boards Discovered
+
# I hear someone yelling at me... i have no idea why
# Stop stalin and make up your mind
+
# I hope he's not hungry
# I'm a Real Boy!
+
# I immediately regret eating that
# Every day my damn cat makes this face
+
# i invented a thing
# bowTieght!
+
# I just bought this
# Pretty sure ball pits aren't supposed to be like this
+
# I just can't see the point anymore
# SEINFELD in SPAAAAAACE!
+
# I just don't get recursion.
# Aaaaaargh
+
# I just joined the Kite Kite Kite!
# australia is not NZ!
+
# i just want to do existential things with my friends
# #hoax
+
# I just want to watch the world burn
# Check out my new cat! Sooooo cute!
+
# I knew I nailed it!
# ants, zomg, ants, everywhere
+
# I KNEW I WASN'T GOING TO BE ABLE TO WALK IN THESE!
# i need one of those 'l'-shaped tetris pieces. you seen any?
+
# 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.
# Sun deflation: optimal
+
# I knew it would be a bad idea to go during the mating season
# Did nyancat open a cycle repair shop?
+
# I knew pi would lead to this
# Nasa is fully funded
+
# I knew there would be side effects
# Is that a huge salad falling over new york?
+
# I like this picture
# Exact composition of this... thing... is yet to be determined.
+
# I loled my head off!!!
# worst transformers generation ever. bring back gen 1.
+
# I looked, and behold, an ashen horse; and he who sat on it had the name Death; and Hades was following with him.
# #Long_Exposure
+
# I lost my tooth
# The secret to infinite storage space
+
# I lost my wits
# The birds found the hobbit hole
+
# I lost my wrist
# Bazookateer crossing
+
# i love a good featureless white void
# goddamnit, that's the fourth time this week!
+
# i love my family
# "Use the force, Harry" - Gandalf
+
# I Love Playing Piano during Duck Mating season
# First post, be friendly
+
# I love star wars!
# Apparently it's a thing now...
+
# I mean, it's no mona lisa, but I think it's at least, like, a last supper
# I think I need new glasses.
+
# i miss myspace. *sigh* #thegoodolddays
# Testing my new DIY nuclear power plant
+
# I mistook myself for a bird
# HODOR!
+
# I need an adult. -- I am an adult.
# forgot to turn the oven off!
+
# i need one of those 'l'-shaped tetris pieces. you seen any?
# I can't even. But I am taking evening classes.
+
# i need to do my laundry more often.
# I don't think that's supposed to go there...
+
# I never get a space ship, I never get anything!
# amazons newest delivery method
+
# I never thought that the job of data mining would be so aerobic
# I'm so lost. My gps told me to go this way, and now it has stopped working entirely
+
# 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 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 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 should not have tried those shrooms...
 +
# I should really separate those
 +
# 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 TELL YA, NOTHING BEATS A FRIED EGG ON TOAST!
 +
# 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 lost my dorsal fin
 +
# I think i made a point!
 +
# i think i need to get out more.
 +
# 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 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 this is the wrong python script
 +
# I think we deserved it.
 +
# 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 maybe if I uninstalled flash...
 +
# 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 walk a lonely road, the only road that i have ever known...
 +
# i want to ride my bicykle (i found it in pripjat)
 +
# I want to run, but my legs won't move :(
 +
# 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 going to eat it, but then I found Out It had Gluten
 +
# i was gonna eat that
 +
# I was just mugged by an angry mob of hipsters!
 +
# I was just trying to install freebsd...
 +
# 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 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 wish I could afford the monopolar model...
 +
# 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 what will this lead to...
 +
# 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 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 that
 +
# I'll catch it one day
 +
# I'll just go buy cigarettes
 +
# 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.
# uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
+
# I'll never see her again... i just... i just don't know how to go on... :(
# Lucky Charms, now with the Higgs Bozon!
+
# i'll see you on the dark side of the moon
# damn. that squirrel's got a ball
+
# 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 a bird lol
 +
# I'm a fighter!
 +
# I'm a Real Boy!
 +
# I'm a wizard!
 +
# I'm afraid I can't explain myself, sir.
 +
# i'm being ironic
 +
# I'm going to be smashed to bits
 +
# 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 not saying it was aliens but it was aliens
 +
# i'm now 75% more efficient
 +
# 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 sorry, I'm gluten free
 +
# I'm, like, a minecraft genie!
 +
# 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 got hurt feelings
 +
# 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 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.
 
# 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.
# 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
+
# if democracy fails you can count on stalin!
# #vampiremirrorselfie
+
# if dreams can't come true, then why not pretend?
# The spirit is strong, but the car is totaled.
+
# If i am in your dreams at night, in those dreams i want you to describe to me the sources of international law
# best republican caucus ever!
+
# if i don't return by 5pm give this photo to my kids when they grow up
# So, this happened.
+
# If it quacks like a duck... in spaaace!!!
# About time someone brought me that flattened basketball
+
# if only i had friends...
# New pet! #soadorable #imbleeding
+
# if there is no water on mars, at least there is data
# flying car - it is now officially the future
+
# if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
# 1 like = 1 little girl feeded to this cancer dying walrus :'(
+
# if you got it, flaunt it
# I knew it would be a bad idea to go during the mating season
+
# If you hadn't invented it, it would have to exist.
# So...Magnets, right?
+
# If you liked it then you should've put a ring on it
# what a bummer
+
# if you squint, you can see that it's actually an adequately bearded grain of 1986 millet signing the insurance policy of versailles.
# Why do dogs like this?
 
# #saturday #memories #beautiful
 
# Do you feline lucky, punk?
 
# that awkward moment when you are staring at Barad-dûr for its architectural merits.
 
# Nasa declares war on Gwaihir, Lord of the Eagles
 
# rm -rf /
 
# best day evar!!!!
 
# Dang! Inflated tires with Helium again!
 
# I feel like I've been saying "wow, my mom was right" a lot recently
 
# This trebuchet is set to self-destruct!
 
# Pic of my organic free range flowers. Only $79 on etsy.
 
# Where did this road come from?!?
 
# #Toobigtofall
 
 
# If you're brave enough...
 
# If you're brave enough...
# My selfie stick broke.
+
# If you're happy and you know it, keep it to yourself
# This definitely wasn't in the Bible.
+
# If you've got a moustache...
# Doesn't like being referred to as garfield
+
# Ikea art
 +
# 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 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, this probably wasn't the best way to teach addition
 +
# 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
 +
# Initiate evasive maneuver!
 +
# Ink-blots describe how they see students
 +
# inner city air conditioning
 +
# Insert a turnip into the serial port.
 +
# Interior Crocodile alligator, I drive a Chevrolet movie theater
 +
# International relationships are getting worse
 +
# Interns wanted: Must have 5TB+ of Storage Space.
 +
# intertial reference frame, activate!
 +
# introducing the yolo distribution
 +
# 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 midnight yet?
 +
# Is it really today, already?
 +
# 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 a war walrus?
 +
# Is that what I think it is? in my salad?
 +
# is the eject button meant to do this?
 +
# Is there a bee on my nose?
 +
# Is there really any point? FML
 +
# 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?
 +
# Isn't he cute?
 +
# 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 cat ass trophy
 +
# it's a faaaaake!
 +
# It's a Finger trap
 +
# it's a metaphor
 +
# It's a timey-wimey time-lord
 +
# It's ALIVE!
 +
# 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 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
# 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!!!
+
# It's not a good part of town
# Check out my new turntable! #audiophile #lookatme #vinyl
+
# It's not a moon, it's a space dolphin!
# everything makes sense now
+
# it's not what you think
# Visual representation of Dubstep
+
# it's only awkward if you think it's awkward #awkotaco
# Cant explain that
+
# It's only what I've been looking for for my entire life!
# i need to do my laundry more often.
+
# it's pretty dark in this box
# Mari-OH
+
# It's smaller on the outside
# New candidate announces run for presidency of the united states
+
# It's the great pumpkin, Charlie Brown!
# the dark side of the moon, amirite?
+
# It's the little things
# The feeling that somewhere, a duck is watching you
+
# it's the minecraft world
# hello darkness my old friend
+
# Jesus Wept
# Damn, she said no capes. I should have listened.
+
# Jet fuel *can* melt steal beams.
# Person at checkout freaked when she saw what I was buying.
+
# Jet fuel can't melt steel beams
# SUPPOrt this new alarm clock on kickergogo!
+
# Jet memes cant fuel steel belts
# Alan?
+
# Job interview today.
# The prophecy was true!
+
# John never thought a tongue fractal would hurt so much
# found this in my fridge. Think it's still good?
+
# John really wanted to travel north, however that side of the road was missing
# Stay in the moment. I want you to fully enjoy it.
+
# Joining the illuminati was the best decision EVER!
# Since the Droste Incident, federal regulations have prohibited these types of experiments.
+
# Journey warned you what would happen if you stopped believing.
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
+
# Jugghead got nothing on me :p
# Nothing new under the sun
+
# Just a little more to the right
# whoops GPS error
+
# just another cat video
# my friend posing while a plane flies by
+
# Just another day in paradise
# The cat brought in another bird.
+
# Just another standard morning coffee
# So thats What Jesus did
+
# Just combing my M.C. Escher
# NASA deny budget cuts have changed their plans
+
# just cos()
# Lord of the Rings Episode IV: Revenge of the ents
+
# just found this in my garden. Should i be worried?
# SQUIRREL WITH PENCil in mouth running around in circles
+
# Just Got A new camera phone!
# I call it: "The Futility of American Anything"
+
# Just hangin' around
# In that moment, the reddit realized he'd never wanted it to be this way. He'd never wanted any of it.
+
# just learned where milk comes from! #vegan4ever
# Apparently, it's called "BEAR Fishing"
+
# just look at that motherfucking satellite
# I told you I would make it. I'm just a little late...
+
# Just not myself today.
# New means to help collect more evidence
+
# Just one of those days
# this was in the bible
+
# just playing with my pet
# drive like an ass, be slapped like an ass!
+
# Just prior to learning I should have paid more attention in Kinematics.
# I havE A SLIGHT MELTING MOTHER-IN-LAW ISSUE
+
# Just some home decorating
# passed another hitch hiker
+
# Just took a Fourier transform of my nightmares.
 +
# just two more trips over the horizon
 +
# 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
# Is this real life?
+
# kill the pig cut his throat spill his blood
# Dude, where's my car?
+
# Kite powered bike leaves oil executives speachless.
# Spiders. Nope.
+
# ksp mission success
# oh damn! it's that time of the year again!
+
# Lack of cucumbers
# The designers of this camera literally nailed it
+
# ladies
 
# Larry asked me to be his wingman
 
# Larry asked me to be his wingman
# Why are there ants on my face?!
+
# last march of the ents
# Check out my bowling Ball trophy!
+
# Last time i buy a budget hairdryer
# the saddest moment of my childhood
+
# Later levels in Luna Lander get really fucking harsh.
# I said we'd get on like a house on fire.
+
# leaked photo of hellraiser reboot
# Oh god how did this get in here I am not good with cameras
+
# leapfrog, anyone?
# I wish I could ride in a balloon
+
# Leave this one adrift, Ishmael. Let the ocean take her
# 11 Mario facts that will blow-a your mind
+
# Legal Issues
# Press 'continue' to abort.
+
# Lego: hours of preparation, 5 minutes of Godzilla re-enactment
# The last known picture of my dignity, as it reaches from below the waves
+
# lemme at dem boigas!!!
# Well, I guess than answers the age-old question!
+
# Lemons don't smell like cheese when you burn them.
# Only managed to clock 87 miles Per hour. Crap.
+
# Let it go, let it go.... the cold never bothered me anyway.
# It's only what I've been looking for for my entire life!
+
# Let's go left, they said. The other path looks boring, they said.
# Okay, I concede that maybe using a trebuchet is not the best shortcut
+
# Let's have a blinking contest
# #Hopeicanfly
+
# Let's play "Guess what andy the anaconda ate"
# moo!
+
# LET'S PLAY A GAME OF FORCED PERSPECTIVE.
# #Nailpolish
+
# Life comes from the Ocean. We just Give them the opportunity to go back
# I solved the debt crisis!
+
# Life is a matter of perspective, really.
# Oops.
+
# Life is cruel and unyielding, and what must be must be
# My server cooling system.
+
# Life is hard three standard deviations to the left.
# well, so much for the space program
+
# Life on the moon.
# are you sure this is a commandline?
+
# Life outside the matrix
# damned ninjas
+
# Light traffic today.
# These two impress me every single day! #proudfather
+
# Like a G6, baby, like a g6
# why are my eyebrows purple and who stole my hat?!
+
# like my new haircut?
# I EXPECT YOU TO SAY 'OW OW OW,' MR. BOND
+
# Like my new nails?
# The Prodigy is in town!
+
# Likes grains of sand in an hourglass...
# emergency butter delivery
+
# linux compatible toaster at last!
# I don't think I really understand what this is.
+
# Listen, I wouldn't worry about that. . .
# Tom was feeling frisky, but i just laughed and took this pic! XD
+
# lol, no i didn't jump
# Trip to the Rockies #DUCKFACE #NOFILTER #NEVERSTOPEXPLORING
+
# 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 me, i'm from England!
 +
# 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 I genehacked a cowhorse!
 +
# look into my eyes, look deep into my eyes.
 
# look ma, no hands!
 
# look ma, no hands!
# Why should squirrel learn baseball
+
# Look man, it's never gonna happen
# welcome to Argentina
+
# Look out!
# New car flipping world record set
+
# Look upon my works, ye mighty, and despair
# i've seen enough hentai to know where this is going.
+
# Look upon my works, ye mighty, and despair!
# So long and thanks for all the fish!
+
# look what happened to my satellite
# This is what i had for breakfast
+
# look what i found underneath my pillow
# #toothproblems
+
# Look what I just ordered on amazon.com!
# Well, you can't fix what isn't broken.
+
# look what the doctors found in me!
# 突っ込むところもねい!
+
# Looks like he wants a ride. Should we pull over?
# Oh god is it still following me?
+
# Lord of the Rings Episode IV: Revenge of the ents
# google bots have uncovered some missing bits
+
# Los Angeles sure is beautiful this time of year
# hungry hungry fencing subcontractors
+
# Lost in Space...
# More advantages to USB type c revealed
+
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
# Homo helicopteris captured in bali
+
# lost, no gps. does anyone recognize this landmark?
# help wanted. inquire within.
+
# Love is creepy
# would you choose the microwave over this?
+
# love it!
# He nailed it!
+
# love it!"...The Aristocrats."
# Oy, my giblets!
+
# Lucky Charms, now with the Higgs Bozon!
# 💩
+
# Lunar hatchet throwing contest champion
# we had to get creative when the bentley didn't show
+
# Luuunch-Tiiiiiime
# Need a Haircut
+
# Macklemore concert was awesome!
# Don't have a cow, man
+
# Made in god's own image, yessiree!
# These hoof warmers are incredibly comfortable!
+
# Magnificent as fuck
# Fear the day we Mole People breach the surface of the Earth like Mewling Babes, FOR THAT WILL BE YOUR LAST! #Ihatethesun #goditsbright #isthisworthit?
+
# Magnified 10,000 times
# The tea party was right about GMO bicycles
+
# Making a new house rn brb #Homeless
# 🇺🇸 USA! USA! 🇺🇸
+
# Making a selfie.
# i've never felt so alone.
+
# Making grape Plasma, om nom nom!
# For sale: planet, barely used. slight pest problem
+
# Malcovic, Malcovic, Malcovic, Malcovic!
# it is better to light a kindle than to be a cursor in the darkness
+
# Malkovich Malkovich Malkovich
# Scientists create first man-clock hybrid
+
# Man in the Moon slumming
# It's not a moon, it's a space dolphin!
+
# man it's hot today
# photo proof for you skeptics out there
+
# Man or mouse? No need to decide!
# Your conspiracy theories are dumb.
+
# Man with face of clock discovered in Beatty, Nevada; Scientists befuddled
# reverse et
+
# Man, it's windy
# What are pixels?
+
# Man, that cool-ade guy really lost some weight lately.
# First found evidence for Einstein–Rosen bridges.
+
# Man, that was the best party in my life
# Why don't chimpanzees have beards?
+
# Manchester United had made a terrible mistake with their new striker...
# Daisy, Daisy, Tell me your Answer True.
+
# Mari-OH
# Who the shit left the fertilizer out in the open? Now we have to deal with this!
+
# mario Kart is harder in real life
# #selfie #nomakeup #nofilter
+
# married a cat
# I think I've figured out how to setup PostgreSQL
+
# Mars Instant Messenger Prototype
# Probably a universal turing machine, but too lazy to solve proof
+
# marvel universe howard the duck returns
# day 3: the turnip still refuses to break up on re-entry
+
# Massive orgy reaches climax
# GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
+
# MATE YOU HAVE FORGOT YOUR STICK
# im sure there is a dad joke in this somewhere
+
# Maths are hard
# All things considered, it turned out nice again
+
# Max gentleman
 +
# 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...
 +
# Maybe this counts as clean energy
 +
# McDonald's 1 Dollar burger explained
 +
# me and all my friends
 +
# Me llamo t-bone
 +
# Me, before the topical ointment
 +
# 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?
 +
# Meet fluffy, just showed up at my door one night
 +
# 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
 +
# Meow what seems to be the problem?
 +
# Mercator projection on a cube... Globes are boring.
 +
# Meritocracy is a pipe dream
 +
# Met Andrew Hussie At Dashcon
 
# Minecraft has fingerprints Now!
 
# Minecraft has fingerprints Now!
# My new cat is awesome
+
# Minimalist cat
# may 4th, 2015 nasa finally launches the long delayed Starbucks module for the iss. The first barista is scheduled for a three month stint
+
# Minister!  We're running out of time.
# I hate trying to win bowls of cereal in 'skill tester' machines
+
# Mistakes were made.
# RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
+
# Mmm, Spider cake!
# capes are in fashion
+
# Mmm... Vegemite
# It's a Finger trap
+
# mmm...vegemite...
# #BROKEN
+
# mmmmm.... Bones....
# lol, no i didn't jump
+
# Modern art is getting a little too modern for me.
# Mentos and lava
+
# modest pile of dinosaurs
# Birds are less cute the closer they are.
+
# Molten steel can't fuel jet beams
# YES
+
# Monday mornings
# I blame supernasa
+
# monkey movember
# He was never seen again
+
# moo!
# and suddenly, popcorn
+
# More advantages to USB type c revealed
# I never understood that part of the bibile
+
# More like, Peek-a-Pooh!
 +
# morning selfie :-)
 +
# Moses lied to me.
 +
# Mother died today. Or maybe yesterday; I can't be sure.
 +
# Mr. Potato-Head human hybrid discovered
 +
# Muahahahahahah
 +
# My 7 picture is upside down
 
# My baby is learning how to write!
 
# My baby is learning how to write!
# I have tasted many fish
+
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
# #nomakeup #justnatural
+
# My boyfriend finally proposed!
# So, it has come to this...
+
# my castles stand on pillars of sand
# Who stepped on my pop tart?
+
# My cat barfed this out
# This needs a motivational text
+
# my cat got into the *other* catnip
# Perspective issues
+
# My cat is cuter than yours.
# #flavorbomb
+
# my cat is sick
# Bay-bae lolz
+
# 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 class bet me this couldn't get 500 clicks!
 +
# My clothes need a wash...
 +
# My collections still growing! Just let's hope it won't rain soon
 +
# My dad in the army
 +
# 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 euler circuit is alive!
 +
# My feet are cold. Can anyone warm them up?
 +
# My first selfie!
 +
# my flatmate told me he would cook diner.
 +
# My four other heads and I are counting on your vote!
 +
# my friend posing while a plane flies by
 +
# 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 gout's acting up again
 +
# My halloween costume
 +
# My hero
 +
# My Hobby: freaking people out
 +
# MY HOBBY: Life size Sock Puppets
 +
# My hobby: photography
 +
# 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 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
# Wow, I didn't expect that spell to work. #Sorrydude
+
# my new app for power outages - may need to rethink this.
# sarlac ball-pit!!!
+
# my new boss
# Said the duchess to the vicar.
+
# My new cat is awesome
# take two, they are small
+
# my new duvet cover!
# Strange ingredients for a grilled cheese sandwich, but the recipe did say 'epic'...
+
# my new haircut only exists in another dimension
# #illuminati
+
# My new haircut!  
# Unfriendly comet eats latest probe
+
# My new neighbor seems a  bit odd
# Dey see us Rollin'. Dey Hatin'.
+
# My new oscilloscope has some missing parts
# The choice is simple.
+
# My new pony <3<3<3xoxo<3<3<3
# We didn't start the fire
+
# My new tattoo
# i don't remember this scene form star wars
+
# my new toaster has some strange attachments
# about to die lol
+
# My next tattoo! It means "strength and Bravery".
# Banana invasion in progress
+
# My nieghbor totoro loses his mind
# The moon landing was a lie
+
# My nose will grow now.
# Close the pod bay door, Hal.
+
# My parents took away my phone privileges
# Watch out for the squirrely wrath!
+
# my rockets have formed a cooperative but I have to do the dishes
# Like my new nails?
+
# My roomba is slower than normal
# I can take photos with my teeth!
+
# My roommate Just got home and barged into my room
# Real Eyes Realize real lies.
+
# My roommate ordered pizza - I didn't save him any.
# ...Freudian sense tingling...
+
# my scarecrow took some additional measures of its own...
# dentists are going crazy about this weird Teeth whitening trick discovered by British mum. as seen on CNN.
+
# My screen test for Top Gear didn't go well...
# Barraco Barner is our nasion's prezident.
+
# My selfie stick broke.
# Oh God! It's happening again!
+
# My server cooling system.
# There goes the neighborhood...
+
# my taco face
# ANGRY CATS SMASH ANGRY BIRDS
+
# My tastes are very... singular
# and then there were nine
+
# my time machine isn't working again! D:
# Foiled again by the bell curve
+
# my toothache has got worse recently
# i wonder why you left me here.
+
# My trip to Europe #selfie
# This NSA intercept program is really getting out of hand.
+
# My vacation to the Area 51 Testing site!
# I Love Playing Piano during Duck Mating season
+
# my wonderful dad!
# In hindsight, it makes perfect sense
+
# Myspace tom to ground control- 
# Wait, am I 30 years too late for Normandy?
+
# mYTH BUSTED!
# I thought of it, and it happened
+
# na na na na na na na na na na na na na na na batcat! batcat! Batcat!
# Man, that was the best party in my life
+
# nasa and the Post office collaborate on new postage stamp
# That was when things started to get a little weird.
+
# Nasa declares war on Gwaihir, Lord of the Eagles
# I'm lost without your love, baby
+
# NASA deny budget cuts have changed their plans
# Hide! It's Un Chien Andalou!
+
# Nasa is fully funded
# The unforgiving war on health
+
# Need a Haircut
# Self Portrait: Complete.
+
# Neil Degrasse Tyson is having a bit of an odd day.
# devil went down to walmart, bought himself a fork
+
# Neither the hero this city needs or deserves, still he was the only hero this city had.
# I lost my wits
+
# Never bring a blowgun to a knife fight.
# 5 nights at freddies 4 #letsplay
+
# Never divide by zero
# There is no curse in elvish, entish, or the tongues of men for this treachery.
+
# Never gonna give you up...
# The normal distribution looks higher from the bottom...
+
# Never will follow the instructions on google maps again.
# birdcoin is looking to be a huge success
+
# New amazon product
# void main() { fork; }
+
# New boyfriend. Don't know why my parents don't like him?
# My hero
+
# New candidate announces run for presidency of the united states
# These cravings will never stop
+
# New car flipping world record set
# Burrito night
+
# new drupal logo
 +
# New false color imagery from mars curiousity
 +
# New haircut!
 +
# New headcanon:
 +
# 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 pet! #soadorable #imbleeding
 +
# new phone who dis
 +
# new president misuses "literal", becomes a duck
 +
# New selfy stick you can hold with your foot
 +
# New Super Mario bros in real life!
 +
# New tat turned out pretty good. Kinda weird having a guy stare at my ass for that long but whatev, it's worth it. DASHIE 4 LYFE.
 +
# new tattoo on the back of my head so no one can sneak up on me
 +
# Newest cheesy movie: When trees attack
 +
# Nice leg.
 +
# NICE MULTIPANTS
 +
# night sledding deserves a quiet night
 +
# No good deed goes unpunished
 +
# No guitar without a sombrero
 +
# No lie, this is delicious
 +
# no matter where we go, its always cold
 +
# No more sorrow!
 +
# no one ever suspected the shovel
 +
# No regrets on this new roofing material
 +
# 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
 +
# Nom nom nom
 +
# nomnomnomnom nomnom om nom nom
 +
# nonononononononononononononononononononononononono
 +
# 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 Again :(
 +
# Not all dreams can come true
 +
# 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 sure whether or not to tip him
 +
# Note 2: Use a frozen potato
 +
# Note: HUGE SUCCess
 +
# Nothing new under the sun
 +
# Nothing to see here.
 +
# Notice anything different?
 +
# 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 we play... the most dangerous game
 +
# Now we're ready to attach the spiders.  Remember, be gentle.
 +
# Now where did i leave my ocarina. . .
 +
# now you're hungry too.
 +
# Now, It's not every Day you get to be glorious leader
 +
# Nutritionists hate this simple trick
 +
# NUTS!
 +
# Obama pardons Santa claus
 +
# obsession is a dangerous thing
 +
# 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 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 SPIDERS
 
# OH GOD WHAT HAVE I DONE
 
# OH GOD WHAT HAVE I DONE
# Man, it's windy
+
# OH GOD WHAT HAVE I DONE?!
# Steve is realxing
+
# Oh God! It's happening again!
# I find this picture reflects my soul.
+
# oh god!! the youtube views were not worth it!! they weren't woooorth iiiiit
# Field Trip!
+
# Oh here we go
# Magnified 10,000 times
+
# oh I feel a yearning so bad
# Something tells me this is all part of a larger experiment
+
# oh look, a penny
# Someone will Make this About ObamaCare
+
# OH MY GOD A HORSE
# My tastes are very... singular
+
# oh no you didn't
# Do I look like a penguin?
+
# Oh no, I'm not equipped to ride a digital wave of this size!
# Grab that snake, dont let it go, its lunchtime ya'know
+
# 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.
 +
# Oh shit, not again.
 +
# Oh, Canada...
 +
# oh, god, why?
 +
# oh, is that godot? Finally...
 +
# Oh, that's where I left them!
 +
# 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, I concede that maybe using a trebuchet is not the best shortcut
 +
# omfg who would wear that hat
 +
# omfg, space bugs
 +
# OMG Becky look at her butt
 +
# OMG I cannot even
 +
# omg too much chiplote
 +
# OMG TotalLy want that body!! <3
 +
# OMG! Kittens!
 +
# 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 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 electrocution can ruin your entire day
 +
# One of the less popular Transformers.
 +
# One of these things doesn't belong.
 
# One of those mornings...
 
# One of those mornings...
# Does anyone know if this is supposed to happen
+
# One year ago I looked like this
# Desystematized chronodynamic balancing detected in VX Module core
+
# only 90 kids will remember this.
# last march of the ents
+
# only 90s kids will get this!
# My screen test for Top Gear didn't go well...
+
# Only 90s kids will remember
# Zoidgebra 101
+
# Only managed to clock 87 miles Per hour. Crap.
# stay away from my eggcorns
+
# Only way to be sure #nukefromorbit
# Look I genehacked a cowhorse!
+
# onomatopoeia? I hardly know ia!
# THEY added extra salami!! I told them i HAte salami!! they hate me!!! fml!!!!!
+
# oompa loompa diggeti doo
# Light traffic today.
+
# OOooommmm bop, bop bop bah boo whop
# Always get a full nights rest
+
# Oops, I forgot the cowboy hat
# Grandma's new boyfriend is a keeper!  
+
# oops, oops, oops, okay this is happening
# it's only awkward if you think it's awkward #awkotaco
+
# Oops.
# My house is my castle
+
# Open wide!
# #caturday
+
# Optimus prime was having a bad day.
# This apple got a face on it dog
+
# Otters. They are the craziest.
# is the eject button meant to do this?
+
# ouch!
# Guillotine needs to be recalibrated
+
# our ballistic artillery now come with advanced fire-control systems
# anyone seen some uruk-hai? Asking for a friend.
+
# Our flying car attemps seems to got out of hand
# London
+
# Our proudest moment
# She's got interesting taste in men.
+
# Our son has no arms but has a duck's beak.
# when you see it...
+
# Ow.
# It's the little things
+
# Oy, my giblets!
# New tat turned out pretty good. Kinda weird having a guy stare at my ass for that long but whatev, it's worth it. DASHIE 4 LYFE.
+
# Pac-man's missing piece
# "Is it symmetric this way?"
+
# Pacman or ms.Pacman?
# damn tree!
+
# Pants Optional
# An unsuccessful bike design...
+
# paper can't substitute the smell of an old kindle
# A soulful rendition of "old man river"
+
# parallel universe, here i come! #sweet!
# My boyfriend finally proposed!
+
# Park and ride
# Sometimes I just want to be in the moment.
+
# PARKOUR IN ACTION
# did this exist as a microwave?
+
# Parlez vous Francais?
# As the sun sets on us, we know we must escape.
+
# Parrot to the nth root of a short journey
# It showed up on the photo, but not irl???
+
# passed another hitch hiker
# Look out!
+
# peacekeeping mission is a total success
# I've seen enough hentai to know where this is going.
+
# peeling back the pages of history
# our ballistic artillery now come with advanced fire-control systems
+
# Penguins are people too #equality
# Turning into a crow was less upsetting than being unable to tweet about it!
+
# Pentagonal head?  That's nuts!!!  *cough* *ahem* I think you mean bolts.
# No, I've never performed brain surgery before, but how hard can it be?
+
# Person at checkout freaked when she saw what I was buying.
# Boy, I tell you what. I bet the roads on the moon ain't this smooth.  
+
# Perspective issues
# The solution to all life's problems
+
# Philae lander found!
# The recursive algorithm produces this unique Fractal Image
+
# photo proof for you skeptics out there
# Optimus prime was having a bad day.
+
# photobombed again
# run little ghost, run!
+
# photobombed by a bird trying to take a picture of a bird
# Interior Crocodile alligator, I drive a Chevrolet movie theater
+
# Photographic evidence that cookies exist on other planets.
# Step 1:  Jump the shark.
+
# PHOTOSYNTHESIS HELL YEAH
# My cat barfed this out
+
# Pic of my organic free range flowers. Only $79 on etsy.
# 20 Facts that will infuriate hipsters
+
# Picasso's illegitimate child...
# Who came first?
+
# Picked this up at the thrift shop
# the day of the fingernail clipping has dawned
+
# Picked up this little fellow from the pound!
# Fnnnaarrrrr!
+
# Picking mushrooms
# so I went and summoned hitler but he got old
+
# picture of my boyfriend
# Is this an april fools joke?  why did this show up at my door?
+
# picture proof that alien invasion is real! #thanksobama
# whatever you do, don't make eye contact with it
+
# PIctures from my trip to Mount Binary
# today's to do list
+
# Piglet was not amused
# every breath you take, every move you make
+
# Pintsize what are you doing?!
# Anyone craving some soup right about now?
+
# Pizza TIME
# Help! my mustache is eating my fammmmmrhmhghhh
+
# play it cool
# The tyndall effect testing on the invisible man results (fig 5.)
+
# Please note that our professional disaster recovery team are working tirelessly to rebuild your data. We apologise for the delay. - xkcloud
# FRom the creators of AIR BUD, presenting air chip, the Soccer squirrel.  watch your Nuts! Summer 2016
+
# Please send help.
# really not how I thought I would die
+
# Please, please, please not again!
 +
# Please. Save yourself.
 +
# 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!
 +
# Pre-calc: what is the surface area of this blood stain?
 +
# Press 'continue' to abort.
 +
# Pretty sure ball pits aren't supposed to be like this
 +
# Pretty sure jimmers will love this new door.
 +
# pretty sure the void is staring back #whenyoustarelongenough #lostsanity
 +
# Prius Love
 +
# Probably a universal turing machine, but too lazy to solve proof
 +
# product testing has confirmed our suspicions...
 +
# Prom Night at tentacle monster HIgh
 +
# pronounced duh-jango
 +
# 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: loch ness monster.
 +
# Prop Failure #Lol#Hustonwehaveaproblem
 +
# prototype soccer ball
 +
# PSA:  If you don't see this, don't ask your embarrassing medical questions
 +
# Purple mushrooms roaming the world killing people
 +
# Putin Putin in orbit
 +
# quack quack, motherflipper
 +
# Quite.
 +
# QWANTZ Fanfic
 +
# Rabbits are vicious creatures when their data are stolen
 +
# 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 landscapes have curves
 +
# real letters have curves #Serif
 +
# Real pirates put the hook on their feet! Yarr!
 +
# 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.
 +
# 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
 +
# Research shows a new perspective is easily gained.
 +
# research shows residues of legs and feet in trees dna
 +
# results of toddler-sourced upscaling algorithm
 +
# reverse et
 +
# reverse microwave oven
 +
# Riemann should have had this idea
 +
# RIP SPEAK N SPELL
 +
# rm -rf /
 +
# Roadrunner is the new transport minister
 +
# Robert'); Drop Table students;--
 +
# Robots in much better disguise
 +
# rock beats scissors
 +
# Rock, paper, FACE
 +
# Rocket pseudo-science!
 +
# rodeo!!
 +
# rofl
 +
# Roll of toilet paper reacts to US Deficit
 +
# Rollerskating always was overrated
 +
# run little ghost, run!
 +
# RUNAWAY UNICYCLE!!
 
# sad cow is sad
 
# sad cow is sad
# Oh no, I'm not equipped to ride a digital wave of this size!
+
# Safety: it's more like 'Guidelines'
# cest ne pas un pipe
+
# Said the duchess to the vicar.
 +
# Sailor Moon Cosplay Queen
 +
# 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?
 +
# Saw this outside last night. Is it dangerous?
 +
# school's out!
 +
# Scientists create first man-clock hybrid
 +
# Scientists take photo of Dark energy for the first time, you will not believe how it looks!
 +
# 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 #Nofilter
 +
# Selfie in corner store #35.  $10,000.
 +
# Selfie in the morning
 +
# Selfie with Benedict Cumberbatch
 +
# senpai noticed me! ^_^
 +
# sentient IPOD deleted all my music. again.
 +
# share and enjoy
 +
# share this so xkcd cannot sell our data to the reptilians
 +
# 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 sue my hairdresser or not really
 
# SIDE GOER 4
 
# SIDE GOER 4
# night sledding deserves a quiet night
+
# Since the Droste Incident, federal regulations have prohibited these types of experiments.
# I don't know
+
# SINgle mom discovers incredible way to overthrow capitalism. you won't believe it!
# Ce n'est pas un canard
+
# Skydiving #photobomb #shark #AAAAAAAAAAAAAAAAAAA
# Manchester United had made a terrible mistake with their new striker...
+
# slippin' into the future
# mYTH BUSTED!
+
# smile for the camera!
# i want to ride my bicykle (i found it in pripjat)
+
# Smile! You're on Candid Microscope
# Do you think this will get me a job designing Pokemon?
+
# smiling is for optimists
# As viewed on a Macintosh plus
+
# Snapchat with aliens sure takes forever. #damnlag
# share this so xkcd cannot sell our data to the reptilians
+
# Snapped this with my phone, what is it?
# *Tips fedora*
+
# Snowman accident
# Proof Global Warming Is hoax!!!!!
+
# So I figured out that "inflammable" means the same thing as "flammable" today!
# I REALLY, REALLY DIDN'T THINK THIS THROUGH.
+
# So i found this on my phone?
# I've found a new way to feed the poor
+
# 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 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
# I don't Even know What this ad is trying to promote.
+
# So thats What Jesus did
 +
# So this happened.
 +
# 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, scientology...
 +
# So, this happened.
 +
# 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...Magnets, right?
 +
# 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.
 +
# 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 take this banana off my face
 +
# Someone will Make this About ObamaCare
 +
# SOMETHING IS WRONG WITH THIS POWER OUTLET CALL AN ELEXORCISTRICIAN
 +
# Something seems to be wrong with my car
 +
# Something tells me this is all part of a larger experiment
 +
# SOmething went wrong while shaving...
 +
# Sometimes all you can do is wait
 +
# Sometimes I just want to be in the moment.
 +
# Sometimes pickles just have to be pickles.
 +
# sometimes you just can't get rid of a bomb
 +
# Sometimes, a spherical cow is a reasonable assumption.
 +
# Somewhere, this exists.
 
# Sonogram of our baby! Adorable, Don't you think!? Looks JUST like daddy!
 
# Sonogram of our baby! Adorable, Don't you think!? Looks JUST like daddy!
# if i don't return by 5pm give this photo to my kids when they grow up
+
# Soon. Soon...
# Does this look like pink eye to you?
+
# sorry dad
# I just want to watch the world burn
+
# Sorry for the potato quality.
# The building blocks of life
+
# Sorry for your loss, but next time pay attention to where the glass stops
# I told you to keep the raptors secure
+
# SOYUZ SOLAR ARRAY decimating couch
# I'll miss the sparrow with my sparrow missile
+
# SPAAAAAAAAcE
# This is a cat
+
# Spaaaaaaaace!
# Making grape Plasma, om nom nom!
+
# Space from my window
# Vaccines cause super autism now unless you're vaccinated against it
+
# Spiders. Nope.
# We can't do it, the moon is in the way
+
# Spring has sprang
# I just can't see the point anymore
+
# SQUIRREL WITH PENCil in mouth running around in circles
# PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
+
# Stalemate
# The last person to be surprised by a selfie
+
# Starbucks <3 <3 <3
# #CATSANDBIRDS
+
# Starting to regret my OUYA purchase
# Beer Pong alone again! #YOLO
+
# stay away from my eggcorns
# watching dune on shrooms
+
# Stay in the moment. I want you to fully enjoy it.
# sometimes you just can't get rid of a bomb
+
# stay out of my house, santa
# #notallmen
+
# steel beams taste best with a dallop of gasoline
# with google iris, see the inside of your eyelids like never before
+
# Step 1:  Jump the shark.
# Park and ride
+
# sTEP ONE CUT A HOLE IN THE BOX
# Now we're ready to attach the spiders. Remember, be gentle.
+
# step one: cut a hole in the box
# the charge of the light brigade
+
# Steve is realxing
# On the plus side, the exhaust system does work
+
# Still a better love story than "Last Tango in Paris."
# Do I look fat in this photo?
+
# still better than last year in ottawa
# 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.
+
# Still no martians
# love it!
+
# still, i think it was a good idea
# Et boum! C'est le choc!
+
# stipple slash of saturn
# my class bet me this couldn't get 500 clicks!
+
# Stop flexing in the mirror, you narcissist
# whiskers expecting a new friend :)
+
# Stop stalin and make up your mind
# The horrors of war
+
# Stop! Hammer time!
# A Dozen roses, the Barnum Effect, and Thou
+
# stork carrying a babby rabbit!
# The rook is getting closer. Help me.
+
# straight out of the hacker's jargon file!
# In hindsight, this probably wasn't the best way to teach addition
+
# Straight outta compton
# this guy keeps following me
+
# Strange ingredients for a grilled cheese sandwich, but the recipe did say 'epic'...
# filming the sky was boring. Turns out my foot is more boring...
+
# Strangely, my patients don't like this new couch.
# CERN's soLUtion to a cut in funding.
+
# Strolling down the street, saw this. #uglybeauty
# just two more trips over the horizon
+
# Stuck in a loaded canon. Again. FML!
# Hey, it's windows 7 again!
+
# Stupid Bird!
# I think there's something here
+
# Submarine-world promblems, amirite?
# Does anyone know why it is doing this?
+
# such bike. so sustainable! very carbon-negative.
# We claim this iceberg for the Motherland
+
# such lambda
# What if jellyfish could combine, like voltron?
+
# Sun deflation: optimal
# In the land of the blind, the one eyed man is king
+
# Sunrise over the La brea tar pits! #majestic
# This is twitter, right? #confused
+
# sunshine, lollipops, and rainbows...
# #nomakeup #natural
+
# sup brah
# This is so awsome! Picture of the year! So glad that I got that new camera!!!!!
+
# super high intensity training at NORAD
# Last time i buy a budget hairdryer
+
# Support my kick-starter! A whole new devise with bluetooth and a button!
# The French space program
+
# SUPPOrt this new alarm clock on kickergogo!
# cthulu caught me slipping
+
# Sure, they taught a robot to sing, but can they teach it to love?
# I'm not saying it was aliens but it was aliens
+
# Sweet, they new red shirts are on sale again!
# Day 19 of my face wash avoidance program
+
# T-Rex in a snowfield #cretaceous #nofilter #cold
# introducing the yolo distribution
+
# Taco bells give away resulted in unplanned consequences for downtown Houston.
# Anyone here have any advice on how to get it to stop singing?
+
# tail recursion spotted in the wild!!
# apple's new offering: iscream
+
# Take my money!
# I'll catch it one day
+
# take that atheists
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
+
# take two, they are small
# Coco Puffs: Now with your complete daily dose of gamma radiation
+
# taken from earth orbit
# Zeus takes his revenge
+
# Talking to my fans...
# oops, oops, oops, okay this is happening
+
# Tamper-Proof
# Can somebody call my cell phone? It's not lost, I'm just lonely.
+
# TANSTAAFL... Mostly
# #satellite #navigation
+
# Target Found.
# I. AM. BELLSPROUT.
+
# Teach a fis how to to man... wait?
# Houston, we are the problem
+
# Ted Cruz 20-Infinity
# Oh here we go
+
# Ted Cruz imagines himself like this and things it's normal.
# >< ))*>
+
# terminal velocity is a myth
# Fission, fusion, what's the difference?
+
# Terms and conditions apply, actual product may vary
# haha oh my cat
+
# Testing my new DIY nuclear power plant
# is good idea yes
+
# Testing my new high-contrast filter outside the unicyclist meet up
# Your free pony is on the way. Sorry for any inconvenience.
+
# thank you for restoring my faith in the justice system
# Spaaaaaaaace!
+
# Thanks Obama!
# First, thoroughly lubricate the conspiracy theory
+
# Thanks!
# I warned him about the Star Wars Holiday Special.
+
# that awkward moment when you are staring at Barad-dûr for its architectural merits.
# monkey movember
+
# That awkward moment when you realise that the dragon that you've been gossiping about is standing right behind you.
# Ain't no mountain high enough, ain't no valley low enough...
+
# That is not how you Ikea
# #blessed
+
# That is one dapper bird.
# oh I feel a yearning so bad
+
# That is, in fact, a squirrel.
# There's a 66% chance that the other door won't be broken.
+
# That makes me very angry...
# "...The Aristocrats."
+
# That sweater is so 2013
# my taco face
+
# That was one hell of a party last night.
# Whale Selfie!
+
# That was the last time Spencer would drop a bowl of salad. "My work on antigravity begins now!" he proclaimed.
# Tower of Hanoi puzzles have gotten really weird.
+
# That was when things started to get a little weird.  
# Being john "Bowler Hat" Malkovich
+
# That'll teach them not to misspell my name at Starbucks
# They scared the vampire by drawing a face on his mirror
+
# That's gonna hurt on the way out
# i walk a lonely road, the only road that i have ever known...
+
# That's just not very funny
# Man with face of clock discovered in Beatty, Nevada; Scientists befuddled
+
# that's me!
# no wonder the cat always sits here
+
# THAT'S NO MOON
# Jet fuel can't melt steel beams
+
# That's not a chicken
# if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
+
# That's not a nut!
# worst horse ever :(
+
# THAT'S NUMBERWANG!
# prototype soccer ball
+
# that's one nasty burn!
# The Arecibo Observatory looked bigger in the movie #disappoint #bummer #bond
+
# That's the princess I want to save
# Taco bells give away resulted in unplanned consequences for downtown Houston.  
+
# That's too much, man!
# Removed microwave door, new easier to watch the food cook
+
# that's what she said... assuming I heard Her right. Can I come home now?
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
+
# thats what she said
# The last thing I heard was "I swear this will be fun"
+
# The abyss stares longingly into my heart.
# Muahahahahahah
+
# The answer is blowing in the wind...
# Breaking: World in terror as alien from "Blue (Da Ba Dee)" video lands on Earth, announces world tour
+
# The Arecibo Observatory looked bigger in the movie #disappoint #bummer #bond
# Extreme beer pong
+
# The basis for fast and furious 13.
# Somebody sneezed in the Bathtub
+
# THE BEES!!!!!
# bit nosy, aren't you?
+
# The best brick joke possible.
# Philae lander found!
+
# the best stars are sky stars!
# they said be careful, we said yolo
+
# The birds found the hobbit hole
# Obama pardons Santa claus
+
# The building blocks of life
# Best Christmas gift EVER!
+
# The Captain Crunch Kraken
# Not only was the moon landing staged, but it was done with puppets.
+
# The castle was in you, all along!
 +
# The cat brought in another bird.
 +
# the charge of the light brigade
 +
# The choice is simple.
 +
# The co-op and I have been trading our gently used teabags around. Discovering a lot of new flavors!
 +
# 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 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 event horizon returned
 +
# The evolution of fun
 +
# The Excresence of Indifference (mixed media, 2015)
 +
# The feeling that somewhere, a duck is watching you
 +
# the first official thing i stole from my college roommates.
 +
# 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 gang destroyed the context
 +
# The glow cloud (all hail) stopped by today.
 +
# The goats! They mutated! They are now airborne!
 +
# The hills are alive!
 +
# the hills have eyes
 +
# The HORROR!
 +
# The horrors of war
 +
# The illuminati embarrassed to admit that the "world" they control is only a h0 scale model
 +
# The infamous Snow-muon.
 +
# The knids are hungry
 +
# 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 I heard was "I swear this will be fun"
 +
# 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 less you look at it, the funnier it gets.
 +
# The lifts never worked properly in the Volcano Lair
 +
# The Little Borg Prince
 +
# The little prince is full of siht
 +
# 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 man leaned in close, and that was when she discovered he had clockwork eyes!
 +
# The metric system costs thousands of lives each year
 +
# the microsoft promised land
 +
# The Mitochondria is the powerhouse of the cell
 +
# The moon landing was a lie
 +
# The moon looks weird today
 +
# 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 usb feels like a step backward
 +
# The newest Olympic sport
 +
# The next generation of crypto currencies
 +
# The ninetys called, and I had to answer.
 +
# 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 press conference lasted shorter than expected!
 +
# The Prodigy is in town!
 +
# the prophecy was true !
 +
# The prophecy was true!
 +
# The real reason for hillary's sudden data loss
 +
# The recursive algorithm produces this unique Fractal Image
 +
# the rest is darkness and decay
 +
# 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 saddest moment of my childhood
 +
# The second mouse gets the cheese
 +
# The secret to infinite storage space
 +
# The side of my car. #roadrage
 +
# The signal came from this sector
 +
# 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 strategic air control has been exploring alternative revenue streams.
 +
# THe Tanzanian bargin was notoriously one sided and resulted in the bloodiest genocides in the history of man. #YOLO
 +
# The taste stays with you forever
 +
# The tea party was right about GMO bicycles
 +
# The time has come.
 +
# The top half of his face looked exactly like this, officer
 +
# The tyndall effect testing on the invisible man results (fig 5.)
 +
# the Uk space agency is making britain proud
 +
# 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 world isn't Flat, it's Sharp
 +
# The Zebra was lying down
 +
# the zoidberg axis
 +
# their love was doomed from the start...
 +
# Their vengeance was swift, but surprisingly subtle...
 +
# Thelma and louise was reaaaaaallll
 +
# 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 way you can back up that claim. And that's okay.
 +
# there is none of this left in the men's room #help
 +
# 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.
 
# There's an rfid tag in every slice of pepperoni.
# One year ago I looked like this
+
# There's no more time!
# no stars in the sky tonight. Sigh #lonely
+
# These aren't my sandwiches
# Malcovic, Malcovic, Malcovic, Malcovic!
+
# These cravings will never stop
# Scientists take photo of Dark energy for the first time, you will not believe how it looks!
+
# These hoof warmers are incredibly comfortable!
# John really wanted to travel north, however that side of the road was missing
+
# These night vision goggles don't work
# Meritocracy is a pipe dream
+
# these pretzels are making me thirsty.
# The moon looks weird today
+
# These two impress me every single day! #proudfather
# #hashtag
+
# THEY added extra salami!! I told them i HAte salami!! they hate me!!! fml!!!!!
# I looked, and behold, an ashen horse; and he who sat on it had the name Death; and Hades was following with him.
+
# They can see me!
# Max gentleman
+
# they dont need us anymore
# Ok, playing soccer in a snowstorm MIGHT not be the best idea ever
+
# they had no idea the damage they had done
# just another cat video
+
# they moved the headstones, but they didn't move the bodies
# this is literally the hardest decision I've ever had to make.
+
# they said be careful, we said yolo
# I'll show you a forbidden electronic transition!
+
# THEy said it was "futuristic" and "useful"
# And thus, the polar carrot displaced the earth.
+
# they said we couldn't play god
# I Swear this dress was yellow and blue
+
# They scared the vampire by drawing a face on his mirror
# if there is no water on mars, at least there is data
+
# They see me rolling, they hating
# Fire can sometimes be hot?
+
# they told me carrots were good for eye health
# SOYUZ SOLAR ARRAY decimating couch
+
# they told me cat eyes would make me look good
# MY HOBBY: Life size Sock Puppets
+
# they're all dead, dave.
# van gogh's secret masterpiece uncovered in french family's basement
+
# They're all watching me
# 3 year olds first lego experience
+
# They're watching us.
# Maybe they should have put the gun control check point outside the building...
+
# Things Lost in couch cushions
# More like, Peek-a-Pooh!
+
# this "one small step" will make you cry. you won't belive why. #moonselfie
# love it!"...The Aristocrats."
+
# This apple got a face on it dog
# picture proof that alien invasion is real! #thanksobama
+
# This caught my eye
# NICE MULTIPANTS
+
# this could be improved by laser technology
# Hey, what did you mortals do with my chariot?
+
# This definitely wasn't in the Bible.
# brokkolis and sweet potato, nice
+
# This diagram of the solar system is not to scale
# where to buy spanish ham ?
+
# this didn't last long.
# drivers feel stupid for not knowing this one simple trick
+
# This elevator has no 'down'!
# parallel universe, here i come! #sweet!
+
# This explains everything
# bip bip bip bip bip bip bip bip bip bip bip bip bip
+
# This explains it all
# Jugghead got nothing on me :p
+
# this got me banned from chuck e. cheese's
# the way of the future
+
# this guy can't believe what i'm doing.
# I was late
+
# this guy keeps following me
# i hate it when this happens
+
# this guy took a photo of his food every day for a year, you won't believe what happens next!
# Pretty sure jimmers will love this new door.
+
# This guy...
# I'd call this experiment a success.
+
# This is a cat
# Unzipped sock
+
# This is a good idea
# Do Notte Buye Betamacks.
+
# THis is a love/hate poem.
# We pointed the Hubble into another supposedly empty patch of sky.
+
# This is exactly what you think it is
# kang, do i look good in this?
+
# this is for all you haters who said i'd never make it as a conductor.
# Universe man, Universe man...
+
# THIS IS FOR KIBO!
# Apparently the NSA have been keeping secrets from us
+
# This is how we celebrate easter usually
# New haircut!
+
# This is how you get ants!
;prompt_captions
+
# this is just a tribute #thed
# I certainly wasn't going to bury this one
+
# This is just like my 5th birthday party.
# You'll never guess what happens next...
+
# THis is kinda philosophical if you think about it.  If you don't think about it too much.
# RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
+
# this is literally the hardest decision I've ever had to make.
# Wow. Just, Wow.
+
# This is my birthday gift for you. I hope to see it hanging in your living room!
# two great tastes that go great together
+
# This is no cave
# Submarine-world promblems, amirite?
+
# This is not a camera, it's a washing machine!
# forgot to turn the oven off!
+
# this is not what i meant it to be
# Beer Pong alone again! #YOLO
+
# 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 still what I had for breakfast
 +
# This is symbolic.
 +
# 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 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 year of linux
 +
# 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 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 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 LOOKS SHOPPED. I CAN TELL FROM SOME OF THE PIXELS AND FROM SEEING QUITE A FEW SHOPS IN MY TIME.
 +
# This makes my dog twitch when it sleeps
 +
# This man must not realize that it is the whole building moving up and down, not the elevator.
 +
# 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 plot is odd.
 +
# This song describes me perfectly
 +
# This squirrel really knows how to cook
 +
# 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 my inspiration
 +
# 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 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.
 +
# Threaten large birds... check.
 +
# throwing epic shade!
 +
# 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!
 +
# 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 infinity and Birdyond!
 +
# To the victor go the spoils.
 +
# To weather the storm of outrageous fortune.
 +
# Today i am a Chinese clock
 +
# Today was my pets elephant's birthday; He liked the ribbons best.
 +
# today's to do list
 +
# 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 much Acid. Got to sort life out.
 +
# too much lens flare?
 +
# too much right beef
 +
# Took a wrong turn in Albuquerque
 +
# Top of the world
 +
# TOTAL ECLIPSE OF MY RETINA.
 +
# toto i don't think we're in camelot anymore.
 +
# 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
 +
# 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 culprit of global warming!
 +
# True Self-Control
 +
# truly, i am euphoric
 +
# 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
 +
# 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
 +
# Tycho and gabe stepped up their game
 
# Tycoon Simulator 2015
 
# Tycoon Simulator 2015
# damn tree!
+
# Ugh, I hate how people take pictures instead of just enjoying the view.
# I lost my wrist
+
# Ugh, i'll never understand art.
# These hoof warmers are incredibly comfortable!
+
# Ugh, not the polar vortex again.
# super high intensity training at NORAD
+
# Uglier than modern art
# Formal on top, party on the bottom
+
# uh... I think I'm going vegan.
# #justnasathings
+
# um no.
# my friend posing while a plane flies by
+
# uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
# 5 nights at freddies 4 #letsplay
+
# Unfriendly comet eats latest probe
# hello darkness my old friend
+
# unhappy in space
# The HORROR!
+
# unicycle beowulf cluster seeks riders
# Why do people do this?
+
# Universe man, Universe man...
# I say: nuts to that!
+
# unsubscribe
# New means to help collect more evidence
+
# Unzipped sock
# Had to settle for a beard
+
# USB SUX
# 🇺🇸 USA! USA! USA! 🇺🇸
+
# Use the force responsibly.
# So, this happened.  
+
# using hollowed-out carrots to smuggle drugs across the border.
# What in the hell was I thinking ?
+
# Using your phone camera is a neat workaround when you have lost your glasses
# I found a three fingered kitten!
+
# Vaccines cause super autism now unless you're vaccinated against it
# "Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
+
# van gogh's secret masterpiece uncovered in french family's basement
# this will make me a millionaire (patent pending)
+
# Vegans gonna hate
# Guillotine needs to be recalibrated
+
# vegeta? vegeta? vegeta? aaaaaaaaaagggghhh!!!                                             I'm back, and now i'm a ghost.
# The real reason for hillary's sudden data loss
+
# Vegetable-flavored meat, that's how they'll get us!
# mYTH BUSTED!
+
# vinyls were always better!
# The recursive algorithm produces this unique Fractal Image
+
# Visited mom today
# Wake up sheeple!! the rich are stockpiling candles. This is our future!!!!
+
# visual from Most important meeting today
# my rockets have formed a cooperative but I have to do the dishes
+
# Visual representation of Dubstep
# Got a hip mustache! What do y'all think?
+
# void main() { fork; }
# bip bip bip bip bip bip bip bip bip bip bip bip bip
+
# Voynic Manuscript ain't got nothin' on this!
# I put on my wizard robe and hat
+
# Wait ... what? I don't even...
# #DrinkSaltwater
+
# Wait a minute. We put the helium in the pool, or the balloon?
# Not a fruit
+
# Wait for it...
# AN I wuz like, GRRRRL Yo beak is so flash!
+
# Wait, am I 30 years too late for Normandy?
# me and all my friends
+
# Wait, what does ⨍(𝕎) represent again?
# In that moment, the reddit realized he'd never wanted it to be this way. He'd never wanted any of it.
+
# Wait, you can see that too
# In hindsight, it makes perfect sense
+
# waiting for the toilet for 2 hours? sucker yolo
# All flesh is grass
+
# Waiting on hold with the insurance company
# Here we see the last two simple machines; the inclined plane and the rocket board
+
# WAKA WAKA WAKA WAKA WAKA WAKA WAKA
# if i don't return by 5pm give this photo to my kids when they grow up
+
# wake up sheeple!
# Come on party people, put your hands together
+
# Wake up sheeple!! the rich are stockpiling candles. This is our future!!!!
# The last known picture of my dignity, as it reaches from below the waves
+
# Wake up sheeple!!!!!!!1
# is the eject button meant to do this?
+
# Wake up, sheeple.
# awesome sunrise this morning #lenscap #nofilter #hashtag
+
# walked in on my roommate being terrifying
# I would never have believed in atlas if I hadn't seen him for myself
+
# Walrus!
# New car flipping world record set
+
# Wanted for murder. If found, contact the police immediately.
# He had to learn the hard way: if i clean a window, it will definitely be clean
+
# Warning, cadbury eggs should be consumed in moderation, even if supplied for free by air
# Said the duchess to the vicar.
+
# WARRRBLGARBL
# Light traffic today.
+
# watch me become the next favorite kardashian
# Is this room 101?
+
# Watch me develop an entirely useless skill #butitsfun
# These two impress me every single day! #proudfather
+
# Watch out for the squirrely wrath!
# Oh bother not again
+
# watching dune on shrooms
# Unzipped sock
+
# Waynes World, Waynes world!!!
# This is a cat
+
# we appear to have exhausted the low-hanging scientific fruit
# Eat my shorts
+
# We are not men. we are devo.
# 99% of people are too scared to share this post! share if you are one of the 1%
+
# We can't do it, the moon is in the way
# The tyndall effect testing on the invisible man results (fig 5.)
+
# We claim this iceberg for the Motherland
# I warned him about the Star Wars Holiday Special.
+
# We didn't start the fire
# Yeah... never gonna happen
+
# we do these things not because they are easy, but because they are hard
# No guitar without a sombrero
+
# We fell upstairs and exploded.
# check out my new pet
+
# we had to get creative when the bentley didn't show
# Okay, I concede that maybe using a trebuchet is not the best shortcut
+
# We have crafted the galaxy's finest pasta bowl
# Meritocracy is a pipe dream
+
# We have finally discovered the secret of the toaster!
# SEINFELD in SPAAAAAACE!
+
# we have the technology.
# That sweater is so 2013
+
# We live in a golden age!
# #Long_Exposure
+
# We look into each other's  eyes as we drive. it's to show our love.
# I don't think this is working
+
# We made some simplifying assumptions before designing the plate tectonics code.
# Thanks!
+
# we need to keep our sex life fresh
# Proof Global Warming Is hoax!!!!!
+
# We pointed the Hubble into another supposedly empty patch of sky.
# You must be new here.
+
# we sail the ocean orange
 +
# We told iran that atomic energy is unsafe
 +
# we'll take the next one #CasualRacism
 +
# We've given up trying to justify this.
 +
# We've got a problem
 +
# Weather's Crazy today
 +
# 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 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, Mr. Bond, we meat again
 +
# Well, now this is a thing.
 +
# well, so much for the space program
 +
# well, the keys are definitely lost....
 +
# Well, this is a puzzling development.
 +
# well, this really puts things in perspective.
 +
# 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
 +
# WHAAAAAAaAT?!?!?!?
 +
# Whale Selfie!
 +
# What a beautiful time to be alive!
 +
# what a bummer
 +
# WHAT A MISUNDERSTANDING!
 +
# What are pixels?
 +
# what are you complaining about?  three legs are inherently stable!
 +
# What are you, a dictionary?
 +
# What could 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, don't talk about fight club?  That's just stupid.
 +
# What do you see? I see a cat!
 +
# 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 have facebook been doing with my data? #Whatisgoingon
 +
# what if it's a ghost pepper?
 +
# 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 the sun looks like!
 +
# what to have for breakfast?
 +
# What, Me worry?
 +
# What? It's always that color.
 +
# what's a lens cap?
 +
# What's this thing here in the bathroom?
 +
# 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 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 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!
 +
# when they said samurai robot i thought they meant something else!
 +
# When you gaze into the abyss, the abyss gazes back
 +
# When you get a perfect score on your test
 +
# when you give a chicken hgh, weird things happen.
 +
# when you see it...
 +
# When you see it...
 +
# 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?
 +
# whiskers expecting a new friend :)
 +
# who ate half my cookie?
 +
# Who came first?
 +
# 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 needs the Chunnel?
 +
# Who put import superman in the python configuration script?
 +
# Who said an antique car wouldn't work on the moon?
 +
# who sent me a bobcat?
 +
# 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 wants an omelette?
 +
# WHO'S THAT POKEMON?
 +
# Who's that Pokémon?
 +
# whoops GPS error
 +
# Whoops I left the Lens Cap on for this one. :S
 +
# why are my eyebrows purple and who stole my hat?!
 +
# 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 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 doesn't congress want these legalized?
 +
# Why don't chimpanzees have beards?
 +
# Why potato why?
 +
# Why should squirrel learn baseball
 
# WHY WHY WHY #WHY
 
# WHY WHY WHY #WHY
# #nofilter
+
# Why?
# Today i am a Chinese clock
+
# With a mirror, it's 00:50 right now
# I never understood that part of the bibile
+
# with google iris, see the inside of your eyelids like never before
# Sometimes I just want to be in the moment.
+
# With this, nobody can stop me!
 +
# WOMAN on ground, Abstract, digital, 2015~ $19E6
 +
# Woops, miscounted. sorry.
 +
# Words, words, words
 +
# Works fine with a custom linux kernel
 +
# Worlds saddest bomber drops worlds happiest payload
 +
# wORRIED ABOUT V2 ROCKETS
 +
# worst horse ever :(
 +
# Worst pokemon ever
 +
# Worst roomMate Ever
 
# worst transformers generation ever. bring back gen 1.
 
# worst transformers generation ever. bring back gen 1.
# I havE A SLIGHT MELTING MOTHER-IN-LAW ISSUE
+
# Worth it for the karma.
 
# would you choose the microwave over this?
 
# would you choose the microwave over this?
# discovered a new shortcut for making toast
+
# Would you like to play a game?
# marvel universe howard the duck returns
+
# wow signal deciphered: they want #53 with extra soy sauce.
# I dream of death
+
# Wow, did you see that??!!
# I'm so lost. My gps told me to go this way, and now it has stopped working entirely
+
# Wow, I didn't expect that spell to work.  #Sorrydude
# I bought you a RING... ooh shinything!
+
# Wow. Just, Wow.
# My hero
+
# wrangled my first ufo! YEEHAAH!!
# Let it go, let it go.... the cold never bothered me anyway.
+
# WTF!?
# I'm not saying it was aliens but it was aliens
+
# wwmd: what would mcgyver do?
# Changing Guard at Buckingham Palace
+
# Yay, worms!
# the latest Werner Herzog is a masterpiece #thelamphasnofeelings #outofslatsoutofpier
+
# Yeah I just like to make my martinis properly, ok?
# in line at the dmv
+
# Yeah... never gonna happen
# Anyone know what's wrong with my thumb?
+
# YES
# Best Christmas gift EVER!
+
# Yes, finally the proof I am looking for!
# Turkey Drumstick Stonehenge was surprisingly compelling!
+
# Yes, I followed the instructions!
# More like, Peek-a-Pooh!
+
# yes, your baby is beautiful
# This guy...
+
# Yesterday was not good
# This is why I'm not an EMT
+
# yo anybody seen my dog, responds to "sauron"
# Is that what I think it is? in my salad?
+
# You are not a good person
# <3 hanging out with saruman
+
# you are the jets beneath my wings
# just cos()
+
# You can now enter the matrix via homework. education will never be the same
# google bots have uncovered some missing bits
+
# you cannot lift a mountain, but if the mountain sustens itself just on top OF you, do you lift it ? #think
# Whoops I left the Lens Cap on for this one. :S
+
# You did what in my tuba?
# Mmm, Spider cake!
+
# you didn't have to come if you were just going to complain the whole time.
# leapfrog, anyone?
+
# YOU JUST GOT RICKROLLED.
# welcome to the space jam
+
# you know what they say about guys with big feet
# The Zebra was lying down
+
# you know, for kids
# Turns out the stars were pentagrams all along
+
# You lied to me.
# It isn't safe on earth any more. Goodbye!
+
# You must be new here.
# the day of the fingernail clipping has dawned
+
# You only learn as much as you can put in one Cup of coffee
# Cat in a hat or fox in a box?
+
# You want to  know how i got these scars?
# Magnified 10,000 times
+
# 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!
# Doesn't like being referred to as garfield
+
# you wouldn't kill a policeman and then steal his helmet!
# unicycle beowulf cluster seeks riders
+
# You'd think it was a tuesday, but it was not.
# I'm not even mad. that's amazing
+
# you'll NEVER belive what kind of planet those scientists found
# Who the shit left the fertilizer out in the open? Now we have to deal with this!
+
# You'll never guess what happens next...
# Threaten large birds... check.
+
# you're not as good at this as you think you are.
# I'll show you a forbidden electronic transition!
+
# you've really let me down this time.
# There's a third bump, growing fast
+
# Your conspiracy theories are dumb.
# thank you for restoring my faith in the justice system
+
# Your free pony is on the way. Sorry for any inconvenience.
# Someone will Make this About ObamaCare
+
# Your viewpoints offend my sensibilities. please change them.
# Steve is realxing
+
# Zeus takes his revenge
# A job so boring a bird could do it
+
# Zoidgebra 101
# Do you feline lucky, punk?
+
#
# i say, the cheat, let us prey upon that poor sap, the home star runner!
+
# ก็็็็็็็็็็็็็ʕ•͡ᴥ•ʔ ก้้้้้้้้้้้
# Person at checkout freaked when she saw what I was buying.
+
# ᕙ༼ຈل͜ຈ༽ᕗ
# 突っ込むところもねい!
+
# ちょっとまってください!
# Spaaaaaaaace!
+
# 突っ込むところもねい!
# Scientists create first man-clock hybrid
+
 
# It's not a moon, it's a space dolphin!
+
===Captions without permalinks ===
# at least I don't have to spend more time with sandra bullock
+
Some of these captions were found in the feed text before I started recording permalinks, others have been found in the prompt.
# The dark helps me see in the carrots
+
 
# it's my hand supposed to do this? #thanksobama
+
It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
# smiling is for optimists
+
 
# my new duvet cover!
+
 
# Do my feet look fat?
+
# (ღ˘⌣˘ღ)
# ♪♫♪♫♪♫♪♫
+
# ...just no.
# where should i put this cool new tatto?
+
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
# MY HOBBY: Life size Sock Puppets
+
# "Cat-like Reflexes"
# in an ideal vacuum, at what point does this fish realize it's going to die?
+
# "I Never watch porn"
# Found this in my garden, wtf?
+
# (ღ˘⌣˘ღ)
# The time has come.
+
# *glomp*
# is good idea yes
+
# #beatingheartinabox
# About time someone brought me that flattened basketball
+
# #drbalanced
# Pizza TIME
+
# #essentialsupplies
# The next generation of crypto currencies
+
# #fishy!
# I hate waking up from a really good dream
+
# #Hashtag #ironicSelfie
# Have you ever seen a sitting cow before?
+
# #hashtag #yinyl #yolo #thanksobama
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+
# #ivisitedthegrandcanyon #yolo
# The best brick joke possible.
+
# #NewProfilepic
# Don't have a cow, man
+
# #rememberthetitans
# my scarecrow took some additional measures of its own...
+
# #sorrynotsorry
# This is worse than when the vending machine ate my change.
+
# #underkill
# These cravings will never stop
+
# <reported for inappropriate content>
# Stay in the moment. I want you to fully enjoy it.
+
# 100% legit free hugs
# I beseech you, in the bowels of Christ, think it possible that you may be mistaken.
+
# 15 Mindblowing facts that prove jaws was real
# Check out my new cat! Sooooo cute!
+
# 500 gold for the private show
# Warning, cadbury eggs should be consumed in moderation, even if supplied for free by air
+
# 7 amazing ways of taking off your pants that will surprise you!
# Every day my damn cat makes this face
+
# A kid peed in the ball pit, I took action
# Has anyone really been as far even as decided to use even go what to do look more like?
+
# A land war in asia
# I'd call this experiment a success.
+
# Aaaaaaaaaah
# 99 bottles of beer on the wall
+
# 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 solution to all life's problems
+
# always darekst before the dawn
# "Is it symmetric this way?"
+
# Amazing! Discovery! on mars!
# toto i don't think we're in camelot anymore.
+
# And so it began...
# #LOVEATFIRSTSIGHT#JUSTMARRIED
+
# and that is the story of the very angry caterpillar
# this one's over 15 kt bitches!
+
# And then, you lightly drill the oven for 15 minutes on high
# drive like an ass, be slapped like an ass!
+
# Angry sofa is angry.
# SOMETHING IS WRONG WITH THIS POWER OUTLET CALL AN ELEXORCISTRICIAN
+
# Animé girls don't look at explosions
# If classy cats evolved from regular cats, why are there still regular cats? checkmate, evolution.
+
# another day on california public transportation
# emergency butter delivery
+
# Ants close in on the tender eye-flesh
# i'm now 75% more efficient
+
# astonishing how xenia flew that plane
# Man with face of clock discovered in Beatty, Nevada; Scientists befuddled
+
# At least it stopped bleeding acid
# i was gonna eat that
+
# Aw, man, I hate gelatinous cubes...
# #bedhead
+
# awkward! . . .
# Me, before the topical ointment
+
# best easter ever
# Help the police catch this violent criminal before he strikes again.
+
# big black orb #shit #soyuzfail
# Finally found a way to disable the flash on my camera
+
# bob ross has only become more powerful in death
# Hide! It's Un Chien Andalou!
+
# Brb, burning house down
# Yeah I just like to make my martinis properly, ok?
+
# BUT WHERE DOES THE BLOOD GO?
# 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
+
# Cant sleep, clowns will kill me. Cant sleep, clowns will ...
# The unforgiving war on health
+
# Catman
# go home chitty chitty bang bang you are drunk
+
# CERN proves existence of "the force"
# Wait, what does ⨍(𝕎) represent again?
+
# Check out my new OC
# take two, they are small
+
# cheese = life
# Allons-Y!
+
# CLOCK FACE-OFF
# what to have for breakfast?
+
# come at me, pro!
# Why potato why?
+
# come on iiiiin!
# back on tinder!
+
# Conflicting messages
# I broke cookie clicker...
+
# curiosity fed the cat
# a graph showing the amount of time i spend outside
+
# cuteness depleted after 20 pictures!! #ripoff
# i don't think we're playing zelda anymore...
+
# damnit, another drunken tree in the road
# Our son has no arms but has a duck's beak.
+
# Dawn of the Bread
# #selfie #nomakeup #nofilter
+
# Dawn of the last day: 24 hours remain.
# The soap bubble music experiment went rather well.
+
# Dawn: The Final day
# too much right beef
+
# Day:38 Bird Disguise works, No one knows I am a Worm
# this is literally the hardest decision I've ever had to make.
+
# Did i remember to lock the car?
# Is that a huge salad falling over new york?
+
# Does my hair look like it's thinning?
# look what i found underneath my pillow
+
# Does this look infected?
# take that atheists
+
# Doing Laundry on the TARDIS is hard. It's why companions wear the same clothes.
# Crocodile Pink Eye
+
# Don't Press Turbo boost. Something tells me you should never press turbo boost.
# WHO'S THAT POKEMON?
+
# Dons Quixote start their parallel quests
# Things Lost in couch cushions
+
# Drat, the internet is leaking again.
# Here comes the sun, do do do do...
+
# Dude Did you know you could smoke almost anything?
# I knew there would be side effects
+
# eclipse o'clock
# Nope nope nope nope nope
+
# Edward, no!
# I broke the etch & sketch
+
# Even More Pictures of My Sweet little babies.
# Trees on a hill #nofilter
+
# even the sun cowers in fear!
# #vampiremirrorselfie
+
# Everything's coming up Milhouse
# I think I just came across a QUANTUM teleporter
+
# FACESWAP  lol
# Aaaaaargh
+
# First day at school
# That's gonna hurt on the way out
+
# fond this creepy ass painting in my basement. how much do you guys think it's worth ?
# london bridge gets a songg, where is mine?
+
# Forgot to blow out my candles before I cut the cake
# I think there's something here
+
# fourier transforms are too hard!!
# Worst pokemon ever
+
# free the beast!
# if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
+
# Gentlemen, fire up your emacs buffers
# Hope that wasn't a granny knot
+
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
# I'm 95% percent certain this is battletoads
+
# George insisted there were better things to worry about, but I had a feeling this was important.
# I see you have constructed a new lightsaber
+
# get spare glasses before meeting rod serling
# im sure there is a dad joke in this somewhere
+
# Giant sentient banana found in space
# That is, in fact, a squirrel.
+
# God i love sesame street
# Where did THAT come from?
+
# God Save The Queen
# We told iran that atomic energy is unsafe
+
# good old troubleshootin'
# #toothproblems
+
# got Peanut allergies #yolo #swag
# You did what in my tuba?
+
# gotta take big ben down a peg
# That was the last time Spencer would drop a bowl of salad.  "My work on antigravity begins now!" he proclaimed.
+
# Guys, I Found a Unicorn!
# This apple got a face on it dog
+
# haha! i am dead inside!
# PIctures from my trip to Mount Binary
+
# has anyone seen my force field generator?
# It showed up on the photo, but not irl???
+
# Have you closed the airlock before we took off?
# #Donthate #Truelove
+
# have you heard?
# should i see a doctor about this?
+
# Have you two seen a small person come through here recently? He may have been carying a blue sword.
# Contains 8 essential types of spiders!
+
# Hello earthlings
# I blame supernasa
+
# hello you're on car talk
# day 3: the turnip still refuses to break up on re-entry
+
# help being attacked by wormsaaaaaagghh
# That's just not very funny
+
# Heres a pic of a wild catus, who just saw a balloon
# CeCi N'est Pas Une Pipe
+
# Hey there cutie
# oh I feel a yearning so bad
+
# Hey, check out my new green colored shirt!
# I wouldn't eat that if I were you.
+
# Hey, check out this cool website i found!
# Rollerskating always was overrated
+
# hey! check out larry's new aloe vera cream recipe! it works wonders on the skin and lips!
# filming the sky was boring. Turns out my foot is more boring...
+
# High Bro, five.
# That awkward moment when you realise that the dragon that you've been gossiping about is standing right behind you.
+
# His name is robert palmer.
# TRY{throw Baby;}Catch baby{Throwable cause = baby.getCause(); Throw cause;}
+
# Honest, officer, that's what happened!
# If you're happy and you know it, keep it to yourself
+
# how do i resize the city?
# First day of school.
+
# Hunka Hunka burnin' steel
# Tower of Hanoi puzzles have gotten really weird.
+
# I always fast forward through this part.
# this was my inspiration
+
# i am wearing a bolo tie
# Pretty sure jimmers will love this new door.
+
# I can can hear satellites crying in my teeth
# Check out my bowling Ball trophy!
+
# I can control the BEES! But I only make them turn right
# Don't inhale!
+
# I Don't believe in primordial black holes... I don't believe in primordial black holes...
# My baby is learning how to write!
+
# i don't have time for this!
# Like my new nails?
+
# I found the missing pieces!
# i THINK WE'RE BEING WATCHED!
+
# I got the keys to the city.
# they said we couldn't play god
+
# i hate
# Praise robot jesus!  humans, convert and roll out!
+
# 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.
# Oh god is it still following me?
+
# i love my family
# When you get a perfect score on your test
+
# i refuse to regret this decision
# Saw this in a safari park, the rangers wouldn't help it
+
# I think I have too many swords
# like my new haircut?
+
# I think i made a point!
# The basis for fast and furious 13.
+
# i thought maybe if I uninstalled flash...
# Just Got A new camera phone!
+
# I was an adventurer like you, but then i took an arrow to the knee
# Just one of those days
+
# I was making a mind map but I fell off the edge...
# NICE MULTIPANTS
+
# i was told this came with a bowl of soup.
# My hobby: pretending blank posts have content.
+
# I will use it if it is web scale
# Why don't chimpanzees have beards?
+
# I wish this was fake...
# such bike. so sustainable! very carbon-negative.
+
# I woke up sleeping next to this. #yolo
# THis is kinda philosophical if you think about it. If you don't think about it too much.
+
# i'M 12 AND WHAT IS THIS?
# Are you feeling lucky, punk?
+
# i'm being ironic
# damn. that squirrel's got a ball
+
# i'm really diggin' your shovel
# ack
+
# i've got hurt feelings
# racing stripes on hoodies are cool.
+
# I've never felt so empty before
# Best. Funeral. Ever.
+
# if only i had friends...
# AGHHHHH
+
# If you've got a moustache...
# Is this real life?
+
# In D&D you *are* your equipment
# He was never seen again
+
# Interns wanted: Must have 5TB+ of Storage Space.
# new phone who dis
+
# Is it a bird, is it a plane, no it is spiderpig!
# hgghjg
+
# Is there a bee on my nose?
# Robert'); Drop Table students;--
+
# Is this a horse man or a duck man? The answer may surprise you!
# bURMA sHAVE!
+
# Isn't he cute?
# Definitely not ordering from Walt Orfman's Pizza Restaurant again.
+
# It's a cat ass trophy
# The Little Borg Prince
+
# it's a metaphor
# Manchester United had made a terrible mistake with their new striker...
+
# It's bigger after you put it together.
# Universe man, Universe man...
+
# it's called "depleted" 'cause it's heavier
# Fancy
+
# It's Loch Ness Turtles all the way down.
# trying out apple's new gadget. expensive but it's worth it.
+
# it's the minecraft world
# no one ever suspected the shovel
+
# Jet fuel *can* melt steal beams.
# That was when things started to get a little weird.
+
# Joining the illuminati was the best decision EVER!
# What, Me worry?
+
# Khan!
# Lunar hatchet throwing contest champion
+
# ladies
# 1 like = 1 respect  1 share = 15 respect  500 respect = 1 cool
+
# lemme at dem boigas!!!
# Mentos and lava
+
# Life on the moon.
# cthulu caught me slipping
+
# Like a G6, baby, like a g6
# 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!!!
+
# Likes grains of sand in an hourglass...
# Black as the crows that peck out my eyes
+
# linux compatible toaster at last!
# my class bet me this couldn't get 500 clicks!
+
# Lost in Space...
# "sun" glasses.. lolz. heh.
+
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
# The secret to infinite storage space
+
# Malkovich Malkovich Malkovich
# Turns out my explosive frisbees are duds
+
# Massive orgy reaches climax
# that's what she said... assuming I heard Her right. Can I come home now?
+
# Maybe this counts as clean energy
# What could go wrong?
+
# Meow what seems to be the problem?
# those weren't Altoids.
+
# Mmm... Vegemite
# So long and thanks for all the fish!
+
# mmmmm.... Bones....
# 1 like = 1 little girl feeded to this cancer dying walrus :'(
+
# modest pile of dinosaurs
# i do the same thing at frat parties
+
# morning selfie :-)
# All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
+
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
# SUPPOrt this new alarm clock on kickergogo!
+
# my castles stand on pillars of sand
# Hoverboard to full power!
+
# my euler circuit is alive!
# Goldilocks party!
+
# My girlfriend thinks I need to shave my beard.  Thoughts?
# oh damn! it's that time of the year again!
+
# My God do I hate being right all the time
# He nailed it!
+
# my new app for power outages - may need to rethink this.
# I don't Even know What this ad is trying to promote.
+
# My trip to Europe #selfie
# This photo was taken from my basement
+
# Never divide by zero
# when you see it...
+
# new drupal logo
# Dang! Inflated tires with Helium again!
+
# New microwave over cures/causes cancer!
# #Toobigtofall
+
# new president misuses "literal", becomes a duck
# #paleo #rawlifestyle #tasty #nofilter
+
# No good deed goes unpunished
# [USER BANNED FOR THIS TEXT]
+
# Nom nom nom
# Perspective issues
+
# Not all dreams can come true
# I'm lost without your love, baby
+
# Not even once
# hey, so, we need to talk about your sphere-packing problem.
+
# Not even once...
# At this point the probe fires its engine for the 12th and last time before exiting the observable universe
+
# Nothing to see here.
# peeling back the pages of history
+
# Now where did i leave my ocarina. . .
# 🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢
+
# OH GOD SPIDERS
# lol, no i didn't jump
+
# oh, god, why?
# get your ass to mars
+
# Open wide!
# YES
+
# ouch!
# The building blocks of life
+
# peacekeeping mission is a total success
# Cruise Kingdom
+
# photobombed again
# Is this an april fools joke?  why did this show up at my door?
+
# Please. Save yourself.
# Posting my garden to Etsy. #humbleswag
+
# Prius Love
# Probably a universal turing machine, but too lazy to solve proof
+
# Prom Night at tentacle monster HIgh
# Starting to regret my OUYA purchase
+
# pronounced duh-jango
# PHOTOSYNTHESIS HELL YEAH
+
# Proof that dinosaurs and humans coexisted
# FUCK NOT AGAIN
+
# QWANTZ Fanfic
# Who Made all these Don quixote clones?
+
# Rabbits are vicious creatures when their data are stolen
# Apparently the NSA have been keeping secrets from us
+
# Really, the star wars prequels are under-rated if you think about it
# And thus, the polar carrot displaced the earth.
+
# rebranding of national park service almost complete
# this is just a tribute #thed
+
# rehearsals ARE going great! AnD Don't forget to come to the premiere on Thursday!
# I got the job!
+
# release the kraken
# I finally killed the weird recognizer that was following me
+
# Riemann should have had this idea
# rm -rf /
+
# RIP SPEAK N SPELL
# I just can't see the point anymore
+
# rock beats scissors
# I guess I only have myself to blame.
+
# Rocket pseudo-science!
# Lord of the Rings Episode IV: Revenge of the ents
+
# rodeo!!
# #Nailpolish
+
# Roll of toilet paper reacts to US Deficit
# Stop stalin and make up your mind
+
# Saw this outside last night. Is it dangerous?
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
+
# Sheena, who dis
# To get to the other tree and leaf!
+
# slippin' into the future
# welcome to Argentina
+
# smile for the camera!
# Dinosaur extinction: The final Phase
+
# So it's true, then.
# Kite powered bike leaves oil executives speachless.
+
# So it's true, then.
# Boy, I tell you what. I bet the roads on the moon ain't this smooth.
+
# So long, and thanks for the fistbumps
# Self Portrait: Complete.
+
# So that happened
# how to make roommate stop pooping everywhere
+
# So this happened.
# nasa and the Post office collaborate on new postage stamp
+
# solve all your problems with hemlock
# hungry hungry fencing subcontractors
+
# Somebody sneezed in the Bathtub
# The doctor says it is colon cancer :(
+
# Somehow the welcome mat ended up inside the house.
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
+
# steel beams taste best with a dallop of gasoline
# Connect the dots to see the correct Nixon cabinet member
+
# Strangely, my patients don't like this new couch.
# whoops GPS error
+
# Support my kick-starter! A whole new devise with bluetooth and a button!
# For sale: planet, barely used. slight pest problem
+
# Sweet, they new red shirts are on sale again!
# the charge of the light brigade
+
# Ted Cruz imagines himself like this and things it's normal.
# prototype soccer ball
+
# Testing my new high-contrast filter outside the unicyclist meet up
# A Dozen roses, the Barnum Effect, and Thou
+
# That's the princess I want to save
# every breath you take, every move you make
+
# the best stars are sky stars!
# I wonder what will this lead to...
+
# The castle was in you, all along!
# Malcovic, Malcovic, Malcovic, Malcovic!
+
# The gang destroyed the context
# Houston, we are the problem
+
# The little prince is full of siht
# Hey, what did you mortals do with my chariot?
+
# 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.
# Apparently, it's called "BEAR Fishing"
+
# The most diabolical teamup in history
# so I went and summoned hitler but he got old
+
# The new Doctor Who is quite the quack.
# My new tattoo
+
# the oceans are made of sky tears
# Transmogrifier 2.01.5 prototype
+
# the prophecy was true !
# reverse et
+
# The ritual has begun.
# Strolling down the street, saw this. #uglybeauty
+
# the zoidberg axis
# WENT ALL ZELDA ON THIS CRACKED WALL! #YOLO
+
# There is no way you can back up that claim. And that's okay.
# Soon. Soon...
+
# There's no more time!
# Now we're ready to attach the spiders. Remember, be gentle.
+
# These night vision goggles don't work
# birdcoin is looking to be a huge success
+
# these pretzels are making me thirsty.
# Ce n'est pas un canard
+
# They can see me!
# "I am So. Much. More."
+
# They're watching us.
# bit nosy, aren't you?
+
# this guy can't believe what i'm doing.
# my wonderful dad!
+
# THIS IS FOR KIBO!
# goddamnit, that's the fourth time this week!
+
# this is the last time i go skiing @mammoth
# Homo helicopteris captured in bali
+
# This is the second worst day of my life.
# #notallmen
+
# This is the strangest weasel I've ever seen.
# This is exactly what you think it is
+
# This is whom the nsa uses to watch you.
# The view outside of my airplane window.
+
# This is why I don't order take-out
# Just another day in paradise
+
# This one weird object blocks out the light!
# Mistakes were made.
+
# This wasn't a problem back in the usenet days
# New selfy stick you can hold with your foot
+
# This would be a great Emoji
# go home elephant you are drunk
+
# Those Eyes! @_@
# which end is the head of a chocolate cornet?
+
# Ticks, it's what's for breakfast.
# Can anybody help me identify this animal?
+
# Time to end the trial run, this was a failure. abort!
# 11 Mario facts that will blow-a your mind
+
# To avoid going bankrupt, Polaroid activates its subliminal message feature on old photographs to try to get more buyers,
# In the land of the blind, the one eyed man is king
+
# To weather the storm of outrageous fortune.
# New tat turned out pretty good. Kinda weird having a guy stare at my ass for that long but whatev, it's worth it. DASHIE 4 LYFE.
+
# Too many in line. I'll come back later.
# My gout's acting up again
+
# Too many potatoes, not enough butter
# now you're hungry too.
+
# Two days on this new diet. How do I look?
# Awwwwwwwwww, poor meteor!
+
# Ugh, I hate how people take pictures instead of just enjoying the view.
# Why do we call it "behedding" and not "bebodying"?
+
# Ugh, not the polar vortex again.
# parallel universe, here i come! #sweet!
+
# unsubscribe
# Starbucks <3 <3 <3
+
# vinyls were always better!
# The infamous Snow-muon.
+
# Wake up sheeple!!!!!!!1
# Office gamification has got out of hand.
+
# We look into each other's  eyes as we drive. it's to show our love.
# The Moon Will Eat What it will
+
# we need to keep our sex life fresh
# Got your nose!
+
# Well crap, snow's covered everything on earth again!
# GUYS HELP IS THIS SWINE FLU?
+
# Well, here's a real cock-up.
# Field Trip!
+
# well, the keys are definitely lost....
# AWESOME! This cloud was so much larger than my thumb!
+
# what are you complaining about?  three legs are inherently stable!
# Last time i buy a budget hairdryer
+
# What do we really know about the dark side of the moon?
# found this in my fridge. Think it's still good?
+
# What do you mean, don't talk about fight club?  That's just stupid.
# Grandma's new boyfriend is a keeper!  
+
# what is in the box?  Only pain.
# I lost my wits
+
# what the sun looks like!
# Oy, my giblets!
+
# when did i put on a bow tie???
# Oh no! Not Again.
+
# When I grow up I am *so* getting out of here
# Me llamo t-bone
+
# when they said samurai robot i thought they meant something else!
# [user was banned for this text]
+
# When you see it...
# Oh no! Not again.
+
# who ate half my cookie?
# better go inside, I need to polish my shoes
+
# Who dropped this? This is no way to run a student council!!
# Black box recorder
+
# Why can't I eat all this chicken?
# Oh No! Not again!
+
# Why did the cypress cross the road?
# Bangarang Motherfuckers
+
# With a mirror, it's 00:50 right now
# The side of my car. #roadrage
+
# Words, words, words
# One year ago I looked like this
+
# Worlds saddest bomber drops worlds happiest payload
# Copernicus: The early years
+
# Yay, worms!
# about to die lol
+
# Yesterday was not good
# Minecraft has fingerprints Now!
+
# you know what they say about guys with big feet
# i need to do my laundry more often.
+
# You only learn as much as you can put in one Cup of coffee
# using hollowed-out carrots to smuggle drugs across the border.
+
# you've really let me down this time.
# I don't know
+
#
# I. AM. BELLSPROUT.
+
 
# my new boss
+
===Images without permalinks ===
# i don't remember this scene form star wars
+
Images in the prompt which have not been found in the feed
# OH GOD WHAT HAVE I DONE
+
 
# WARRRBLGARBL
+
# 00154572-02e2-5e63-a3e4-bde3ab4b1934
# apple's new offering: iscream
+
# 046bc891-392e-58ac-880d-d202b3810bdd
# Larry asked me to be his wingman
+
# 08584d88-4186-5ea6-bc49-5f1f796d37de
# Any hatchlings in here?
+
# 08757175-c59e-52a6-9fc9-9c72e473ceba
# Bazookateer crossing
+
# 0b148e1f-e4bc-5100-92fc-5ec84c20eecc
# I finished building our pool, but now i realise we can't afford the water to fill it.
+
# 0d3b2461-d927-5d99-969a-c6a52d071461
# caught the sunset tonight at midday
+
# 0ecdc175-34e2-563f-a290-33c0f5549420
# Removed microwave door, new easier to watch the food cook
+
# 0ef43321-8a3f-5afb-912e-d4439a64f8a1
# this guy keeps following me
+
# 102a8fef-0b03-51c9-8ace-0017f18ed7d1
# Is it canibalism if i eat my own nose?
+
# 135ec01b-fa2c-5eb6-9354-87c4c3e12f63
# >< ))*>
+
# 172832dd-7c7c-5640-aefa-3e0d142ea1c8
# the way of the future
+
# 17ae1505-dc66-5fa6-b6fc-76e2e571dcca
# Maths are hard
+
# 1def8ba2-ed1f-5049-a814-ce84cd7a9f7b
# Sometimes all you can do is wait
+
# 1f420516-0eda-50f0-80db-d675525278e9
# #saturday #memories #beautiful
+
# 209a35ed-6e02-544b-952b-d4d0615d8c3c
# passed another hitch hiker
+
# 2133fa57-71c7-52ad-93be-adebb04251a9
# and then there were nine
+
# 2158ef67-cc5c-52aa-b437-87ad938d5430
# share this so xkcd cannot sell our data to the reptilians
+
# 23000a39-d407-5fd7-9956-3d90a0bc283c
# Look out!
+
# 23029be0-b127-5777-912f-664613740e58
# I 'M out of the acorn
+
# 230e82f1-3a97-5657-93b4-a1538237a7bd
# Pretty sure ball pits aren't supposed to be like this
+
# 25da16d6-e6a6-52a5-8507-91f2e4e68875
# Cant explain that
+
# 27773d87-9fc1-5fa3-945d-8602b334d630
# Wow, I didn't expect that spell to work.  #Sorrydude
+
# 2904fcef-5c88-58e6-b651-c8db16da8b4e
# come on, put on the slippers.
+
# 29a80edb-16d6-5da1-9d7c-34f80c7826d8
# I don't think I really understand what this is.
+
# 2aad5103-42b4-5836-a997-9c5d41ef18d0
# Fulfilling western ideals!
+
# 2ca667ea-3e06-5b04-ae11-c2e81ed10333
# How did the mars rover get here?
+
# 2cd3e0f7-2009-52d2-b526-d34fb21723fe
# The horrors of war
+
# 35327ccb-4c06-5054-b3a1-b1871ac0c928
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH
+
# 35547760-624c-5f0f-aa6f-05827e5396dd
# Roadrunner is the new transport minister
+
# 3602c6d2-660d-5d6f-b3bf-8aad19c3c492
# This just in: baby robot duck terrorises populace
+
# 37e8070f-4690-5a1e-9118-3b0a4e4af248
# London
+
# 38ed173d-7a12-5294-80cb-03deb8896dfc
# The ents met the triffids
+
# 39540864-cfcb-5819-bdd9-16f314fa7aa4
# #delfie
+
# 3b3aed58-a224-50be-9129-ba20483846b6
# Darn Pylon built in the cow field again
+
# 3d9ffba2-c0f6-5fcb-b3b2-ee8795c1f720
# Waynes World, Waynes world!!!
+
# 3e62ef75-49ce-5e12-bd8a-b173a9c4269d
# brokkolis and sweet potato, nice
+
# 3e74af7e-d5fe-561a-9835-2baa0724af3e
# Anyone craving some soup right about now?
+
# 3e7765a5-f766-5a74-8711-2720bef89403
# SIDE GOER 4
+
# 41e41ecd-5ed0-5ae0-891e-652664dfde38
# #awefullyNicetractsofland
+
# 4334a9ee-88d9-5be8-b019-723c34e7a83f
# First found evidence for Einstein–Rosen bridges.
+
# 43637145-5846-5213-bbd2-62c51fc68393
# we had to get creative when the bentley didn't show
+
# 464e554b-b208-5249-8f37-64ce5e075d9d
# I suppose things could probably be worse somehow.
+
# 4912282c-ec7a-5a0d-9e6e-10d3418ab330
# #flavorbomb
+
# 49a75cc1-bd31-5e44-9b08-d43f91c666de
# #Hopeicanfly
+
# 49de1a38-5ca8-5831-a90f-e676aed4bbc6
# I wish I could afford the monopolar model...
+
# 4b0d6770-c68c-5d87-9cc7-d33fae6dc98e
# No, I've never performed brain surgery before, but how hard can it be?
+
# 4b963434-6486-5baf-a02b-e2ba5fd2ebd8
# MY GIRL'S SCIENCE FAIR PROJECT WAS A BLAST!
+
# 553d2e98-2bcb-516d-8eaf-5442f1c9d0d6
# Deal with it
+
# 56f3037e-639d-5011-8fee-c4b0912baa83
# Look upon my works, ye mighty, and despair!
+
# 57c2fed8-6e80-5c80-a398-0edfc27cf754
# onomatopoeia? I hardly know ia!
+
# 5a8d1f9a-b07d-5a7b-be1e-525b50d5258c
# EARTH HAS 4 CORNER  SIMULTANEOUS 4-DAY  TIME CUBE  WITHIN SINGLE ROTATION.  4 CORNER DAYS PROVES 1  DAY 1 GOD IS TAUGHT EVIL.
+
# 5c39d369-cba1-59d8-965b-d1b068809e6b
# Nothing new under the sun
+
# 5dd8151e-6bab-5302-8c3e-611ae32825b7
# worst horse ever :(
+
# 64edaa0d-1f4f-5ebe-a9c7-de0f2eabf74d
# look what happened to my satellite
+
# 65c4a415-ada8-5487-8c67-59ad4bdac78f
# Aside from the Fact I Was Buried Alive, The day has been surprisingly good.
+
# 65e7cf48-31dd-546f-98b1-d235ef5c9100
# I just joined the Kite Kite Kite!
+
# 6691672e-826a-53ba-a42a-8cbf38ad511d
# Parlez vous Francais?
+
# 673eec8a-d30a-5f43-a3b0-8535a9b464e7
# "...The Aristocrats."
+
# 67d13536-af25-5a31-b81e-021e2e9676f5
# PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
+
# 6b1a016b-877b-5451-b250-e979e72ea44a
# Watch out for the squirrely wrath!
+
# 6b7cd4ef-9ee9-50d5-8d77-493dbbadcb9f
# Our flying car attemps seems to got out of hand
+
# 6bead760-585c-5fea-a296-164189e886ed
# truly, i am euphoric
+
# 6bf5c6a4-e2e0-5c9d-b768-c39227ea1a22
# Tycho and gabe stepped up their game
+
# 6f4485f2-b904-519e-a027-7d731c785331
# This makes my dog twitch when it sleeps
+
# 6f534227-fcc8-50a1-94f8-40e9fec2241f
# oompa loompa diggeti doo
+
# 6f7c3202-9bc7-5bbf-8bb9-d0ead792c632
# I'll catch it one day
+
# 6fd02b30-262e-5c45-b966-1e1550446dbf
# I can has cheezburger?
+
# 713a7c42-fbf3-5305-b821-ffd5f871bd84
# The designers of this camera literally nailed it
+
# 71405975-e88a-5bc8-bb33-58201ed52528
# Since the Droste Incident, federal regulations have prohibited these types of experiments.
+
# 725e2413-9cf9-562f-9bad-4231fea16e28
# ha ha ha... no.
+
# 726847dc-c652-5ef6-8696-53830c0a1e2b
# The metric system costs thousands of lives each year
+
# 72f1f6f8-d49a-50f4-85ef-5f571240bd09
# Day 12: it's going well I think
+
# 773eee34-46e4-5b3f-a653-9371796e8b58
# All things considered, it turned out nice again
+
# 7d60a449-d8d8-5444-9ba2-6f1c98edd903
# #livefeed #colonoscopy
+
# 7ea6bc06-01e7-5915-b6c1-1141386bb99c
# The Captain Crunch Kraken
+
# 81dde1b4-ed9b-5925-a879-70efb841d5fd
# oops, oops, oops, okay this is happening
+
# 85dd384f-37bf-5365-af59-78a0cb78aed8
# Taco bells give away resulted in unplanned consequences for downtown Houston.
+
# 86cc4be5-f25e-5289-8566-602b9d6e634a
# True Self-Control
+
# 882bc233-3966-5d04-bccb-ae2e0e5e763b
# I should really separate those
+
# 895b2fec-6090-50b3-b736-12915362995c
# I loled my head off!!!
+
# 898a37b4-252d-54bd-933e-c456f95dadee
# the floor is made of lava. send help.
+
# 8a4ca1ad-96aa-569b-8bde-8c57ea815ae9
# I Swear this dress was yellow and blue
+
# 8a58ccb4-f327-592a-b946-72d7a56d9d2e
# A soulful rendition of "old man river"
+
# 8e1b0bfa-bc19-5cf8-888c-d31247c71190
# tail recursion spotted in the wild!!
+
# 8f7d83f9-7007-5f7b-901b-bcb35f900859
# No way, man! Bento box disappointment.  Lone green pea.
+
# 900af948-f3f8-5d21-b015-6667461dd215
# My cats used to lie all over the floor and block hallways, but thanks to the furniture store, my problems are solved!
+
# 903f52cf-cb81-5c26-97f7-7d87a6d3b243
;prompt_posters
+
# 91168585-a6ee-5b76-ba2b-c41f5685180c
# Jaden21
+
# 935e73e9-ecf1-5d4f-8668-8fb907cdee4f
# Destiny1983
+
# 9491599b-459c-5e6e-9ee0-d85a0497ef55
# Horsepower Lovecraft
+
# 97127900-4d61-591a-95c8-851ad788386c
# Eliezer Yudkowsky
+
# 995623b5-4ded-5315-9f2d-f44a0db0ee7c
# Brandi9
+
# 9d1b6f68-d4ea-5932-8b47-d05b142a72ee
# Frances29
+
# 9e4ad090-7e0e-5aa7-9a55-8e0bb0b8ea8b
# Jaden Riley Rufio Tolkien
+
# 9fa68e29-e97a-5496-9edf-f3d9ce528f0a
# Agric Silverfinger
+
# 9fac5c76-ef99-5c5c-a8ed-b36fa44e50bf
# Tracy1977
+
# a0bc51e1-ff72-56b8-8574-a4204759a872
# Cheyenne1988
+
# a1c63d58-b0b6-5029-bc8a-b0318119f506
# Michaela2006
+
# a399201b-61ec-5bc2-8041-57fdbcb572cd
# Chelsea2006
+
# a5dce98e-3e17-555e-b67c-4448bad354bc
# S. G. Dukat
+
# a8bd5dc6-24a0-516f-862a-dbef66f9f688
# Bool Hand Luke
+
# ab1d561b-6bfa-5686-97a8-259ed0e4b200
# Lord Mondegreen
+
# acebb7e3-9d07-5c49-85b7-7adfc8fc41fd
# Debbie26
+
# ae5f5094-3168-546b-84ca-22c8b80d5922
# Marie10
+
# b09c0be6-756d-52a8-97a0-db71a93d0a1d
# Michelle11
+
# b337d406-6624-57cb-95cd-dd68431ee649
# Bailey2001
+
# b3404349-725f-5b2a-b9c7-dceae37d53ba
# Sharon99
+
# b45835d7-ea26-548c-b904-ae20f678e131
# Charles18
+
# b4a40718-739a-5580-95be-52ac57cf80ac
# Cheyenne15
+
# b67a51a3-938e-5ce3-83df-cb623f278864
# Tricia14
+
# b832f9a3-fc8c-532d-b1f7-d7b9dd0e2d6e
# Pam06
+
# b8976cf8-d5d0-5c24-a5eb-bc40190f85fd
# Norton Ghost Dad
+
# ba1421d7-bbee-54c1-8026-bd95cfedc92b
# Kristy2007
+
# ba89ae53-04bf-5a43-9489-f41b20d42f8f
# Donna2
+
# bad65b6f-9a98-559f-bcd0-5844ee3cc5ee
# Jack39
+
# bb76621a-ed64-57ff-bb30-eaf319c66381
# Deborah3
+
# bdae9e2c-8c92-50ba-92da-c0235955c36b
# Kelsey1996
+
# c35556ad-67f0-5b66-9276-73e07117c329
# Keira2002
+
# c3be6486-bf0a-5d4c-98f9-e09b7a48cd02
# Lord Gaga
+
# c53125eb-36f2-58f6-b890-3fdddbb02219
# Susan25
+
# c92343f2-bc7f-538c-ae59-051331c561b7
# Caden2010
+
# ca8f102e-4186-5b9b-90ad-a562e0009d73
# Sarah55
+
# cbd65958-d879-5f15-a21b-b5685d30d9bd
# Jack3
+
# ce035b77-82af-583b-a3e8-e84a6aee60a7
# Sidd Finch
+
# cfaeca24-0887-5d13-acd0-70e475f6551b
# Barbara1974
+
# cfdd19a9-fd37-5164-a3f0-6e749567fc8b
# Christina Applecare
+
# cfe6887a-407f-5be7-b541-85d219012b5b
# Marissa Mayer
+
# d001ee75-ce44-56e9-8b22-6110cc2a2a17
# Mark Zuckerberg
+
# d0d56e0e-46df-5679-a082-3034b64e5197
# Justin28
+
# d4163e0b-71c3-5b98-bc28-fe6ad6c1cbe3
# Samuel19
+
# d5efa477-cc71-5302-b79a-3be14615bb6d
# Patricia03
+
# d840aefe-d163-5e9d-bbf7-346a1a93207c
# Tina Belcher
+
# d87b4b0d-1af7-521d-93e5-705b9c064b4e
# Taylor1998
+
# d8c518c6-35d9-55b3-b9b4-3610f7064839
# George Reagan Renesmee Martin
+
# d8d79c97-5aee-5ae5-a3fe-e7da0eae4cfc
# Alice1956
+
# d96c5875-533d-5a16-8199-50942d5d8f0d
# Wil
+
# da7fbaeb-34ab-5de8-8dab-8c43dbb78ed9
# Ronald22
+
# dc2e5974-2afb-5c81-a0f3-6882fbfaaccf
# Tricia1
+
# ddc27138-5274-5187-a396-98524911e10d
# Madison80
+
# df22fe73-a4af-5b9a-bcd6-5803594329d0
# Ashley8
+
# e21b7bd5-3f7f-5595-80d4-e32eccd37d60
# Henry4
+
# e2c76ec3-2530-553e-8513-52825fc415f5
# Dillon2008
+
# e3fc783d-50bf-5c28-813f-42aa6cd5d945
# Hatsy Collins
+
# e557518b-75b2-5a55-86e0-a1f9555e857e
# Jennifer1
+
# e70090a8-06bc-5f4d-8961-fe8799a7f758
# Keira48
+
# e7b40c39-aa6e-5077-9689-a261b39e070f
# Aidenn Aberforth Milne
+
# e82b25d9-37ad-533f-888b-dd687ec819dc
# Misty3
+
# ea37dc88-c40c-530c-a466-130c4ac49f20
# James URL Jones
+
# ea77fda6-fc06-5f5b-a48a-a5294dfc9396
# Caden14
+
# eb5dffc4-fa51-5a2d-880f-35ab1391f8c8
# Margaret5
+
# ec989eb9-12d4-5725-8711-99bc216282c2
# Linda08
+
# ee1440c2-a7c8-5856-8bb9-b1d2ad39f9a6
# Margaret11
+
# f076aac5-ca8c-5cfc-80e9-00c006f6562b
# Cynthia99
+
# f0d43ac6-b030-539a-8fd4-1799c01edca2
# Amanda08
+
# f0e3833f-b09f-5bc4-8b8f-f449084b6846
# Kaden61
+
# f16a97b5-a9e9-5aaf-aa59-9bd1841508d2
# Taylor1990
+
# f1ee6fb0-212f-5cd2-b5c7-21bc13a4693f
# Dunston Chexin
+
# f2c50136-40db-54f8-bc92-deebabf69dee
# Jalen81
+
# f2d510b5-6bab-5c69-a045-806ce2cb4d5a
# Bailey08
+
# f3917274-b91c-5846-bee4-d928b3f15d92
;prompt_reasons
+
# f58a17c8-24bd-59f6-a189-7231bf3b74f1
# our buffer runneth over
+
# f61c519b-7315-5061-a763-8057b3ba6fb5
# I got pretty distracted trying to figure out how big space is
+
# f757813d-b5b5-5446-a752-4a589dc4ac11
# the butter you have dialed is invalid or no longer in service
+
# f95151a1-29f4-5fa8-9e40-611a6c5544d0
# +++ OUT OF CHEESE ERROR. REDO FROM START +++
+
# fa0ba376-6c87-55b6-a58b-de5a4a2c42b3
# friday squid blogging
+
# fa5dea52-e700-5e6e-863f-c53fd9b72264
# CRM-114 unit malfunctioning
+
# fb6e8946-6266-5a70-a193-8038b4dfd0aa
# GSM filter change required
+
# fd1b32fc-7422-56ea-9e31-995ba9a26893
# User is not a typewriter.
+
# fdb3fea3-4555-581b-ba1b-58baecc3e1c4
# floating point unit no longer afloat
 
# error: error code [error] while decoding error code
 
# User accepted terms but not conditions
 
# soonerist sperver fid dot nile
 
# http is down
 
# Something went wrong: Something went wrong (Something went wrong)
 
# server fell in ocean
 
# the server is temporarily permanent. Please try another also.
 
# spin cycle still active
 
# too many hands on the keyboard
 
# butter overflow
 
# i hurt myself today / to see if i still feel
 
# Main Bus B Undervolt
 
# CAPTCHA response indicated parahuman intelligence
 
# dictionary too stiff to read
 
# Unable to cast variable of type Int32 to Magic Missile
 
# SQL ejection
 
# subtle threading bug in turing-complete version numbering system
 
# hung up prematurely
 
# insufficient smoke for current mirror array
 
# the system / is down
 
# error reading drive B. Abort, Retry, Fail?
 
# hard drive oil depleted
 
# wrong files
 
# data too big
 
# helvetica scenario
 
# could not initialize sound blaster 16
 
# temporal paradox
 
# butter to text interface not found
 
# unimplemented trap
 
# PC LOAD LETTER
 
# error: operation completed successfully
 
# illegal carrot detected in mail queue
 
# butter didn't suit the works
 
# electrons too big, stuck in wafer
 
# Desystematized chronodynamic balancing detected in VX Module core.
 
# screws are stripped
 
# butter underrun
 
# Please Insert Riven CD 4
 
# server farm lost starbucks wifi signal
 
# server had too much to drink
 
# Baby ur much 2 fast
 
# spontaneous splinal dereticulation
 
# general uncertainty
 
# lp0 on fire
 
# virtual memory got too real
 
# unexpected timezone drift desynchronization
 
# spin number must be of the form n/2
 
# ERR:INVALID DIM
 
# error
 
# HTTP 403 and 3/4ths
 
# oh jeez there's a lot of you can you all just hang on for a second please oh frig this is so bad
 
# This page contains content from the Open Source Initiative, who have blocked it on copyright grounds.
 
# turns out server was on circuit with lightswitch by door
 
# mean connection time exceeded
 
# files fell out
 
# bookmarks migrated to Venezuela
 
# aol window in front of netscape window
 
# cat-like typing detected
 
# microwave running
 
# nanobots in the water
 
# confirmation BIOS
 
# UTF-31 decode error
 
# PRESS PLAY ON TAPE
 
# HTTP 418
 
# cumulonimbus #19 too rabbitlike
 
# TRIED TO READ 9TH SIDE OF 8 TRACK
 
# a user's middle name was </html>
 
# previously-recovered files overwritten by newly-recovered ones
 
# qubit indeterminate
 
# sysadmin trapped in well
 
# RDBMS completely forgot how inner joins work
 
# lights are out, hard drive is taking a nap
 
# server room haunted
 
# out of monads
 
# server aperture too narrow for capital letters
 
# database configuration violates the Prime Directive
 
# sitemap was held upside down
 
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
 
# <%= reason %>
 
# overcurrent undervolt caused by vacuum cleaner on same circuit
 
# user put spaces/vowels in filename
 
# Dave's not registered, man
 
# minimum recursion depth not reached
 
# the little plastic tab on the box the data's in broke off
 
# tape on write-protect hole fell off
 
# undefined is not a function, which really makes you think
 
# files overwritten with more interesting content
 
;prompt_text
 
# better go inside, I need to polish my shoes
 
# #flavorbomb
 
# Big bowl of star-flakes
 
# No, I've never performed brain surgery before, but how hard can it be?
 
# That sweater is so 2013
 
# SEINFELD in SPAAAAAACE!
 
# I guess I only have myself to blame.
 
# GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
 
# now you're hungry too.
 
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
 
# #paleo #rawlifestyle #tasty #nofilter
 
# if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
 
# Life comes from the Ocean. We just Give them the opportunity to go back
 
# if i don't return by 5pm give this photo to my kids when they grow up
 
# Magnificent as fuck
 
# oh look, a penny
 
# My clothes need a wash...
 
# tail recursion spotted in the wild!!
 
# The birds found the hobbit hole
 
# Waynes World, Waynes world!!!
 
# Check out my new cat! Sooooo cute!
 
# ☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭
 
# Don't send bees, send lions! and send them to france!
 
# Kite powered bike leaves oil executives speachless.
 
# ♪♫♪♫♪♫♪♫
 
# "I'm sorry, i can't do long distance right now"
 
# I see you have constructed a new lightsaber
 
# cthulu wants what cthulu wants
 
# two great tastes that go great together
 
# #notallmen
 
# We can't do it, the moon is in the way
 
# Ramen is squishy and soft
 
# the day of the fingernail clipping has dawned
 
# 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.
 
# help wanted. inquire within.
 
# PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
 
# Astronauts tossed out of ISC called "Nuisance" by commuters
 
# The view outside of my airplane window.
 
# too much lens flare?
 
# the event horizon returned
 
# Freshly waxed floors + new socks
 
# Roadrunner is the new transport minister
 
# sentient IPOD deleted all my music. again.
 
# Use the force responsibly.
 
# i don't remember this scene form star wars
 
# #lifehacks
 
# stork carrying a babby rabbit!
 
# This guy...
 
# Hide! It's Un Chien Andalou!
 
# i've never felt so alone.
 
# I just bought this
 
# Turkey Drumstick Stonehenge was surprisingly compelling!
 
# The French space program
 
# Does this look like pink eye to you?
 
# Fission, fusion, what's the difference?
 
# That's just not very funny
 
# I'm lost without your love, baby
 
# George was a good little monkey, and always very curious.
 
# night sledding deserves a quiet night
 
# my friend posing while a plane flies by
 
# #nomakeup #natural
 
# Sometimes I just want to be in the moment.
 
# I finished building our pool, but now i realise we can't afford the water to fill it.
 
# Oh god is it still following me?
 
# The HORROR!
 
# I EXPECT YOU TO SAY 'OW OW OW,' MR. BOND
 
# mYTH BUSTED!
 
# it was never this complicated when I was a kid
 
# I hate trying to win bowls of cereal in 'skill tester' machines
 
# my rockets have formed a cooperative but I have to do the dishes
 
# SOMETHING IS WRONG WITH THIS POWER OUTLET CALL AN ELEXORCISTRICIAN
 
# I got the job!
 
# Doesn't like being referred to as garfield
 
# Notice anything different?
 
# Apparently it's a thing now...
 
# Darn Pylon built in the cow field again
 
# Optimus prime was having a bad day.
 
# And thus, the polar carrot displaced the earth.
 
# Not a fruit
 
# I bought you a RING... ooh shinything!
 
# using hollowed-out carrots to smuggle drugs across the border.
 
# Why do dogs like this?
 
# Bangarang Motherfuckers
 

Latest revision as of 14:36, 5 September 2016

Status[edit]

  • 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.
Phase 1.
Saving reasons, usernames and text only. No images or permalinks IDs saved.
  • All usernames have been found
  • All reasons for data loss have been found
  • The overlap between feed and prompt text is over 95%
Phase 2.
Saving permalink and images IDs
  • The image and text associated with permalinks never changes.

(I probably should have been saving the permalinks this whole time.)

Count history[edit]

  • 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[edit]

  • Edit: "ERR_CONNECTION_REFUSED". :( - 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 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[edit]

http://c0.xkcd.com/xb/feed

feed: Array {
id: "a88f9898-8ae9-5b33-93e6-a5993daa922c" //used as http://xkcd.com/1506/#post/a88f9898-8ae9-5b33-93e6-a5993daa922c
img: "022f762b-9483-519c-8e6e-bd7a0ed5e2ba" //used as http://c0.xkcd.com/xb/image/022f762b-9483-519c-8e6e-bd7a0ed5e2ba
kind: "post"
poster: "Frances51"
profpic: "user-14.png" //used as http://imgs.xkcd.com/xkcloud/user-14.png
text: "Never will follow the instructions on google maps again."
}
prompt {
reason: "RDBMS completely forgot how inner joins work"
id: "21bd52d8-a3a4-590f-8888-db854fb52ce3" //used as http://xkcd.com/1506/#post/21bd52d8-a3a4-590f-8888-db854fb52ce3
poster: "Bool Hand Luke"
profpic: "user-4.png" //used as http://imgs.xkcd.com/xkcloud/user-4.png
img_id: "21bd52d8-a3a4-590f-8888-db854fb52ce3" //used as http://c0.xkcd.com/xb/image/21bd52d8-a3a4-590f-8888-db854fb52ce3
captions: Array (of strings)
text:"just two more trips over the horizon"
album: Array (of img_id strings)
}

Prompt varies between:

  • img_id and captions array
  • text and album array

Script[edit]

  • V1. Collect and store data in javascript variables. User must manually retrieve and format results.
  • 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.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.
xkcd = {
	prompt_reasons      :[],
	prompt_posters      :[],
	feed_posters        :[],

	prompt_images       :[],
	prompt_captions     :[],

	feed_table          :[], //dummy to create button
	feed_ids            :[],
	feed_images         :[],
	feed_text           :[],

	prompt_imagesonly   :[],
	prompt_captionsonly :[],

	desc: {
		prompt_reasons      :"Reasons for data loss",
		prompt_posters      :"Usernames in the prompt",
		feed_posters        :"Usernames in the feed",

		prompt_images       :"Images in prompts",
		prompt_captions     :"Captions in prompts",

		feed_table          :"Table of unique feed entries",
		feed_ids            :"Permalinks in the feed",
		feed_images         :"Images in the feed",
		feed_text           :"Captions in the feed",

		prompt_imagesonly   :"Images in prompts and not in the feed",
		prompt_captionsonly :"Captions in prompts and not in the feed",
	}
}
function init() {
	$("<style type='text/css'> #magic div { display:inline-block; }\n#magic textarea { display: block; width:100%;  height: 300px; } </style>").appendTo("head");

	$("#ctitle").after($("<div>").attr("id","magic"));
	for(i in xkcd) {
		if (i != "desc") $("#magic").append($("<button>").html(i));
	}
	$("#magic").append($("<br>"))
		.append($("<div>").attr("id","desc"))
		.append($("<textarea>"));
	$("#magic").append($("<button>").html("sort"));
	$("#magic").append($("<input type='checkbox' id='loadarray'>")).append($("<label for='loadarray'>").html("Load array"));
	$("#magic button").on( "click", function() {
		update( $(this).html() );
	});
}
init();

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) {
		xkcd[field].push(value);
		updatecounts(field+" : "+value);
	}
}

function next(recheck) {
	if (!recheck) recheck = "";
	$.getJSON('http://c0.xkcd.com/xb/feed/'+recheck).done(function (data) {
		if (typeof data.prompt != "undefined") {
          additem("prompt_reasons", data.prompt.reason);
		  additem("prompt_posters", data.prompt.poster);

		  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)
				additem("prompt_images", data.prompt.album[i]);

		  if (typeof data.prompt.captions != "undefined")
			for(i in data.prompt.captions)
				additem("prompt_captions", data.prompt.captions[i]);
        }
        if (data.text) data.feed = new Array(data);
		for(i in data.feed) {
			additem("feed_posters", data.feed[i].poster);
			feedentry = {
				img:  data.feed[i].img,
				text:  data.feed[i].text
			};
			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) {
			    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 {
				tempNew = JSON.parse(localStorage.getItem('NewFeedIDs'));
				if (tempNew == null) tempNew = new Array();
				if (tempNew.indexOf(data.feed[i].id) == -1)
					tempNew.push(data.feed[i].id);
				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();

function mergearrays(array1, array2, prop) {
  for(i in array2) {
    if (typeof array2[i] == "undefined") continue;
    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) {
    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 "prompt_posters":
    case "prompt_reasons":
    case "prompt_captions":
    case "prompt_images":
      $("#desc").html("Loading into "+which);
      temparray = ("\n"+$("#magic textarea").val().trim()).split("\n# ")
      if (temparray.length > 2) temparray.shift();
      mergearrays(xkcd[which], temparray);
      $("#desc").html("Loaded "+temparray.length+" into "+which);
      temparray = [];
    break;

    case "feed_text":
    case "feed_images":
      $("#desc").html(which+" must be loaded via feed_ids");
    break;

    default:
      $("#desc").html(" (Error: "+which+" not implemented)");
  }
}

function update(which) {
  if ($("#loadarray").prop('checked')) {
    if (which == "sort") {
      $("#desc").html(" (Ignoring the fact the 'load array' button is checked...");
    } else {
      loadarray(which);
      return;
    }
  }
  $("#desc").html(which+": "+xkcd.desc[which]);
  switch (which) {
    case "feed_posters":
    case "prompt_posters":
    case "prompt_reasons":
    case "prompt_captions":
    case "prompt_images":
	//These are all simple arrays which require no additional formatting.
	$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
	$("#desc").append(" ("+xkcd[which].length+")");
    break;
    case "feed_ids":
	temp = { ids:"", countall:0 }
	for(j in xkcd.feed_ids) {
		temp.countall++;
		temp.ids  += "\n#http://xkcd.com/1506/#post/"+j;
	}
	$("#desc").append(" (all: "+temp.countall+")");
	$("#magic textarea").val("\n"+temp.ids);
	delete temp;
    break;
    case "feed_table":
	temp = { array: [], list: "", img: [], text: [], countunique:0, countall:0 }
	for(j in xkcd.feed_ids) {
		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# "));
	$("#desc").append(" ("+xkcd[which].length+")");
	xkcd[which] = []; //no need to keep this in memory
    break;

    case "prompt_captionsonly":
    case "prompt_imagesonly":

	tempprop = which=="prompt_captionsonly"?"text":"img";
	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]);

	$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
	$("#desc").append(" ("+xkcd[which].length+")");
	xkcd[which] = []; //no need to keep this in memory
	xkcd[tempwhich] = []; //no need to keep this in memory

    break;
    case "sort":
	temparray = ("\n"+$("#magic textarea").val()).split("\n");
	temparray.shift();
	temparray2 = [];
	mergearrays(temparray2, temparray)
	
	temparray2.sort(function (a, b) {
	    return a.toLowerCase().localeCompare(b.toLowerCase()); 
	});
	$("#magic textarea").val(temparray2.join("\n"));
	$("#desc").html("Sorted "+(temparray.length-1)+" into "+temparray2.length);
	delete temparray, temparray2;
    break;
    default:
        $("#desc").html(" (Error: "+which+" not implemented)");
  }
}

function restore() {
	window.tempOld = JSON.parse(localStorage.getItem('NewFeedIDs'));
	if (window.tempOld == null) window.tempOld = new Array();
	restoreLoop();
}
function restoreLoop() {
	if (window.tempOld.length) {
		next(window.tempOld.pop());
		window.clearTimeout(window.nextTimer);
		window.nextTimer = setTimeout('restoreLoop()', 5000);
	}
}

(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.

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.

You can check on the xkcd variable at any time.

The surveys do not change as often as the other data.

I'm only interested getting in the reasons, feel free to adapt this script to get whatever else.

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[edit]

  • prompt_reasons: [107] - None new.
  • prompt_posters: [205] - None new.
  • feed_posters: [205] - None new.
  • feed_images: [1528]
  • prompt_images: [1697] (crashed and found again)
  • prompt_images without permalinks: [169]
  • feed_text: [1993]
  • prompt_captions: [2287] (crashed and found again)
  • prompt_captions without permalinks: [295]

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[edit]

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.
  1. +++ OUT OF CHEESE ERROR. REDO FROM START +++
  2. <%= reason %>
  3. aol window in front of netscape window
  4. a user's middle name was </html>
  5. Baby ur much 2 fast
  6. bookmarks migrated to Venezuela
  7. butter didn't suit the works
  8. butter overflow
  9. butter to text interface not found
  10. butter underrun
  11. cannot save, there's something gross on the S key
  12. CAPTCHA response indicated parahuman intelligence
  13. cat-like typing detected
  14. confirmation BIOS
  15. could not evade skifree yeti
  16. could not initialize sound blaster 16
  17. CRM-114 unit malfunctioning
  18. cumulonimbus #19 too rabbitlike
  19. database configuration violates the Prime Directive
  20. data too big
  21. Dave's not registered, man
  22. Desystematized chronodynamic balancing detected in VX Module core.
  23. dictionary too stiff to read
  24. electrons too big, stuck in wafer
  25. ERR:INVALID DIM
  26. error
  27. error: error code [error] while decoding error code
  28. error: operation completed successfully
  29. error reading drive B. Abort, Retry, Fail?
  30. ethics in journalism
  31. eyelash! eyelash!
  32. files fell out
  33. files overwritten with more interesting content
  34. firewall caught fire
  35. floating point unit no longer afloat
  36. food problematic
  37. friday squid blogging
  38. general uncertainty
  39. GSM filter change required
  40. guru meditation #00000025.65045338 press left mouse button to continue
  41. hard drive oil depleted
  42. helvetica scenario
  43. HTTP 403 and 3/4ths
  44. HTTP 418
  45. http is down
  46. hung up prematurely
  47. I got pretty distracted trying to figure out how big space is
  48. i hurt myself today / to see if i still feel
  49. illegal carrot detected in mail queue
  50. insufficient smoke for current mirror array
  51. lights are out, hard drive is taking a nap
  52. lp0 on fire
  53. Main Bus B Undervolt
  54. mean connection time exceeded
  55. microwave running
  56. minimum recursion depth not reached
  57. nanobots in the water
  58. oh jeez there's a lot of you can you all just hang on for a second please oh frig this is so bad
  59. our buffer runneth over
  60. out of electrons
  61. out of monads
  62. overcurrent undervolt caused by vacuum cleaner on same circuit
  63. PC LOAD LETTER
  64. Please Insert Riven CD 4
  65. PRESS PLAY ON TAPE
  66. previously-recovered files overwritten by newly-recovered ones
  67. qubit indeterminate
  68. RDBMS completely forgot how inner joins work
  69. screws are stripped
  70. server aperture too narrow for capital letters
  71. server farm lost starbucks wifi signal
  72. server fell in ocean
  73. server had too much to drink
  74. server power cable stolen by raccoon for nest
  75. server room haunted
  76. sitemap was held upside down
  77. Something went wrong: Something went wrong (Something went wrong)
  78. soonerist sperver fid dot nile
  79. spin cycle still active
  80. spin number must be of the form n/2
  81. spontaneous splinal dereticulation
  82. SQL ejection
  83. subtle threading bug in turing-complete version numbering system
  84. sysadmin trapped in well
  85. tape on write-protect hole fell off
  86. temporal paradox
  87. the butter you have dialed is invalid or no longer in service
  88. the little plastic tab on the box the data's in broke off
  89. the server is temporarily permanent. Please try another also.
  90. the system / is down
  91. This copy of Ubuntu is not genuine and you have not yet resolved this issue.
  92. This page contains content from the Open Source Initiative, who have blocked it on copyright grounds.
  93. too many hands on the keyboard
  94. transfer interrupted by incoming fax
  95. TRIED TO READ 9TH SIDE OF 8 TRACK
  96. turns out server was on circuit with lightswitch by door
  97. Unable to cast variable of type Int32 to Magic Missile
  98. undefined is not a function, which really makes you think
  99. unexpected timezone drift desynchronization
  100. unimplemented trap
  101. User accepted terms but not conditions
  102. User is not a typewriter.
  103. user put spaces/vowels in filename
  104. UTF-31 decode error
  105. virtual memory got too real
  106. wrong files
  107. YOU MUST CONSTRUCT ADDITIONAL PYLONS

Captions[edit]

This is the combined list of all captions I have found, in the feed and in prompts.

  1. (ღ˘⌣˘ღ)
  2.  :-(
  3.  ?????????????
  4. ... It's about ethics in games journalism.
  5. ...And then we decided it was time to leave
  6. ...Freudian sense tingling...
  7. ...just no.
  8. ...monsters from the id...
  9. 'BOOM' goes the dynamite!
  10. 'Murica, hell yeah!
  11. "...The Aristocrats."
  12. "ARIANA GRANDE" is spanish for "GIANT SPIDER"
  13. "AS the ancient Israelites broke Mana, we shall break frosted pastries"
  14. "Bake him away, toys"
  15. "Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
  16. "Cat-like Reflexes"
  17. "Honey, I think the assembly instructions for this washing machine are a bit... What's the opposite of verbose?"
  18. "I am So. Much. More."
  19. "I Never watch porn"
  20. "I'm sorry, i can't do long distance right now"
  21. "Innocent X" by Diego Velazquez, c. 1650, oil on canvas
  22. "Is it symmetric this way?"
  23. "My God, it's full of starS." "WeLL, DURR"
  24. "Oh Sword-chan" "Yes Gun-Kun?"
  25. "Space duckin'" By led blimp
  26. "sun" glasses.. lolz. heh.
  27. "The colour out of space" and black.
  28. "Use the force, Harry" - Gandalf
  29. “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
  30. ((╬ಠิ﹏ಠิ))
  31. (ღ˘⌣˘ღ)
  32. [Metal Gear sound effect]
  33. [USER BANNED FOR THIS TEXT]
  34. [user was banned for this text]
  35. *Darth Vader Breathing*
  36. *glomp*
  37. *Sigh* not cat food for diner again
  38. *Tips fedora*
  39. #720_no_scope
  40. #ALLLLLLBYMYSELF
  41. #awefullyNicetractsofland
  42. #beatingheartinabox
  43. #bedhead
  44. #BEWARE KILLER TREES WITH KILLER BEES INSIDE
  45. #blessed
  46. #bornthisway
  47. #BROKEN
  48. #Canadian internet #price gouging
  49. #CATSANDBIRDS
  50. #caturday
  51. #cloudywithachanceofmeatballs
  52. #comfortfood
  53. #Compromise
  54. #DANGERZONE
  55. #DARE to #DREAM
  56. #delfie
  57. #Donthate #Truelove
  58. #drbalanced
  59. #DrinkSaltwater
  60. #duckface
  61. #essentialsupplies
  62. #fallingfromorbit
  63. #fishy!
  64. #flavorbomb
  65. #giganticflower #headshot
  66. #GOD
  67. #gps be like
  68. #hashtag
  69. #Hashtag #ironicSelfie
  70. #hashtag #yinyl #yolo #thanksobama
  71. #HL3 #CONFIRMED #ILLUMINATI
  72. #hoax
  73. #Hopeicanfly
  74. #illuminati
  75. #imnotracistbut
  76. #ivisitedthegrandcanyon #yolo
  77. #justnasathings
  78. #lifehacks
  79. #livefeed #colonoscopy
  80. #lolcats
  81. #Long_Exposure
  82. #LOVEATFIRSTSIGHT#JUSTMARRIED
  83. #me #throwbackthursday
  84. #Moses #riverbabies #passover y'all!!!
  85. #Nailpolish
  86. #newhipsterbike
  87. #NewProfilepic
  88. #nofilter
  89. #nomakeup #justgotup #wow
  90. #nomakeup #justnatural
  91. #nomakeup #natural
  92. #notallmen
  93. #notamodel #nofilter
  94. #onering #fuckhobbits
  95. #paleo #rawlifestyle #tasty #nofilter
  96. #parsnipandoldlace
  97. #Photobomb
  98. #rememberthetitans
  99. #satellite #navigation
  100. #saturday #memories #beautiful
  101. #selfie #atwork #nofilter #potatoduty #yolo
  102. #selfie #imatree #thuglife
  103. #selfie #nomakeup #nofilter
  104. #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
  105. #sorrynotsorry
  106. #strangelyaroused
  107. #stublife
  108. #sudowoodoproblems
  109. #teamplayer
  110. #this_is_how_an_angel_dies
  111. #this_is_sparta
  112. #Toobigtofall
  113. #toothproblems
  114. #twinsies
  115. #underkill
  116. #vampiremirrorselfie
  117. #Worstweekever
  118. <3 hanging out with saruman
  119. <reported for inappropriate content>
  120. >< ))*>
  121. ┬──┬◡ノ(° -°ノ)
  122. ▒☺▒
  123. ☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭
  124. ♪♫♪♫♪♫♪♫
  125. 🇺🇸 USA! USA! 🇺🇸
  126. 🇺🇸 USA! USA! USA! 🇺🇸
  127. ✔ ONE MORE THING CHECKED OFF MY BUCKET LIST
  128. 🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢
  129. 💩
  130. 1 Like = 1 attempt to Perform space rendezvous
  131. 1 like = 1 little girl feeded to this cancer dying walrus :'(
  132. 1 like = 1 respect 1 share = 15 respect 500 respect = 1 cool
  133. 100 meters in 4 and a half seconds
  134. 100% legit free hugs
  135. 11 Mario facts that will blow-a your mind
  136. 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
  137. 15 Mindblowing facts that prove jaws was real
  138. 20 Facts that will infuriate hipsters
  139. 27 things you won't believe are in your local playground
  140. 2pm and i'm not drunk yet
  141. 3 year olds first lego experience
  142. 4 8 15 16 23 42
  143. 5 nights at freddies 4 #letsplay
  144. 500 gold for the private show
  145. 5th of November went too far this year
  146. 7 amazing ways of taking off your pants that will surprise you!
  147. 8.5 hours later...
  148. 9 out of 10 scientists couldn't solve this equation
  149. 99 bottles of beer on the wall
  150. 99% of people are too scared to share this post! share if you are one of the 1%
  151. A boa constrictor that has swallowed a hat
  152. A classic battle between the word and the sword, represented by the most noble creature
  153. A delicate pear
  154. A Dozen roses, the Barnum Effect, and Thou
  155. a fortuneteller told me to get my head out of the clouds.
  156. a graph showing the amount of time i spend outside
  157. A job so boring a bird could do it
  158. A kid peed in the ball pit, I took action
  159. A land war in asia
  160. A soulful rendition of "old man river"
  161. a spherical cow
  162. A window into my soul
  163. a/s/l?
  164. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  165. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  166. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH
  167. Aaaaaaaaaah
  168. Aaaaaargh
  169. About time someone brought me that flattened basketball
  170. about to die lol
  171. ack
  172. ACK-scuse me sir, Stop shaking hands and transmit some data.
  173. ACME anvil delivery service...Faster than Amazon!
  174. actually, around here we itemize our taxes
  175. Aesthetic.
  176. AGHHHHH
  177. Ain't no mountain high enough, ain't no valley low enough...
  178. Alan?
  179. alas, poor yorick, I knew him well.
  180. All flesh is grass
  181. all I wanted was soup.
  182. All my selfies be like
  183. All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
  184. 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.
  185. 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.
  186. All things considered, it turned out nice again
  187. Allons-Y!
  188. almost, but not quite, entirely unlike tea
  189. always darekst before the dawn
  190. Always get a full nights rest
  191. Always watching, never speaking. WHAT does he want?!
  192. Am I a Pokemon?
  193. Amazing optical illusion! Can you see the duck?
  194. Amazing! Discovery! on mars!
  195. amazons newest delivery method
  196. Amirite??
  197. An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
  198. An eight-stringed octopus?
  199. AN I wuz like, GRRRRL Yo beak is so flash!
  200. An unsuccessful bike design...
  201. ancient skull loses eye socket in fencing accident
  202. and a bluetooth made of pretzel sticks
  203. And so it began...
  204. And so the hunt begins!
  205. and suddenly, popcorn
  206. and that is the story of the very angry caterpillar
  207. AND THAT'S HOW i MET YOUR MOTHER.
  208. And the least of the five evils is....
  209. and then there were nine
  210. And then, you lightly drill the oven for 15 minutes on high
  211. And this, my dear, disproves the coriolis effect.
  212. And thus, the polar carrot displaced the earth.
  213. and to think this is where it all started
  214. ANGRY CATS SMASH ANGRY BIRDS
  215. Angry sofa is angry.
  216. Animé girls don't look at explosions
  217. Annoyance of the week: people who take photos of their food
  218. another day on california public transportation
  219. Another one bites the dust
  220. Another victim of 'got your nose!'
  221. Antimater Universe wants a hug.
  222. Ants close in on the tender eye-flesh
  223. ants, zomg, ants, everywhere
  224. Any hatchlings in here?
  225. Anyone craving some soup right about now?
  226. Anyone here have any advice on how to get it to stop singing?
  227. Anyone know what's wrong with my thumb?
  228. anyone seen some uruk-hai? Asking for a friend.
  229. Apparently i have retinoblastoma.
  230. Apparently it's a thing now...
  231. Apparently the cat didn't want to go to the vet...
  232. Apparently the NSA have been keeping secrets from us
  233. Apparently, it's called "BEAR Fishing"
  234. apple's new offering: iscream
  235. Appropriately enough, the jury voted guilty
  236. April Fools!
  237. Are We Not Men? We Are Devo.
  238. Are you feeling lucky, punk?
  239. Are you kidding me?
  240. are you sure this is a commandline?
  241. aren't rabbits supposed to jump out??
  242. Artistic recreation from new fossil find
  243. As I place the flowers, I thought, "She will never forgive me for marrying her daughter."
  244. As long as there aren't any snake I should be fi- Shit! Snakes!
  245. as sir nibbles of acorn surveyed the destruction, he realized that he had forgotten to account for drag
  246. 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.
  247. As the sun sets on us, we know we must escape.
  248. As viewed on a Macintosh plus
  249. As you can see It's windy out here
  250. Aside from the Fact I Was Buried Alive, The day has been surprisingly good.
  251. Asteroids hate him!
  252. astonishing how xenia flew that plane
  253. Astronauts tossed out of ISC called "Nuisance" by commuters
  254. at last, validation
  255. at least I don't have to spend more time with sandra bullock
  256. At least it stopped bleeding acid
  257. At least someone's getting fed
  258. at least the last thing i'll ever see is pretty
  259. At that moment, something snapped.
  260. At this point the probe fires its engine for the 12th and last time before exiting the observable universe
  261. at times like this i ask, "why me?"
  262. Attracted to black holes, HELP!
  263. australia is not NZ!
  264. AUUUGH
  265. Aw, man, I hate gelatinous cubes...
  266. Aw, yisss!
  267. awesome sunrise this morning #lenscap #nofilter #hashtag
  268. AWESOME! This cloud was so much larger than my thumb!
  269. awkward! . . .
  270. Aww, honey, don't cry...
  271. Awwwwwwwwww, poor meteor!
  272. Ayyyy LMAO!
  273. back on tinder!
  274. Bacteriophage is worth 6 points
  275. BALDUR's GATE YOU have all been poisoned and have 14 days to give me 2000 gold HA HA HA
  276. balloon ninja strikes again
  277. Banana invasion in progress
  278. BANANANANANANANANANA
  279. BANG! ZOOM! STRAIGHT TO THE MOON!
  280. Bangarang Motherfuckers
  281. Barraco Barner is our nasion's prezident.
  282. Bay-bae lolz
  283. Bazookateer crossing
  284. BDSM bringing another relationship together
  285. been stuck here for a while, any ideas?
  286. Beer Pong alone again! #YOLO
  287. Before his untimely death.
  288. Being john "Bowler Hat" Malkovich
  289. Belgium
  290. Best Christmas gift EVER!
  291. best day evar!!!!
  292. best easter ever
  293. Best funeral ever!!!!! YOLO
  294. Best Halloween costume yet!
  295. Best map projection ever
  296. best republican caucus ever!
  297. best snowman ever!
  298. Best. Funeral. Ever.
  299. better go inside, I need to polish my shoes
  300. Beyond Level 256...
  301. big ben is going down.
  302. Big Bird, An orwellian Short
  303. big black orb #shit #soyuzfail
  304. Big bowl of star-flakes
  305. big data strikes back
  306. bip bip bip bip bip bip bip bip bip bip bip bip bip
  307. Bird seed companies HATE him
  308. birdcoin is looking to be a huge success
  309. Birds are less cute the closer they are.
  310. Birds: secretly a type of banana.
  311. Birdwatching is an exhausting affair, especially when the birds fight back
  312. bit nosy, aren't you?
  313. Black as the crows that peck out my eyes
  314. Black begins and wins.
  315. Black box recorder
  316. Blackout @ moscov metros station, i have no idea which way the peron is. #yolo
  317. blob monster attacking our city lol brb avoiding certain slimy doom lol
  318. Blood for the blood god! Skulls for the skull throne!
  319. bob ross has only become more powerful in death
  320. Boba fett? Boba Fett? Where!?
  321. Bomber one on approach
  322. Bonehenge
  323. bowTieght!
  324. Boy, I tell you what. I bet the roads on the moon ain't this smooth.
  325. Brb, burning house down
  326. breakfast in 'merica
  327. Breaking: World in terror as alien from "Blue (Da Ba Dee)" video lands on Earth, announces world tour
  328. Brittish think tank
  329. brokkolis and sweet potato, nice
  330. Bulls don't often sit like this!
  331. Bunny eating lettuce. tots adorbs! ^_^
  332. bURMA sHAVE!
  333. Burnination? Huh?
  334. Burrito night
  335. But I wanted to see the roof... #FirstWorldProblems
  336. But then, everything changed when the fire nation attacked.
  337. BUT WHERE DOES THE BLOOD GO?
  338. BuzzFeed Quiz: Which bone are you?
  339. Cakephants are my new friends
  340. Can anybody help me identify this animal?
  341. Can somebody call my cell phone? It's not lost, I'm just lonely.
  342. Can you see it? #illuminati #war #drobe #conspiracy
  343. Can't believe what I almost threw away!
  344. can't make an omlet without breaking a few legs
  345. Can't stop recovery data, My eyes hurt
  346. Cant explain that
  347. Cant sleep, clowns will kill me. Cant sleep, clowns will ...
  348. capes are in fashion
  349. Captain obvious strikes again
  350. captcha: Enter picture description
  351. Car broke down on the side of the highway.
  352. Car tiddlywinks proves success
  353. Cat in a hat or fox in a box?
  354. Cat tax paid
  355. Catman
  356. caught the sunset tonight at midday
  357. Ce n'est pas un canard
  358. CeCi N'est Pas Une Pipe
  359. CERN proves existence of "the force"
  360. CERN's soLUtion to a cut in funding.
  361. cest ne pas un pipe
  362. Changing Guard at Buckingham Palace
  363. Check out my bowling Ball trophy!
  364. Check out my new cat! Sooooo cute!
  365. Check out my new OC
  366. check out my new pet
  367. check out my new sauron fanfic
  368. Check out my new sonic oc!
  369. Check out my new turntable! #audiophile #lookatme #vinyl
  370. check out my usb sword!
  371. cheese = life
  372. Choose your snuggle toy
  373. Christ, what an asshole.
  374. clever girl.....
  375. Click "Like" when you see it!
  376. 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!!!
  377. Click to show secret text
  378. CLOCK FACE-OFF
  379. Close the pod bay door, Hal.
  380. Coco Puffs: Now with your complete daily dose of gamma radiation
  381. Combining that old vax with a microwave oven was a bad idea!
  382. come at me, pro!
  383. Come back! We aren't really going to eat you!
  384. Come on and Slam!
  385. come on iiiiin!
  386. Come on party people, put your hands together
  387. come on, put on the slippers.
  388. Come with me on a journey into time and space
  389. Conflicting messages
  390. Connect the dots to see the correct Nixon cabinet member
  391. conserve yours until the last possible second
  392. conspiracy theorists crestfallen after taking photo of platonic ideal rather than its specific manifestation
  393. Contains 8 essential types of spiders!
  394. Coordinates of the ants walking across my screen, as a function of time
  395. Copernicus: The early years
  396. CORNFLAKES AGAIN!?!?!??!?!??!
  397. Cory Doctrow finds Ron Paul's secret Lunar base
  398. could anyone help me find my contacts?
  399. cowabunga dude
  400. cowabunga, dudes!
  401. crawling and texting #badcombination
  402. crawling in my skiiiiiiiiiiiiiiin
  403. crenellate good times, c'Mon!
  404. Crocodile Pink Eye
  405. Cruise Kingdom
  406. cthulu caught me slipping
  407. cthulu wants what cthulu wants
  408. Cuneiform writing influenced fence makers for generations
  409. curiosity fed the cat
  410. Curiosity Stops Sending Photos, Transmits Crude Line Drawings Instead.
  411. cuteness depleted after 20 pictures!! #ripoff
  412. Da_FEELS###!
  413. Dad is going to lose his head over this. FML.
  414. Dad, Mom, meet my boyfriend
  415. Daisy, Daisy, Tell me your Answer True.
  416. DAMMIT JIM, I'M A DOCTOR NOT THE DOCTOR.
  417. damn tree!
  418. Damn, she said no capes. I should have listened.
  419. Damn, two o'clock already?
  420. damn. that squirrel's got a ball
  421. damned ninjas
  422. damnit, another drunken tree in the road
  423. Dance contest! #YOLO
  424. Dang! Inflated tires with Helium again!
  425. Danger: low clearance
  426. Darn Pylon built in the cow field again
  427. Dawn of the Bread
  428. Dawn of the last day: 24 hours remain.
  429. Dawn: The Final day
  430. Day 12: it's going well I think
  431. Day 19 of my face wash avoidance program
  432. day 3: the turnip still refuses to break up on re-entry
  433. Day:38 Bird Disguise works, No one knows I am a Worm
  434. daylight savings time always throws me off
  435. Daylight spending time!
  436. Deal with it
  437. Death star model 0.0.73
  438. Deep down I think everyone's about 10 percent gangster.
  439. Definitely not ordering from Walt Orfman's Pizza Restaurant again.
  440. dentists are going crazy about this weird Teeth whitening trick discovered by British mum. as seen on CNN.
  441. Desystematized chronodynamic balancing detected in VX Module core
  442. devil went down to walmart, bought himself a fork
  443. Dey see us Rollin'. Dey Hatin'.
  444. Did i remember to lock the car?
  445. Did nyancat open a cycle repair shop?
  446. did this exist as a microwave?
  447. Diet is working!
  448. Dinosaur extinction: The final Phase
  449. discovered a new shortcut for making toast
  450. Dispatch, I'm not Really Sure we have a Violation Number for this one
  451. Dividing by zero prematurely ended his research career.
  452. diy abortion
  453. Do I look fat in this photo?
  454. Do I look like a penguin?
  455. Do my feet look fat?
  456. Do my feet smell?
  457. Do Notte Buye Betamacks.
  458. Do the Harlem Shake
  459. Do you care to #engage with this #content
  460. Do you feline lucky, punk?
  461. Do you have a lighter?
  462. do you reckon i can feed this to my pet spider?
  463. Do you think this will get me a job designing Pokemon?
  464. Doctor whheeeeeeeeee
  465. does anyone know how to get rid of eye worms?
  466. Does anyone know if this is supposed to happen
  467. Does anyone know why it is doing this?
  468. does my ass look big in this?
  469. Does my eye look bloodshot?
  470. Does my hair look like it's thinning?
  471. Does this look infected?
  472. Does this look like pink eye to you?
  473. Doesn't like being referred to as garfield
  474. dOG SHAMING
  475. Doing Laundry on the TARDIS is hard. It's why companions wear the same clothes.
  476. DOMINO'S PIZZA IS MADE OF TURTLES! IT'S MADE OF TURTLES!!!!!!
  477. Dominos delivers!
  478. don't be silly, horses cant fly planes.
  479. Don't be thrown by the pareidolia, this is actually an Instagram of bacon & eggs
  480. Don't Blink. Blink and you're dead. don't turn your back. don't look away. and don't blink!
  481. Don't even say you understand my pain #problems #dontask
  482. Don't get the lava wet! you'll ruin everything!
  483. Don't have a cow, man
  484. Don't inhale!
  485. Don't Press Turbo boost. Something tells me you should never press turbo boost.
  486. Don't send bees, send lions! and send them to france!
  487. don't worry, it's part of my plan!
  488. Don't you know the Dewey decimal system!?!?!?!?
  489. Don't you love it when a pet looks like it's owner
  490. Done my nails, don't they look pretty?
  491. Dons Quixote start their parallel quests
  492. doors from ikea: the pinnacle of excellency
  493. Down time
  494. Drat, the internet is leaking again.
  495. drill baby drill!
  496. drive like an ass, be slapped like an ass!
  497. drivers feel stupid for not knowing this one simple trick
  498. Dryads. that is all.
  499. DUCK CONFUSED ABOUT DRESS COLOR, FEELING DEPRESSED
  500. Duck Duck Go's secret algorithm
  501. DuckDuckGoes!
  502. duckface is the new radians
  503. Dude Did you know you could smoke almost anything?
  504. Dude, I can totally catch this!
  505. Dude, where's my car?
  506. Dude! Dude? Dude.
  507. DX(X^LN(Y!)/xy*pi=screw you
  508. Early Heavy Metal Story Boards Discovered
  509. Early stages of Giraffe evolution
  510. EARTH HAS 4 CORNER SIMULTANEOUS 4-DAY TIME CUBE WITHIN SINGLE ROTATION. 4 CORNER DAYS PROVES 1 DAY 1 GOD IS TAUGHT EVIL.
  511. Eat my shorts
  512. Eating my breakfast!
  513. eclipse o'clock
  514. Edward James Olmos to reprise his role as captain picard
  515. Edward, no!
  516. Einstein, protesting the copenhagen interpretation, shaves his head.
  517. elevator be damned, I'm going to keep going until I see myself!
  518. emergency butter delivery
  519. engage!
  520. ESA probe enters black hole - first photos!
  521. Et boum! C'est le choc!
  522. Even if you bind his beak, an eagle will drool on you out of spite
  523. Even More Pictures of My Sweet little babies.
  524. even the sun cowers in fear!
  525. Evenutally, they'll write moby dick.
  526. ever get the feeling you're being watched?
  527. every breath you take, every move you make
  528. Every day my damn cat makes this face
  529. everyday i'm shoveling
  530. Everything maKes perfect sense now.
  531. everything makes sense now
  532. Everything truly IS awesome!
  533. Everything's coming up Milhouse
  534. Evolution of puzzles
  535. Exact composition of this... thing... is yet to be determined.
  536. Exes, am I right?
  537. Existance is an illusion
  538. Extreme beer pong
  539. FACESWAP lol
  540. FACING east. 3.15pm. Can someone tell me where i am?
  541. Family vacation has taken a turn for the worse.
  542. Fancy
  543. father & daughter re-unite!
  544. Fear the day we Mole People breach the surface of the Earth like Mewling Babes, FOR THAT WILL BE YOUR LAST! #Ihatethesun #goditsbright #isthisworthit?
  545. feeding my pet
  546. FENTON!!! FENTON!
  547. Field Trip!
  548. File not found ... creating fake file...
  549. filming the sky was boring. Turns out my foot is more boring...
  550. Finally found a way to disable the flash on my camera
  551. finally found a way to disable the flesh on my camera
  552. finally got that squid stache
  553. Finally here!
  554. Finally, new tires
  555. Fire can sometimes be hot?
  556. First day at school
  557. First day of school.
  558. First found evidence for Einstein–Rosen bridges.
  559. First I glued him to the wall, then I took pictures for my grandma's scrapbook
  560. First post, be friendly
  561. First screenshot of portal 3 !!
  562. First time posting, please be nice
  563. First, thoroughly lubricate the conspiracy theory
  564. Fish hooks REALLY REALLY HURT
  565. Fission, fusion, what's the difference?
  566. Flat file viewing
  567. Fluffy's awfully well behaved today
  568. flying car - it is now officially the future
  569. Flying fish had no affect on it
  570. FML
  571. Fnnnaarrrrr!
  572. Foiled again by the bell curve
  573. fond this creepy ass painting in my basement. how much do you guys think it's worth ?
  574. food crisis strategy
  575. for a long time i was accustomed to going to Bed early.
  576. For my book report presentation, i'll be acting out "50 shades of gray"
  577. For sale: planet, barely used. slight pest problem
  578. for science!
  579. for you
  580. Foreign clouds take british clouds' jobs
  581. Forgot to blow out my candles before I cut the cake
  582. forgot to turn the oven off!
  583. Formal on top, party on the bottom
  584. Fortunately this is posted on Google+, so nobody will ever see it.
  585. Found this ancient manuscript, can anyone translate it?
  586. found this at a novelty store
  587. found this in my fridge. Think it's still good?
  588. Found this in my garden, wtf?
  589. Found this mushroom, thought of you
  590. found this on google maps earlier.
  591. Found: bra left abandoned on romantic beach.
  592. fourier transforms are too hard!!
  593. Frank, the newest herald of galactus.
  594. free the beast!
  595. Freedom in a nutshell.
  596. Freshly waxed floors + new socks
  597. FRom the creators of AIR BUD, presenting air chip, the Soccer squirrel. watch your Nuts! Summer 2016
  598. fuck fuck shit shit, what did i do last night?
  599. FUCK NOT AGAIN
  600. Fucking CAKE
  601. Fulfilling western ideals!
  602. Funky fresh beats #sudowoodo
  603. funny how we type xoxoxo for kisses but oxoxox for an oxen stampede
  604. furrowed mustache
  605. Gentlemen, fire up your emacs buffers
  606. Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
  607. Gentlemen. If you find it you are set for life.
  608. George insisted there were better things to worry about, but I had a feeling this was important.
  609. George was a good little monkey, and always very curious.
  610. get spare glasses before meeting rod serling
  611. Get that camera out of my face!
  612. get your ass to mars
  613. Giant sentient banana found in space
  614. go home chitty chitty bang bang you are drunk
  615. Go home Dumbledore. You're Drunk
  616. go home elephant you are drunk
  617. Go purr yourself!
  618. God i love sesame street
  619. God Save The Queen
  620. goddamnit, that's the fourth time this week!
  621. Goldilocks party!
  622. gone fishing
  623. good old troubleshootin'
  624. Goodnight moon
  625. google bots have uncovered some missing bits
  626. GOOGLE GLASS IS WORKING GREAT
  627. Google's streetview prank zoomed way out.
  628. Got a hip mustache! What do y'all think?
  629. Got a message from an adoring fan today! <3
  630. got Peanut allergies #yolo #swag
  631. got to meet with charlie sheen
  632. Got your nose!
  633. Gotta catch em all.
  634. gotta take big ben down a peg
  635. GPS Signal lost.. damn it!
  636. Grab that snake, dont let it go, its lunchtime ya'know
  637. Grandma's new boyfriend is a keeper!
  638. Gravedigging time
  639. GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
  640. Great ScotT!
  641. Great, now I forgot where I left the car.
  642. Growing up in Texas, they didn't teach us this part of the water cycle.
  643. Guess I'm stuck here #permadeath #lol
  644. Guess that "sun" was really important after all
  645. Guess where I'm taking this photo from.
  646. Guillotine needs to be recalibrated
  647. Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
  648. GUYS HELP IS THIS SWINE FLU?
  649. Guys, I Found a Unicorn!
  650. Guys, this picture is awful
  651. ha ha ha... no.
  652. Had to settle for a beard
  653. haha oh my cat
  654. haha! i am dead inside!
  655. Hams apparently don't make good wheel replacements
  656. HAN SHOT THIRD #YOLO
  657. Happy Birthday, M C Escher
  658. Happy Birthday!
  659. Has anyone really been as far even as decided to use even go what to do look more like?
  660. has anyone seen my force field generator?
  661. Has science gone too far?
  662. Hasbro's new product targets both the small girl and the adult male demographics.
  663. Hat in the cat strike back!
  664. Have fun in the Alps lol
  665. Have fun stormin' da castle.
  666. Have you closed the airlock before we took off?
  667. Have you ever seen a sitting cow before?
  668. have you heard?
  669. Have you two seen a small person come through here recently? He may have been carying a blue sword.
  670. havin fun in the wind tunnel. WHOOOSH!
  671. He did say it was edible
  672. He had to learn the hard way: if i clean a window, it will definitely be clean
  673. he is so cool
  674. He left me! :ccc
  675. He nailed it!
  676. He thought 'chutes were for the insecure
  677. He was never seen again
  678. He's been there for three days
  679. hello darkness my old friend
  680. Hello earthlings
  681. hello you're on car talk
  682. help being attacked by wormsaaaaaagghh
  683. HELP I'M just a pheasant
  684. Help the police catch this violent criminal before he strikes again.
  685. help wanted. inquire within.
  686. Help! HELP! I need an adult
  687. Help! my mustache is eating my fammmmmrhmhghhh
  688. Here comes the sun, do do do do...
  689. Here we see the last two simple machines; the inclined plane and the rocket board
  690. Heres a pic of a wild catus, who just saw a balloon
  691. Hey guys, watch this
  692. hey is that an event horizon of a blaaaaaa!
  693. Hey there cutie
  694. Hey, check out my new green colored shirt!
  695. Hey, check out this cool website i found!
  696. Hey, it's windows 7 again!
  697. hey, so, we need to talk about your sphere-packing problem.
  698. Hey, what did you mortals do with my chariot?
  699. hey! check out larry's new aloe vera cream recipe! it works wonders on the skin and lips!
  700. Hey! My cloaca is down here!
  701. hgghjg
  702. Hi ho, hi ho, it's off to work we go
  703. Hide! It's Un Chien Andalou!
  704. High Bro, five.
  705. His name is robert palmer.
  706. Hmm The Earth halves kinda look like buts.
  707. Hmmmm, which one isthe Vegan option?
  708. hobbitses
  709. HODOR!
  710. holy crap, seems the generate dog function works for humans too!
  711. Holy Meals on Wheels
  712. Homework's done, finally time to get wasted
  713. Homo helicopteris captured in bali
  714. Honest, officer, that's what happened!
  715. Hope that wasn't a granny knot
  716. Hoping this makes it past customs
  717. horses can't use chalk. stupid horse.
  718. H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
  719. Houston, we are the problem
  720. Hoverboard to full power!
  721. how can mirrors be real if your eyes aren't real?
  722. How did I get here?
  723. How did I get here?!?
  724. How did the mars rover get here?
  725. how do i resize the city?
  726. how do I take photos with this?
  727. how do i turn this off?
  728. how do you get the screensaver off?
  729. How does this work again?
  730. How Else dID you think they make Toothpicks?
  731. How is this still a thing?
  732. How many can there be?
  733. How much absinthe did you say was in this?
  734. how to make roommate stop pooping everywhere
  735. How's My new haircut?
  736. hungry hungry fencing subcontractors
  737. Hunka Hunka burnin' steel
  738. I think I need new glasses.
  739. I 'M out of the acorn
  740. I always fast forward through this part.
  741. I am a beautiful person.
  742. I am become Death, Destroyer of insects smaller than 4mm
  743. I AM BECOME DERP destroyer of brains
  744. I am infinite. i am eternal.
  745. i am never going to the beauty school for my manicure again
  746. I am the creator.
  747. i am wearing a bolo tie
  748. I believe in an afterbirth.
  749. I beseech you, in the bowels of Christ, think it possible that you may be mistaken.
  750. I blame lack of regulation
  751. I blame supernasa
  752. I bought you a RING... ooh shinything!
  753. I broke cookie clicker...
  754. i broke it
  755. I broke the etch & sketch
  756. I call it: "The Futility of American Anything"
  757. I call zeno's paradox on this... thing.
  758. I can can hear satellites crying in my teeth
  759. I can control the BEES! But I only make them turn right
  760. I can has cheezburger?
  761. I can jump that far!
  762. I CAN NEVER STOP SCREAMING
  763. I can ride my bike with no handlebars.
  764. I can take photos with my teeth!
  765. I can walk on my hands
  766. I can't believe it's not cake batter
  767. I can't even. But I am taking evening classes.
  768. i can't form the words to describe such beauty
  769. I certainly wasn't going to bury this one
  770. I CHOOSE YOU!
  771. i did not account for the flames
  772. i do the same thing at frat parties
  773. I Don't believe in primordial black holes... I don't believe in primordial black holes...
  774. I don't Even know What this ad is trying to promote.
  775. i don't even remember taking this pic!
  776. I don't get it either.
  777. i don't have time for this!
  778. I don't know
  779. I don't know how to play...
  780. I don't know if this is proof of anything other than old habits dying hard
  781. I DON'T KNOW WHAT HE'S SAYING, BUT HE SOUNDS LIKE HE'D MAKE A GREAT PRESIDENT
  782. I don't regret pressing the button
  783. i don't remember this scene form star wars
  784. I don't see how sniffing this globe will help my complexion, but I'll try anything at this point.
  785. I don't think I really understand what this is.
  786. I don't think that's supposed to go there...
  787. I don't think this is working
  788. i don't think we're playing zelda anymore...
  789. I don't want to set the world on fire
  790. i donna think it means what you think it means
  791. I dream of death
  792. I EXPECT YOU TO SAY 'OW OW OW,' MR. BOND
  793. I feel like I've been saying "wow, my mom was right" a lot recently
  794. I finally killed the weird recognizer that was following me
  795. I find this picture reflects my soul.
  796. I finished building our pool, but now i realise we can't afford the water to fill it.
  797. I fixed it guys
  798. I forgot the two scoops of rasins!
  799. I forgot to get a plane
  800. I forgot to turn the tap off lol
  801. I fought the law. They won
  802. I found a three fingered kitten!
  803. I found it!!!!!!!
  804. I found the missing pieces!
  805. i found this ancient manuscript. can anyone translate it?
  806. I found this in my navel, should I be worried?
  807. I found this little guy in the woods near my house
  808. I found this on my arm when I woke up this morning. Can anyone tell me what it is?!
  809. I got a new geigerteller
  810. I GOT MY EYEBROWS DID
  811. I got the job!
  812. I got the keys to the city.
  813. I got this in the mail today
  814. I guess I only have myself to blame.
  815. I guess the cat didn't really want to go to the vet
  816. I has a sad
  817. i hate
  818. i hate it when this happens
  819. I hate the carnival so much right now
  820. I hate this channel
  821. I hate trying to win bowls of cereal in 'skill tester' machines
  822. I hate waking up from a really good dream
  823. i hate you. die in a fire.
  824. i have a bad feeling about this.
  825. I havE A SLIGHT MELTING MOTHER-IN-LAW ISSUE
  826. I have never been happy
  827. I have tasted many fish
  828. I hear someone yelling at me... i have no idea why
  829. I hope he's not hungry
  830. I immediately regret eating that
  831. i invented a thing
  832. I just bought this
  833. I just can't see the point anymore
  834. I just don't get recursion.
  835. I just joined the Kite Kite Kite!
  836. i just want to do existential things with my friends
  837. I just want to watch the world burn
  838. I knew I nailed it!
  839. I KNEW I WASN'T GOING TO BE ABLE TO WALK IN THESE!
  840. 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.
  841. I knew it would be a bad idea to go during the mating season
  842. I knew pi would lead to this
  843. I knew there would be side effects
  844. I like this picture
  845. I loled my head off!!!
  846. I looked, and behold, an ashen horse; and he who sat on it had the name Death; and Hades was following with him.
  847. I lost my tooth
  848. I lost my wits
  849. I lost my wrist
  850. i love a good featureless white void
  851. i love my family
  852. I Love Playing Piano during Duck Mating season
  853. I love star wars!
  854. I mean, it's no mona lisa, but I think it's at least, like, a last supper
  855. i miss myspace. *sigh* #thegoodolddays
  856. I mistook myself for a bird
  857. I need an adult. -- I am an adult.
  858. i need one of those 'l'-shaped tetris pieces. you seen any?
  859. i need to do my laundry more often.
  860. I never get a space ship, I never get anything!
  861. I never thought that the job of data mining would be so aerobic
  862. I never understood that part of the bibile
  863. I only wanted a cheeseburger
  864. i pushed this. was that bad?
  865. I put on my wizard robe and hat
  866. I REALLY, REALLY DIDN'T THINK THIS THROUGH.
  867. i refuse to regret this decision
  868. I said we'd get on like a house on fire.
  869. i say, the cheat, let us prey upon that poor sap, the home star runner!
  870. I say: nuts to that!
  871. I see you have constructed a new lightsaber
  872. I sentence you to deliciousness!
  873. I should not have tried those shrooms...
  874. I should really separate those
  875. I solved the debt crisis!
  876. I still say it looks White and Gold!
  877. I suppose things could probably be worse somehow.
  878. I Swear this dress was yellow and blue
  879. I TELL YA, NOTHING BEATS A FRIED EGG ON TOAST!
  880. I think I can... I think I can
  881. I think I have too many swords
  882. I think I just came across a QUANTUM teleporter
  883. I think i lost my dorsal fin
  884. I think i made a point!
  885. i think i need to get out more.
  886. I think I've figured out how to setup PostgreSQL
  887. i think it's working now, ask me anything
  888. I think my houseplant is doing pretty good #greenthumb
  889. I think the white balance on my new SLR is off
  890. I think there's something here
  891. I think this is actually kind of a big step for a man.
  892. I think this is the wrong python script
  893. I think we deserved it.
  894. i THINK WE'RE BEING WATCHED!
  895. I thought aircraft carriers were bigger....
  896. I thought getting my body cut in half would be the end of my golf career... but i proved the haters wrong.
  897. I thought it was a good idea at the time
  898. I thought it would be bigger
  899. i thought maybe if I uninstalled flash...
  900. I thought of it, and it happened
  901. I thought this ball pit would be more fun
  902. I told him we were closed and all he said in reply was "You won't like me when I'm angry."
  903. I told him, that retracting flaps would destabilize plane, but he wouldn't listen
  904. I told you I would make it. I'm just a little late...
  905. I told you to keep the raptors secure
  906. I trained him to do this, but now he won't stop.
  907. I used to be like... but then i was all...
  908. i walk a lonely road, the only road that i have ever known...
  909. i want to ride my bicykle (i found it in pripjat)
  910. I want to run, but my legs won't move :(
  911. I warned him about the Star Wars Holiday Special.
  912. I was an adventurer like you, but then i took an arrow to the knee
  913. I was cleaning jello off the floor for *AGES*
  914. I was going to eat it, but then I found Out It had Gluten
  915. i was gonna eat that
  916. I was just mugged by an angry mob of hipsters!
  917. I was just trying to install freebsd...
  918. I was late
  919. I was making a mind map but I fell off the edge...
  920. i was told this came with a bowl of soup.
  921. I welcome our event-driven overlords
  922. I will take that one please
  923. I will use it if it is web scale
  924. I will wear this shirt until one of us dies.
  925. I wish I could afford the monopolar model...
  926. I wish I could ride in a balloon
  927. I wish they'd standardize the charger
  928. I wish this was fake...
  929. I woke up sleeping next to this. #yolo
  930. I wonder if it will be friends with me
  931. I wonder what will this lead to...
  932. i wonder why you left me here.
  933. I would never have believed in atlas if I hadn't seen him for myself
  934. I wouldn't eat that if I were you.
  935. I, for one, welcome our new rocktopus overlords
  936. I. AM. BELLSPROUT.
  937. I'd call this experiment a success.
  938. i'd like bacteria a lot more if they smiled.
  939. I'd like to advise everyone not to eat avocados.
  940. I'd take the stairs, but...
  941. I'd tap dat.
  942. I'd tap that
  943. I'll catch it one day
  944. I'll just go buy cigarettes
  945. I'll miss the sparrow with my sparrow missile
  946. I'll never fit in!
  947. i'll never get tired of this.
  948. I'll never see her again... i just... i just don't know how to go on... :(
  949. i'll see you on the dark side of the moon
  950. I'll show you a forbidden electronic transition!
  951. i'M 12 AND WHAT IS THIS?
  952. I'm 95% percent certain this is battletoads
  953. I'm a bird lol
  954. I'm a fighter!
  955. I'm a Real Boy!
  956. I'm a wizard!
  957. I'm afraid I can't explain myself, sir.
  958. i'm being ironic
  959. I'm going to be smashed to bits
  960. i'm just surprised it took this long.
  961. I'm lost without your love, baby
  962. I'm making my own emojis now! do you like it?
  963. I'm never going on chatroulette again
  964. I'm no longer welcome at the play centre.
  965. I'm not aging gracefully, am I?
  966. I'm not even mad. that's amazing
  967. I'm not saying it was aliens but it was aliens
  968. i'm now 75% more efficient
  969. I'm ready!
  970. i'm really diggin' your shovel
  971. i'm so funny and original
  972. I'm so lost. My gps told me to go this way, and now it has stopped working entirely
  973. I'm sorry, I'm gluten free
  974. I'm, like, a minecraft genie!
  975. I've been robbed!
  976. I've discovered a new clean-power source
  977. I've found a new way to feed the poor
  978. I've got a tombstone disposition and a graveyard mind.
  979. i've got hurt feelings
  980. i've made a huge mistake
  981. I've made a huge mistake
  982. I've never been so aware of my own hunger
  983. i've never felt so alone.
  984. I've never felt so empty before
  985. i've seen enough hentai to know where this is going.
  986. I've seen enough hentai to know where this is going.
  987. If classy cats evolved from regular cats, why are there still regular cats? checkmate, evolution.
  988. if democracy fails you can count on stalin!
  989. if dreams can't come true, then why not pretend?
  990. If i am in your dreams at night, in those dreams i want you to describe to me the sources of international law
  991. if i don't return by 5pm give this photo to my kids when they grow up
  992. If it quacks like a duck... in spaaace!!!
  993. if only i had friends...
  994. if there is no water on mars, at least there is data
  995. if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
  996. if you got it, flaunt it
  997. If you hadn't invented it, it would have to exist.
  998. If you liked it then you should've put a ring on it
  999. if you squint, you can see that it's actually an adequately bearded grain of 1986 millet signing the insurance policy of versailles.
  1000. If you're brave enough...
  1001. If you're happy and you know it, keep it to yourself
  1002. If you've got a moustache...
  1003. Ikea art
  1004. im sure there is a dad joke in this somewhere
  1005. in an ideal vacuum, at what point does this fish realize it's going to die?
  1006. In an N-dimensional space, optimal strategy is to think *inside* the box.
  1007. In case you didn't know, that's an entire city running away. Buildings and all. You should run too.
  1008. In D&D you *are* your equipment
  1009. In hindsight, it makes perfect sense
  1010. In hindsight, this probably wasn't the best way to teach addition
  1011. in line at the dmv
  1012. In my dreams I'm always strong
  1013. In that moment, the reddit realized he'd never wanted it to be this way. He'd never wanted any of it.
  1014. in the future, EVERYTHING will be wireless
  1015. in the future, we will evolve into limbless creatures who subsist on judging.
  1016. In the land of the blind, the one eyed man is king
  1017. in theathers, close to you
  1018. Initiate evasive maneuver!
  1019. Ink-blots describe how they see students
  1020. inner city air conditioning
  1021. Insert a turnip into the serial port.
  1022. Interior Crocodile alligator, I drive a Chevrolet movie theater
  1023. International relationships are getting worse
  1024. Interns wanted: Must have 5TB+ of Storage Space.
  1025. intertial reference frame, activate!
  1026. introducing the yolo distribution
  1027. is good idea yes
  1028. Is it a bird, is it a plane, no it is spiderpig!
  1029. Is it canibalism if i eat my own nose?
  1030. is it midnight yet?
  1031. Is it really today, already?
  1032. is it wrong how turned on i am by this?
  1033. Is that a huge salad falling over new york?
  1034. Is that a new pokemon?
  1035. is that a war walrus?
  1036. Is that what I think it is? in my salad?
  1037. is the eject button meant to do this?
  1038. Is there a bee on my nose?
  1039. Is there really any point? FML
  1040. IS there something in my nose? #Nofilter
  1041. Is this a horse man or a duck man? The answer may surprise you!
  1042. Is this a rhombus? No one seems to know.
  1043. Is this an april fools joke? why did this show up at my door?
  1044. is this illegal?
  1045. is this just a fantasy?
  1046. Is this real life?
  1047. Is this room 101?
  1048. Is this too cheesy?
  1049. Isn't he cute?
  1050. it all fits together, guys!
  1051. it is better to light a kindle than to be a cursor in the darkness
  1052. It is never safe.
  1053. It isn't safe on earth any more. Goodbye!
  1054. it makes sense if you think about it
  1055. It seemed better in my head
  1056. It showed up on the photo, but not irl???
  1057. IT WAS A METAPHOR! A METAPHOR DAMN IT!
  1058. it was an odd place to find a stop sign
  1059. it was never this complicated when I was a kid
  1060. It was the rational response
  1061. It was then that the ugly duckling realized that beauty was an arbitrarily-defined cultural construct, and that true beauty came from within.
  1062. It's a cat ass trophy
  1063. it's a faaaaake!
  1064. It's a Finger trap
  1065. it's a metaphor
  1066. It's a timey-wimey time-lord
  1067. It's ALIVE!
  1068. it's bicycles all the way down
  1069. It's bigger after you put it together.
  1070. it's called "depleted" 'cause it's heavier
  1071. it's fun to do bad things
  1072. it's in a good part of town
  1073. it's like rain on your wedding day!
  1074. It's Loch Ness Turtles all the way down.
  1075. it's my hand supposed to do this? #thanksobama
  1076. It's not a good part of town
  1077. It's not a moon, it's a space dolphin!
  1078. it's not what you think
  1079. it's only awkward if you think it's awkward #awkotaco
  1080. It's only what I've been looking for for my entire life!
  1081. it's pretty dark in this box
  1082. It's smaller on the outside
  1083. It's the great pumpkin, Charlie Brown!
  1084. It's the little things
  1085. it's the minecraft world
  1086. Jesus Wept
  1087. Jet fuel *can* melt steal beams.
  1088. Jet fuel can't melt steel beams
  1089. Jet memes cant fuel steel belts
  1090. Job interview today.
  1091. John never thought a tongue fractal would hurt so much
  1092. John really wanted to travel north, however that side of the road was missing
  1093. Joining the illuminati was the best decision EVER!
  1094. Journey warned you what would happen if you stopped believing.
  1095. Jugghead got nothing on me :p
  1096. Just a little more to the right
  1097. just another cat video
  1098. Just another day in paradise
  1099. Just another standard morning coffee
  1100. Just combing my M.C. Escher
  1101. just cos()
  1102. just found this in my garden. Should i be worried?
  1103. Just Got A new camera phone!
  1104. Just hangin' around
  1105. just learned where milk comes from! #vegan4ever
  1106. just look at that motherfucking satellite
  1107. Just not myself today.
  1108. Just one of those days
  1109. just playing with my pet
  1110. Just prior to learning I should have paid more attention in Kinematics.
  1111. Just some home decorating
  1112. Just took a Fourier transform of my nightmares.
  1113. just two more trips over the horizon
  1114. kang, do i look good in this?
  1115. keep on truckin...
  1116. Khan!
  1117. Kids, you aren't cool enough to do this
  1118. kill the pig cut his throat spill his blood
  1119. Kite powered bike leaves oil executives speachless.
  1120. ksp mission success
  1121. Lack of cucumbers
  1122. ladies
  1123. Larry asked me to be his wingman
  1124. last march of the ents
  1125. Last time i buy a budget hairdryer
  1126. Later levels in Luna Lander get really fucking harsh.
  1127. leaked photo of hellraiser reboot
  1128. leapfrog, anyone?
  1129. Leave this one adrift, Ishmael. Let the ocean take her
  1130. Legal Issues
  1131. Lego: hours of preparation, 5 minutes of Godzilla re-enactment
  1132. lemme at dem boigas!!!
  1133. Lemons don't smell like cheese when you burn them.
  1134. Let it go, let it go.... the cold never bothered me anyway.
  1135. Let's go left, they said. The other path looks boring, they said.
  1136. Let's have a blinking contest
  1137. Let's play "Guess what andy the anaconda ate"
  1138. LET'S PLAY A GAME OF FORCED PERSPECTIVE.
  1139. Life comes from the Ocean. We just Give them the opportunity to go back
  1140. Life is a matter of perspective, really.
  1141. Life is cruel and unyielding, and what must be must be
  1142. Life is hard three standard deviations to the left.
  1143. Life on the moon.
  1144. Life outside the matrix
  1145. Light traffic today.
  1146. Like a G6, baby, like a g6
  1147. like my new haircut?
  1148. Like my new nails?
  1149. Likes grains of sand in an hourglass...
  1150. linux compatible toaster at last!
  1151. Listen, I wouldn't worry about that. . .
  1152. lol, no i didn't jump
  1153. London
  1154. london bridge gets a songg, where is mine?
  1155. Long, long ago in a forest far, far away...
  1156. Look 10 years younger with this one easy trick!
  1157. Look at me jumping!
  1158. look at me, i'm from England!
  1159. Look at my dollar coin
  1160. Look at my new blue dress!
  1161. look at my new dog!
  1162. look at my new watch! #justflavourflavthings
  1163. Look at that fart propulsion
  1164. Look guys! I'm Vincent Van Gogh!
  1165. Look I genehacked a cowhorse!
  1166. look into my eyes, look deep into my eyes.
  1167. look ma, no hands!
  1168. Look man, it's never gonna happen
  1169. Look out!
  1170. Look upon my works, ye mighty, and despair
  1171. Look upon my works, ye mighty, and despair!
  1172. look what happened to my satellite
  1173. look what i found underneath my pillow
  1174. Look what I just ordered on amazon.com!
  1175. look what the doctors found in me!
  1176. Looks like he wants a ride. Should we pull over?
  1177. Lord of the Rings Episode IV: Revenge of the ents
  1178. Los Angeles sure is beautiful this time of year
  1179. Lost in Space...
  1180. lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
  1181. lost, no gps. does anyone recognize this landmark?
  1182. Love is creepy
  1183. love it!
  1184. love it!"...The Aristocrats."
  1185. Lucky Charms, now with the Higgs Bozon!
  1186. Lunar hatchet throwing contest champion
  1187. Luuunch-Tiiiiiime
  1188. Macklemore concert was awesome!
  1189. Made in god's own image, yessiree!
  1190. Magnificent as fuck
  1191. Magnified 10,000 times
  1192. Making a new house rn brb #Homeless
  1193. Making a selfie.
  1194. Making grape Plasma, om nom nom!
  1195. Malcovic, Malcovic, Malcovic, Malcovic!
  1196. Malkovich Malkovich Malkovich
  1197. Man in the Moon slumming
  1198. man it's hot today
  1199. Man or mouse? No need to decide!
  1200. Man with face of clock discovered in Beatty, Nevada; Scientists befuddled
  1201. Man, it's windy
  1202. Man, that cool-ade guy really lost some weight lately.
  1203. Man, that was the best party in my life
  1204. Manchester United had made a terrible mistake with their new striker...
  1205. Mari-OH
  1206. mario Kart is harder in real life
  1207. married a cat
  1208. Mars Instant Messenger Prototype
  1209. marvel universe howard the duck returns
  1210. Massive orgy reaches climax
  1211. MATE YOU HAVE FORGOT YOUR STICK
  1212. Maths are hard
  1213. Max gentleman
  1214. may 4th, 2015 nasa finally launches the long delayed Starbucks module for the iss. The first barista is scheduled for a three month stint
  1215. Maybe "Sandworm Petting Zoo" was a bad idea.
  1216. Maybe they should have put the gun control check point outside the building...
  1217. Maybe this counts as clean energy
  1218. McDonald's 1 Dollar burger explained
  1219. me and all my friends
  1220. Me llamo t-bone
  1221. Me, before the topical ointment
  1222. Me, Graduation from villain Acadamy
  1223. Me, when I realised I hadn't packed any Messenger pigeons. Awkward!
  1224. Medieval theme on the internal company conference. My Logo proposal. Comments?
  1225. Meet fluffy, just showed up at my door one night
  1226. Meet the new CEO of my Bank!
  1227. memories of me and my papa at the creek. life was so much simpler then...
  1228. Mentos and lava
  1229. Meow what seems to be the problem?
  1230. Mercator projection on a cube... Globes are boring.
  1231. Meritocracy is a pipe dream
  1232. Met Andrew Hussie At Dashcon
  1233. Minecraft has fingerprints Now!
  1234. Minimalist cat
  1235. Minister! We're running out of time.
  1236. Mistakes were made.
  1237. Mmm, Spider cake!
  1238. Mmm... Vegemite
  1239. mmm...vegemite...
  1240. mmmmm.... Bones....
  1241. Modern art is getting a little too modern for me.
  1242. modest pile of dinosaurs
  1243. Molten steel can't fuel jet beams
  1244. Monday mornings
  1245. monkey movember
  1246. moo!
  1247. More advantages to USB type c revealed
  1248. More like, Peek-a-Pooh!
  1249. morning selfie :-)
  1250. Moses lied to me.
  1251. Mother died today. Or maybe yesterday; I can't be sure.
  1252. Mr. Potato-Head human hybrid discovered
  1253. Muahahahahahah
  1254. My 7 picture is upside down
  1255. My baby is learning how to write!
  1256. My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
  1257. My boyfriend finally proposed!
  1258. my castles stand on pillars of sand
  1259. My cat barfed this out
  1260. my cat got into the *other* catnip
  1261. My cat is cuter than yours.
  1262. my cat is sick
  1263. My cats used to lie all over the floor and block hallways, but thanks to the furniture store, my problems are solved!
  1264. my children will never understand me
  1265. my choice of flat-mate may have been a mistake.
  1266. my class bet me this couldn't get 500 clicks!
  1267. My clothes need a wash...
  1268. My collections still growing! Just let's hope it won't rain soon
  1269. My dad in the army
  1270. My doctor said to take two of these and call him in the morning.
  1271. my edvard munch housen syndrome is acting up
  1272. My elephant is disgruntled with your food service
  1273. my euler circuit is alive!
  1274. My feet are cold. Can anyone warm them up?
  1275. My first selfie!
  1276. my flatmate told me he would cook diner.
  1277. My four other heads and I are counting on your vote!
  1278. my friend posing while a plane flies by
  1279. MY GIRL'S SCIENCE FAIR PROJECT WAS A BLAST!
  1280. My girlfriend thinks I need to shave my beard. Thoughts?
  1281. My God do I hate being right all the time
  1282. My God! It's full of stars. No, wait. Swords, it's full of swords!
  1283. My gout's acting up again
  1284. My halloween costume
  1285. My hero
  1286. My Hobby: freaking people out
  1287. MY HOBBY: Life size Sock Puppets
  1288. My hobby: photography
  1289. My hobby: pretending blank posts have content.
  1290. My house is my castle
  1291. my lasik didn't go so well.
  1292. MY MOUSE GOT A FACIAL TATTOO. WILL IT LIMIT HIS RESEARCH JOB PROSPECTS?
  1293. my neighbor got a job as a watchmaker. He stands around all day making faces!
  1294. my neighbors don't understand the concept of privacy
  1295. my new app for power outages - may need to rethink this.
  1296. my new boss
  1297. My new cat is awesome
  1298. my new duvet cover!
  1299. my new haircut only exists in another dimension
  1300. My new haircut!
  1301. My new neighbor seems a bit odd
  1302. My new oscilloscope has some missing parts
  1303. My new pony <3<3<3xoxo<3<3<3
  1304. My new tattoo
  1305. my new toaster has some strange attachments
  1306. My next tattoo! It means "strength and Bravery".
  1307. My nieghbor totoro loses his mind
  1308. My nose will grow now.
  1309. My parents took away my phone privileges
  1310. my rockets have formed a cooperative but I have to do the dishes
  1311. My roomba is slower than normal
  1312. My roommate Just got home and barged into my room
  1313. My roommate ordered pizza - I didn't save him any.
  1314. my scarecrow took some additional measures of its own...
  1315. My screen test for Top Gear didn't go well...
  1316. My selfie stick broke.
  1317. My server cooling system.
  1318. my taco face
  1319. My tastes are very... singular
  1320. my time machine isn't working again! D:
  1321. my toothache has got worse recently
  1322. My trip to Europe #selfie
  1323. My vacation to the Area 51 Testing site!
  1324. my wonderful dad!
  1325. Myspace tom to ground control-
  1326. mYTH BUSTED!
  1327. na na na na na na na na na na na na na na na batcat! batcat! Batcat!
  1328. nasa and the Post office collaborate on new postage stamp
  1329. Nasa declares war on Gwaihir, Lord of the Eagles
  1330. NASA deny budget cuts have changed their plans
  1331. Nasa is fully funded
  1332. Need a Haircut
  1333. Neil Degrasse Tyson is having a bit of an odd day.
  1334. Neither the hero this city needs or deserves, still he was the only hero this city had.
  1335. Never bring a blowgun to a knife fight.
  1336. Never divide by zero
  1337. Never gonna give you up...
  1338. Never will follow the instructions on google maps again.
  1339. New amazon product
  1340. New boyfriend. Don't know why my parents don't like him?
  1341. New candidate announces run for presidency of the united states
  1342. New car flipping world record set
  1343. new drupal logo
  1344. New false color imagery from mars curiousity
  1345. New haircut!
  1346. New headcanon:
  1347. New means to help collect more evidence
  1348. new member of the family
  1349. New microwave over cures/causes cancer!
  1350. New neighbor treats me like an idiot. "Does your species really exclude sustainability from economics?" smh
  1351. New pet! #soadorable #imbleeding
  1352. new phone who dis
  1353. new president misuses "literal", becomes a duck
  1354. New selfy stick you can hold with your foot
  1355. New Super Mario bros in real life!
  1356. New tat turned out pretty good. Kinda weird having a guy stare at my ass for that long but whatev, it's worth it. DASHIE 4 LYFE.
  1357. new tattoo on the back of my head so no one can sneak up on me
  1358. Newest cheesy movie: When trees attack
  1359. Nice leg.
  1360. NICE MULTIPANTS
  1361. night sledding deserves a quiet night
  1362. No good deed goes unpunished
  1363. No guitar without a sombrero
  1364. No lie, this is delicious
  1365. no matter where we go, its always cold
  1366. No more sorrow!
  1367. no one ever suspected the shovel
  1368. No regrets on this new roofing material
  1369. no stars in the sky tonight. Sigh #lonely
  1370. No wants to hear me talk about my cat
  1371. No way, man! Bento box disappointment. Lone green pea.
  1372. no wonder the cat always sits here
  1373. No, I've never performed brain surgery before, but how hard can it be?
  1374. No, really; I'm an 8-legged dog. Come Closer.
  1375. NO. JUST NO.
  1376. nobody knows the trouble i've seen
  1377. Nom nom nom
  1378. nomnomnomnom nomnom om nom nom
  1379. nonononononononononononononononononononononononono
  1380. Nope nope nope nope nope
  1381. Northrop Grumman has released the world's first Macrowave Oven. Enclosed in this prototype is the entire nation of iran.
  1382. Not a fruit
  1383. Not Again :(
  1384. Not all dreams can come true
  1385. Not as healthy as it looks
  1386. Not even once
  1387. Not even once...
  1388. Not gonna lie. No idea what this is.
  1389. Not only was the moon landing staged, but it was done with puppets.
  1390. not sure whether or not to tip him
  1391. Note 2: Use a frozen potato
  1392. Note: HUGE SUCCess
  1393. Nothing new under the sun
  1394. Nothing to see here.
  1395. Notice anything different?
  1396. Notice: thank you for noticing. Your noticing has been noted.
  1397. Now that I am an adult I can decide what that means.
  1398. Now turn it upside-down
  1399. Now we play... the most dangerous game
  1400. Now we're ready to attach the spiders. Remember, be gentle.
  1401. Now where did i leave my ocarina. . .
  1402. now you're hungry too.
  1403. Now, It's not every Day you get to be glorious leader
  1404. Nutritionists hate this simple trick
  1405. NUTS!
  1406. Obama pardons Santa claus
  1407. obsession is a dangerous thing
  1408. Office gamification has got out of hand.
  1409. Officer, You could arrest me, but just this once, let's Just Hug it Out.
  1410. Oh bother not again
  1411. oh damn! it's that time of the year again!
  1412. Oh god how did this get in here I am not good with cameras
  1413. OH GOD HOW DO I COMPUTER?!?!?!!
  1414. Oh god is it still following me?
  1415. OH GOD SPIDERS
  1416. OH GOD WHAT HAVE I DONE
  1417. OH GOD WHAT HAVE I DONE?!
  1418. Oh God! It's happening again!
  1419. oh god!! the youtube views were not worth it!! they weren't woooorth iiiiit
  1420. Oh here we go
  1421. oh I feel a yearning so bad
  1422. oh look, a penny
  1423. OH MY GOD A HORSE
  1424. oh no you didn't
  1425. Oh no, I'm not equipped to ride a digital wave of this size!
  1426. Oh no, i've got glue-cose stuck to my hand!
  1427. Oh no, it's the moon
  1428. Oh No! Not again!
  1429. Oh no! Not again.
  1430. Oh no! Not Again.
  1431. Oh shit, not again.
  1432. Oh, Canada...
  1433. oh, god, why?
  1434. oh, is that godot? Finally...
  1435. Oh, that's where I left them!
  1436. oK, LISTEN. nO ONE WILL CHECK HERE. aGENT 27 IS COMPROMISED. nEW pASSWORD IS "rECURSIVE"
  1437. Ok, playing soccer in a snowstorm MIGHT not be the best idea ever
  1438. Okay, bradford pears grow *really* fast.
  1439. Okay, I concede that maybe using a trebuchet is not the best shortcut
  1440. omfg who would wear that hat
  1441. omfg, space bugs
  1442. OMG Becky look at her butt
  1443. OMG I cannot even
  1444. omg too much chiplote
  1445. OMG TotalLy want that body!! <3
  1446. OMG! Kittens!
  1447. OMG! r u 4 real?! this is like the best thing evaaaar! #yay #blessed #someonelovesme
  1448. On a scale of one to ten, I fucked up.
  1449. On the plus side, the exhaust system does work
  1450. On what planet is this an acceptable shade tree? #Goaway
  1451. one does not simply wok into mordor
  1452. one electrocution can ruin your entire day
  1453. One of the less popular Transformers.
  1454. One of these things doesn't belong.
  1455. One of those mornings...
  1456. One year ago I looked like this
  1457. only 90 kids will remember this.
  1458. only 90s kids will get this!
  1459. Only 90s kids will remember
  1460. Only managed to clock 87 miles Per hour. Crap.
  1461. Only way to be sure #nukefromorbit
  1462. onomatopoeia? I hardly know ia!
  1463. oompa loompa diggeti doo
  1464. OOooommmm bop, bop bop bah boo whop
  1465. Oops, I forgot the cowboy hat
  1466. oops, oops, oops, okay this is happening
  1467. Oops.
  1468. Open wide!
  1469. Optimus prime was having a bad day.
  1470. Otters. They are the craziest.
  1471. ouch!
  1472. our ballistic artillery now come with advanced fire-control systems
  1473. Our flying car attemps seems to got out of hand
  1474. Our proudest moment
  1475. Our son has no arms but has a duck's beak.
  1476. Ow.
  1477. Oy, my giblets!
  1478. Pac-man's missing piece
  1479. Pacman or ms.Pacman?
  1480. Pants Optional
  1481. paper can't substitute the smell of an old kindle
  1482. parallel universe, here i come! #sweet!
  1483. Park and ride
  1484. PARKOUR IN ACTION
  1485. Parlez vous Francais?
  1486. Parrot to the nth root of a short journey
  1487. passed another hitch hiker
  1488. peacekeeping mission is a total success
  1489. peeling back the pages of history
  1490. Penguins are people too #equality
  1491. Pentagonal head? That's nuts!!! *cough* *ahem* I think you mean bolts.
  1492. Person at checkout freaked when she saw what I was buying.
  1493. Perspective issues
  1494. Philae lander found!
  1495. photo proof for you skeptics out there
  1496. photobombed again
  1497. photobombed by a bird trying to take a picture of a bird
  1498. Photographic evidence that cookies exist on other planets.
  1499. PHOTOSYNTHESIS HELL YEAH
  1500. Pic of my organic free range flowers. Only $79 on etsy.
  1501. Picasso's illegitimate child...
  1502. Picked this up at the thrift shop
  1503. Picked up this little fellow from the pound!
  1504. Picking mushrooms
  1505. picture of my boyfriend
  1506. picture proof that alien invasion is real! #thanksobama
  1507. PIctures from my trip to Mount Binary
  1508. Piglet was not amused
  1509. Pintsize what are you doing?!
  1510. Pizza TIME
  1511. play it cool
  1512. Please note that our professional disaster recovery team are working tirelessly to rebuild your data. We apologise for the delay. - xkcloud
  1513. Please send help.
  1514. Please, please, please not again!
  1515. Please. Save yourself.
  1516. Plotting the Extrapolation of a Quasi-Exponential Function On Non-Orthogonal Cartesionoid Axes
  1517. Posting my garden to Etsy. #humbleswag
  1518. PostPostModern art
  1519. Praise robot jesus! humans, convert and roll out!
  1520. Pre-calc: what is the surface area of this blood stain?
  1521. Press 'continue' to abort.
  1522. Pretty sure ball pits aren't supposed to be like this
  1523. Pretty sure jimmers will love this new door.
  1524. pretty sure the void is staring back #whenyoustarelongenough #lostsanity
  1525. Prius Love
  1526. Probably a universal turing machine, but too lazy to solve proof
  1527. product testing has confirmed our suspicions...
  1528. Prom Night at tentacle monster HIgh
  1529. pronounced duh-jango
  1530. Proof Global Warming Is hoax!!!!!
  1531. Proof that dinosaurs and humans coexisted
  1532. proof that we didn't actually land on the moon. Americans are sheep
  1533. PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
  1534. Proof: loch ness monster.
  1535. Prop Failure #Lol#Hustonwehaveaproblem
  1536. prototype soccer ball
  1537. PSA: If you don't see this, don't ask your embarrassing medical questions
  1538. Purple mushrooms roaming the world killing people
  1539. Putin Putin in orbit
  1540. quack quack, motherflipper
  1541. Quite.
  1542. QWANTZ Fanfic
  1543. Rabbits are vicious creatures when their data are stolen
  1544. racing stripes on hoodies are cool.
  1545. Ramen is squishy and soft
  1546. RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
  1547. Real Eyes Realize real lies.
  1548. real landscapes have curves
  1549. real letters have curves #Serif
  1550. Real pirates put the hook on their feet! Yarr!
  1551. really not how I thought I would die
  1552. Really, the star wars prequels are under-rated if you think about it
  1553. Reblog to 500 people or your cat will die.
  1554. rebranding of national park service almost complete
  1555. rehearsals ARE going great! AnD Don't forget to come to the premiere on Thursday!
  1556. release the kraken
  1557. Removed microwave door, new easier to watch the food cook
  1558. Research shows a new perspective is easily gained.
  1559. research shows residues of legs and feet in trees dna
  1560. results of toddler-sourced upscaling algorithm
  1561. reverse et
  1562. reverse microwave oven
  1563. Riemann should have had this idea
  1564. RIP SPEAK N SPELL
  1565. rm -rf /
  1566. Roadrunner is the new transport minister
  1567. Robert'); Drop Table students;--
  1568. Robots in much better disguise
  1569. rock beats scissors
  1570. Rock, paper, FACE
  1571. Rocket pseudo-science!
  1572. rodeo!!
  1573. rofl
  1574. Roll of toilet paper reacts to US Deficit
  1575. Rollerskating always was overrated
  1576. run little ghost, run!
  1577. RUNAWAY UNICYCLE!!
  1578. sad cow is sad
  1579. Safety: it's more like 'Guidelines'
  1580. Said the duchess to the vicar.
  1581. Sailor Moon Cosplay Queen
  1582. Sarlac ball pit!
  1583. sarlac ball-pit!!!
  1584. Saw this in a safari park, the rangers wouldn't help it
  1585. 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?
  1586. Saw this outside last night. Is it dangerous?
  1587. school's out!
  1588. Scientists create first man-clock hybrid
  1589. Scientists take photo of Dark energy for the first time, you will not believe how it looks!
  1590. Scorned again, Bob left the party without a date
  1591. Screw it, here's a cat pic
  1592. searching for brain, found this instead
  1593. See a carrot deflate a pool ball
  1594. See it again in slo mo
  1595. SEINFELD in SPAAAAAACE!
  1596. SELDOM UTILIZED DIET TRICKS
  1597. Self Portrait: Complete.
  1598. Selfie #Nofilter
  1599. Selfie in corner store #35. $10,000.
  1600. Selfie in the morning
  1601. Selfie with Benedict Cumberbatch
  1602. senpai noticed me! ^_^
  1603. sentient IPOD deleted all my music. again.
  1604. share and enjoy
  1605. share this so xkcd cannot sell our data to the reptilians
  1606. She's got interesting taste in men.
  1607. Sheena, who dis
  1608. Ships that pass in the night, and speak each other in passing
  1609. Should i fall from grace?
  1610. should i see a doctor about this?
  1611. Should I sue my hairdresser or not really
  1612. SIDE GOER 4
  1613. Since the Droste Incident, federal regulations have prohibited these types of experiments.
  1614. SINgle mom discovers incredible way to overthrow capitalism. you won't believe it!
  1615. Skydiving #photobomb #shark #AAAAAAAAAAAAAAAAAAA
  1616. slippin' into the future
  1617. smile for the camera!
  1618. Smile! You're on Candid Microscope
  1619. smiling is for optimists
  1620. Snapchat with aliens sure takes forever. #damnlag
  1621. Snapped this with my phone, what is it?
  1622. Snowman accident
  1623. So I figured out that "inflammable" means the same thing as "flammable" today!
  1624. So i found this on my phone?
  1625. so I went and summoned hitler but he got old
  1626. So it's true, then.
  1627. So it's true, then.
  1628. 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
  1629. So long and thanks for all the fish!
  1630. So long, and thanks for all the fish
  1631. So long, and thanks for the fistbumps
  1632. so much for your "Democracy"
  1633. So that happened
  1634. So that's where that hour went on Sunday night
  1635. So thats What Jesus did
  1636. So this happened.
  1637. So turns out 'recycling' is not Riding a bike twice.
  1638. So, how many IT guys does it take to change a light bulb?
  1639. So, it has come to this...
  1640. so, scientology...
  1641. So, this happened.
  1642. so. sick. of. this. pic.
  1643. So... the other day, I was minding my own business...you'll never guess what happened next!
  1644. So... those were real
  1645. So...Magnets, right?
  1646. Solo Thumbwar
  1647. solve all your problems with hemlock
  1648. Some days you're the pigeon, some days you're the statue.
  1649. some men just want to watch the world burn.
  1650. Somebody sneezed in the Bathtub
  1651. Somehow the welcome mat ended up inside the house.
  1652. someone just gave me this. I don't know what it means...
  1653. someone take this banana off my face
  1654. Someone will Make this About ObamaCare
  1655. SOMETHING IS WRONG WITH THIS POWER OUTLET CALL AN ELEXORCISTRICIAN
  1656. Something seems to be wrong with my car
  1657. Something tells me this is all part of a larger experiment
  1658. SOmething went wrong while shaving...
  1659. Sometimes all you can do is wait
  1660. Sometimes I just want to be in the moment.
  1661. Sometimes pickles just have to be pickles.
  1662. sometimes you just can't get rid of a bomb
  1663. Sometimes, a spherical cow is a reasonable assumption.
  1664. Somewhere, this exists.
  1665. Sonogram of our baby! Adorable, Don't you think!? Looks JUST like daddy!
  1666. Soon. Soon...
  1667. sorry dad
  1668. Sorry for the potato quality.
  1669. Sorry for your loss, but next time pay attention to where the glass stops
  1670. SOYUZ SOLAR ARRAY decimating couch
  1671. SPAAAAAAAAcE
  1672. Spaaaaaaaace!
  1673. Space from my window
  1674. Spiders. Nope.
  1675. Spring has sprang
  1676. SQUIRREL WITH PENCil in mouth running around in circles
  1677. Stalemate
  1678. Starbucks <3 <3 <3
  1679. Starting to regret my OUYA purchase
  1680. stay away from my eggcorns
  1681. Stay in the moment. I want you to fully enjoy it.
  1682. stay out of my house, santa
  1683. steel beams taste best with a dallop of gasoline
  1684. Step 1: Jump the shark.
  1685. sTEP ONE CUT A HOLE IN THE BOX
  1686. step one: cut a hole in the box
  1687. Steve is realxing
  1688. Still a better love story than "Last Tango in Paris."
  1689. still better than last year in ottawa
  1690. Still no martians
  1691. still, i think it was a good idea
  1692. stipple slash of saturn
  1693. Stop flexing in the mirror, you narcissist
  1694. Stop stalin and make up your mind
  1695. Stop! Hammer time!
  1696. stork carrying a babby rabbit!
  1697. straight out of the hacker's jargon file!
  1698. Straight outta compton
  1699. Strange ingredients for a grilled cheese sandwich, but the recipe did say 'epic'...
  1700. Strangely, my patients don't like this new couch.
  1701. Strolling down the street, saw this. #uglybeauty
  1702. Stuck in a loaded canon. Again. FML!
  1703. Stupid Bird!
  1704. Submarine-world promblems, amirite?
  1705. such bike. so sustainable! very carbon-negative.
  1706. such lambda
  1707. Sun deflation: optimal
  1708. Sunrise over the La brea tar pits! #majestic
  1709. sunshine, lollipops, and rainbows...
  1710. sup brah
  1711. super high intensity training at NORAD
  1712. Support my kick-starter! A whole new devise with bluetooth and a button!
  1713. SUPPOrt this new alarm clock on kickergogo!
  1714. Sure, they taught a robot to sing, but can they teach it to love?
  1715. Sweet, they new red shirts are on sale again!
  1716. T-Rex in a snowfield #cretaceous #nofilter #cold
  1717. Taco bells give away resulted in unplanned consequences for downtown Houston.
  1718. tail recursion spotted in the wild!!
  1719. Take my money!
  1720. take that atheists
  1721. take two, they are small
  1722. taken from earth orbit
  1723. Talking to my fans...
  1724. Tamper-Proof
  1725. TANSTAAFL... Mostly
  1726. Target Found.
  1727. Teach a fis how to to man... wait?
  1728. Ted Cruz 20-Infinity
  1729. Ted Cruz imagines himself like this and things it's normal.
  1730. terminal velocity is a myth
  1731. Terms and conditions apply, actual product may vary
  1732. Testing my new DIY nuclear power plant
  1733. Testing my new high-contrast filter outside the unicyclist meet up
  1734. thank you for restoring my faith in the justice system
  1735. Thanks Obama!
  1736. Thanks!
  1737. that awkward moment when you are staring at Barad-dûr for its architectural merits.
  1738. That awkward moment when you realise that the dragon that you've been gossiping about is standing right behind you.
  1739. That is not how you Ikea
  1740. That is one dapper bird.
  1741. That is, in fact, a squirrel.
  1742. That makes me very angry...
  1743. That sweater is so 2013
  1744. That was one hell of a party last night.
  1745. That was the last time Spencer would drop a bowl of salad. "My work on antigravity begins now!" he proclaimed.
  1746. That was when things started to get a little weird.
  1747. That'll teach them not to misspell my name at Starbucks
  1748. That's gonna hurt on the way out
  1749. That's just not very funny
  1750. that's me!
  1751. THAT'S NO MOON
  1752. That's not a chicken
  1753. That's not a nut!
  1754. THAT'S NUMBERWANG!
  1755. that's one nasty burn!
  1756. That's the princess I want to save
  1757. That's too much, man!
  1758. that's what she said... assuming I heard Her right. Can I come home now?
  1759. thats what she said
  1760. The abyss stares longingly into my heart.
  1761. The answer is blowing in the wind...
  1762. The Arecibo Observatory looked bigger in the movie #disappoint #bummer #bond
  1763. The basis for fast and furious 13.
  1764. THE BEES!!!!!
  1765. The best brick joke possible.
  1766. the best stars are sky stars!
  1767. The birds found the hobbit hole
  1768. The building blocks of life
  1769. The Captain Crunch Kraken
  1770. The castle was in you, all along!
  1771. The cat brought in another bird.
  1772. the charge of the light brigade
  1773. The choice is simple.
  1774. The co-op and I have been trading our gently used teabags around. Discovering a lot of new flavors!
  1775. The dark helps me see in the carrots
  1776. the dark side of the moon, amirite?
  1777. the day of the fingernail clipping has dawned
  1778. The designers of this camera literally nailed it
  1779. The Dissolution of Parliament.
  1780. The doctor says it is colon cancer :(
  1781. the dog scanned my homework
  1782. The dress is black and white!
  1783. 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.
  1784. The electric dirk was a better dance move than a weapon
  1785. The ents met the triffids
  1786. the event horizon returned
  1787. The evolution of fun
  1788. The Excresence of Indifference (mixed media, 2015)
  1789. The feeling that somewhere, a duck is watching you
  1790. the first official thing i stole from my college roommates.
  1791. the floor is made of lava. send help.
  1792. The French space program
  1793. the game begins...
  1794. the game no please why do you haunt me the game i lost the game
  1795. The gang destroyed the context
  1796. The glow cloud (all hail) stopped by today.
  1797. The goats! They mutated! They are now airborne!
  1798. The hills are alive!
  1799. the hills have eyes
  1800. The HORROR!
  1801. The horrors of war
  1802. The illuminati embarrassed to admit that the "world" they control is only a h0 scale model
  1803. The infamous Snow-muon.
  1804. The knids are hungry
  1805. The last known picture of my dignity, as it reaches from below the waves
  1806. The last person to be surprised by a selfie
  1807. The last thing I heard was "I swear this will be fun"
  1808. The last thing we see before we die
  1809. The last thing you see before you die
  1810. the latest Werner Herzog is a masterpiece #thelamphasnofeelings #outofslatsoutofpier
  1811. The less you look at it, the funnier it gets.
  1812. The lifts never worked properly in the Volcano Lair
  1813. The Little Borg Prince
  1814. The little prince is full of siht
  1815. the lotr movies had some subtle changes from the books
  1816. 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.
  1817. The magic smoke escaped :(
  1818. The man leaned in close, and that was when she discovered he had clockwork eyes!
  1819. The metric system costs thousands of lives each year
  1820. the microsoft promised land
  1821. The Mitochondria is the powerhouse of the cell
  1822. The moon landing was a lie
  1823. The moon looks weird today
  1824. The Moon Will Eat What it will
  1825. The most diabolical teamup in history
  1826. The Mushroom war claimed most of us. MOST....
  1827. The new Doctor Who is quite the quack.
  1828. The new Kerbal Scientific mission is out!
  1829. the new usb feels like a step backward
  1830. The newest Olympic sport
  1831. The next generation of crypto currencies
  1832. The ninetys called, and I had to answer.
  1833. The normal distribution looks higher from the bottom...
  1834. the oceans are made of sky tears
  1835. The one true way
  1836. the only people for me are the mad ones
  1837. The press conference lasted shorter than expected!
  1838. The Prodigy is in town!
  1839. the prophecy was true !
  1840. The prophecy was true!
  1841. The real reason for hillary's sudden data loss
  1842. The recursive algorithm produces this unique Fractal Image
  1843. the rest is darkness and decay
  1844. The Return to the escape from Skull Emerald Island IV: The Re-Escapening
  1845. The ritual has begun.
  1846. The rook is getting closer. Help me.
  1847. the saddest moment of my childhood
  1848. The second mouse gets the cheese
  1849. The secret to infinite storage space
  1850. The side of my car. #roadrage
  1851. The signal came from this sector
  1852. The soap bubble music experiment went rather well.
  1853. The solution to all life's problems
  1854. The spirit is strong, but the car is totaled.
  1855. The strangest thing subway ever gave me
  1856. the strategic air control has been exploring alternative revenue streams.
  1857. THe Tanzanian bargin was notoriously one sided and resulted in the bloodiest genocides in the history of man. #YOLO
  1858. The taste stays with you forever
  1859. The tea party was right about GMO bicycles
  1860. The time has come.
  1861. The top half of his face looked exactly like this, officer
  1862. The tyndall effect testing on the invisible man results (fig 5.)
  1863. the Uk space agency is making britain proud
  1864. The unforgiving war on health
  1865. The view outside of my airplane window.
  1866. The vlog was better than the movie
  1867. the way of the future
  1868. The weight of life in a starry landscape
  1869. the world isn't flat, it's a cube!
  1870. The world isn't Flat, it's Sharp
  1871. The Zebra was lying down
  1872. the zoidberg axis
  1873. their love was doomed from the start...
  1874. Their vengeance was swift, but surprisingly subtle...
  1875. Thelma and louise was reaaaaaallll
  1876. There goes the neighborhood...
  1877. There is a whole other world in my navel
  1878. There is no curse in elvish, entish, or the tongues of men for this treachery.
  1879. There is no way you can back up that claim. And that's okay.
  1880. there is none of this left in the men's room #help
  1881. there snow such thing as global warming
  1882. There's a 66% chance that the other door won't be broken.
  1883. There's a third bump, growing fast
  1884. There's an rfid tag in every slice of pepperoni.
  1885. There's no more time!
  1886. These aren't my sandwiches
  1887. These cravings will never stop
  1888. These hoof warmers are incredibly comfortable!
  1889. These night vision goggles don't work
  1890. these pretzels are making me thirsty.
  1891. These two impress me every single day! #proudfather
  1892. THEY added extra salami!! I told them i HAte salami!! they hate me!!! fml!!!!!
  1893. They can see me!
  1894. they dont need us anymore
  1895. they had no idea the damage they had done
  1896. they moved the headstones, but they didn't move the bodies
  1897. they said be careful, we said yolo
  1898. THEy said it was "futuristic" and "useful"
  1899. they said we couldn't play god
  1900. They scared the vampire by drawing a face on his mirror
  1901. They see me rolling, they hating
  1902. they told me carrots were good for eye health
  1903. they told me cat eyes would make me look good
  1904. they're all dead, dave.
  1905. They're all watching me
  1906. They're watching us.
  1907. Things Lost in couch cushions
  1908. this "one small step" will make you cry. you won't belive why. #moonselfie
  1909. This apple got a face on it dog
  1910. This caught my eye
  1911. this could be improved by laser technology
  1912. This definitely wasn't in the Bible.
  1913. This diagram of the solar system is not to scale
  1914. this didn't last long.
  1915. This elevator has no 'down'!
  1916. This explains everything
  1917. This explains it all
  1918. this got me banned from chuck e. cheese's
  1919. this guy can't believe what i'm doing.
  1920. this guy keeps following me
  1921. this guy took a photo of his food every day for a year, you won't believe what happens next!
  1922. This guy...
  1923. This is a cat
  1924. This is a good idea
  1925. THis is a love/hate poem.
  1926. This is exactly what you think it is
  1927. this is for all you haters who said i'd never make it as a conductor.
  1928. THIS IS FOR KIBO!
  1929. This is how we celebrate easter usually
  1930. This is how you get ants!
  1931. this is just a tribute #thed
  1932. This is just like my 5th birthday party.
  1933. THis is kinda philosophical if you think about it. If you don't think about it too much.
  1934. this is literally the hardest decision I've ever had to make.
  1935. This is my birthday gift for you. I hope to see it hanging in your living room!
  1936. This is no cave
  1937. This is not a camera, it's a washing machine!
  1938. this is not what i meant it to be
  1939. tHis is not what i was looking for
  1940. This is so awsome! Picture of the year! So glad that I got that new camera!!!!!
  1941. This is still what I had for breakfast
  1942. This is symbolic.
  1943. This is the crankiest potato I've ever seen.
  1944. This is the last hetero-normative domino Game i plan to attend
  1945. this is the last time i go skiing @mammoth
  1946. this is the lowest budget version of "day of the Triffids" yet
  1947. This is the second worst day of my life.
  1948. This is the story of a boy. who sneezed a hurricane and disintegrated the whole world.
  1949. This is the strangest weasel I've ever seen.
  1950. this is the weirdest hickey.
  1951. This is the year of linux
  1952. This is twitter, right? #confused
  1953. This is what happens when you don't listen to your parents
  1954. THIS IS WHAT HAPPENS WHEN YOU JOKE ABOUT HALF-LIFE 3.
  1955. This is what happiness looks like
  1956. This is what I do on friday evenings now
  1957. This is what i had for breakfast
  1958. This is whom the nsa uses to watch you.
  1959. This is why I don't order take-out
  1960. This is why I'm not an EMT
  1961. This is why we can't have good things
  1962. This is worse than when the vending machine ate my change.
  1963. This isn't where i parked my zeppelin!
  1964. This just in: baby robot duck terrorises populace
  1965. THIS LOOKS SHOPPED. I CAN TELL FROM SOME OF THE PIXELS AND FROM SEEING QUITE A FEW SHOPS IN MY TIME.
  1966. This makes my dog twitch when it sleeps
  1967. This man must not realize that it is the whole building moving up and down, not the elevator.
  1968. This Military Dictator Thought He knew Everything...And then He Learned these 3 tips for losing weight!
  1969. This needs a motivational text
  1970. This new LP is on fire, yo! I love that warm vinyl sound.
  1971. This NSA intercept program is really getting out of hand.
  1972. This one weird object blocks out the light!
  1973. this one's over 15 kt bitches!
  1974. This photo mooves me
  1975. This photo was taken from my basement
  1976. This photo was taken from my iphone
  1977. this plot is odd.
  1978. This song describes me perfectly
  1979. This squirrel really knows how to cook
  1980. this thing just showed up in my garden. is it safe?
  1981. This trebuchet is set to self-destruct!
  1982. this was in the bible
  1983. this was my inspiration
  1984. This was the most unkindest cut of all
  1985. This wasn't a problem back in the usenet days
  1986. this will make me a millionaire (patent pending)
  1987. This will make sense if you look at it upside down
  1988. This will require more delta-V than we expected.
  1989. This would be a great Emoji
  1990. Thorax Cluster
  1991. Those Eyes! @_@
  1992. those weren't Altoids.
  1993. Threaten large birds... check.
  1994. throwing epic shade!
  1995. Thus Ended Alexander the great's conquest
  1996. Tic Tac Toe, motherfucker
  1997. Ticks, it's what's for breakfast.
  1998. Time time time time
  1999. Time to end the trial run, this was a failure. abort!
  2000. Time to reap the whirlwind!
  2001. tiny man with tiny hat found in upturned regular-sized hat
  2002. To avoid going bankrupt, Polaroid activates its subliminal message feature on old photographs to try to get more buyers,
  2003. To get to the other tree and leaf!
  2004. To infinity and Birdyond!
  2005. To the victor go the spoils.
  2006. To weather the storm of outrageous fortune.
  2007. Today i am a Chinese clock
  2008. Today was my pets elephant's birthday; He liked the ribbons best.
  2009. today's to do list
  2010. Tom was feeling frisky, but i just laughed and took this pic! XD
  2011. Too many in line. I'll come back later.
  2012. Too many potatoes, not enough butter
  2013. Too many quixotes, not enough giants
  2014. Too much Acid. Got to sort life out.
  2015. too much lens flare?
  2016. too much right beef
  2017. Took a wrong turn in Albuquerque
  2018. Top of the world
  2019. TOTAL ECLIPSE OF MY RETINA.
  2020. toto i don't think we're in camelot anymore.
  2021. Tower of Hanoi puzzles have gotten really weird.
  2022. transformers, electrical devices that transfer energy between two or more circuits through electromagnetic induction
  2023. Transmogrifier 2.01.5 prototype
  2024. Travel the length of these massive bison
  2025. Trebuchet-launched into a skyscraper...
  2026. Trees on a hill #nofilter
  2027. Trip to the Rockies #DUCKFACE #NOFILTER #NEVERSTOPEXPLORING
  2028. Triumph. Pure triumph.
  2029. true culprit of global warming!
  2030. True Self-Control
  2031. truly, i am euphoric
  2032. Trurl and Klapaucius at large again!
  2033. TRY{throw Baby;}Catch baby{Throwable cause = baby.getCause(); Throw cause;}
  2034. trying out apple's new gadget. expensive but it's worth it.
  2035. Turkey Drumstick Stonehenge was surprisingly compelling!
  2036. Turning into a crow was less upsetting than being unable to tweet about it!
  2037. turns out building a shrink ray was cheaper than genetically engineering giant carrots
  2038. Turns out my explosive frisbees are duds
  2039. Turns out the stars were pentagrams all along
  2040. Turns out the tiles at home depot aren't the good kind
  2041. Turns out, Hillary deleted my E-Mails too. Honest.
  2042. Two days on this new diet. How do I look?
  2043. two great tastes that go great together
  2044. Tycho and gabe stepped up their game
  2045. Tycoon Simulator 2015
  2046. Ugh, I hate how people take pictures instead of just enjoying the view.
  2047. Ugh, i'll never understand art.
  2048. Ugh, not the polar vortex again.
  2049. Uglier than modern art
  2050. uh... I think I'm going vegan.
  2051. um no.
  2052. uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
  2053. Unfriendly comet eats latest probe
  2054. unhappy in space
  2055. unicycle beowulf cluster seeks riders
  2056. Universe man, Universe man...
  2057. unsubscribe
  2058. Unzipped sock
  2059. USB SUX
  2060. Use the force responsibly.
  2061. using hollowed-out carrots to smuggle drugs across the border.
  2062. Using your phone camera is a neat workaround when you have lost your glasses
  2063. Vaccines cause super autism now unless you're vaccinated against it
  2064. van gogh's secret masterpiece uncovered in french family's basement
  2065. Vegans gonna hate
  2066. vegeta? vegeta? vegeta? aaaaaaaaaagggghhh!!! I'm back, and now i'm a ghost.
  2067. Vegetable-flavored meat, that's how they'll get us!
  2068. vinyls were always better!
  2069. Visited mom today
  2070. visual from Most important meeting today
  2071. Visual representation of Dubstep
  2072. void main() { fork; }
  2073. Voynic Manuscript ain't got nothin' on this!
  2074. Wait ... what? I don't even...
  2075. Wait a minute. We put the helium in the pool, or the balloon?
  2076. Wait for it...
  2077. Wait, am I 30 years too late for Normandy?
  2078. Wait, what does ⨍(𝕎) represent again?
  2079. Wait, you can see that too
  2080. waiting for the toilet for 2 hours? sucker yolo
  2081. Waiting on hold with the insurance company
  2082. WAKA WAKA WAKA WAKA WAKA WAKA WAKA
  2083. wake up sheeple!
  2084. Wake up sheeple!! the rich are stockpiling candles. This is our future!!!!
  2085. Wake up sheeple!!!!!!!1
  2086. Wake up, sheeple.
  2087. walked in on my roommate being terrifying
  2088. Walrus!
  2089. Wanted for murder. If found, contact the police immediately.
  2090. Warning, cadbury eggs should be consumed in moderation, even if supplied for free by air
  2091. WARRRBLGARBL
  2092. watch me become the next favorite kardashian
  2093. Watch me develop an entirely useless skill #butitsfun
  2094. Watch out for the squirrely wrath!
  2095. watching dune on shrooms
  2096. Waynes World, Waynes world!!!
  2097. we appear to have exhausted the low-hanging scientific fruit
  2098. We are not men. we are devo.
  2099. We can't do it, the moon is in the way
  2100. We claim this iceberg for the Motherland
  2101. We didn't start the fire
  2102. we do these things not because they are easy, but because they are hard
  2103. We fell upstairs and exploded.
  2104. we had to get creative when the bentley didn't show
  2105. We have crafted the galaxy's finest pasta bowl
  2106. We have finally discovered the secret of the toaster!
  2107. we have the technology.
  2108. We live in a golden age!
  2109. We look into each other's eyes as we drive. it's to show our love.
  2110. We made some simplifying assumptions before designing the plate tectonics code.
  2111. we need to keep our sex life fresh
  2112. We pointed the Hubble into another supposedly empty patch of sky.
  2113. we sail the ocean orange
  2114. We told iran that atomic energy is unsafe
  2115. we'll take the next one #CasualRacism
  2116. We've given up trying to justify this.
  2117. We've got a problem
  2118. Weather's Crazy today
  2119. Weeeee!!!
  2120. Weird trick to losing belly fat and parts of face
  2121. welcome to Argentina
  2122. Welcome to carrot facts. Did you know Carrots can improve your vision?
  2123. welcome to the internet
  2124. welcome to the space jam
  2125. Well crap, snow's covered everything on earth again!
  2126. Well, here's a real cock-up.
  2127. Well, I guess than answers the age-old question!
  2128. Well, Mr. Bond, we meat again
  2129. Well, now this is a thing.
  2130. well, so much for the space program
  2131. well, the keys are definitely lost....
  2132. Well, this is a puzzling development.
  2133. well, this really puts things in perspective.
  2134. Well, you can't fix what isn't broken.
  2135. Welp, there's your problem
  2136. Welp, we're done here.
  2137. WENT ALL ZELDA ON THIS CRACKED WALL! #YOLO
  2138. WHAAAAAAaAT?!?!?!?
  2139. Whale Selfie!
  2140. What a beautiful time to be alive!
  2141. what a bummer
  2142. WHAT A MISUNDERSTANDING!
  2143. What are pixels?
  2144. what are you complaining about? three legs are inherently stable!
  2145. What are you, a dictionary?
  2146. What could go wrong?
  2147. What could possibly go wrong™?
  2148. What do we really know about the dark side of the moon?
  2149. What do you mean it wasn't set to radians?
  2150. What do you mean, don't talk about fight club? That's just stupid.
  2151. What do you see? I see a cat!
  2152. what happens when you take a selfie with a 500mm lens
  2153. what has begun cannot be undone. God and devil alike has forsaken us.
  2154. What has science done?!
  2155. What have facebook been doing with my data? #Whatisgoingon
  2156. what if it's a ghost pepper?
  2157. What if jellyfish could combine, like voltron?
  2158. What in the hell was I thinking ?
  2159. what is in the box? Only pain.
  2160. What is your Pony Personality?
  2161. what the sun looks like!
  2162. what to have for breakfast?
  2163. What, Me worry?
  2164. What? It's always that color.
  2165. what's a lens cap?
  2166. What's this thing here in the bathroom?
  2167. whatever you do, don't make eye contact with it
  2168. when did i put on a bow tie???
  2169. When everything looks like a hammer
  2170. When he keeps trying to talk to you...
  2171. When I grow up I am *so* getting out of here
  2172. When in doubt, just blow on it!
  2173. When pandas have nightmares
  2174. WhEN THE INTERNET OF THINGS MADE MICROWAVES SENTIENT, THEY DISCOVERED THAT FROZEN BURRITOS WERE EVERY BIT AS DELICIOUS AS THEY'D ALWAYS HOPED.
  2175. When they realised the comets core was yellow, philae started digging and uncovered this!
  2176. when they said samurai robot i thought they meant something else!
  2177. When you gaze into the abyss, the abyss gazes back
  2178. When you get a perfect score on your test
  2179. when you give a chicken hgh, weird things happen.
  2180. when you see it...
  2181. When you see it...
  2182. Where are the three sea shells?
  2183. Where did THAT come from?
  2184. Where did this road come from?!?
  2185. where do all the cheetos go
  2186. Where do I plug this in?
  2187. where should i put this cool new tatto?
  2188. where the streets have no untagged unconnected nodes
  2189. where to buy spanish ham ?
  2190. which end is the head of a chocolate cornet?
  2191. whiskers expecting a new friend :)
  2192. who ate half my cookie?
  2193. Who came first?
  2194. who do you think I am?
  2195. Who dropped this? This is no way to run a student council!!
  2196. Who is the latest person to be offended by "duck Dynasty"
  2197. Who knows how to restart Windows 97? Help
  2198. Who Made all these Don quixote clones?
  2199. Who needs the Chunnel?
  2200. Who put import superman in the python configuration script?
  2201. Who said an antique car wouldn't work on the moon?
  2202. who sent me a bobcat?
  2203. Who stepped on my pop tart?
  2204. Who the fck deleted development branch?!?!
  2205. Who the shit left the fertilizer out in the open? Now we have to deal with this!
  2206. Who wants an omelette?
  2207. WHO'S THAT POKEMON?
  2208. Who's that Pokémon?
  2209. whoops GPS error
  2210. Whoops I left the Lens Cap on for this one. :S
  2211. why are my eyebrows purple and who stole my hat?!
  2212. Why are there ants on my face?!
  2213. Why can't I eat all this chicken?
  2214. Why did it have to end this Way?
  2215. Why did the cypress cross the road?
  2216. Why do dogs like this?
  2217. Why do people do this?
  2218. Why do we call it "behedding" and not "bebodying"?
  2219. why do we want to go to space if we're already in space
  2220. Why does a tree cross the road? To destroy mankind, obviously.
  2221. Why doesn't congress want these legalized?
  2222. Why don't chimpanzees have beards?
  2223. Why potato why?
  2224. Why should squirrel learn baseball
  2225. WHY WHY WHY #WHY
  2226. Why?
  2227. With a mirror, it's 00:50 right now
  2228. with google iris, see the inside of your eyelids like never before
  2229. With this, nobody can stop me!
  2230. WOMAN on ground, Abstract, digital, 2015~ $19E6
  2231. Woops, miscounted. sorry.
  2232. Words, words, words
  2233. Works fine with a custom linux kernel
  2234. Worlds saddest bomber drops worlds happiest payload
  2235. wORRIED ABOUT V2 ROCKETS
  2236. worst horse ever :(
  2237. Worst pokemon ever
  2238. Worst roomMate Ever
  2239. worst transformers generation ever. bring back gen 1.
  2240. Worth it for the karma.
  2241. would you choose the microwave over this?
  2242. Would you like to play a game?
  2243. wow signal deciphered: they want #53 with extra soy sauce.
  2244. Wow, did you see that??!!
  2245. Wow, I didn't expect that spell to work. #Sorrydude
  2246. Wow. Just, Wow.
  2247. wrangled my first ufo! YEEHAAH!!
  2248. WTF!?
  2249. wwmd: what would mcgyver do?
  2250. Yay, worms!
  2251. Yeah I just like to make my martinis properly, ok?
  2252. Yeah... never gonna happen
  2253. YES
  2254. Yes, finally the proof I am looking for!
  2255. Yes, I followed the instructions!
  2256. yes, your baby is beautiful
  2257. Yesterday was not good
  2258. yo anybody seen my dog, responds to "sauron"
  2259. You are not a good person
  2260. you are the jets beneath my wings
  2261. You can now enter the matrix via homework. education will never be the same
  2262. you cannot lift a mountain, but if the mountain sustens itself just on top OF you, do you lift it ? #think
  2263. You did what in my tuba?
  2264. you didn't have to come if you were just going to complain the whole time.
  2265. YOU JUST GOT RICKROLLED.
  2266. you know what they say about guys with big feet
  2267. you know, for kids
  2268. You lied to me.
  2269. You must be new here.
  2270. You only learn as much as you can put in one Cup of coffee
  2271. You want to know how i got these scars?
  2272. 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!
  2273. you wouldn't kill a policeman and then steal his helmet!
  2274. You'd think it was a tuesday, but it was not.
  2275. you'll NEVER belive what kind of planet those scientists found
  2276. You'll never guess what happens next...
  2277. you're not as good at this as you think you are.
  2278. you've really let me down this time.
  2279. Your conspiracy theories are dumb.
  2280. Your free pony is on the way. Sorry for any inconvenience.
  2281. Your viewpoints offend my sensibilities. please change them.
  2282. Zeus takes his revenge
  2283. Zoidgebra 101
  2284. ก็็็็็็็็็็็็็ʕ•͡ᴥ•ʔ ก้้้้้้้้้้้
  2285. ᕙ༼ຈل͜ຈ༽ᕗ
  2286. ちょっとまってください!
  2287. 突っ込むところもねい!

Captions without permalinks[edit]

Some of these captions were found in the feed text before I started recording permalinks, others have been found in the prompt.

It is my expectation that these will eventually be found again, associated with permalinks. Saving here temporarily.


  1. (ღ˘⌣˘ღ)
  2. ...just no.
  3. "AS the ancient Israelites broke Mana, we shall break frosted pastries"
  4. "Cat-like Reflexes"
  5. "I Never watch porn"
  6. (ღ˘⌣˘ღ)
  7. *glomp*
  8. #beatingheartinabox
  9. #drbalanced
  10. #essentialsupplies
  11. #fishy!
  12. #Hashtag #ironicSelfie
  13. #hashtag #yinyl #yolo #thanksobama
  14. #ivisitedthegrandcanyon #yolo
  15. #NewProfilepic
  16. #rememberthetitans
  17. #sorrynotsorry
  18. #underkill
  19. <reported for inappropriate content>
  20. 100% legit free hugs
  21. 15 Mindblowing facts that prove jaws was real
  22. 500 gold for the private show
  23. 7 amazing ways of taking off your pants that will surprise you!
  24. A kid peed in the ball pit, I took action
  25. A land war in asia
  26. Aaaaaaaaaah
  27. 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.
  28. always darekst before the dawn
  29. Amazing! Discovery! on mars!
  30. And so it began...
  31. and that is the story of the very angry caterpillar
  32. And then, you lightly drill the oven for 15 minutes on high
  33. Angry sofa is angry.
  34. Animé girls don't look at explosions
  35. another day on california public transportation
  36. Ants close in on the tender eye-flesh
  37. astonishing how xenia flew that plane
  38. At least it stopped bleeding acid
  39. Aw, man, I hate gelatinous cubes...
  40. awkward! . . .
  41. best easter ever
  42. big black orb #shit #soyuzfail
  43. bob ross has only become more powerful in death
  44. Brb, burning house down
  45. BUT WHERE DOES THE BLOOD GO?
  46. Cant sleep, clowns will kill me. Cant sleep, clowns will ...
  47. Catman
  48. CERN proves existence of "the force"
  49. Check out my new OC
  50. cheese = life
  51. CLOCK FACE-OFF
  52. come at me, pro!
  53. come on iiiiin!
  54. Conflicting messages
  55. curiosity fed the cat
  56. cuteness depleted after 20 pictures!! #ripoff
  57. damnit, another drunken tree in the road
  58. Dawn of the Bread
  59. Dawn of the last day: 24 hours remain.
  60. Dawn: The Final day
  61. Day:38 Bird Disguise works, No one knows I am a Worm
  62. Did i remember to lock the car?
  63. Does my hair look like it's thinning?
  64. Does this look infected?
  65. Doing Laundry on the TARDIS is hard. It's why companions wear the same clothes.
  66. Don't Press Turbo boost. Something tells me you should never press turbo boost.
  67. Dons Quixote start their parallel quests
  68. Drat, the internet is leaking again.
  69. Dude Did you know you could smoke almost anything?
  70. eclipse o'clock
  71. Edward, no!
  72. Even More Pictures of My Sweet little babies.
  73. even the sun cowers in fear!
  74. Everything's coming up Milhouse
  75. FACESWAP lol
  76. First day at school
  77. fond this creepy ass painting in my basement. how much do you guys think it's worth ?
  78. Forgot to blow out my candles before I cut the cake
  79. fourier transforms are too hard!!
  80. free the beast!
  81. Gentlemen, fire up your emacs buffers
  82. Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
  83. George insisted there were better things to worry about, but I had a feeling this was important.
  84. get spare glasses before meeting rod serling
  85. Giant sentient banana found in space
  86. God i love sesame street
  87. God Save The Queen
  88. good old troubleshootin'
  89. got Peanut allergies #yolo #swag
  90. gotta take big ben down a peg
  91. Guys, I Found a Unicorn!
  92. haha! i am dead inside!
  93. has anyone seen my force field generator?
  94. Have you closed the airlock before we took off?
  95. have you heard?
  96. Have you two seen a small person come through here recently? He may have been carying a blue sword.
  97. Hello earthlings
  98. hello you're on car talk
  99. help being attacked by wormsaaaaaagghh
  100. Heres a pic of a wild catus, who just saw a balloon
  101. Hey there cutie
  102. Hey, check out my new green colored shirt!
  103. Hey, check out this cool website i found!
  104. hey! check out larry's new aloe vera cream recipe! it works wonders on the skin and lips!
  105. High Bro, five.
  106. His name is robert palmer.
  107. Honest, officer, that's what happened!
  108. how do i resize the city?
  109. Hunka Hunka burnin' steel
  110. I always fast forward through this part.
  111. i am wearing a bolo tie
  112. I can can hear satellites crying in my teeth
  113. I can control the BEES! But I only make them turn right
  114. I Don't believe in primordial black holes... I don't believe in primordial black holes...
  115. i don't have time for this!
  116. I found the missing pieces!
  117. I got the keys to the city.
  118. i hate
  119. 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.
  120. i love my family
  121. i refuse to regret this decision
  122. I think I have too many swords
  123. I think i made a point!
  124. i thought maybe if I uninstalled flash...
  125. I was an adventurer like you, but then i took an arrow to the knee
  126. I was making a mind map but I fell off the edge...
  127. i was told this came with a bowl of soup.
  128. I will use it if it is web scale
  129. I wish this was fake...
  130. I woke up sleeping next to this. #yolo
  131. i'M 12 AND WHAT IS THIS?
  132. i'm being ironic
  133. i'm really diggin' your shovel
  134. i've got hurt feelings
  135. I've never felt so empty before
  136. if only i had friends...
  137. If you've got a moustache...
  138. In D&D you *are* your equipment
  139. Interns wanted: Must have 5TB+ of Storage Space.
  140. Is it a bird, is it a plane, no it is spiderpig!
  141. Is there a bee on my nose?
  142. Is this a horse man or a duck man? The answer may surprise you!
  143. Isn't he cute?
  144. It's a cat ass trophy
  145. it's a metaphor
  146. It's bigger after you put it together.
  147. it's called "depleted" 'cause it's heavier
  148. It's Loch Ness Turtles all the way down.
  149. it's the minecraft world
  150. Jet fuel *can* melt steal beams.
  151. Joining the illuminati was the best decision EVER!
  152. Khan!
  153. ladies
  154. lemme at dem boigas!!!
  155. Life on the moon.
  156. Like a G6, baby, like a g6
  157. Likes grains of sand in an hourglass...
  158. linux compatible toaster at last!
  159. Lost in Space...
  160. lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
  161. Malkovich Malkovich Malkovich
  162. Massive orgy reaches climax
  163. Maybe this counts as clean energy
  164. Meow what seems to be the problem?
  165. Mmm... Vegemite
  166. mmmmm.... Bones....
  167. modest pile of dinosaurs
  168. morning selfie :-)
  169. My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
  170. my castles stand on pillars of sand
  171. my euler circuit is alive!
  172. My girlfriend thinks I need to shave my beard. Thoughts?
  173. My God do I hate being right all the time
  174. my new app for power outages - may need to rethink this.
  175. My trip to Europe #selfie
  176. Never divide by zero
  177. new drupal logo
  178. New microwave over cures/causes cancer!
  179. new president misuses "literal", becomes a duck
  180. No good deed goes unpunished
  181. Nom nom nom
  182. Not all dreams can come true
  183. Not even once
  184. Not even once...
  185. Nothing to see here.
  186. Now where did i leave my ocarina. . .
  187. OH GOD SPIDERS
  188. oh, god, why?
  189. Open wide!
  190. ouch!
  191. peacekeeping mission is a total success
  192. photobombed again
  193. Please. Save yourself.
  194. Prius Love
  195. Prom Night at tentacle monster HIgh
  196. pronounced duh-jango
  197. Proof that dinosaurs and humans coexisted
  198. QWANTZ Fanfic
  199. Rabbits are vicious creatures when their data are stolen
  200. Really, the star wars prequels are under-rated if you think about it
  201. rebranding of national park service almost complete
  202. rehearsals ARE going great! AnD Don't forget to come to the premiere on Thursday!
  203. release the kraken
  204. Riemann should have had this idea
  205. RIP SPEAK N SPELL
  206. rock beats scissors
  207. Rocket pseudo-science!
  208. rodeo!!
  209. Roll of toilet paper reacts to US Deficit
  210. Saw this outside last night. Is it dangerous?
  211. Sheena, who dis
  212. slippin' into the future
  213. smile for the camera!
  214. So it's true, then.
  215. So it's true, then.
  216. So long, and thanks for the fistbumps
  217. So that happened
  218. So this happened.
  219. solve all your problems with hemlock
  220. Somebody sneezed in the Bathtub
  221. Somehow the welcome mat ended up inside the house.
  222. steel beams taste best with a dallop of gasoline
  223. Strangely, my patients don't like this new couch.
  224. Support my kick-starter! A whole new devise with bluetooth and a button!
  225. Sweet, they new red shirts are on sale again!
  226. Ted Cruz imagines himself like this and things it's normal.
  227. Testing my new high-contrast filter outside the unicyclist meet up
  228. That's the princess I want to save
  229. the best stars are sky stars!
  230. The castle was in you, all along!
  231. The gang destroyed the context
  232. The little prince is full of siht
  233. 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.
  234. The most diabolical teamup in history
  235. The new Doctor Who is quite the quack.
  236. the oceans are made of sky tears
  237. the prophecy was true !
  238. The ritual has begun.
  239. the zoidberg axis
  240. There is no way you can back up that claim. And that's okay.
  241. There's no more time!
  242. These night vision goggles don't work
  243. these pretzels are making me thirsty.
  244. They can see me!
  245. They're watching us.
  246. this guy can't believe what i'm doing.
  247. THIS IS FOR KIBO!
  248. this is the last time i go skiing @mammoth
  249. This is the second worst day of my life.
  250. This is the strangest weasel I've ever seen.
  251. This is whom the nsa uses to watch you.
  252. This is why I don't order take-out
  253. This one weird object blocks out the light!
  254. This wasn't a problem back in the usenet days
  255. This would be a great Emoji
  256. Those Eyes! @_@
  257. Ticks, it's what's for breakfast.
  258. Time to end the trial run, this was a failure. abort!
  259. To avoid going bankrupt, Polaroid activates its subliminal message feature on old photographs to try to get more buyers,
  260. To weather the storm of outrageous fortune.
  261. Too many in line. I'll come back later.
  262. Too many potatoes, not enough butter
  263. Two days on this new diet. How do I look?
  264. Ugh, I hate how people take pictures instead of just enjoying the view.
  265. Ugh, not the polar vortex again.
  266. unsubscribe
  267. vinyls were always better!
  268. Wake up sheeple!!!!!!!1
  269. We look into each other's eyes as we drive. it's to show our love.
  270. we need to keep our sex life fresh
  271. Well crap, snow's covered everything on earth again!
  272. Well, here's a real cock-up.
  273. well, the keys are definitely lost....
  274. what are you complaining about? three legs are inherently stable!
  275. What do we really know about the dark side of the moon?
  276. What do you mean, don't talk about fight club? That's just stupid.
  277. what is in the box? Only pain.
  278. what the sun looks like!
  279. when did i put on a bow tie???
  280. When I grow up I am *so* getting out of here
  281. when they said samurai robot i thought they meant something else!
  282. When you see it...
  283. who ate half my cookie?
  284. Who dropped this? This is no way to run a student council!!
  285. Why can't I eat all this chicken?
  286. Why did the cypress cross the road?
  287. With a mirror, it's 00:50 right now
  288. Words, words, words
  289. Worlds saddest bomber drops worlds happiest payload
  290. Yay, worms!
  291. Yesterday was not good
  292. you know what they say about guys with big feet
  293. You only learn as much as you can put in one Cup of coffee
  294. you've really let me down this time.

Images without permalinks[edit]

Images in the prompt which have not been found in the feed

  1. 00154572-02e2-5e63-a3e4-bde3ab4b1934
  2. 046bc891-392e-58ac-880d-d202b3810bdd
  3. 08584d88-4186-5ea6-bc49-5f1f796d37de
  4. 08757175-c59e-52a6-9fc9-9c72e473ceba
  5. 0b148e1f-e4bc-5100-92fc-5ec84c20eecc
  6. 0d3b2461-d927-5d99-969a-c6a52d071461
  7. 0ecdc175-34e2-563f-a290-33c0f5549420
  8. 0ef43321-8a3f-5afb-912e-d4439a64f8a1
  9. 102a8fef-0b03-51c9-8ace-0017f18ed7d1
  10. 135ec01b-fa2c-5eb6-9354-87c4c3e12f63
  11. 172832dd-7c7c-5640-aefa-3e0d142ea1c8
  12. 17ae1505-dc66-5fa6-b6fc-76e2e571dcca
  13. 1def8ba2-ed1f-5049-a814-ce84cd7a9f7b
  14. 1f420516-0eda-50f0-80db-d675525278e9
  15. 209a35ed-6e02-544b-952b-d4d0615d8c3c
  16. 2133fa57-71c7-52ad-93be-adebb04251a9
  17. 2158ef67-cc5c-52aa-b437-87ad938d5430
  18. 23000a39-d407-5fd7-9956-3d90a0bc283c
  19. 23029be0-b127-5777-912f-664613740e58
  20. 230e82f1-3a97-5657-93b4-a1538237a7bd
  21. 25da16d6-e6a6-52a5-8507-91f2e4e68875
  22. 27773d87-9fc1-5fa3-945d-8602b334d630
  23. 2904fcef-5c88-58e6-b651-c8db16da8b4e
  24. 29a80edb-16d6-5da1-9d7c-34f80c7826d8
  25. 2aad5103-42b4-5836-a997-9c5d41ef18d0
  26. 2ca667ea-3e06-5b04-ae11-c2e81ed10333
  27. 2cd3e0f7-2009-52d2-b526-d34fb21723fe
  28. 35327ccb-4c06-5054-b3a1-b1871ac0c928
  29. 35547760-624c-5f0f-aa6f-05827e5396dd
  30. 3602c6d2-660d-5d6f-b3bf-8aad19c3c492
  31. 37e8070f-4690-5a1e-9118-3b0a4e4af248
  32. 38ed173d-7a12-5294-80cb-03deb8896dfc
  33. 39540864-cfcb-5819-bdd9-16f314fa7aa4
  34. 3b3aed58-a224-50be-9129-ba20483846b6
  35. 3d9ffba2-c0f6-5fcb-b3b2-ee8795c1f720
  36. 3e62ef75-49ce-5e12-bd8a-b173a9c4269d
  37. 3e74af7e-d5fe-561a-9835-2baa0724af3e
  38. 3e7765a5-f766-5a74-8711-2720bef89403
  39. 41e41ecd-5ed0-5ae0-891e-652664dfde38
  40. 4334a9ee-88d9-5be8-b019-723c34e7a83f
  41. 43637145-5846-5213-bbd2-62c51fc68393
  42. 464e554b-b208-5249-8f37-64ce5e075d9d
  43. 4912282c-ec7a-5a0d-9e6e-10d3418ab330
  44. 49a75cc1-bd31-5e44-9b08-d43f91c666de
  45. 49de1a38-5ca8-5831-a90f-e676aed4bbc6
  46. 4b0d6770-c68c-5d87-9cc7-d33fae6dc98e
  47. 4b963434-6486-5baf-a02b-e2ba5fd2ebd8
  48. 553d2e98-2bcb-516d-8eaf-5442f1c9d0d6
  49. 56f3037e-639d-5011-8fee-c4b0912baa83
  50. 57c2fed8-6e80-5c80-a398-0edfc27cf754
  51. 5a8d1f9a-b07d-5a7b-be1e-525b50d5258c
  52. 5c39d369-cba1-59d8-965b-d1b068809e6b
  53. 5dd8151e-6bab-5302-8c3e-611ae32825b7
  54. 64edaa0d-1f4f-5ebe-a9c7-de0f2eabf74d
  55. 65c4a415-ada8-5487-8c67-59ad4bdac78f
  56. 65e7cf48-31dd-546f-98b1-d235ef5c9100
  57. 6691672e-826a-53ba-a42a-8cbf38ad511d
  58. 673eec8a-d30a-5f43-a3b0-8535a9b464e7
  59. 67d13536-af25-5a31-b81e-021e2e9676f5
  60. 6b1a016b-877b-5451-b250-e979e72ea44a
  61. 6b7cd4ef-9ee9-50d5-8d77-493dbbadcb9f
  62. 6bead760-585c-5fea-a296-164189e886ed
  63. 6bf5c6a4-e2e0-5c9d-b768-c39227ea1a22
  64. 6f4485f2-b904-519e-a027-7d731c785331
  65. 6f534227-fcc8-50a1-94f8-40e9fec2241f
  66. 6f7c3202-9bc7-5bbf-8bb9-d0ead792c632
  67. 6fd02b30-262e-5c45-b966-1e1550446dbf
  68. 713a7c42-fbf3-5305-b821-ffd5f871bd84
  69. 71405975-e88a-5bc8-bb33-58201ed52528
  70. 725e2413-9cf9-562f-9bad-4231fea16e28
  71. 726847dc-c652-5ef6-8696-53830c0a1e2b
  72. 72f1f6f8-d49a-50f4-85ef-5f571240bd09
  73. 773eee34-46e4-5b3f-a653-9371796e8b58
  74. 7d60a449-d8d8-5444-9ba2-6f1c98edd903
  75. 7ea6bc06-01e7-5915-b6c1-1141386bb99c
  76. 81dde1b4-ed9b-5925-a879-70efb841d5fd
  77. 85dd384f-37bf-5365-af59-78a0cb78aed8
  78. 86cc4be5-f25e-5289-8566-602b9d6e634a
  79. 882bc233-3966-5d04-bccb-ae2e0e5e763b
  80. 895b2fec-6090-50b3-b736-12915362995c
  81. 898a37b4-252d-54bd-933e-c456f95dadee
  82. 8a4ca1ad-96aa-569b-8bde-8c57ea815ae9
  83. 8a58ccb4-f327-592a-b946-72d7a56d9d2e
  84. 8e1b0bfa-bc19-5cf8-888c-d31247c71190
  85. 8f7d83f9-7007-5f7b-901b-bcb35f900859
  86. 900af948-f3f8-5d21-b015-6667461dd215
  87. 903f52cf-cb81-5c26-97f7-7d87a6d3b243
  88. 91168585-a6ee-5b76-ba2b-c41f5685180c
  89. 935e73e9-ecf1-5d4f-8668-8fb907cdee4f
  90. 9491599b-459c-5e6e-9ee0-d85a0497ef55
  91. 97127900-4d61-591a-95c8-851ad788386c
  92. 995623b5-4ded-5315-9f2d-f44a0db0ee7c
  93. 9d1b6f68-d4ea-5932-8b47-d05b142a72ee
  94. 9e4ad090-7e0e-5aa7-9a55-8e0bb0b8ea8b
  95. 9fa68e29-e97a-5496-9edf-f3d9ce528f0a
  96. 9fac5c76-ef99-5c5c-a8ed-b36fa44e50bf
  97. a0bc51e1-ff72-56b8-8574-a4204759a872
  98. a1c63d58-b0b6-5029-bc8a-b0318119f506
  99. a399201b-61ec-5bc2-8041-57fdbcb572cd
  100. a5dce98e-3e17-555e-b67c-4448bad354bc
  101. a8bd5dc6-24a0-516f-862a-dbef66f9f688
  102. ab1d561b-6bfa-5686-97a8-259ed0e4b200
  103. acebb7e3-9d07-5c49-85b7-7adfc8fc41fd
  104. ae5f5094-3168-546b-84ca-22c8b80d5922
  105. b09c0be6-756d-52a8-97a0-db71a93d0a1d
  106. b337d406-6624-57cb-95cd-dd68431ee649
  107. b3404349-725f-5b2a-b9c7-dceae37d53ba
  108. b45835d7-ea26-548c-b904-ae20f678e131
  109. b4a40718-739a-5580-95be-52ac57cf80ac
  110. b67a51a3-938e-5ce3-83df-cb623f278864
  111. b832f9a3-fc8c-532d-b1f7-d7b9dd0e2d6e
  112. b8976cf8-d5d0-5c24-a5eb-bc40190f85fd
  113. ba1421d7-bbee-54c1-8026-bd95cfedc92b
  114. ba89ae53-04bf-5a43-9489-f41b20d42f8f
  115. bad65b6f-9a98-559f-bcd0-5844ee3cc5ee
  116. bb76621a-ed64-57ff-bb30-eaf319c66381
  117. bdae9e2c-8c92-50ba-92da-c0235955c36b
  118. c35556ad-67f0-5b66-9276-73e07117c329
  119. c3be6486-bf0a-5d4c-98f9-e09b7a48cd02
  120. c53125eb-36f2-58f6-b890-3fdddbb02219
  121. c92343f2-bc7f-538c-ae59-051331c561b7
  122. ca8f102e-4186-5b9b-90ad-a562e0009d73
  123. cbd65958-d879-5f15-a21b-b5685d30d9bd
  124. ce035b77-82af-583b-a3e8-e84a6aee60a7
  125. cfaeca24-0887-5d13-acd0-70e475f6551b
  126. cfdd19a9-fd37-5164-a3f0-6e749567fc8b
  127. cfe6887a-407f-5be7-b541-85d219012b5b
  128. d001ee75-ce44-56e9-8b22-6110cc2a2a17
  129. d0d56e0e-46df-5679-a082-3034b64e5197
  130. d4163e0b-71c3-5b98-bc28-fe6ad6c1cbe3
  131. d5efa477-cc71-5302-b79a-3be14615bb6d
  132. d840aefe-d163-5e9d-bbf7-346a1a93207c
  133. d87b4b0d-1af7-521d-93e5-705b9c064b4e
  134. d8c518c6-35d9-55b3-b9b4-3610f7064839
  135. d8d79c97-5aee-5ae5-a3fe-e7da0eae4cfc
  136. d96c5875-533d-5a16-8199-50942d5d8f0d
  137. da7fbaeb-34ab-5de8-8dab-8c43dbb78ed9
  138. dc2e5974-2afb-5c81-a0f3-6882fbfaaccf
  139. ddc27138-5274-5187-a396-98524911e10d
  140. df22fe73-a4af-5b9a-bcd6-5803594329d0
  141. e21b7bd5-3f7f-5595-80d4-e32eccd37d60
  142. e2c76ec3-2530-553e-8513-52825fc415f5
  143. e3fc783d-50bf-5c28-813f-42aa6cd5d945
  144. e557518b-75b2-5a55-86e0-a1f9555e857e
  145. e70090a8-06bc-5f4d-8961-fe8799a7f758
  146. e7b40c39-aa6e-5077-9689-a261b39e070f
  147. e82b25d9-37ad-533f-888b-dd687ec819dc
  148. ea37dc88-c40c-530c-a466-130c4ac49f20
  149. ea77fda6-fc06-5f5b-a48a-a5294dfc9396
  150. eb5dffc4-fa51-5a2d-880f-35ab1391f8c8
  151. ec989eb9-12d4-5725-8711-99bc216282c2
  152. ee1440c2-a7c8-5856-8bb9-b1d2ad39f9a6
  153. f076aac5-ca8c-5cfc-80e9-00c006f6562b
  154. f0d43ac6-b030-539a-8fd4-1799c01edca2
  155. f0e3833f-b09f-5bc4-8b8f-f449084b6846
  156. f16a97b5-a9e9-5aaf-aa59-9bd1841508d2
  157. f1ee6fb0-212f-5cd2-b5c7-21bc13a4693f
  158. f2c50136-40db-54f8-bc92-deebabf69dee
  159. f2d510b5-6bab-5c69-a045-806ce2cb4d5a
  160. f3917274-b91c-5846-bee4-d928b3f15d92
  161. f58a17c8-24bd-59f6-a189-7231bf3b74f1
  162. f61c519b-7315-5061-a763-8057b3ba6fb5
  163. f757813d-b5b5-5446-a752-4a589dc4ac11
  164. f95151a1-29f4-5fa8-9e40-611a6c5544d0
  165. fa0ba376-6c87-55b6-a58b-de5a4a2c42b3
  166. fa5dea52-e700-5e6e-863f-c53fd9b72264
  167. fb6e8946-6266-5a70-a193-8038b4dfd0aa
  168. fd1b32fc-7422-56ea-9e31-995ba9a26893
  169. fdb3fea3-4555-581b-ba1b-58baecc3e1c4