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
  
 +
==Structure==
 
:feed: Array {
 
:feed: Array {
 
::id: "a88f9898-8ae9-5b33-93e6-a5993daa922c" //used as http://xkcd.com/1506/#post/a88f9898-8ae9-5b33-93e6-a5993daa922c
 
::id: "a88f9898-8ae9-5b33-93e6-a5993daa922c" //used as http://xkcd.com/1506/#post/a88f9898-8ae9-5b33-93e6-a5993daa922c
Line 54: Line 21:
 
::profpic: "user-4.png" //used as http://imgs.xkcd.com/xkcloud/user-4.png
 
::profpic: "user-4.png" //used as http://imgs.xkcd.com/xkcloud/user-4.png
 
::img_id: "21bd52d8-a3a4-590f-8888-db854fb52ce3" //used as http://c0.xkcd.com/xb/image/21bd52d8-a3a4-590f-8888-db854fb52ce3
 
::img_id: "21bd52d8-a3a4-590f-8888-db854fb52ce3" //used as http://c0.xkcd.com/xb/image/21bd52d8-a3a4-590f-8888-db854fb52ce3
::captions: Array (of strings)
+
::captions: Array
 
::text:"just two more trips over the horizon"
 
::text:"just two more trips over the horizon"
::album: Array (of img_id strings)
+
::album: Array
 
:}  
 
:}  
  
Line 64: Line 31:
  
 
==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);
function mergearrays(array1, array2, prop) {
 
  for(i in array2) {
 
    if (typeof array2[i] == "undefined") continue;
 
    if (!array2[i]) continue;
 
    if (prop) {
 
      if (typeof array2[i][prop] == "undefined") continue;
 
      if (!array2[i][prop]) continue;
 
      if (array1.indexOf(array2[i][prop]) == -1) array1.push(array2[i][prop]);
 
    } else {
 
      if (array1.indexOf(array2[i]) == -1) array1.push(array2[i]);
 
    }
 
  }
 
}
 
function loadarray(which) {
 
  switch (which) {
 
    case "feed_ids":
 
      if ($("#magic textarea").val().indexOf("\n|-") > -1) {
 
        $("#desc").html("Press feed_table to load table");
 
        break;
 
      }
 
      if (("\n"+$("#magic textarea").val()).indexOf("\n#") > -1) {
 
$("#desc").html("Loading list of feed_ids");
 
temparray = ("\n"+$("#magic textarea").val().trim()).replace(/# http/g, "# http").split("\n#http://xkcd.com/1506/#post/");
 
temparray.shift();
 
for(i in temparray)
 
if (typeof xkcd.feed_ids[temparray[i]] == "undefined")
 
xkcd.feed_ids[temparray[i]] = { img:null, text: null };
 
$("#desc").html("loaded "+temparray.length+" feed_ids (urls)");
 
 
 
      }
 
      temparray = [];
 
    break;
 
 
 
    case "feed_table":
 
      if ($("#magic textarea").val().indexOf("\n#") > -1) {
 
        $("#desc").html("Press feed_ids to load list of ids");
 
        break;
 
      }
 
      if (("\n"+$("#magic textarea").val()).indexOf("\n|-") > -1) {
 
        $("#desc").html("Loading table of feed_ids");
 
        temparray = ("\n"+$("#magic textarea").val().trim()).split("\n|-");
 
        temparray.shift();
 
for(i in temparray) {
 
temp2 = temparray[i].split("\n|");
 
xkcd.feed_ids[temp2[1].substr(28,36)] = { img: temp2[2].substr(29,36), text: temp2[3] };
 
}
 
$("#desc").html("loaded "+temparray.length+" feed_ids (table)");
 
      }
 
      temparray = [];
 
      temp2 = [];
 
    break;
 
 
 
    case "prompt_captionsonly":
 
    case "prompt_imagesonly":
 
      which = which.slice(0,-4);
 
    case "feed_posters":
 
    case "prompt_posters":
 
    case "prompt_reasons":
 
    case "prompt_captions":
 
    case "prompt_images":
 
      $("#desc").html("Loading into "+which);
 
      temparray = ("\n"+$("#magic textarea").val().trim()).split("\n# ")
 
      if (temparray.length > 2) temparray.shift();
 
      mergearrays(xkcd[which], temparray);
 
      $("#desc").html("Loaded "+temparray.length+" into "+which);
 
      temparray = [];
 
    break;
 
 
 
    case "feed_text":
 
    case "feed_images":
 
      $("#desc").html(which+" must be loaded via feed_ids");
 
    break;
 
 
 
    default:
 
      $("#desc").html(" (Error: "+which+" not implemented)");
 
  }
 
}
 
 
 
function update(which) {
 
  if ($("#loadarray").prop('checked')) {
 
    if (which == "sort") {
 
      $("#desc").html(" (Ignoring the fact the 'load array' button is checked...");
 
    } else {
 
      loadarray(which);
 
      return;
 
    }
 
  }
 
  $("#desc").html(which+": "+xkcd.desc[which]);
 
  switch (which) {
 
    case "feed_posters":
 
    case "prompt_posters":
 
    case "prompt_reasons":
 
    case "prompt_captions":
 
    case "prompt_images":
 
//These are all simple arrays which require no additional formatting.
 
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 
$("#desc").append(" ("+xkcd[which].length+")");
 
    break;
 
    case "feed_ids":
 
temp = { ids:"", countall:0 }
 
for(j in xkcd.feed_ids) {
 
temp.countall++;
 
temp.ids  += "\n#http://xkcd.com/1506/#post/"+j;
 
}
 
$("#desc").append(" (all: "+temp.countall+")");
 
$("#magic textarea").val("\n"+temp.ids);
 
delete temp;
 
    break;
 
    case "feed_table":
 
temp = { array: [], list: "", img: [], text: [], countunique:0, countall:0 }
 
for(j in xkcd.feed_ids) {
 
temp.countall++;
 
if (xkcd.feed_ids[j].text && xkcd.feed_ids[j].img) { //can be null when duplicate
 
if (temp.text[xkcd.feed_ids[j].text] == undefined || temp.img[xkcd.feed_ids[j].img] == undefined) {
 
if (temp.text[xkcd.feed_ids[j].text] == undefined) temp.text[xkcd.feed_ids[j].text] = 0;
 
if (temp.img[xkcd.feed_ids[j].img] == undefined) temp.img[xkcd.feed_ids[j].img] = 0;
 
temp.text[xkcd.feed_ids[j].text]++;
 
temp.img[xkcd.feed_ids[j].img]++;
 
temp.array[j] = { text: xkcd.feed_ids[j].text, img: xkcd.feed_ids[j].img }
 
}
 
}
 
}
 
for(j in temp.array) {
 
if (temp.text[temp.array[j].text] > 1 && temp.img[temp.array[j].img] > 1) {
 
temp.text[temp.array[j].text]--;
 
temp.img[temp.array[j].img]--;
 
continue;
 
}
 
temp.countunique++;
 
temp.list += "\n|-\n|[http://xkcd.com/1506/#post/"+j+" "+j.split("-").pop()+"]"
 
+"\n|[http://c0.xkcd.com/xb/image/"+ temp.array[j].img
 
+" "+temp.array[j].img.split("-").pop()+"]"
 
+"\n|"+ temp.array[j].text;
 
}
 
$("#desc").append(" (unique: "+temp.countunique+") (all: "+temp.countall+")");
 
$("#magic textarea").val(temp.list+"\n|}\n");
 
delete temp;
 
    break;
 
 
 
    case "feed_text":
 
    case "feed_images":
 
tempwhich = which=="feed_text"?"text":"img";
 
 
mergearrays(xkcd[which], xkcd.feed_ids, tempwhich)
 
 
 
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 
$("#desc").append(" ("+xkcd[which].length+")");
 
xkcd[which] = []; //no need to keep this in memory
 
    break;
 
 
 
    case "prompt_captionsonly":
 
    case "prompt_imagesonly":
 
 
 
tempprop = which=="prompt_captionsonly"?"text":"img";
 
tempwhich = which=="prompt_captionsonly"?"feed_text":"feed_images";
 
temptest = which.replace("only",""); //don't wipe
 
 
 
mergearrays(xkcd[tempwhich], xkcd.feed_ids, tempprop)
 
 
 
for(i in xkcd[temptest])
 
if (xkcd[tempwhich].indexOf(xkcd[temptest][i]) == -1)
 
xkcd[which].push(xkcd[temptest][i]);
 
 
 
$("#magic textarea").val("\n# "+xkcd[which].join("\n# "));
 
$("#desc").append(" ("+xkcd[which].length+")");
 
xkcd[which] = []; //no need to keep this in memory
 
xkcd[tempwhich] = []; //no need to keep this in memory
 
 
 
    break;
 
    case "sort":
 
temparray = ("\n"+$("#magic textarea").val()).split("\n");
 
temparray.shift();
 
temparray2 = [];
 
mergearrays(temparray2, temparray)
 
 
temparray2.sort(function (a, b) {
 
    return a.toLowerCase().localeCompare(b.toLowerCase());
 
});
 
$("#magic textarea").val(temparray2.join("\n"));
 
$("#desc").html("Sorted "+(temparray.length-1)+" into "+temparray2.length);
 
delete temparray, temparray2;
 
    break;
 
    default:
 
        $("#desc").html(" (Error: "+which+" not implemented)");
 
  }
 
}
 
 
 
function restore() {
 
window.tempOld = JSON.parse(localStorage.getItem('NewFeedIDs'));
 
if (window.tempOld == null) window.tempOld = new Array();
 
restoreLoop();
 
}
 
function restoreLoop() {
 
if (window.tempOld.length) {
 
next(window.tempOld.pop());
 
window.clearTimeout(window.nextTimer);
 
window.nextTimer = setTimeout('restoreLoop()', 5000);
 
}
 
}
 
 
</nowiki>
 
</nowiki>
:(Go to xkcd, and paste it in the browser console.)
+
(Go to xkcd, and paste it in the browser console.)
 
I've determined 10 seconds to be the time you keep getting the same data, so there's no reason to poll the server more frequently than that.
 
I've determined 10 seconds to be the time you keep getting the same data, so there's no reason to poll the server more frequently than that.
 
:However, since the server is now blocking my requests after 20 minutes of doing that, perhaps 10 seconds is too frequent, so I've updated the example to only make 1 request per minute.
 
:However, since the server is now blocking my requests after 20 minutes of doing that, perhaps 10 seconds is too frequent, so I've updated the example to only make 1 request per minute.
Line 399: Line 72:
  
 
<s>I'm only interested getting in the reasons, feel free to adapt this script to get whatever else.</s>
 
<s>I'm only interested getting in the reasons, feel free to adapt this script to get whatever else.</s>
:<s>Script updated to get all text fields.  Feel free to adapt it to get the image URLs.</s>
+
:Script updated to get all text fields.  Feel free to adapt it to get the image URLs.
:Script updated to get all text and image fields.  Feel free to adapt it to do whatever you want.
 
  
 
==Results==
 
==Results==
*prompt_reasons: [107] - None new.
 
*prompt_posters: [205] - None new.
 
*feed_posters: [205] - None new.
 
  
*feed_table: [2252] (See [[1506:_xkcloud/Table_of_Permalinks]])
+
===prompt_reasons===
*feed_id: [26733] (See [[1506:_xkcloud/List_of_Permalinks]])
+
:The old one my script has not found yet which is on the transcript page is "not a hair question".
 +
 
 +
# +++ OUT OF CHEESE ERROR. REDO FROM START +++
 +
#<%= reason %>
 +
#a user's middle name was <nowiki></html></nowiki>
 +
#aol window in front of netscape window
 +
#Baby ur much 2 fast
 +
#bookmarks migrated to Venezuela
 +
#butter didn't suit the works
 +
#butter overflow
 +
#butter to text interface not found
 +
#butter underrun
 +
#cannot save, there's something gross on the S key
 +
#CAPTCHA response indicated parahuman intelligence
 +
#cat-like typing detected
 +
#confirmation BIOS
 +
#could not evade skifree yeti
 +
#could not initialize sound blaster 16
 +
#CRM-114 unit malfunctioning
 +
#cumulonimbus #19 too rabbitlike
 +
#data too big
 +
#database configuration violates the Prime Directive
 +
#Dave's not registered, man
 +
#Desystematized chronodynamic balancing detected in VX Module core.
 +
#dictionary too stiff to read
 +
#electrons too big, stuck in wafer
 +
#ERR:INVALID DIM
 +
#error
 +
#error reading drive B. Abort, Retry, Fail?
 +
#error: error code [error] while decoding error code
 +
#error: operation completed successfully
 +
#ethics in journalism
 +
#eyelash! eyelash!
 +
#files fell out
 +
#files overwritten with more interesting content
 +
#firewall caught fire
 +
#floating point unit no longer afloat
 +
#food problematic
 +
#friday squid blogging
 +
#general uncertainty
 +
#GSM filter change required
 +
#guru meditation #00000025.65045338 press left mouse button to continue
 +
#hard drive oil depleted
 +
#helvetica scenario
 +
#HTTP 403 and 3/4ths
 +
#HTTP 418
 +
#http is down
 +
#hung up prematurely
 +
#I got pretty distracted trying to figure out how big space is
 +
#i hurt myself today / to see if i still feel
 +
#illegal carrot detected in mail queue
 +
#insufficient smoke for current mirror array
 +
#lights are out, hard drive is taking a nap
 +
#lp0 on fire
 +
#Main Bus B Undervolt
 +
#mean connection time exceeded
 +
#microwave running
 +
#minimum recursion depth not reached
 +
#nanobots in the water
 +
#oh jeez there's a lot of you can you all just hang on for a second please oh frig this is so bad
 +
#our buffer runneth over
 +
#out of electrons
 +
#out of monads
 +
#overcurrent undervolt caused by vacuum cleaner on same circuit
 +
#PC LOAD LETTER
 +
#Please Insert Riven CD 4
 +
#PRESS PLAY ON TAPE
 +
#previously-recovered files overwritten by newly-recovered ones
 +
#qubit indeterminate
 +
#RDBMS completely forgot how inner joins work
 +
#screws are stripped
 +
#server aperture too narrow for capital letters
 +
#server fell in ocean
 +
#server had too much to drink
 +
#server power cable stolen by raccoon for nest
 +
#server room haunted
 +
#sitemap was held upside down
 +
#Something went wrong: Something went wrong (Something went wrong)
 +
#soonerist sperver fid dot nile
 +
#spin cycle still active
 +
#spin number must be of the form n/2
 +
#spontaneous splinal dereticulation
 +
#SQL ejection
 +
#subtle threading bug in turing-complete version numbering system
 +
#sysadmin trapped in well
 +
#tape on write-protect hole fell off
 +
#temporal paradox
 +
#the butter you have dialed is invalid or no longer in service
 +
#the little plastic tab on the box the data's in broke off
 +
#the server is temporarily permanent. Please try another also.
 +
#the system / is down
 +
#This copy of Ubuntu is not genuine and you have not yet resolved this issue.
 +
#This page contains content from the Open Source Initiative, who have blocked it on copyright grounds.
 +
#too many hands on the keyboard
 +
#transfer interrupted by incoming fax
 +
#TRIED TO READ 9TH SIDE OF 8 TRACK
 +
#turns out server was on circuit with lightswitch by door
 +
#Unable to cast variable of type Int32 to Magic Missile
 +
#undefined is not a function, which really makes you think
 +
#unexpected timezone drift desynchronization
 +
#unimplemented trap
 +
#User accepted terms but not conditions
 +
#User is not a typewriter.
 +
#user put spaces/vowels in filename
 +
#UTF-31 decode error
 +
#virtual memory got too real
 +
#wrong files
 +
#YOU MUST CONSTRUCT ADDITIONAL PYLONS
 +
 
 +
===feed_posters===
 +
Usernames uses in the feed.
  
*feed_images: [1528]
 
*prompt_images: [1697] (crashed and found again)
 
*prompt_images without permalinks: [169]
 
  
*feed_text: [1993]
+
#@meganamram
*prompt_captions: [2287] (crashed and found again)
+
#Addison1
*prompt_captions without permalinks: [295]
+
#Addison8
 +
#Agric Silverfinger
 +
#Aidan2
 +
#Aiden1
 +
#Aiden5
 +
#Aidenn Aberforth Milne
 +
#Alice1956
 +
#Amanda08
 +
#Anonymous
 +
#Apple Martin
 +
#Arthur17
 +
#Arthur19
 +
#Ashley2009
 +
#Ashley8
 +
#Ashley92
 +
#Austin72
 +
#Ayden1952
 +
#Bailey08
 +
#Bailey2001
 +
#Barbara1974
 +
#Benjamin Kenobi Sr
 +
#Benjamin1970
 +
#Bool Hand Luke
 +
#Brandi9
 +
#Brittany1
 +
#Caden14
 +
#Caden2010
 +
#Candice10
 +
#Carol04
 +
#Chad80
 +
#Charles18
 +
#Chelsea2006
 +
#Cheyenne15
 +
#Cheyenne1988
 +
#Christina Applecare
 +
#CMOS Def
 +
#Curic Copperfinger
 +
#Cynthia1995
 +
#Cynthia99
 +
#Dakota09
 +
#Dakota94
 +
#David St. Hubbins
 +
#Debbie26
 +
#Debbie3
 +
#Debbie62
 +
#Deborah3
 +
#Delta Elroy Backslash
 +
#Destiny1983
 +
#Destiny89
 +
#Dillon2008
 +
#Donald19
 +
#Donna2
 +
#Dorothy7
 +
#DragonBall Cooper
 +
#Dunston Chexin
 +
#Dustin46
 +
#Earl Sinclair
 +
#Egbert Bentley White
 +
#Eliezer Yudkowsky
 +
#Elon Musk
 +
#Emily15
 +
#Eowyn L'Oreal James
 +
#Euphegenia Doubtfire
 +
#Facebook Scott Fitzgerald
 +
#Flash Groupon
 +
#Frances29
 +
#Frances51
 +
#Frances99
 +
#Gary1951
 +
#Gary8
 +
#Gary86
 +
#George Debian Bush
 +
#George Reagan Renesmee Martin
 +
#Green Mario
 +
#Greg2004
 +
#Hatsy Collins
 +
#Henry05
 +
#Henry4
 +
#Horsepower Lovecraft
 +
#J. Alfred Leftshark
 +
#Jack3
 +
#Jack39
 +
#Jacob10
 +
#Jada5
 +
#Jaden Riley Rufio Tolkien
 +
#Jaden21
 +
#Jaina Khloe Rowling
 +
#Jalen81
 +
#James URL Jones
 +
#Jason15
 +
#Jayden79
 +
#Jennifer1
 +
#Jeph Jacques
 +
#Jerry18
 +
#Joe Biden
 +
#John Wilkes Knuth
 +
#John2
 +
#Jonathan27
 +
#Joshua80
 +
#Joshua84
 +
#Justin28
 +
#Justin87
 +
#Kaden61
 +
#Kaitlin1976
 +
#Karen3
 +
#Kathleen78
 +
#Keira10
 +
#Keira2002
 +
#Keira48
 +
#Kelsey1970
 +
#Kelsey1996
 +
#Kenneth94
 +
#Kenneth96
 +
#Khloe14
 +
#Khloe2
 +
#Kilroy
 +
#Kim5
 +
#Kristy2007
 +
#Larry Ronald Hubbard
 +
#Larry1994
 +
#Lauren Ibsen Dolores Amit
 +
#Linda08
 +
#Lindsay2011
 +
#Lisa1995
 +
#Livemau5
 +
#Lord Gaga
 +
#Lord Mondegreen
 +
#Louis Reasoner
 +
#Madison19
 +
#Madison80
 +
#Malik2
 +
#Margaret11
 +
#Margaret5
 +
#Marie10
 +
#Marie12
 +
#Marie3
 +
#Marissa Mayer
 +
#Mark Zuckerberg
 +
#Mark2006
 +
#Mark2007
 +
#Mark92
 +
#Martin Van Halen
 +
#Matthew2006
 +
#Mavis Bitcoin
 +
#Michaela2006
 +
#Michelle11
 +
#Minecraft Holmes
 +
#Misty3
 +
#Myspace Tom
 +
#Norton Ghost Dad
 +
#Notorious L.H.C.
 +
#Padme Dorothy James
 +
#Pam06
 +
#Patricia03
 +
#Paul1957
 +
#Paul50
 +
#Player One
 +
#Player Two
 +
#Professor Monoculatus McToff
 +
#Raymond6
 +
#Ronald22
 +
#Ruth3
 +
#S. G. Dukat
 +
#Samuel19
 +
#Samuel49
 +
#Sarah1976
 +
#Sarah2005
 +
#Sarah55
 +
#Sharon91
 +
#Sharon99
 +
#Shaun1960
 +
#Shaun46
 +
#Shaun6
 +
#Sheena2005
 +
#Sherri97
 +
#Sidd Finch
 +
#Sierra10
 +
#Sierra3
 +
#Sierra7
 +
#Stacy07
 +
#Stacy14
 +
#Steven02
 +
#Steven2002
 +
#Steven50
 +
#Susan11
 +
#Susan25
 +
#Taylor1990
 +
#Taylor1998
 +
#Thomas2
 +
#Tim21
 +
#Tim87
 +
#Tina Belcher
 +
#Todd33
 +
#Tonya22
 +
#Tonya38
 +
#Tracy1977
 +
#Tricia1
 +
#Tricia14
 +
#Trinity1989
 +
#Virginia1961
 +
#Virginia2006
 +
#Wil
 +
#Wric Tungstenfinger
  
Note: prompt_images and prompt_captions reset when my browser crashes, so it is ''not'' supposed to equal feed+without permalinks. I've re-added them here so I can keep track of daily changes.
+
===prompt_posters===
 +
Usernames uses in the prompts. (All of these usernames are also used in the feed)
  
===prompt_reasons===
+
#@meganamram
: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.
+
#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
  
# +++ OUT OF CHEESE ERROR. REDO FROM START +++
+
===feed_text===
# <%= reason %>
+
Captions used in the feed. Containers user submissions.
# aol window in front of netscape window
 
# a user's middle name was <nowiki></html></nowiki>
 
# Baby ur much 2 fast
 
# bookmarks migrated to Venezuela
 
# butter didn't suit the works
 
# butter overflow
 
# butter to text interface not found
 
# butter underrun
 
# cannot save, there's something gross on the S key
 
# CAPTCHA response indicated parahuman intelligence
 
# cat-like typing detected
 
# confirmation BIOS
 
# could not evade skifree yeti
 
# could not initialize sound blaster 16
 
# CRM-114 unit malfunctioning
 
# cumulonimbus #19 too rabbitlike
 
# database configuration violates the Prime Directive
 
# data too big
 
# Dave's not registered, man
 
# Desystematized chronodynamic balancing detected in VX Module core.
 
# dictionary too stiff to read
 
# electrons too big, stuck in wafer
 
# ERR:INVALID DIM
 
# error
 
# error: error code [error] while decoding error code
 
# error: operation completed successfully
 
# error reading drive B. Abort, Retry, Fail?
 
# ethics in journalism
 
# eyelash! eyelash!
 
# files fell out
 
# files overwritten with more interesting content
 
# firewall caught fire
 
# floating point unit no longer afloat
 
# food problematic
 
# friday squid blogging
 
# general uncertainty
 
# GSM filter change required
 
# guru meditation #00000025.65045338 press left mouse button to continue
 
# hard drive oil depleted
 
# helvetica scenario
 
# HTTP 403 and 3/4ths
 
# HTTP 418
 
# http is down
 
# hung up prematurely
 
# I got pretty distracted trying to figure out how big space is
 
# i hurt myself today / to see if i still feel
 
# illegal carrot detected in mail queue
 
# insufficient smoke for current mirror array
 
# lights are out, hard drive is taking a nap
 
# lp0 on fire
 
# Main Bus B Undervolt
 
# mean connection time exceeded
 
# microwave running
 
# minimum recursion depth not reached
 
# nanobots in the water
 
# oh jeez there's a lot of you can you all just hang on for a second please oh frig this is so bad
 
# our buffer runneth over
 
# out of electrons
 
# out of monads
 
# overcurrent undervolt caused by vacuum cleaner on same circuit
 
# PC LOAD LETTER
 
# Please Insert Riven CD 4
 
# PRESS PLAY ON TAPE
 
# previously-recovered files overwritten by newly-recovered ones
 
# qubit indeterminate
 
# RDBMS completely forgot how inner joins work
 
# screws are stripped
 
# server aperture too narrow for capital letters
 
# server farm lost starbucks wifi signal
 
# server fell in ocean
 
# server had too much to drink
 
# server power cable stolen by raccoon for nest
 
# server room haunted
 
# sitemap was held upside down
 
# Something went wrong: Something went wrong (Something went wrong)
 
# soonerist sperver fid dot nile
 
# spin cycle still active
 
# spin number must be of the form n/2
 
# spontaneous splinal dereticulation
 
# SQL ejection
 
# subtle threading bug in turing-complete version numbering system
 
# sysadmin trapped in well
 
# tape on write-protect hole fell off
 
# temporal paradox
 
# the butter you have dialed is invalid or no longer in service
 
# the little plastic tab on the box the data's in broke off
 
# the server is temporarily permanent. Please try another also.
 
# the system / is down
 
# This copy of Ubuntu is not genuine and you have not yet resolved this issue.
 
# This page contains content from the Open Source Initiative, who have blocked it on copyright grounds.
 
# too many hands on the keyboard
 
# transfer interrupted by incoming fax
 
# TRIED TO READ 9TH SIDE OF 8 TRACK
 
# turns out server was on circuit with lightswitch by door
 
# Unable to cast variable of type Int32 to Magic Missile
 
# undefined is not a function, which really makes you think
 
# unexpected timezone drift desynchronization
 
# unimplemented trap
 
# User accepted terms but not conditions
 
# User is not a typewriter.
 
# user put spaces/vowels in filename
 
# UTF-31 decode error
 
# virtual memory got too real
 
# wrong files
 
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
 
  
===Captions ===
 
This is the combined list of all captions I have found, in the feed and in prompts.
 
  
#  (ღ˘⌣˘ღ)
 
# :-(
 
# ?????????????
 
# ... It's about ethics in games journalism.
 
# ...And then we decided it was time to leave
 
# ...Freudian sense tingling...
 
# ...just no.
 
# ...monsters from the id...
 
# 'BOOM' goes the dynamite!
 
# 'Murica, hell yeah!
 
# "...The Aristocrats."
 
# "ARIANA GRANDE" is spanish for "GIANT SPIDER"
 
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
 
# "Bake him away, toys"
 
# "Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
 
# "Cat-like Reflexes"
 
# "Honey, I think the assembly instructions for this washing machine are a bit... What's the opposite of verbose?"
 
# "I am So. Much. More."
 
# "I Never watch porn"
 
# "I'm sorry, i can't do long distance right now"
 
# "Innocent X" by Diego Velazquez, c. 1650, oil on canvas
 
# "Is it symmetric this way?"
 
# "My God, it's full of starS." "WeLL, DURR"
 
# "Oh Sword-chan" "Yes Gun-Kun?"
 
# "Space duckin'" By led blimp
 
# "sun" glasses.. lolz. heh.
 
# "The colour out of space" and black.
 
# "Use the force, Harry" - Gandalf
 
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 
# ((╬ಠิ﹏ಠิ))
 
# (ღ˘⌣˘ღ)
 
# [Metal Gear sound effect]
 
# [USER BANNED FOR THIS TEXT]
 
# [user was banned for this text]
 
# *Darth Vader Breathing*
 
# *glomp*
 
# *Sigh* not cat food for diner again
 
# *Tips fedora*
 
# #720_no_scope
 
 
# #ALLLLLLBYMYSELF
 
# #ALLLLLLBYMYSELF
# #awefullyNicetractsofland
 
# #beatingheartinabox
 
# #bedhead
 
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 
# #blessed
 
# #blessed
# #bornthisway
 
 
# #BROKEN
 
# #BROKEN
# #Canadian internet #price gouging
 
 
# #CATSANDBIRDS
 
# #CATSANDBIRDS
 
# #caturday
 
# #caturday
# #cloudywithachanceofmeatballs
 
 
# #comfortfood
 
# #comfortfood
# #Compromise
 
 
# #DANGERZONE
 
# #DANGERZONE
 
# #DARE to #DREAM
 
# #DARE to #DREAM
 
# #delfie
 
# #delfie
# #Donthate #Truelove
 
# #drbalanced
 
# #DrinkSaltwater
 
# #duckface
 
# #essentialsupplies
 
 
# #fallingfromorbit
 
# #fallingfromorbit
# #fishy!
 
 
# #flavorbomb
 
# #flavorbomb
# #giganticflower #headshot
 
# #GOD
 
# #gps be like
 
 
# #hashtag
 
# #hashtag
# #Hashtag #ironicSelfie
 
# #hashtag #yinyl #yolo #thanksobama
 
# #HL3 #CONFIRMED #ILLUMINATI
 
 
# #hoax
 
# #hoax
 
# #Hopeicanfly
 
# #Hopeicanfly
 
# #illuminati
 
# #illuminati
# #imnotracistbut
 
# #ivisitedthegrandcanyon #yolo
 
# #justnasathings
 
 
# #lifehacks
 
# #lifehacks
 
# #livefeed #colonoscopy
 
# #livefeed #colonoscopy
# #lolcats
 
 
# #Long_Exposure
 
# #Long_Exposure
 
# #LOVEATFIRSTSIGHT#JUSTMARRIED
 
# #LOVEATFIRSTSIGHT#JUSTMARRIED
 
# #me #throwbackthursday
 
# #me #throwbackthursday
# #Moses #riverbabies #passover y'all!!!
 
 
# #Nailpolish
 
# #Nailpolish
# #newhipsterbike
 
# #NewProfilepic
 
 
# #nofilter
 
# #nofilter
 
# #nomakeup #justgotup #wow
 
# #nomakeup #justgotup #wow
 
# #nomakeup #justnatural
 
# #nomakeup #justnatural
 
# #nomakeup #natural  
 
# #nomakeup #natural  
# #notallmen
 
# #notamodel #nofilter
 
# #onering #fuckhobbits
 
# #paleo #rawlifestyle #tasty #nofilter
 
# #parsnipandoldlace
 
# #Photobomb
 
# #rememberthetitans
 
 
# #satellite #navigation
 
# #satellite #navigation
# #saturday #memories #beautiful
 
# #selfie #atwork #nofilter #potatoduty #yolo
 
 
# #selfie #imatree #thuglife
 
# #selfie #imatree #thuglife
 
# #selfie #nomakeup #nofilter
 
# #selfie #nomakeup #nofilter
 
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
 
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
# #sorrynotsorry
 
# #strangelyaroused
 
# #stublife
 
# #sudowoodoproblems
 
# #teamplayer
 
# #this_is_how_an_angel_dies
 
# #this_is_sparta
 
 
# #Toobigtofall
 
# #Toobigtofall
# #toothproblems
 
 
# #twinsies
 
# #twinsies
# #underkill
+
#"...The Aristocrats."
# #vampiremirrorselfie
+
#"Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
# #Worstweekever
+
#"I'm sorry, i can't do long distance right now"
# <3 hanging out with saruman
+
#"Innocent X" by Diego Velazquez, c. 1650, oil on canvas
# <reported for inappropriate content>
+
#"Is it symmetric this way?"
# >< ))*>
+
#"My God, it's full of starS." "WeLL, DURR"
# ┬──┬◡ノ(° -°ノ)
+
#"Space duckin'" By led blimp
# ▒☺▒
+
#"sun" glasses.. lolz. heh.
# ☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭☭
+
#"Use the force, Harry" - Gandalf
# ♪♫♪♫♪♫♪♫
+
#...And then we decided it was time to leave
# 🇺🇸 USA! USA! 🇺🇸
+
#...Freudian sense tingling...
# 🇺🇸 USA! USA! USA! 🇺🇸
+
#???? USA! USA! ????
# ✔ ONE MORE THING CHECKED OFF MY BUCKET LIST
+
#???? USA! USA! USA! ????
# 🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢🐢
+
#????????
# 💩
+
#??????????!
# 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
+
#[Metal Gear sound effect]
# 100 meters in 4 and a half seconds
+
#[USER BANNED FOR THIS TEXT]
# 100% legit free hugs
+
#[user was banned for this text]
# 11 Mario facts that will blow-a your mind
+
#“Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
# 11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
+
#>< ))*>
# 15 Mindblowing facts that prove jaws was real
+
#1 like = 1 little girl feeded to this cancer dying walrus :'(
# 20 Facts that will infuriate hipsters
+
#100 meters in 4 and a half seconds
# 27 things you won't believe are in your local playground
+
#11 Mario facts that will blow-a your mind
# 2pm and i'm not drunk yet
+
#20 Facts that will infuriate hipsters
# 3 year olds first lego experience
+
#5 nights at freddies 4 #letsplay
# 4 8 15 16 23 42
+
#9 out of 10 scientists couldn't solve this equation
# 5 nights at freddies 4 #letsplay
+
#99% of people are too scared to share this post! share if you are one of the 1%
# 500 gold for the private show
+
#A boa constrictor that has swallowed a hat
# 5th of November went too far this year
+
#A Dozen roses, the Barnum Effect, and Thou
# 7 amazing ways of taking off your pants that will surprise you!
+
#a graph showing the amount of time i spend outside
# 8.5 hours later...
+
#A job so boring a bird could do it
# 9 out of 10 scientists couldn't solve this equation
+
#A soulful rendition of "old man river"
# 99 bottles of beer on the wall
+
#AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
# 99% of people are too scared to share this post! share if you are one of the 1%
+
#About time someone brought me that flattened basketball
# A boa constrictor that has swallowed a hat
+
#about to die lol
# A classic battle between the word and the sword, represented by the most noble creature
+
#ack
# A delicate pear
+
#Ain't no mountain high enough, ain't no valley low enough...
# A Dozen roses, the Barnum Effect, and Thou
+
#Alan?
# a fortuneteller told me to get my head out of the clouds.
+
#All flesh is grass
# a graph showing the amount of time i spend outside
+
#All things considered, it turned out nice again
# A job so boring a bird could do it
+
#Allons-Y!
# A kid peed in the ball pit, I took action
+
#Always get a full nights rest
# A land war in asia
+
#Amazing optical illusion! Can you see the duck?
# A soulful rendition of "old man river"
+
#amazons newest delivery method
# a spherical cow
+
#An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
# A window into my soul
+
#An unsuccessful bike design...
# a/s/l?
+
#And so the hunt begins!
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+
#and suddenly, popcorn
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+
#and then there were nine
# AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH
+
#ANGRY CATS SMASH ANGRY BIRDS
# Aaaaaaaaaah
+
#Annoyance of the week: people who take photos of their food
# Aaaaaargh
+
#ants, zomg, ants, everywhere
# About time someone brought me that flattened basketball
+
#Anyone know what's wrong with my thumb?
# about to die lol
+
#anyone seen some uruk-hai? Asking for a friend.
# ack
+
#Apparently it's a thing now...
# ACK-scuse me sir, Stop shaking hands and transmit some data.
+
#Apparently, it's called "BEAR Fishing"
# ACME anvil delivery service...Faster than Amazon!
+
#apple's new offering: iscream
# actually, around here we itemize our taxes
+
#Are you feeling lucky, punk?
# Aesthetic.
+
#are you sure this is a commandline?
# AGHHHHH
+
#aren't rabbits supposed to jump out
# 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 retinoblastoma.
 
# Apparently it's a thing now...
 
# Apparently the cat didn't want to go to the vet...
 
# Apparently the NSA have been keeping secrets from us
 
# Apparently, it's called "BEAR Fishing"
 
# apple's new offering: iscream
 
# Appropriately enough, the jury voted guilty
 
# April Fools!
 
# Are We Not Men? We Are Devo.
 
# Are you feeling lucky, punk?
 
# Are you kidding me?
 
# are you sure this is a commandline?
 
# aren't rabbits supposed to jump out??
 
# Artistic recreation from new fossil find
 
# As I place the flowers, I thought, "She will never forgive me for marrying her daughter."
 
# As long as there aren't any snake I should be fi- Shit! Snakes!
 
# as sir nibbles of acorn surveyed the destruction, he realized that he had forgotten to account for drag
 
# As the sun set on the day, I thought about all of my failings, and didn't realize it mattered anymore.  I was finally free of the day and could start all over again tomorrow without any judgement weighing on me.
 
# As the sun sets on us, we know we must escape.
 
# As viewed on a Macintosh plus
 
# As you can see It's windy out here
 
# Aside from the Fact I Was Buried Alive, The day has been surprisingly good.
 
# Asteroids hate him!
 
# astonishing how xenia flew that plane
 
# Astronauts tossed out of ISC called "Nuisance" by commuters
 
# at last, validation
 
# at least I don't have to spend more time with sandra bullock
 
# At least it stopped bleeding acid
 
# At least someone's getting fed
 
# at least the last thing i'll ever see is pretty
 
# At that moment, something snapped.
 
# At this point the probe fires its engine for the 12th and last time before exiting the observable universe
 
# at times like this i ask, "why me?"
 
# Attracted to black holes, HELP!
 
# australia is not NZ!
 
# AUUUGH
 
# Aw, man, I hate gelatinous cubes...
 
# Aw, yisss!
 
# awesome sunrise this morning #lenscap #nofilter #hashtag
 
# AWESOME! This cloud was so much larger than my thumb!
 
# awkward! . . .
 
# Aww, honey, don't cry...
 
# Awwwwwwwwww, poor meteor!
 
# Ayyyy LMAO!
 
# back on tinder!
 
# Bacteriophage is worth 6 points
 
# BALDUR's GATE YOU have all been poisoned and have 14 days to give me 2000 gold HA HA HA
 
# balloon ninja strikes again
 
# Banana invasion in progress
 
# BANANANANANANANANANA
 
# BANG! ZOOM! STRAIGHT TO THE MOON!
 
# Bangarang Motherfuckers
 
# Barraco Barner is our nasion's prezident.
 
# Bay-bae lolz
 
# Bazookateer crossing
 
# BDSM bringing another relationship together
 
# been stuck here for a while, any ideas?
 
# Beer Pong alone again! #YOLO
 
# Before his untimely death.
 
# Being john "Bowler Hat" Malkovich
 
# Belgium
 
# Best Christmas gift EVER!
 
# best day evar!!!!
 
# best easter ever
 
# Best funeral ever!!!!! YOLO
 
# Best Halloween costume yet!
 
# Best map projection ever
 
# best republican caucus ever!
 
# best snowman ever!
 
# Best. Funeral. Ever.
 
# better go inside, I need to polish my shoes
 
# Beyond Level 256...
 
# big ben is going down.
 
# Big Bird, An orwellian Short
 
# big black orb #shit #soyuzfail
 
# Big bowl of star-flakes
 
# big data strikes back
 
# bip bip bip bip bip bip bip bip bip bip bip bip bip
 
# Bird seed companies HATE him
 
# birdcoin is looking to be a huge success
 
# Birds are less cute the closer they are.
 
# Birds: secretly a type of banana.
 
# Birdwatching is an exhausting affair, especially when the birds fight back
 
# bit nosy, aren't you?
 
# Black as the crows that peck out my eyes
 
# Black begins and wins.
 
# Black box recorder
 
# Blackout @ moscov metros station, i have no idea which way the peron is. #yolo
 
# blob monster attacking our city lol brb avoiding certain slimy doom lol
 
# Blood for the blood god! Skulls for the skull throne!
 
# bob ross has only become more powerful in death
 
# Boba fett? Boba Fett? Where!?
 
# Bomber one on approach
 
# Bonehenge
 
# bowTieght!
 
# Boy, I tell you what. I bet the roads on the moon ain't this smooth.
 
# Brb, burning house down
 
# breakfast in 'merica
 
  
===Captions without permalinks ===
+
===prompt_text===
Some of these captions were found in the feed text before I started recording permalinks, others have been found in the prompt.
+
The text for when there are multiple images to choose from
 +
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
 +
# #DARE to #DREAM
 +
# #delfie
 +
# #fallingfromorbit
 +
# #flavorbomb
 +
# #Hopeicanfly
 +
# #Long_Exposure
 +
# #me #throwbackthursday
 +
# #saturday #memories #beautiful
 +
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
 +
#"Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
 +
#"Is it symmetric this way?"
 +
#???? USA! USA! ????
 +
#[USER BANNED FOR THIS TEXT]
 +
#>< ))*>
 +
#100 meters in 4 and a half seconds
 +
#20 Facts that will infuriate hipsters
 +
#99 bottles of beer on the wall
 +
#a graph showing the amount of time i spend outside
 +
#about to die lol
 +
#All things considered, it turned out nice again
 +
#Always get a full nights rest
 +
#An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
 +
#An eight-stringed octopus?
 +
#An unsuccessful bike design...
 +
#Artistic recreation from new fossil find
 +
#As the sun set on the day, I thought about all of my failings, and didn't realize it mattered anymore.  I was finally free of the day and could start all over again tomorrow without any judgement weighing on me.
 +
#As you can see It's windy out here
 +
#australia is not NZ!
 +
#awesome sunrise this morning #lenscap #nofilter #hashtag
 +
#back on tinder!
 +
#Banana invasion in progress
 +
#best day evar!!!!
 +
#better go inside, I need to polish my shoes
 +
#Big bowl of star-flakes
 +
#Birds are less cute the closer they are.
 +
#brokkolis and sweet potato, nice
 +
#Burnination? Huh?
 +
#Can anybody help me identify this animal?
 +
#Captain obvious strikes again
 +
#Cat in a hat or fox in a box?
 +
#caught the sunset tonight at midday
 +
#cest ne pas un pipe
 +
#Check out my bowling Ball trophy!
 +
#check out my usb sword!
 +
#clever girl.....
 +
#Coco Puffs: Now with your complete daily dose of gamma radiation
 +
#Come on party people, put your hands together
 +
#Death star model 0.0.73
 +
#Desystematized chronodynamic balancing detected in VX Module core
 +
#Do I look fat in this photo?
 +
#Do I look like a penguin?
 +
#Does my eye look bloodshot?
 +
#Does this look like pink eye to you?
 +
#Don't get the lava wet! you'll ruin everything!
 +
#drivers feel stupid for not knowing this one simple trick
 +
#Dryads. that is all.
 +
#Dude, where's my car?
 +
#EARTH HAS 4 CORNER  SIMULTANEOUS 4-DAY  TIME CUBE  WITHIN SINGLE ROTATION.  4 CORNER DAYS PROVES 1  DAY 1 GOD IS TAUGHT EVIL.
 +
#emergency butter delivery
 +
#Evolution of puzzles
 +
#Fear the day we Mole People breach the surface of the Earth like Mewling Babes, FOR THAT WILL BE YOUR LAST! #Ihatethesun #goditsbright #isthisworthit?
 +
#Field Trip!
 +
#finally found a way to disable the flesh on my camera
 +
#First post, be friendly
 +
#First time posting, please be nice
 +
#Fnnnaarrrrr!
 +
#Freshly waxed floors + new socks
 +
#fuck fuck shit shit, what did i do last night?
 +
#Fucking CAKE
 +
#Got a hip mustache! What do y'all think?
 +
#Grandma's new boyfriend is a keeper!
 +
#GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
 +
#Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
 +
#ha ha ha... no.
 +
#He had to learn the hard way: if i clean a window, it will definitely be clean
 +
#He was never seen again
 +
#hello darkness my old friend
 +
#Here we see the last two simple machines; the inclined plane and the rocket board
 +
#Hope that wasn't a granny knot
 +
#How's My new haircut?
 +
#hungry hungry fencing subcontractors
 +
#I  think I need new glasses.
 +
#i am never going to the beauty school for my manicure again
 +
#I bought you a RING... ooh shinything!
 +
#I can take photos with my teeth!
 +
#I don't think this is working
 +
#I dream of death
 +
#i hate it when this happens
 +
#I 'M out of the acorn
 +
#I mean, it's no mona lisa, but I think it's at least, like, a last supper
 +
#I REALLY, REALLY DIDN'T THINK THIS THROUGH.
 +
#I said we'd get on like a house on fire.
 +
#I see you have constructed a new lightsaber
 +
#I suppose things could probably be worse somehow.
 +
#I think there's something here
 +
#I told him, that retracting flaps would destabilize plane, but he wouldn't listen
 +
#I used to be like... but then i was all...
 +
#I. AM. BELLSPROUT.
 +
#If classy cats evolved from regular cats, why are there still regular cats? checkmate, evolution.
 +
#if dreams can't come true, then why not pretend?
 +
#if i don't return by 5pm give this photo to my kids when they grow up
 +
#if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
 +
#If you liked it then you should've put a ring on it
 +
#I'll just go buy cigarettes
 +
#I'll never see her again... i just... i just don't know how to go on... :(
 +
#I'm a fighter!
 +
#I'm so lost. My gps told me to go this way, and now it has stopped working entirely
 +
#in an ideal vacuum, at what point does this fish realize it's going to die?
 +
#in theathers, close to you
 +
#Interior Crocodile alligator, I drive a Chevrolet movie theater
 +
#Is this real life?
 +
#Is this too cheesy?
 +
#It showed up on the photo, but not irl???
 +
#IT WAS A METAPHOR! A METAPHOR DAMN IT!
 +
#It's a timey-wimey time-lord
 +
#it's fun to do bad things
 +
#it's my hand supposed to do this? #thanksobama
 +
#It's not a moon, it's a space dolphin!
 +
#It's the little things
 +
#kang, do i look good in this?
 +
#ksp mission success
 +
#Last time i buy a budget hairdryer
 +
#Let's go left, they said. The other path looks boring, they said.
 +
#Look guys! I'm Vincent Van Gogh!
 +
#Lord of the Rings Episode IV: Revenge of the ents
 +
#love it!
 +
#Magnified 10,000 times
 +
#Making grape Plasma, om nom nom!
 +
#marvel universe howard the duck returns
 +
#may 4th, 2015 nasa finally launches the long delayed Starbucks module for the iss. The first barista is scheduled for a three month stint
 +
#Maybe "Sandworm Petting Zoo" was a bad idea.
 +
#Meritocracy is a pipe dream
 +
#Met Andrew Hussie At Dashcon
 +
#Minister!  We're running out of time.
 +
#Mmm, Spider cake!
 +
#My cat barfed this out
 +
#my class bet me this couldn't get 500 clicks!
 +
#My feet are cold. Can anyone warm them up?
 +
#MY GIRL'S SCIENCE FAIR PROJECT WAS A BLAST!
 +
#My Hobby: freaking people out
 +
#my new boss
 +
#my wonderful dad!
 +
#mYTH BUSTED!
 +
#na na na na na na na na na na na na na na na batcat! batcat! Batcat!
 +
#NASA deny budget cuts have changed their plans
 +
#New candidate announces run for presidency of the united states
 +
#New haircut!
 +
#no wonder the cat always sits here
 +
#No, I've never performed brain surgery before, but how hard can it be?
 +
#nonononononononononononononononononononononononono
 +
#Nope nope nope nope nope
 +
#Not a fruit
 +
#Not only was the moon landing staged, but it was done with puppets.
 +
#Nothing new under the sun
 +
#now you're hungry too.
 +
#Oh God! It's happening again!
 +
#oh look, a penny
 +
#OH MY GOD A HORSE
 +
#Oh no! Not again.
 +
#Oh no, I'm not equipped to ride a digital wave of this size!
 +
#oh, is that godot? Finally...
 +
#Okay, I concede that maybe using a trebuchet is not the best shortcut
 +
#OMG! Kittens!
 +
#One of the less popular Transformers.
 +
#Our flying car attemps seems to got out of hand
 +
#Oy, my giblets!
 +
#Park and ride
 +
#Parlez vous Francais?
 +
#passed another hitch hiker
 +
#Plotting the Extrapolation of a Quasi-Exponential Function On Non-Orthogonal Cartesionoid Axes
 +
#PROOF THE MOON LANDING WAS A HOAX!!11!1!11!one
 +
#Ramen is squishy and soft
 +
#RARE BLACK BUNNY WHOSE ONLY NUTRIENT IS COMPLETELY BLACK SALAD
 +
#run little ghost, run!
 +
#Said the duchess to the vicar.
 +
#smiling is for optimists
 +
#So turns out 'recycling' is not Riding a bike twice.
 +
#Somebody sneezed in the Bathtub
 +
#Someone will Make this About ObamaCare
 +
#Sometimes all you can do is wait
 +
#Sometimes I just want to be in the moment.
 +
#Spiders. Nope.
 +
#Stay in the moment. I want you to fully enjoy it.
 +
#Steve is realxing
 +
#such bike. so sustainable! very carbon-negative.
 +
#sunshine, lollipops, and rainbows...
 +
#Sure, they taught a robot to sing, but can they teach it to love?
 +
#take two, they are small
 +
#terminal velocity is a myth
 +
#that awkward moment when you are staring at Barad-dûr for its architectural merits.
 +
#That was when things started to get a little weird.
 +
#that's me!
 +
#The birds found the hobbit hole
 +
#The Captain Crunch Kraken
 +
#The choice is simple.
 +
#the day of the fingernail clipping has dawned
 +
#The designers of this camera literally nailed it
 +
#The ents met the triffids
 +
#the floor is made of lava. send help.
 +
#The HORROR!
 +
#The last known picture of my dignity, as it reaches from below the waves
 +
#The Moon Will Eat What it will
 +
#The Mushroom war claimed most of us. MOST....
 +
#The newest Olympic sport
 +
#The recursive algorithm produces this unique Fractal Image
 +
#The solution to all life's problems
 +
#THe Tanzanian bargin was notoriously one sided and resulted in the bloodiest genocides in the history of man. #YOLO
 +
#The time has come.
 +
#The unforgiving war on health
 +
#The vlog was better than the movie
 +
#There goes the neighborhood...
 +
#there snow such thing as global warming
 +
#There's a third bump, growing fast
 +
#they said we couldn't play god
 +
#THis is kinda philosophical if you think about it.  If you don't think about it too much.
 +
#This is so awsome! Picture of the year! So glad that I got that new camera!!!!!
 +
#This is why we can't have good things
 +
#This isn't where i parked my zeppelin!
 +
#This NSA intercept program is really getting out of hand.
 +
#those weren't Altoids.
 +
#Thus Ended Alexander the great's conquest
 +
#tiny man with tiny hat found in upturned regular-sized hat
 +
#To infinity and Birdyond!
 +
#Trebuchet-launched into a skyscraper...
 +
#Trip to the Rockies #DUCKFACE #NOFILTER #NEVERSTOPEXPLORING
 +
#TRY{throw Baby;}Catch baby{Throwable cause = baby.getCause(); Throw cause;}
 +
#turns out building a shrink ray was cheaper than genetically engineering giant carrots
 +
#two great tastes that go great together
 +
#uM, I THINK SOMETHINGS WRONG WITH MY CARROT...
 +
#unicycle beowulf cluster seeks riders
 +
#van gogh's secret masterpiece uncovered in french family's basement
 +
#Visual representation of Dubstep
 +
#Wanted for murder. If found, contact the police immediately.
 +
#we appear to have exhausted the low-hanging scientific fruit
 +
#We can't do it, the moon is in the way
 +
#welcome to the space jam
 +
#Where did THAT come from?
 +
#Where did this road come from?!?
 +
#why are my eyebrows purple and who stole my hat?!
 +
#Why are there ants on my face?!
 +
#Why do dogs like this?
 +
#Why do people do this?
 +
#Why do we call it "behedding" and not "bebodying"?
 +
#Why should squirrel learn baseball
 +
#YOU WONT BELIEVE WHAT THE CLOVERFIELD MONSTER ACTUALLY LOOKED LIKE! CLICK TO SEE IT AND 10 OTHER FAMOUS MOVIE CHARACTERS YOU NEVER SAW ON SCREEN!
 +
#You'll never guess what happens next...
  
It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
+
===prompt_captions===
 +
The captions to choose from for a single image (762 of these are also used in the feed.)
  
 
+
# #ALLLLLLBYMYSELF
# (ღ˘⌣˘ღ)
+
# #awefullyNicetractsofland
# ...just no.
+
# #bedhead
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
+
# #BEWARE KILLER TREES WITH KILLER BEES INSIDE
# "Cat-like Reflexes"
+
# #blessed
# "I Never watch porn"
+
# #CATSANDBIRDS
# (ღ˘⌣˘ღ)
+
# #caturday
# *glomp*
+
# #comfortfood
# #beatingheartinabox
+
# #DANGERZONE
 +
# #delfie
 
# #drbalanced
 
# #drbalanced
# #essentialsupplies
+
# #DrinkSaltwater
# #fishy!
+
# #duckface
# #Hashtag #ironicSelfie
+
# #flavorbomb
# #hashtag #yinyl #yolo #thanksobama
+
# #giganticflower #headshot
# #ivisitedthegrandcanyon #yolo
+
# #Hopeicanfly
# #NewProfilepic
+
# #illuminati
# #rememberthetitans
+
# #lifehacks
# #sorrynotsorry
+
# #livefeed #colonoscopy
# #underkill
+
# #Long_Exposure
# <reported for inappropriate content>
+
# #LOVEATFIRSTSIGHT#JUSTMARRIED
# 100% legit free hugs
+
# #me #throwbackthursday
# 15 Mindblowing facts that prove jaws was real
+
# #Nailpolish
# 500 gold for the private show
+
# #nofilter
# 7 amazing ways of taking off your pants that will surprise you!
+
# #nomakeup #justgotup #wow
# A kid peed in the ball pit, I took action
+
# #nomakeup #justnatural
# A land war in asia
+
# #nomakeup #natural
# Aaaaaaaaaah
+
# #notamodel #nofilter
# 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.
+
# #satellite #navigation
# always darekst before the dawn
+
# #selfie #imatree #thuglife
# Amazing! Discovery! on mars!
+
# #selfie #nomakeup #nofilter
# And so it began...
+
# #SELFIE #WIN #LIKEABOSS #HASHTAG #YOLO #REPRODUCTION #THATSTHEWAYITISDONE #CTF #COOL #KEEPITREAL #BEQUICKORBEDEAD #SWAGGGG #RACE #ENGLISHDYCTIONARY
# and that is the story of the very angry caterpillar
+
# #Toobigtofall
# And then, you lightly drill the oven for 15 minutes on high
+
# #vampiremirrorselfie
# Angry sofa is angry.
+
#"...The Aristocrats."
# Animé girls don't look at explosions
+
#"ARIANA GRANDE" is spanish for "GIANT SPIDER"
# another day on california public transportation
+
#"Carpe diem!" my grandfather said to me. This is a picture of him when he was younger.
# Ants close in on the tender eye-flesh
+
#"Innocent X" by Diego Velazquez, c. 1650, oil on canvas
# astonishing how xenia flew that plane
+
#"Is it symmetric this way?"
# At least it stopped bleeding acid
+
#"My God, it's full of starS." "WeLL, DURR"
# Aw, man, I hate gelatinous cubes...
+
#"Space duckin'" By led blimp
# awkward! . . .
+
#"sun" glasses.. lolz. heh.
# best easter ever
+
#"Use the force, Harry" - Gandalf
# big black orb #shit #soyuzfail
+
#*Tips fedora*
# bob ross has only become more powerful in death
+
#... It's about ethics in games journalism.
# Brb, burning house down
+
#...Freudian sense tingling...
# 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
+
#[user was banned for this text]
# CLOCK FACE-OFF
+
#“Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
# come at me, pro!
+
#<3 hanging out with saruman
# come on iiiiin!
+
#>< ))*>
# Conflicting messages
+
#1 like = 1 little girl feeded to this cancer dying walrus :'(
# curiosity fed the cat
+
#1 like = 1 respect  1 share = 15 respect  500 respect = 1 cool
# cuteness depleted after 20 pictures!! #ripoff
+
#100 meters in 4 and a half seconds
# damnit, another drunken tree in the road
+
#11 Mario facts that will blow-a your mind
# Dawn of the Bread
+
#11 REASON TO SOLVE ALL YOUR PROBLEMS WITH MID AIR SKaTEBOARD STUNTS
# Dawn of the last day: 24 hours remain.
+
#20 Facts that will infuriate hipsters
# Dawn: The Final day
+
#99% of people are too scared to share this post! share if you are one of the 1%
# Day:38 Bird Disguise works, No one knows I am a Worm
+
#A boa constrictor that has swallowed a hat
# Did i remember to lock the car?
+
#A Dozen roses, the Barnum Effect, and Thou
# Does my hair look like it's thinning?
+
#a graph showing the amount of time i spend outside
# Does this look infected?
+
#A job so boring a bird could do it
# Doing Laundry on the TARDIS is hard. It's why companions wear the same clothes.
+
#A soulful rendition of "old man river"
# Don't Press Turbo boost. Something tells me you should never press turbo boost.
+
#A window into my soul
# Dons Quixote start their parallel quests
+
#Aaaaaargh
# Drat, the internet is leaking again.
+
#About time someone brought me that flattened basketball
# Dude Did you know you could smoke almost anything?
+
#about to die lol
# eclipse o'clock
+
#ack
# Edward, no!
+
#ACME anvil delivery service...Faster than Amazon!
# Even More Pictures of My Sweet little babies.
+
#Ain't no mountain high enough, ain't no valley low enough...
# even the sun cowers in fear!
+
#Alan?
# Everything's coming up Milhouse
+
#All flesh is grass
# FACESWAP  lol
+
#All that fiber finally kicked in, now i conquer #Ukraine#putin#buddies
# First day at school
+
#All things considered, it turned out nice again
# fond this creepy ass painting in my basement. how much do you guys think it's worth ?
+
#Allons-Y!
# Forgot to blow out my candles before I cut the cake
+
#almost, but not quite, entirely unlike tea
# fourier transforms are too hard!!
+
#Always get a full nights rest
# free the beast!
+
#Always watching, never speaking. WHAT does he want?!
# Gentlemen, fire up your emacs buffers
+
#amazons newest delivery method
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
+
#An ant figured out how to make free electricity with this one weird trick! Scientists hate him!
# George insisted there were better things to worry about, but I had a feeling this was important.
+
#An eight-stringed octopus?
# get spare glasses before meeting rod serling
+
#and suddenly, popcorn
# Giant sentient banana found in space
+
#and then there were nine
# God i love sesame street
+
#And thus, the polar carrot displaced the earth.
# God Save The Queen
+
#and to think this is where it all started
# good old troubleshootin'
+
#ANGRY CATS SMASH ANGRY BIRDS
# got Peanut allergies #yolo #swag
+
#Angry sofa is angry.
# gotta take big ben down a peg
+
#Annoyance of the week: people who take photos of their food
# Guys, I Found a Unicorn!
+
#Another one bites the dust
# haha! i am dead inside!
+
#Another victim of 'got your nose!'
# has anyone seen my force field generator?
+
#ants, zomg, ants, everywhere
# Have you closed the airlock before we took off?
+
#Anyone craving some soup right about now?
# have you heard?
+
#Apparently it's a thing now...
# Have you two seen a small person come through here recently? He may have been carying a blue sword.
+
#Apparently the NSA have been keeping secrets from us
# Hello earthlings
+
#Apparently, it's called "BEAR Fishing"
# hello you're on car talk
+
#apple's new offering: iscream
# help being attacked by wormsaaaaaagghh
+
#Are We Not Men? We Are Devo.
# Heres a pic of a wild catus, who just saw a balloon
+
#Are you feeling lucky, punk?
# Hey there cutie
+
#Are you kidding me?
# Hey, check out my new green colored shirt!
+
#are you sure this is a commandline?
# Hey, check out this cool website i found!
+
#aren't rabbits supposed to jump out??
# hey! check out larry's new aloe vera cream recipe! it works wonders on the skin and lips!
+
#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.
# High Bro, five.
+
#As viewed on a Macintosh plus
# His name is robert palmer.
+
#Astronauts tossed out of ISC called "Nuisance" by commuters
# Honest, officer, that's what happened!
+
#at least I don't have to spend more time with sandra bullock
# how do i resize the city?
+
#At this point the probe fires its engine for the 12th and last time before exiting the observable universe
# Hunka Hunka burnin' steel
+
#australia is not NZ!
# I always fast forward through this part.
+
#awesome sunrise this morning #lenscap #nofilter #hashtag
# i am wearing a bolo tie
+
#AWESOME! This cloud was so much larger than my thumb!
# I can can hear satellites crying in my teeth
+
#Aww, honey, don't cry...
# I can control the BEES! But I only make them turn right
+
#Bacteriophage is worth 6 points
# I Don't believe in primordial black holes... I don't believe in primordial black holes...
+
#BALDUR's GATE YOU have all been poisoned and have 14 days to give me 2000 gold HA HA HA
# i don't have time for this!
+
#Banana invasion in progress
# I found the missing pieces!
+
#BANG! ZOOM! STRAIGHT TO THE MOON!
# I got the keys to the city.
+
#Bangarang Motherfuckers
# i hate
+
#Barraco Barner is our nasion's prezident.
# 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.
+
#Bay-bae lolz
# i love my family
+
#Bazookateer crossing
# i refuse to regret this decision
+
#Beer Pong alone again! #YOLO
# I think I have too many swords
+
#Being john "Bowler Hat" Malkovich
# I think i made a point!
+
#Best Christmas gift EVER!
# i thought maybe if I uninstalled flash...
+
#best day evar!!!!
# I was an adventurer like you, but then i took an arrow to the knee
+
#Best Halloween costume yet!
# I was making a mind map but I fell off the edge...
+
#Best map projection ever
# i was told this came with a bowl of soup.
+
#Best. Funeral. Ever.
# I will use it if it is web scale
+
#better go inside, I need to polish my shoes
# I wish this was fake...
+
#Beyond Level 256...
# I woke up sleeping next to this. #yolo
+
#big ben is going down.
# i'M 12 AND WHAT IS THIS?
+
#bip bip bip bip bip bip bip bip bip bip bip bip bip
# i'm being ironic
+
#birdcoin is looking to be a huge success
# i'm really diggin' your shovel
+
#Birds are less cute the closer they are.
# i've got hurt feelings
+
#bit nosy, aren't you?
# I've never felt so empty before
+
#Black as the crows that peck out my eyes
# if only i had friends...
+
#Black begins and wins.
# If you've got a moustache...
+
#Black box recorder
# In D&D you *are* your equipment
+
#blob monster attacking our city lol brb avoiding certain slimy doom lol
# Interns wanted: Must have 5TB+ of Storage Space.
+
#Boba fett? Boba Fett? Where!?
# Is it a bird, is it a plane, no it is spiderpig!
+
#bowTieght!
# Is there a bee on my nose?
+
#Boy, I tell you what. I bet the roads on the moon ain't this smooth.
# Is this a horse man or a duck man? The answer may surprise you!
+
#brokkolis and sweet potato, nice
# Isn't he cute?
+
#Burnination? Huh?
# It's a cat ass trophy
+
#BuzzFeed Quiz: Which bone are you?
# it's a metaphor
+
#Cakephants are my new friends
# It's bigger after you put it together.
+
#Can anybody help me identify this animal?
# it's called "depleted" 'cause it's heavier
+
#Cant explain that
# It's Loch Ness Turtles all the way down.
+
#capes are in fashion
# it's the minecraft world
+
#Captain obvious strikes again
# Jet fuel *can* melt steal beams.
+
#Cat in a hat or fox in a box?
# Joining the illuminati was the best decision EVER!
+
#caught the sunset tonight at midday
# Khan!
+
#cest ne pas un pipe
# ladies
+
#Check out my bowling Ball trophy!
# lemme at dem boigas!!!
+
#Check out my new cat! Sooooo cute!
# Life on the moon.
+
#check out my usb sword!
# Like a G6, baby, like a g6
+
#Click this text and you will find the love of your life within the next 20 minutes! If you don't, your mother will die a horrible death!!!
# Likes grains of sand in an hourglass...
+
#Click to show secret text
# linux compatible toaster at last!
+
#Close the pod bay door, Hal.
# Lost in Space...
+
#Come on party people, put your hands together
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
+
#Connect the dots to see the correct Nixon cabinet member
# Malkovich Malkovich Malkovich
+
#Contains 8 essential types of spiders!
# Massive orgy reaches climax
+
#Coordinates of the ants walking across my screen, as a function of time
# Maybe this counts as clean energy
+
#Copernicus: The early years
# Meow what seems to be the problem?
+
#CORNFLAKES AGAIN!?!?!??!?!??!
# Mmm... Vegemite
+
#Crocodile Pink Eye
# mmmmm.... Bones....
+
#cthulu caught me slipping
# modest pile of dinosaurs
+
#cthulu wants what cthulu wants
# morning selfie :-)
+
#Curiosity Stops Sending Photos, Transmits Crude Line Drawings Instead.
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
+
#Da_FEELS###!
# my castles stand on pillars of sand
+
#Dad, Mom, meet my boyfriend
# my euler circuit is alive!
+
#Daisy, Daisy, Tell me your Answer True.
# My girlfriend thinks I need to shave my beard. Thoughts?
+
#Damn, she said no capes. I should have listened.
# My God do I hate being right all the time
+
#Damn, two o'clock already?
# my new app for power outages - may need to rethink this.
+
#damn. that squirrel's got a ball
# My trip to Europe #selfie
+
#damned ninjas
# Never divide by zero
+
#damnit, another drunken tree in the road
# new drupal logo
+
#Dang! Inflated tires with Helium again!
# New microwave over cures/causes cancer!
+
#Dawn of the last day: 24 hours remain.
# new president misuses "literal", becomes a duck
+
#Dawn: The Final day
# No good deed goes unpunished
+
#Day 12: it's going well I think
# Nom nom nom
+
#day 3: the turnip still refuses to break up on re-entry
# Not all dreams can come true
+
#Death star model 0.0.73
# Not even once
+
#Definitely not ordering from Walt Orfman's Pizza Restaurant again.
# Not even once...
+
#dentists are going crazy about this weird Teeth whitening trick discovered by British mum. as seen on CNN.
# Nothing to see here.
+
#Desystematized chronodynamic balancing detected in VX Module core
# Now where did i leave my ocarina. . .
+
#Dey see us Rollin'. Dey Hatin'.
# OH GOD SPIDERS
+
#Dinosaur extinction: The final Phase
# oh, god, why?
+
#discovered a new shortcut for making toast
# Open wide!
+
#Dividing by zero prematurely ended his research career.
# ouch!
+
#Do I look fat in this photo?
# peacekeeping mission is a total success
+
#Do I look like a penguin?
# photobombed again
+
#Do my feet look fat?
# Please. Save yourself.
+
#Do my feet smell?
# Prius Love
+
#Do Notte Buye Betamacks.
# Prom Night at tentacle monster HIgh
+
#Do you feline lucky, punk?
# pronounced duh-jango
+
#Do you have a lighter?
# Proof that dinosaurs and humans coexisted
+
#Does anyone know if this is supposed to happen
# QWANTZ Fanfic
+
#Does anyone know why it is doing this?
# Rabbits are vicious creatures when their data are stolen
+
#does my ass look big in this?
# Really, the star wars prequels are under-rated if you think about it
+
#Does my eye look bloodshot?
# rebranding of national park service almost complete
+
#Doesn't like being referred to as garfield
# rehearsals ARE going great! AnD Don't forget to come to the premiere on Thursday!
+
#Done my nails, don't they look pretty?
# release the kraken
+
#Don't get the lava wet! you'll ruin everything!
# Riemann should have had this idea
+
#Don't inhale!
# RIP SPEAK N SPELL
+
#Don't send bees, send lions! and send them to france!
# rock beats scissors
+
#don't worry, it's part of my plan!
# Rocket pseudo-science!
+
#doors from ikea: the pinnacle of excellency
# rodeo!!
+
#Down time
# Roll of toilet paper reacts to US Deficit
+
#drive like an ass, be slapped like an ass!
# Saw this outside last night. Is it dangerous?
+
#drivers feel stupid for not knowing this one simple trick
# Sheena, who dis
+
#DUCK CONFUSED ABOUT DRESS COLOR, FEELING DEPRESSED
# slippin' into the future
+
#Duck Duck Go's secret algorithm
# smile for the camera!
+
#Dude, where's my car?
# So it's true, then.
+
#DX(X^LN(Y!)/xy*pi=screw you
# So it's true, then.
+
#Early Heavy Metal Story Boards Discovered
# So long, and thanks for the fistbumps
+
#Eat my shorts
# So that happened
+
#emergency butter delivery
# So this happened.
+
#engage!
# solve all your problems with hemlock
+
#ESA probe enters black hole - first photos!
# Somebody sneezed in the Bathtub
+
#Et boum! C'est le choc!
# Somehow the welcome mat ended up inside the house.
+
#Evenutally, they'll write moby dick.
# steel beams taste best with a dallop of gasoline
+
#every breath you take, every move you make
# Strangely, my patients don't like this new couch.
+
#Every day my damn cat makes this face
# Support my kick-starter! A whole new devise with bluetooth and a button!
+
#everything makes sense now
# Sweet, they new red shirts are on sale again!
+
#Exact composition of this... thing... is yet to be determined.
# Ted Cruz imagines himself like this and things it's normal.
+
#Existance is an illusion
# Testing my new high-contrast filter outside the unicyclist meet up
+
#Extreme beer pong
# That's the princess I want to save
+
#Fancy
# the best stars are sky stars!
+
#father & daughter re-unite!
# The castle was in you, all along!
+
#Fear the day we Mole People breach the surface of the Earth like Mewling Babes, FOR THAT WILL BE YOUR LAST! #Ihatethesun #goditsbright #isthisworthit?
# The gang destroyed the context
+
#feeding my pet
# The little prince is full of siht
+
#Field Trip!
# 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.
+
#filming the sky was boring. Turns out my foot is more boring...
# The most diabolical teamup in history
+
#Finally found a way to disable the flash on my camera
# The new Doctor Who is quite the quack.
+
#finally found a way to disable the flesh on my camera
# the oceans are made of sky tears
+
#finally got that squid stache
# the prophecy was true !
+
#Fire can sometimes be hot?
# The ritual has begun.
+
#First found evidence for Einstein–Rosen bridges.
# the zoidberg axis
+
#First I glued him to the wall, then I took pictures for my grandma's scrapbook
# There is no way you can back up that claim. And that's okay.
+
#First post, be friendly
# There's no more time!
+
#First screenshot of portal 3 !!
# These night vision goggles don't work
+
#First time posting, please be nice
# these pretzels are making me thirsty.
+
#First, thoroughly lubricate the conspiracy theory
# They can see me!
+
#Fission, fusion, what's the difference?
# They're watching us.
+
#flying car - it is now officially the future
# this guy can't believe what i'm doing.
+
#Flying fish had no affect on it
# THIS IS FOR KIBO!
+
#Fnnnaarrrrr!
# this is the last time i go skiing @mammoth
+
#For my book report presentation, i'll be acting out "50 shades of gray"
# This is the second worst day of my life.
+
#For sale: planet, barely used. slight pest problem
# This is the strangest weasel I've ever seen.
+
#Foreign clouds take british clouds' jobs
# This is whom the nsa uses to watch you.
+
#forgot to turn the oven off!
# This is why I don't order take-out
+
#Formal on top, party on the bottom
# This one weird object blocks out the light!
+
#found this in my fridge. Think it's still good?
# This wasn't a problem back in the usenet days
+
#Found this in my garden, wtf?
# This would be a great Emoji
+
#found this on google maps earlier.
# Those Eyes! @_@
+
#Freshly waxed floors + new socks
# Ticks, it's what's for breakfast.
+
#FRom the creators of AIR BUD, presenting air chip, the Soccer squirrel.  watch your Nuts! Summer 2016
# Time to end the trial run, this was a failure. abort!
+
#fuck fuck shit shit, what did i do last night?
# To avoid going bankrupt, Polaroid activates its subliminal message feature on old photographs to try to get more buyers,
+
#FUCK NOT AGAIN
# To weather the storm of outrageous fortune.
+
#Fucking CAKE
# Too many in line. I'll come back later.
+
#Fulfilling western ideals!
# Too many potatoes, not enough butter
+
#Funky fresh beats #sudowoodo
# Two days on this new diet. How do I look?
+
#George was a good little monkey, and always very curious.
# Ugh, I hate how people take pictures instead of just enjoying the view.
+
#get your ass to mars
# Ugh, not the polar vortex again.
+
#go home chitty chitty bang bang you are drunk
# unsubscribe
+
#goddamnit, that's the fourth time this week!
# vinyls were always better!
+
#Goldilocks party!
# Wake up sheeple!!!!!!!1
+
#good old troubleshootin'
# We look into each other's  eyes as we drive. it's to show our love.
+
#google bots have uncovered some missing bits
# we need to keep our sex life fresh
+
#GOOGLE GLASS IS WORKING GREAT
# Well crap, snow's covered everything on earth again!
+
#Got a hip mustache! What do y'all think?
# Well, here's a real cock-up.
+
#Got your nose!
# well, the keys are definitely lost....
+
#GPS Signal lost.. damn it!
# what are you complaining about?  three legs are inherently stable!
+
#Grandma's new boyfriend is a keeper!
# What do we really know about the dark side of the moon?
+
#GREAT GOOGLY MOOGLY IT"S ALL GONE TO SHIT
# What do you mean, don't talk about fight club?  That's just stupid.
+
#Great, now I forgot where I left the car.
# what is in the box?  Only pain.
+
#Guillotine needs to be recalibrated
# what the sun looks like!
+
#Guys did you know we can finally make maglev hammocks thanks to eletropermanent magnets
# when did i put on a bow tie???
+
#GUYS HELP IS THIS SWINE FLU?
# When I grow up I am *so* getting out of here
+
#ha ha ha... no.
# when they said samurai robot i thought they meant something else!
+
#Had to settle for a beard
# When you see it...
+
#haha oh my cat
# who ate half my cookie?
+
#Hat in the cat strike back!
# Who dropped this? This is no way to run a student council!!
+
#Have you ever seen a sitting cow before?
# Why can't I eat all this chicken?
+
#He did say it was edible
# Why did the cypress cross the road?
+
#He had to learn the hard way: if i clean a window, it will definitely be clean
# With a mirror, it's 00:50 right now
+
#He left me! :ccc
# Words, words, words
+
#He nailed it!
# Worlds saddest bomber drops worlds happiest payload
+
#He thought 'chutes were for the insecure
# Yay, worms!
+
#He was never seen again
# Yesterday was not good
+
#hello darkness my old friend
# you know what they say about guys with big feet
+
#Help the police catch this violent criminal before he strikes again.
# You only learn as much as you can put in one Cup of coffee
+
#help wanted. inquire within.
# you've really let me down this time.
+
#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.
===Images without permalinks ===
+
#Hey, what did you mortals do with my chariot?
Images in the prompt which have not been found in the feed
+
#Hi ho, hi ho, it's off to work we go
 
+
#Hide! It's Un Chien Andalou!
# 00154572-02e2-5e63-a3e4-bde3ab4b1934
+
#Hmm The Earth halves kinda look like buts.
# 046bc891-392e-58ac-880d-d202b3810bdd
+
#Hmmmm, which one isthe Vegan option?
# 08584d88-4186-5ea6-bc49-5f1f796d37de
+
#HODOR!
# 08757175-c59e-52a6-9fc9-9c72e473ceba
+
#holy crap, seems the generate dog function works for humans too!
# 0b148e1f-e4bc-5100-92fc-5ec84c20eecc
+
#Homo helicopteris captured in bali
# 0d3b2461-d927-5d99-969a-c6a52d071461
+
#horses can't use chalk. stupid horse.
# 0ecdc175-34e2-563f-a290-33c0f5549420
+
#Houston, we are the problem
# 0ef43321-8a3f-5afb-912e-d4439a64f8a1
+
#Hoverboard to full power!
# 102a8fef-0b03-51c9-8ace-0017f18ed7d1
+
#How did I get here?!?
# 135ec01b-fa2c-5eb6-9354-87c4c3e12f63
+
#how do i turn this off?
# 172832dd-7c7c-5640-aefa-3e0d142ea1c8
+
#how do you get the screensaver off?
# 17ae1505-dc66-5fa6-b6fc-76e2e571dcca
+
#How does this work again?
# 1def8ba2-ed1f-5049-a814-ce84cd7a9f7b
+
#How many can there be?
# 1f420516-0eda-50f0-80db-d675525278e9
+
#hungry hungry fencing subcontractors
# 209a35ed-6e02-544b-952b-d4d0615d8c3c
+
#I  think I need new glasses.
# 2133fa57-71c7-52ad-93be-adebb04251a9
+
#I am a beautiful person.
# 2158ef67-cc5c-52aa-b437-87ad938d5430
+
#I AM BECOME DERP destroyer of brains
# 23000a39-d407-5fd7-9956-3d90a0bc283c
+
#i am never going to the beauty school for my manicure again
# 23029be0-b127-5777-912f-664613740e58
+
#I beseech you, in the bowels of Christ, think it possible that you may be mistaken.
# 230e82f1-3a97-5657-93b4-a1538237a7bd
+
#I blame supernasa
# 25da16d6-e6a6-52a5-8507-91f2e4e68875
+
#I bought you a RING... ooh shinything!
# 27773d87-9fc1-5fa3-945d-8602b334d630
+
#I broke cookie clicker...
# 2904fcef-5c88-58e6-b651-c8db16da8b4e
+
#I can take photos with my teeth!
# 29a80edb-16d6-5da1-9d7c-34f80c7826d8
+
#I can walk on my hands
# 2aad5103-42b4-5836-a997-9c5d41ef18d0
+
#I can't even. But I am taking evening classes.
# 2ca667ea-3e06-5b04-ae11-c2e81ed10333
+
#i can't form the words to describe such beauty
# 2cd3e0f7-2009-52d2-b526-d34fb21723fe
+
#I certainly wasn't going to bury this one
# 35327ccb-4c06-5054-b3a1-b1871ac0c928
+
#I CHOOSE YOU!
# 35547760-624c-5f0f-aa6f-05827e5396dd
+
#I don't Even know What this ad is trying to promote.
# 3602c6d2-660d-5d6f-b3bf-8aad19c3c492
+
#I don't know
# 37e8070f-4690-5a1e-9118-3b0a4e4af248
+
#i don't remember this scene form star wars
# 38ed173d-7a12-5294-80cb-03deb8896dfc
+
#I don't think I really understand what this is.
# 39540864-cfcb-5819-bdd9-16f314fa7aa4
+
#I don't think this is working
# 3b3aed58-a224-50be-9129-ba20483846b6
+
#i don't think we're playing zelda anymore...
# 3d9ffba2-c0f6-5fcb-b3b2-ee8795c1f720
+
#I don't want to set the world on fire
# 3e62ef75-49ce-5e12-bd8a-b173a9c4269d
+
#I dream of death
# 3e74af7e-d5fe-561a-9835-2baa0724af3e
+
#I EXPECT YOU TO SAY 'OW OW OW,' MR. BOND
# 3e7765a5-f766-5a74-8711-2720bef89403
+
#I feel like I've been saying "wow, my mom was right" a lot recently
# 41e41ecd-5ed0-5ae0-891e-652664dfde38
+
#I find this picture reflects my soul.
# 4334a9ee-88d9-5be8-b019-723c34e7a83f
+
#I forgot the two scoops of rasins!
# 43637145-5846-5213-bbd2-62c51fc68393
+
#I forgot to get a plane
# 464e554b-b208-5249-8f37-64ce5e075d9d
+
#I found a three fingered kitten!
# 4912282c-ec7a-5a0d-9e6e-10d3418ab330
+
#I found it!!!!!!!
# 49a75cc1-bd31-5e44-9b08-d43f91c666de
+
#I found this in my navel, should I be worried?
# 49de1a38-5ca8-5831-a90f-e676aed4bbc6
+
#I got the job!
# 4b0d6770-c68c-5d87-9cc7-d33fae6dc98e
+
#I guess I only have myself to blame.
# 4b963434-6486-5baf-a02b-e2ba5fd2ebd8
+
#I has a sad
# 553d2e98-2bcb-516d-8eaf-5442f1c9d0d6
+
#i hate it when this happens
# 56f3037e-639d-5011-8fee-c4b0912baa83
+
#I hate trying to win bowls of cereal in 'skill tester' machines
# 57c2fed8-6e80-5c80-a398-0edfc27cf754
+
#I hate waking up from a really good dream
# 5a8d1f9a-b07d-5a7b-be1e-525b50d5258c
+
#I havE A SLIGHT MELTING MOTHER-IN-LAW ISSUE
# 5c39d369-cba1-59d8-965b-d1b068809e6b
+
#I just bought this
# 5dd8151e-6bab-5302-8c3e-611ae32825b7
+
#I just can't see the point anymore
# 64edaa0d-1f4f-5ebe-a9c7-de0f2eabf74d
+
#I just want to watch the world burn
# 65c4a415-ada8-5487-8c67-59ad4bdac78f
+
#I knew it would be a bad idea to go during the mating season
# 65e7cf48-31dd-546f-98b1-d235ef5c9100
+
#I knew there would be side effects
# 6691672e-826a-53ba-a42a-8cbf38ad511d
+
#I lost my wits
# 673eec8a-d30a-5f43-a3b0-8535a9b464e7
+
#I lost my wrist
# 67d13536-af25-5a31-b81e-021e2e9676f5
+
#I 'M out of the acorn
# 6b1a016b-877b-5451-b250-e979e72ea44a
+
#i need to do my laundry more often.
# 6b7cd4ef-9ee9-50d5-8d77-493dbbadcb9f
+
#I never understood that part of the bibile
# 6bead760-585c-5fea-a296-164189e886ed
+
#I put on my wizard robe and hat
# 6bf5c6a4-e2e0-5c9d-b768-c39227ea1a22
+
#I said we'd get on like a house on fire.
# 6f4485f2-b904-519e-a027-7d731c785331
+
#i say, the cheat, let us prey upon that poor sap, the home star runner!
# 6f534227-fcc8-50a1-94f8-40e9fec2241f
+
#I say: nuts to that!
# 6f7c3202-9bc7-5bbf-8bb9-d0ead792c632
+
#I see you have constructed a new lightsaber
# 6fd02b30-262e-5c45-b966-1e1550446dbf
+
#I should really separate those
# 713a7c42-fbf3-5305-b821-ffd5f871bd84
+
#I solved the debt crisis!
# 71405975-e88a-5bc8-bb33-58201ed52528
+
#I Swear this dress was yellow and blue
# 725e2413-9cf9-562f-9bad-4231fea16e28
+
#I think I can... I think I can
# 726847dc-c652-5ef6-8696-53830c0a1e2b
+
#I think I've figured out how to setup PostgreSQL
# 72f1f6f8-d49a-50f4-85ef-5f571240bd09
+
#I think my houseplant is doing pretty good #greenthumb
# 773eee34-46e4-5b3f-a653-9371796e8b58
+
#I think there's something here
# 7d60a449-d8d8-5444-9ba2-6f1c98edd903
+
#i THINK WE'RE BEING WATCHED!
# 7ea6bc06-01e7-5915-b6c1-1141386bb99c
+
#I thought of it, and it happened
# 81dde1b4-ed9b-5925-a879-70efb841d5fd
+
#I told him we were closed and all he said in reply was "You won't like me when I'm angry."
# 85dd384f-37bf-5365-af59-78a0cb78aed8
+
#I told him, that retracting flaps would destabilize plane, but he wouldn't listen
# 86cc4be5-f25e-5289-8566-602b9d6e634a
+
#I told you I would make it. I'm just a little late...
# 882bc233-3966-5d04-bccb-ae2e0e5e763b
+
#I told you to keep the raptors secure
# 895b2fec-6090-50b3-b736-12915362995c
+
#i want to ride my bicykle (i found it in pripjat)
# 898a37b4-252d-54bd-933e-c456f95dadee
+
#I was cleaning jello off the floor for *AGES*
# 8a4ca1ad-96aa-569b-8bde-8c57ea815ae9
+
#i was gonna eat that
# 8a58ccb4-f327-592a-b946-72d7a56d9d2e
+
#I was just mugged by an angry mob of hipsters!
# 8e1b0bfa-bc19-5cf8-888c-d31247c71190
+
#I was just trying to install freebsd...
# 8f7d83f9-7007-5f7b-901b-bcb35f900859
+
#I wish I could afford the monopolar model...
# 900af948-f3f8-5d21-b015-6667461dd215
+
#I wish I could ride in a balloon
# 903f52cf-cb81-5c26-97f7-7d87a6d3b243
+
#I wonder what will this lead to...
# 91168585-a6ee-5b76-ba2b-c41f5685180c
+
#i wonder why you left me here.
# 935e73e9-ecf1-5d4f-8668-8fb907cdee4f
+
#I would never have believed in atlas if I hadn't seen him for myself
# 9491599b-459c-5e6e-9ee0-d85a0497ef55
+
#I wouldn't eat that if I were you.
# 97127900-4d61-591a-95c8-851ad788386c
+
#I. AM. BELLSPROUT.
# 995623b5-4ded-5315-9f2d-f44a0db0ee7c
+
#I'd call this experiment a success.
# 9d1b6f68-d4ea-5932-8b47-d05b142a72ee
+
#If classy cats evolved from regular cats, why are there still regular cats? checkmate, evolution.
# 9e4ad090-7e0e-5aa7-9a55-8e0bb0b8ea8b
+
#if dreams can't come true, then why not pretend?
# 9fa68e29-e97a-5496-9edf-f3d9ce528f0a
+
#If it quacks like a duck... in spaaace!!!
# 9fac5c76-ef99-5c5c-a8ed-b36fa44e50bf
+
#if there is no water on mars, at least there is data
# a0bc51e1-ff72-56b8-8574-a4204759a872
+
#if you gaze long enough into the oscilloscope, the oscilloscope gazes back at you, longingly.
# a1c63d58-b0b6-5029-bc8a-b0318119f506
+
#If you liked it then you should've put a ring on it
# a399201b-61ec-5bc2-8041-57fdbcb572cd
+
#if you squint, you can see that it's actually an adequately bearded grain of 1986 millet signing the insurance policy of versailles.
# a5dce98e-3e17-555e-b67c-4448bad354bc
+
#If you're happy and you know it, keep it to yourself
# a8bd5dc6-24a0-516f-862a-dbef66f9f688
+
#I'll catch it one day
# ab1d561b-6bfa-5686-97a8-259ed0e4b200
+
#I'll just go buy cigarettes
# acebb7e3-9d07-5c49-85b7-7adfc8fc41fd
+
#I'll miss the sparrow with my sparrow missile
# ae5f5094-3168-546b-84ca-22c8b80d5922
+
#i'll never get tired of this.
# b09c0be6-756d-52a8-97a0-db71a93d0a1d
+
#I'll never see her again... i just... i just don't know how to go on... :(
# b337d406-6624-57cb-95cd-dd68431ee649
+
#i'll see you on the dark side of the moon
# b3404349-725f-5b2a-b9c7-dceae37d53ba
+
#I'll show you a forbidden electronic transition!
# b45835d7-ea26-548c-b904-ae20f678e131
+
#I'm a Real Boy!
# b4a40718-739a-5580-95be-52ac57cf80ac
+
#I'm going to be smashed to bits
# b67a51a3-938e-5ce3-83df-cb623f278864
+
#I'm lost without your love, baby
# b832f9a3-fc8c-532d-b1f7-d7b9dd0e2d6e
+
#I'm not aging gracefully, am I?
# b8976cf8-d5d0-5c24-a5eb-bc40190f85fd
+
#I'm not saying it was aliens but it was aliens
# ba1421d7-bbee-54c1-8026-bd95cfedc92b
+
#i'm now 75% more efficient
# ba89ae53-04bf-5a43-9489-f41b20d42f8f
+
#I'm ready!
# bad65b6f-9a98-559f-bcd0-5844ee3cc5ee
+
#I'm so lost. My gps told me to go this way, and now it has stopped working entirely
# bb76621a-ed64-57ff-bb30-eaf319c66381
+
#im sure there is a dad joke in this somewhere
# bdae9e2c-8c92-50ba-92da-c0235955c36b
+
#in an ideal vacuum, at what point does this fish realize it's going to die?
# c35556ad-67f0-5b66-9276-73e07117c329
+
#In hindsight, it makes perfect sense
# c3be6486-bf0a-5d4c-98f9-e09b7a48cd02
+
#In hindsight, this probably wasn't the best way to teach addition
# c53125eb-36f2-58f6-b890-3fdddbb02219
+
#in line at the dmv
# c92343f2-bc7f-538c-ae59-051331c561b7
+
#In that moment, the reddit realized he'd never wanted it to be this way. He'd never wanted any of it.
# ca8f102e-4186-5b9b-90ad-a562e0009d73
+
#in the future, we will evolve into limbless creatures who subsist on judging.
# cbd65958-d879-5f15-a21b-b5685d30d9bd
+
#In the land of the blind, the one eyed man is king
# ce035b77-82af-583b-a3e8-e84a6aee60a7
+
#in theathers, close to you
# cfaeca24-0887-5d13-acd0-70e475f6551b
+
#Initiate evasive maneuver!
# cfdd19a9-fd37-5164-a3f0-6e749567fc8b
+
#Interior Crocodile alligator, I drive a Chevrolet movie theater
# cfe6887a-407f-5be7-b541-85d219012b5b
+
#introducing the yolo distribution
# d001ee75-ce44-56e9-8b22-6110cc2a2a17
+
#is good idea yes
# d0d56e0e-46df-5679-a082-3034b64e5197
+
#Is it canibalism if i eat my own nose?
# d4163e0b-71c3-5b98-bc28-fe6ad6c1cbe3
+
#is that a war walrus?
# d5efa477-cc71-5302-b79a-3be14615bb6d
+
#is the eject button meant to do this?
# d840aefe-d163-5e9d-bbf7-346a1a93207c
+
#Is this a rhombus? No one seems to know.
# d87b4b0d-1af7-521d-93e5-705b9c064b4e
+
#Is this an april fools joke?  why did this show up at my door?
# d8c518c6-35d9-55b3-b9b4-3610f7064839
+
#Is this real life?
# d8d79c97-5aee-5ae5-a3fe-e7da0eae4cfc
+
#Is this room 101?
# d96c5875-533d-5a16-8199-50942d5d8f0d
+
#Is this too cheesy?
# da7fbaeb-34ab-5de8-8dab-8c43dbb78ed9
+
#it is better to light a kindle than to be a cursor in the darkness
# dc2e5974-2afb-5c81-a0f3-6882fbfaaccf
+
#It isn't safe on earth any more. Goodbye!
# ddc27138-5274-5187-a396-98524911e10d
+
#It showed up on the photo, but not irl???
# df22fe73-a4af-5b9a-bcd6-5803594329d0
+
#IT WAS A METAPHOR! A METAPHOR DAMN IT!
# e21b7bd5-3f7f-5595-80d4-e32eccd37d60
+
#it was an odd place to find a stop sign
# e2c76ec3-2530-553e-8513-52825fc415f5
+
#it was never this complicated when I was a kid
# e3fc783d-50bf-5c28-813f-42aa6cd5d945
+
#It was then that the ugly duckling realized that beauty was an arbitrarily-defined  cultural construct, and that true beauty came from within.
# e557518b-75b2-5a55-86e0-a1f9555e857e
+
#It's a Finger trap
# e70090a8-06bc-5f4d-8961-fe8799a7f758
+
#It's a timey-wimey time-lord
# e7b40c39-aa6e-5077-9689-a261b39e070f
+
#it's my hand supposed to do this? #thanksobama
# e82b25d9-37ad-533f-888b-dd687ec819dc
+
#It's not a moon, it's a space dolphin!
# ea37dc88-c40c-530c-a466-130c4ac49f20
+
#It's only what I've been looking for for my entire life!
# ea77fda6-fc06-5f5b-a48a-a5294dfc9396
+
#it's the minecraft world
# eb5dffc4-fa51-5a2d-880f-35ab1391f8c8
+
#I've been robbed!
# ec989eb9-12d4-5725-8711-99bc216282c2
+
#I've found a new way to feed the poor
# ee1440c2-a7c8-5856-8bb9-b1d2ad39f9a6
+
#I've got a tombstone disposition and a graveyard mind.
# f076aac5-ca8c-5cfc-80e9-00c006f6562b
+
#I've made a huge mistake
# f0d43ac6-b030-539a-8fd4-1799c01edca2
+
#I've never been so aware of my own hunger
# f0e3833f-b09f-5bc4-8b8f-f449084b6846
+
#Jet fuel can't melt steel beams
# f16a97b5-a9e9-5aaf-aa59-9bd1841508d2
+
#Journey warned you what would happen if you stopped believing.
# f1ee6fb0-212f-5cd2-b5c7-21bc13a4693f
+
#Jugghead got nothing on me :p
# f2c50136-40db-54f8-bc92-deebabf69dee
+
#just another cat video
# f2d510b5-6bab-5c69-a045-806ce2cb4d5a
+
#Just another day in paradise
# f3917274-b91c-5846-bee4-d928b3f15d92
+
#Just combing my M.C. Escher
# f58a17c8-24bd-59f6-a189-7231bf3b74f1
+
#just cos()
# f61c519b-7315-5061-a763-8057b3ba6fb5
+
#just found this in my garden. Should i be worried?
# f757813d-b5b5-5446-a752-4a589dc4ac11
+
#Just Got A new camera phone!
# f95151a1-29f4-5fa8-9e40-611a6c5544d0
+
#just learned where milk comes from! #vegan4ever
# fa0ba376-6c87-55b6-a58b-de5a4a2c42b3
+
#just look at that motherfucking satellite
# fa5dea52-e700-5e6e-863f-c53fd9b72264
+
#just two more trips over the horizon
# fb6e8946-6266-5a70-a193-8038b4dfd0aa
+
#kang, do i look good in this?
# fd1b32fc-7422-56ea-9e31-995ba9a26893
+
#Kids, you aren't cool enough to do this
# fdb3fea3-4555-581b-ba1b-58baecc3e1c4
+
#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

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)