Editing User:452

Jump to: navigation, search

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

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

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

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

Cancel | Editing help (opens in new window)