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.
+
*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 promptsUnfortunately, at the current rate of discovery, it will take until at least September to find feed ids for all known prompt content.
  
 
;Phase 1.
 
;Phase 1.
:Saving reasons, usernames and text only.   No images or permalinks IDs saved.
+
:Saving reasons, usernames and text only. No images or permalinks IDs have been saved.
 
*All usernames have been found
 
*All usernames have been found
 
*All reasons for data loss have been found
 
*All reasons for data loss have been found
 
*The overlap between feed and prompt text is over 95%
 
*The overlap between feed and prompt text is over 95%
  
;Phase 2.
+
;Phase 2. (Running)
 
:Saving permalink and images IDs
 
:Saving permalink and images IDs
 
*The image and text associated with permalinks never changes.
 
*The image and text associated with permalinks never changes.
Line 34: Line 35:
 
*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.
 
*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.)
 
*Welp, I was being lazy and hadn't updated in a while, and my browser crashed, losing a day's results. Resuming with previously saving data... (Incidentally, the browser crash is unrelated to the script running.)
*As can be seen by looking at the changes to the counts as I update each day, there is new content much less often.  Less than 100 new feed entries per day. On average, one every 14 mins. My script checks every 30 seconds, and it has currently been 50 minutes since any new content was found. (As I was typing this, a new feed entry was found, so it was almost exactly 50 minutes.)
 
*For the last several days, no new prompt content has been found, and the only feed content which has been found is content which was previously found in the prompts.  Unfortunately, at the current rate of discovery, it will take until at least September to find feed ids for all known prompt content.
 
  
 
==Feed==
 
==Feed==
Line 71: Line 70:
 
*V4 Added ability to preload content into arrays, including feed_ids
 
*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.1 removed functions to compare "pick an image" and "pick a caption" prompts, merged separate prompt arrays, added functions to compare these to the feed instead.
*V4.2 saving new feedids to local storage, added restore() function to reload these.
 
  
 
  <nowiki>xkcd = {
 
  <nowiki>xkcd = {
Line 127: Line 125:
 
$("#ctitle").html((new Date()).toLocaleTimeString()
 
$("#ctitle").html((new Date()).toLocaleTimeString()
 
+"<br>Last found : "+last
 
+"<br>Last found : "+last
+"<br>feed_ids: "+(Object.keys(xkcd.feed_ids).length+1)
+
+"<br>feed_ids: "+Object.keys(xkcd.feed_ids).length
 
+"<br>prompt_captions: "+xkcd.prompt_captions.length
 
+"<br>prompt_captions: "+xkcd.prompt_captions.length
 
+"<br>prompt_images: "+xkcd.prompt_images.length
 
+"<br>prompt_images: "+xkcd.prompt_images.length
Line 141: Line 139:
 
}
 
}
  
function next(recheck) {
+
function next() {
if (!recheck) recheck = "";
+
$.getJSON('http://c0.xkcd.com/xb/feed').done(function (data) {
$.getJSON('http://c0.xkcd.com/xb/feed/'+recheck).done(function (data) {
+
additem("prompt_reasons", data.prompt.reason);
if (typeof data.prompt != "undefined") {
+
additem("prompt_posters", data.prompt.poster);
          additem("prompt_reasons", data.prompt.reason);
 
  additem("prompt_posters", data.prompt.poster);
 
  
  additem("prompt_images", data.prompt.img_id);
+
additem("prompt_images", data.prompt.img_id);
  additem("prompt_captions", data.prompt.text);
+
additem("prompt_captions", data.prompt.text);
  if (typeof data.prompt.album != "undefined")
+
if (typeof data.prompt.album != "undefined")
 
for(i in data.prompt.album)
 
for(i in data.prompt.album)
 
additem("prompt_images", data.prompt.album[i]);
 
additem("prompt_images", data.prompt.album[i]);
  
  if (typeof data.prompt.captions != "undefined")
+
if (typeof data.prompt.captions != "undefined")
 
for(i in data.prompt.captions)
 
for(i in data.prompt.captions)
 
additem("prompt_captions", data.prompt.captions[i]);
 
additem("prompt_captions", data.prompt.captions[i]);
        }
+
 
        if (data.text) data.feed = new Array(data);
 
 
for(i in data.feed) {
 
for(i in data.feed) {
 
additem("feed_posters", data.feed[i].poster);
 
additem("feed_posters", data.feed[i].poster);
Line 176: Line 171:
 
  }
 
  }
 
} else {
 
} 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);
 
updatecounts("feed_id : "+(Object.keys(xkcd.feed_ids).length+1)+" : "+data.feed[i].id);
 
}
 
}
Line 378: Line 368:
 
}
 
}
  
function restore() {
+
function xkcdout() {
window.tempOld = JSON.parse(localStorage.getItem('NewFeedIDs'));
+
xkcd.oldids = [];
if (window.tempOld == null) window.tempOld = new Array();
+
for(j in xkcd.feed_ids) xkcd.oldids.push({ id:j, img:xkcd.feed_ids[j].img, text:xkcd.feed_ids[j].text });
restoreLoop();
+
 
 +
$("#magic textarea").val("xkcdold = "+JSON.stringify(xkcd));
 +
delete xkcd.oldids;
 
}
 
}
function restoreLoop() {
+
function xkcdin() {
if (window.tempOld.length) {
+
for(i in xkcd) xkcd[i] = xkcdold[i];
next(window.tempOld.pop());
+
for(i in xkcdold.oldids) xkcd.feed_ids[xkcdold.oldids[i].id] = { img: xkcdold.oldids[i].img, text: xkcdold.oldids[i].text }
window.clearTimeout(window.nextTimer);
+
delete xkcd.oldids;
window.nextTimer = setTimeout('restoreLoop()', 5000);
+
delete xkcdold;
}
 
 
}
 
}
 
</nowiki>
 
</nowiki>
Line 407: Line 398:
 
*feed_posters: [205] - None new.
 
*feed_posters: [205] - None new.
  
*feed_table: [2252] (See [[1506:_xkcloud/Table_of_Permalinks]])
+
*feed_table: [2192] (See [[1506:_xkcloud/Table_of_Permalinks]])
*feed_id: [26733] (See [[1506:_xkcloud/List_of_Permalinks]])
+
*feed_id: [25751] (See [[1506:_xkcloud/List_of_Permalinks]])
  
*feed_images: [1528]
+
*feed_images: [1492]
*prompt_images: [1697] (crashed and found again)
+
*prompt_images: [1695]
*prompt_images without permalinks: [169]
+
*prompt_images without permalinks: [205]
  
*feed_text: [1993]
+
*feed_text: [1945]
*prompt_captions: [2287] (crashed and found again)
+
*prompt_captions: [2284]
*prompt_captions without permalinks: [295]
+
*prompt_captions without permalinks: [343]
  
 
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.
 
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.
Line 564: Line 555:
 
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 
# ((╬ಠิ﹏ಠิ))
 
# ((╬ಠิ﹏ಠิ))
# (ღ˘⌣˘ღ)
 
 
# [Metal Gear sound effect]
 
# [Metal Gear sound effect]
 
# [USER BANNED FOR THIS TEXT]
 
# [USER BANNED FOR THIS TEXT]
Line 1,251: Line 1,241:
 
# Hoping this makes it past customs
 
# Hoping this makes it past customs
 
# horses can't use chalk. stupid horse.
 
# horses can't use chalk. stupid horse.
 +
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
# Houston, we are the problem
 
# Houston, we are the problem
Line 1,513: Line 1,504:
 
# I've got a tombstone disposition and a graveyard mind.
 
# I've got a tombstone disposition and a graveyard mind.
 
# i've got hurt feelings  
 
# i've got hurt feelings  
 +
# I've made a huge mistake
 
# i've made a huge mistake
 
# i've made a huge mistake
# I've made a huge mistake
 
 
# I've never been so aware of my own hunger
 
# I've never been so aware of my own hunger
 
# i've never felt so alone.
 
# i've never felt so alone.
Line 2,713: Line 2,704:
 
# When you get a perfect score on your test
 
# When you get a perfect score on your test
 
# when you give a chicken hgh, weird things happen.
 
# when you give a chicken hgh, weird things happen.
 +
# When you see it...
 
# when you see it...
 
# when you see it...
# When you see it...
 
 
# Where are the three sea shells?  
 
# Where are the three sea shells?  
 
# Where did THAT come from?
 
# Where did THAT come from?
Line 2,827: Line 2,818:
  
 
It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
 
It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
 
  
 
#  (ღ˘⌣˘ღ)
 
#  (ღ˘⌣˘ღ)
Line 2,834: Line 2,824:
 
# "Cat-like Reflexes"
 
# "Cat-like Reflexes"
 
# "I Never watch porn"
 
# "I Never watch porn"
# (ღ˘⌣˘ღ)
 
 
# *glomp*
 
# *glomp*
 
# #beatingheartinabox
 
# #beatingheartinabox
 +
# #Canadian internet #price gouging
 
# #drbalanced
 
# #drbalanced
 
# #essentialsupplies
 
# #essentialsupplies
Line 2,858: Line 2,848:
 
# always darekst before the dawn
 
# always darekst before the dawn
 
# Amazing! Discovery! on mars!
 
# Amazing! Discovery! on mars!
 +
# and a bluetooth made of pretzel sticks
 
# And so it began...
 
# And so it began...
 
# and that is the story of the very angry caterpillar
 
# and that is the story of the very angry caterpillar
Line 2,867: Line 2,858:
 
# astonishing how xenia flew that plane
 
# astonishing how xenia flew that plane
 
# At least it stopped bleeding acid
 
# At least it stopped bleeding acid
 +
# Attracted to black holes, HELP!
 
# Aw, man, I hate gelatinous cubes...
 
# Aw, man, I hate gelatinous cubes...
 
# awkward! . . .
 
# awkward! . . .
Line 2,872: Line 2,864:
 
# big black orb #shit #soyuzfail
 
# big black orb #shit #soyuzfail
 
# bob ross has only become more powerful in death
 
# bob ross has only become more powerful in death
 +
# Bonehenge
 
# Brb, burning house down
 
# Brb, burning house down
 
# BUT WHERE DOES THE BLOOD GO?
 
# BUT WHERE DOES THE BLOOD GO?
Line 2,891: Line 2,884:
 
# Day:38 Bird Disguise works, No one knows I am a Worm
 
# Day:38 Bird Disguise works, No one knows I am a Worm
 
# Did i remember to lock the car?
 
# Did i remember to lock the car?
 +
# Dispatch, I'm not Really Sure we have a Violation Number for this one
 +
# does anyone know how to get rid of eye worms?
 
# Does my hair look like it's thinning?
 
# Does my hair look like it's thinning?
 
# Does this look infected?
 
# Does this look infected?
Line 2,907: Line 2,902:
 
# fond this creepy ass painting in my basement. how much do you guys think it's worth ?
 
# fond this creepy ass painting in my basement. how much do you guys think it's worth ?
 
# Forgot to blow out my candles before I cut the cake
 
# Forgot to blow out my candles before I cut the cake
 +
# found this at a novelty store
 
# fourier transforms are too hard!!
 
# fourier transforms are too hard!!
 
# free the beast!
 
# free the beast!
 +
# Freedom in a nutshell.
 
# Gentlemen, fire up your emacs buffers
 
# Gentlemen, fire up your emacs buffers
 
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
 
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
 +
# Gentlemen.  If you find it you are set for life.
 
# George insisted there were better things to worry about, but I had a feeling this was important.
 
# George insisted there were better things to worry about, but I had a feeling this was important.
 
# get spare glasses before meeting rod serling
 
# get spare glasses before meeting rod serling
Line 2,936: Line 2,934:
 
# His name is robert palmer.
 
# His name is robert palmer.
 
# Honest, officer, that's what happened!
 
# Honest, officer, that's what happened!
 +
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 +
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
# how do i resize the city?
 
# how do i resize the city?
 
# Hunka Hunka burnin' steel
 
# Hunka Hunka burnin' steel
Line 2,943: Line 2,943:
 
# I can control the BEES! But I only make them turn right
 
# I can control the BEES! But I only make them turn right
 
# I Don't believe in primordial black holes... I don't believe in primordial black holes...
 
# I Don't believe in primordial black holes... I don't believe in primordial black holes...
 +
# i don't even remember taking this pic!
 
# i don't have time for this!
 
# i don't have time for this!
 
# I found the missing pieces!
 
# I found the missing pieces!
 +
# i found this ancient manuscript. can anyone translate it?
 +
# I found this on my arm when I woke up this morning. Can anyone tell me what it is?!
 
# I got the keys to the city.
 
# I got the keys to the city.
 
# i hate
 
# i hate
 +
# i hate you.  die in a fire.
 +
# I immediately regret eating that
 
# I knew it wasn't cheese after the first bite, but i didn't want to be rude to God. He worked so hard on it.
 
# I knew it wasn't cheese after the first bite, but i didn't want to be rude to God. He worked so hard on it.
 
# i love my family
 
# i love my family
 +
# I never get a space ship, I never get anything!
 
# i refuse to regret this decision
 
# i refuse to regret this decision
 
# I think I have too many swords
 
# I think I have too many swords
Line 2,959: Line 2,965:
 
# I wish this was fake...
 
# I wish this was fake...
 
# I woke up sleeping next to this. #yolo
 
# I woke up sleeping next to this. #yolo
 +
# I'll never fit in!
 
# i'M 12 AND WHAT IS THIS?
 
# i'M 12 AND WHAT IS THIS?
 
# i'm being ironic
 
# i'm being ironic
 
# i'm really diggin' your shovel
 
# i'm really diggin' your shovel
 +
# i'm so funny and original
 
# i've got hurt feelings  
 
# i've got hurt feelings  
 
# I've never felt so empty before
 
# I've never felt so empty before
 +
# if democracy fails you can count on stalin!
 
# if only i had friends...
 
# if only i had friends...
 
# If you've got a moustache...
 
# If you've got a moustache...
Line 2,977: Line 2,986:
 
# it's called "depleted" 'cause it's heavier
 
# it's called "depleted" 'cause it's heavier
 
# It's Loch Ness Turtles all the way down.
 
# It's Loch Ness Turtles all the way down.
 +
# It's the great pumpkin, Charlie Brown!
 
# it's the minecraft world
 
# it's the minecraft world
 
# Jet fuel *can* melt steal beams.
 
# Jet fuel *can* melt steal beams.
 
# Joining the illuminati was the best decision EVER!
 
# Joining the illuminati was the best decision EVER!
 +
# Just another standard morning coffee
 +
# Just not myself today.
 +
# keep on truckin...
 
# Khan!
 
# Khan!
 
# ladies
 
# ladies
Line 2,987: Line 3,000:
 
# Likes grains of sand in an hourglass...
 
# Likes grains of sand in an hourglass...
 
# linux compatible toaster at last!
 
# linux compatible toaster at last!
 +
# look into my eyes, look deep into my eyes.
 +
# Look man, it's never gonna happen
 
# Lost in Space...
 
# Lost in Space...
 
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
 
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
Line 2,999: Line 3,014:
 
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
 
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
 
# my castles stand on pillars of sand
 
# my castles stand on pillars of sand
 +
# my edvard munch housen syndrome is acting up
 
# my euler circuit is alive!
 
# my euler circuit is alive!
 
# My girlfriend thinks I need to shave my beard.  Thoughts?
 
# My girlfriend thinks I need to shave my beard.  Thoughts?
 
# My God do I hate being right all the time
 
# My God do I hate being right all the time
 
# my new app for power outages - may need to rethink this.
 
# my new app for power outages - may need to rethink this.
 +
# My roomba is slower than normal
 
# My trip to Europe #selfie
 
# My trip to Europe #selfie
 
# Never divide by zero
 
# Never divide by zero
Line 3,013: Line 3,030:
 
# Not even once
 
# Not even once
 
# Not even once...
 
# Not even once...
 +
# Note 2: Use a frozen potato
 
# Nothing to see here.
 
# Nothing to see here.
 
# Now where did i leave my ocarina. . .
 
# Now where did i leave my ocarina. . .
 
# OH GOD SPIDERS
 
# OH GOD SPIDERS
 
# oh, god, why?
 
# oh, god, why?
 +
# Only way to be sure #nukefromorbit
 
# Open wide!
 
# Open wide!
 
# ouch!
 
# ouch!
Line 3,026: Line 3,045:
 
# pronounced duh-jango
 
# pronounced duh-jango
 
# Proof that dinosaurs and humans coexisted
 
# Proof that dinosaurs and humans coexisted
 +
# proof that we didn't actually land on the moon. Americans are sheep
 
# QWANTZ Fanfic
 
# QWANTZ Fanfic
 
# Rabbits are vicious creatures when their data are stolen
 
# Rabbits are vicious creatures when their data are stolen
Line 3,040: Line 3,060:
 
# Saw this outside last night. Is it dangerous?
 
# Saw this outside last night. Is it dangerous?
 
# Sheena, who dis
 
# Sheena, who dis
 +
# Ships that pass in the night, and speak each other in passing
 +
# SINgle mom discovers incredible way to overthrow capitalism. you won't believe it!
 
# slippin' into the future
 
# slippin' into the future
 
# smile for the camera!
 
# smile for the camera!
Line 3,045: Line 3,067:
 
# So it's true, then.  
 
# So it's true, then.  
 
# So long, and thanks for the fistbumps
 
# So long, and thanks for the fistbumps
 +
# so much for your "Democracy"
 
# So that happened
 
# So that happened
 
# So this happened.
 
# So this happened.
Line 3,050: Line 3,073:
 
# Somebody sneezed in the Bathtub
 
# Somebody sneezed in the Bathtub
 
# Somehow the welcome mat ended up inside the house.
 
# Somehow the welcome mat ended up inside the house.
 +
# someone take this banana off my face
 
# steel beams taste best with a dallop of gasoline
 
# steel beams taste best with a dallop of gasoline
 +
# Stop! Hammer time!
 +
# straight out of the hacker's jargon file!
 
# Strangely, my patients don't like this new couch.
 
# Strangely, my patients don't like this new couch.
 +
# Stupid Bird!
 
# Support my kick-starter! A whole new devise with bluetooth and a button!
 
# Support my kick-starter! A whole new devise with bluetooth and a button!
 
# Sweet, they new red shirts are on sale again!
 
# Sweet, they new red shirts are on sale again!
 +
# Take my money!
 
# Ted Cruz imagines himself like this and things it's normal.
 
# Ted Cruz imagines himself like this and things it's normal.
 
# Testing my new high-contrast filter outside the unicyclist meet up
 
# Testing my new high-contrast filter outside the unicyclist meet up
Line 3,065: Line 3,093:
 
# The new Doctor Who is quite the quack.
 
# The new Doctor Who is quite the quack.
 
# the oceans are made of sky tears
 
# the oceans are made of sky tears
 +
# The one true way
 
# the prophecy was true !
 
# the prophecy was true !
 
# The ritual has begun.
 
# The ritual has begun.
 +
# The world isn't Flat, it's Sharp
 
# the zoidberg axis
 
# the zoidberg axis
 
# There is no way you can back up that claim. And that's okay.
 
# There is no way you can back up that claim. And that's okay.
Line 3,075: Line 3,105:
 
# They're watching us.
 
# They're watching us.
 
# this guy can't believe what i'm doing.
 
# this guy can't believe what i'm doing.
 +
# this is for all you haters who said i'd never make it as a conductor.
 
# THIS IS FOR KIBO!
 
# THIS IS FOR KIBO!
 +
# tHis is not what i was looking for
 +
# This is the last hetero-normative domino Game i plan to attend
 
# this is the last time i go skiing @mammoth
 
# this is the last time i go skiing @mammoth
 
# This is the second worst day of my life.
 
# This is the second worst day of my life.
Line 3,082: Line 3,115:
 
# This is why I don't order take-out
 
# This is why I don't order take-out
 
# This one weird object blocks out the light!
 
# This one weird object blocks out the light!
 +
# This song describes me perfectly
 
# This wasn't a problem back in the usenet days
 
# This wasn't a problem back in the usenet days
 
# This would be a great Emoji
 
# This would be a great Emoji
Line 3,102: Line 3,136:
 
# Well, here's a real cock-up.
 
# Well, here's a real cock-up.
 
# well, the keys are definitely lost....
 
# well, the keys are definitely lost....
 +
# Welp, there's your problem
 
# what are you complaining about?  three legs are inherently stable!
 
# what are you complaining about?  three legs are inherently stable!
 
# What do we really know about the dark side of the moon?
 
# What do we really know about the dark side of the moon?
Line 3,108: Line 3,143:
 
# what the sun looks like!
 
# what the sun looks like!
 
# when did i put on a bow tie???
 
# when did i put on a bow tie???
 +
# When he keeps trying to talk to you...
 
# When I grow up I am *so* getting out of here
 
# When I grow up I am *so* getting out of here
 
# when they said samurai robot i thought they meant something else!
 
# when they said samurai robot i thought they meant something else!
Line 3,113: Line 3,149:
 
# who ate half my cookie?
 
# who ate half my cookie?
 
# Who dropped this? This is no way to run a student council!!
 
# Who dropped this? This is no way to run a student council!!
 +
# Who is the latest person to be offended by "duck Dynasty"
 +
# Who wants an omelette?
 
# Why can't I eat all this chicken?
 
# Why can't I eat all this chicken?
 
# Why did the cypress cross the road?
 
# Why did the cypress cross the road?
Line 3,130: Line 3,168:
 
# 00154572-02e2-5e63-a3e4-bde3ab4b1934
 
# 00154572-02e2-5e63-a3e4-bde3ab4b1934
 
# 046bc891-392e-58ac-880d-d202b3810bdd
 
# 046bc891-392e-58ac-880d-d202b3810bdd
 +
# 06e5dfa0-ace5-5d54-8fe3-14053e865b0a
 
# 08584d88-4186-5ea6-bc49-5f1f796d37de
 
# 08584d88-4186-5ea6-bc49-5f1f796d37de
 
# 08757175-c59e-52a6-9fc9-9c72e473ceba
 
# 08757175-c59e-52a6-9fc9-9c72e473ceba
Line 3,136: Line 3,175:
 
# 0ecdc175-34e2-563f-a290-33c0f5549420
 
# 0ecdc175-34e2-563f-a290-33c0f5549420
 
# 0ef43321-8a3f-5afb-912e-d4439a64f8a1
 
# 0ef43321-8a3f-5afb-912e-d4439a64f8a1
 +
# 0f467766-e76c-577a-a684-b92aeeeed247
 
# 102a8fef-0b03-51c9-8ace-0017f18ed7d1
 
# 102a8fef-0b03-51c9-8ace-0017f18ed7d1
 +
# 1191e8c5-ab1c-5068-9f08-c9202b124ccf
 
# 135ec01b-fa2c-5eb6-9354-87c4c3e12f63
 
# 135ec01b-fa2c-5eb6-9354-87c4c3e12f63
 +
# 139ece97-e1f5-569e-96bb-2b2caabfe097
 
# 172832dd-7c7c-5640-aefa-3e0d142ea1c8
 
# 172832dd-7c7c-5640-aefa-3e0d142ea1c8
 +
# 1770e9b4-15cd-5f11-b9f3-77e3f2fbd5ad
 
# 17ae1505-dc66-5fa6-b6fc-76e2e571dcca
 
# 17ae1505-dc66-5fa6-b6fc-76e2e571dcca
 
# 1def8ba2-ed1f-5049-a814-ce84cd7a9f7b
 
# 1def8ba2-ed1f-5049-a814-ce84cd7a9f7b
Line 3,145: Line 3,188:
 
# 2133fa57-71c7-52ad-93be-adebb04251a9
 
# 2133fa57-71c7-52ad-93be-adebb04251a9
 
# 2158ef67-cc5c-52aa-b437-87ad938d5430
 
# 2158ef67-cc5c-52aa-b437-87ad938d5430
 +
# 21acf461-4c21-5ed1-be15-42c543846428
 
# 23000a39-d407-5fd7-9956-3d90a0bc283c
 
# 23000a39-d407-5fd7-9956-3d90a0bc283c
 
# 23029be0-b127-5777-912f-664613740e58
 
# 23029be0-b127-5777-912f-664613740e58
 
# 230e82f1-3a97-5657-93b4-a1538237a7bd
 
# 230e82f1-3a97-5657-93b4-a1538237a7bd
 +
# 23b2a7c8-9072-5298-bd80-e45ce7bb2e95
 
# 25da16d6-e6a6-52a5-8507-91f2e4e68875
 
# 25da16d6-e6a6-52a5-8507-91f2e4e68875
 
# 27773d87-9fc1-5fa3-945d-8602b334d630
 
# 27773d87-9fc1-5fa3-945d-8602b334d630
Line 3,155: Line 3,200:
 
# 2ca667ea-3e06-5b04-ae11-c2e81ed10333
 
# 2ca667ea-3e06-5b04-ae11-c2e81ed10333
 
# 2cd3e0f7-2009-52d2-b526-d34fb21723fe
 
# 2cd3e0f7-2009-52d2-b526-d34fb21723fe
 +
# 31a5826c-b1cd-500e-91e8-8676e54b93d9
 +
# 31c17890-85e1-5bcb-9684-92812705ada0
 +
# 3399fab2-14c5-51d5-b67f-dec3accb53be
 
# 35327ccb-4c06-5054-b3a1-b1871ac0c928
 
# 35327ccb-4c06-5054-b3a1-b1871ac0c928
 
# 35547760-624c-5f0f-aa6f-05827e5396dd
 
# 35547760-624c-5f0f-aa6f-05827e5396dd
Line 3,162: Line 3,210:
 
# 39540864-cfcb-5819-bdd9-16f314fa7aa4
 
# 39540864-cfcb-5819-bdd9-16f314fa7aa4
 
# 3b3aed58-a224-50be-9129-ba20483846b6
 
# 3b3aed58-a224-50be-9129-ba20483846b6
 +
# 3be6c1b8-4e09-5bd0-94a3-203bd0707528
 +
# 3caf77e7-b96e-5363-99e3-0d234ec67c43
 
# 3d9ffba2-c0f6-5fcb-b3b2-ee8795c1f720
 
# 3d9ffba2-c0f6-5fcb-b3b2-ee8795c1f720
 
# 3e62ef75-49ce-5e12-bd8a-b173a9c4269d
 
# 3e62ef75-49ce-5e12-bd8a-b173a9c4269d
Line 3,169: Line 3,219:
 
# 4334a9ee-88d9-5be8-b019-723c34e7a83f
 
# 4334a9ee-88d9-5be8-b019-723c34e7a83f
 
# 43637145-5846-5213-bbd2-62c51fc68393
 
# 43637145-5846-5213-bbd2-62c51fc68393
 +
# 45427ebc-08c6-5f91-82f7-fd45299fc6cf
 
# 464e554b-b208-5249-8f37-64ce5e075d9d
 
# 464e554b-b208-5249-8f37-64ce5e075d9d
 
# 4912282c-ec7a-5a0d-9e6e-10d3418ab330
 
# 4912282c-ec7a-5a0d-9e6e-10d3418ab330
Line 3,175: Line 3,226:
 
# 4b0d6770-c68c-5d87-9cc7-d33fae6dc98e
 
# 4b0d6770-c68c-5d87-9cc7-d33fae6dc98e
 
# 4b963434-6486-5baf-a02b-e2ba5fd2ebd8
 
# 4b963434-6486-5baf-a02b-e2ba5fd2ebd8
 +
# 4c59248b-03c7-51ca-a674-ee4ae89cd080
 +
# 54668c48-e6ce-5fb0-a827-b6679d70703d
 
# 553d2e98-2bcb-516d-8eaf-5442f1c9d0d6
 
# 553d2e98-2bcb-516d-8eaf-5442f1c9d0d6
 
# 56f3037e-639d-5011-8fee-c4b0912baa83
 
# 56f3037e-639d-5011-8fee-c4b0912baa83
 
# 57c2fed8-6e80-5c80-a398-0edfc27cf754
 
# 57c2fed8-6e80-5c80-a398-0edfc27cf754
 +
# 5a4059be-7068-5d76-93f7-e302410146b2
 
# 5a8d1f9a-b07d-5a7b-be1e-525b50d5258c
 
# 5a8d1f9a-b07d-5a7b-be1e-525b50d5258c
 
# 5c39d369-cba1-59d8-965b-d1b068809e6b
 
# 5c39d369-cba1-59d8-965b-d1b068809e6b
Line 3,200: Line 3,254:
 
# 726847dc-c652-5ef6-8696-53830c0a1e2b
 
# 726847dc-c652-5ef6-8696-53830c0a1e2b
 
# 72f1f6f8-d49a-50f4-85ef-5f571240bd09
 
# 72f1f6f8-d49a-50f4-85ef-5f571240bd09
 +
# 771dba15-d33d-528a-9ada-74ad6d008b46
 
# 773eee34-46e4-5b3f-a653-9371796e8b58
 
# 773eee34-46e4-5b3f-a653-9371796e8b58
 
# 7d60a449-d8d8-5444-9ba2-6f1c98edd903
 
# 7d60a449-d8d8-5444-9ba2-6f1c98edd903
 
# 7ea6bc06-01e7-5915-b6c1-1141386bb99c
 
# 7ea6bc06-01e7-5915-b6c1-1141386bb99c
 
# 81dde1b4-ed9b-5925-a879-70efb841d5fd
 
# 81dde1b4-ed9b-5925-a879-70efb841d5fd
 +
# 8487ad8c-8c66-5fa1-b70e-60cd9ebbef56
 
# 85dd384f-37bf-5365-af59-78a0cb78aed8
 
# 85dd384f-37bf-5365-af59-78a0cb78aed8
 
# 86cc4be5-f25e-5289-8566-602b9d6e634a
 
# 86cc4be5-f25e-5289-8566-602b9d6e634a
Line 3,217: Line 3,273:
 
# 91168585-a6ee-5b76-ba2b-c41f5685180c
 
# 91168585-a6ee-5b76-ba2b-c41f5685180c
 
# 935e73e9-ecf1-5d4f-8668-8fb907cdee4f
 
# 935e73e9-ecf1-5d4f-8668-8fb907cdee4f
 +
# 93de036a-5003-5aec-9f71-147c94f77bfe
 +
# 9417f30f-722c-596f-836d-f7ef871ae43b
 
# 9491599b-459c-5e6e-9ee0-d85a0497ef55
 
# 9491599b-459c-5e6e-9ee0-d85a0497ef55
 +
# 9588d056-d8f3-5ec4-b1b3-d2535e89e433
 
# 97127900-4d61-591a-95c8-851ad788386c
 
# 97127900-4d61-591a-95c8-851ad788386c
 
# 995623b5-4ded-5315-9f2d-f44a0db0ee7c
 
# 995623b5-4ded-5315-9f2d-f44a0db0ee7c
Line 3,225: Line 3,284:
 
# 9fac5c76-ef99-5c5c-a8ed-b36fa44e50bf
 
# 9fac5c76-ef99-5c5c-a8ed-b36fa44e50bf
 
# a0bc51e1-ff72-56b8-8574-a4204759a872
 
# a0bc51e1-ff72-56b8-8574-a4204759a872
 +
# a0e7740c-2c9a-57b4-9845-023c6bdfcfd4
 
# a1c63d58-b0b6-5029-bc8a-b0318119f506
 
# a1c63d58-b0b6-5029-bc8a-b0318119f506
 
# a399201b-61ec-5bc2-8041-57fdbcb572cd
 
# a399201b-61ec-5bc2-8041-57fdbcb572cd
 +
# a5038a98-548c-5e47-a299-58ee3a017008
 
# a5dce98e-3e17-555e-b67c-4448bad354bc
 
# a5dce98e-3e17-555e-b67c-4448bad354bc
 
# a8bd5dc6-24a0-516f-862a-dbef66f9f688
 
# a8bd5dc6-24a0-516f-862a-dbef66f9f688
 
# ab1d561b-6bfa-5686-97a8-259ed0e4b200
 
# ab1d561b-6bfa-5686-97a8-259ed0e4b200
 +
# ac32ed82-bfa6-5942-aeba-9a13a2c126dd
 
# acebb7e3-9d07-5c49-85b7-7adfc8fc41fd
 
# acebb7e3-9d07-5c49-85b7-7adfc8fc41fd
 
# ae5f5094-3168-546b-84ca-22c8b80d5922
 
# ae5f5094-3168-546b-84ca-22c8b80d5922
Line 3,244: Line 3,306:
 
# bad65b6f-9a98-559f-bcd0-5844ee3cc5ee
 
# bad65b6f-9a98-559f-bcd0-5844ee3cc5ee
 
# bb76621a-ed64-57ff-bb30-eaf319c66381
 
# bb76621a-ed64-57ff-bb30-eaf319c66381
 +
# bc0c82ac-46db-5a05-b414-909d705e6e2a
 
# bdae9e2c-8c92-50ba-92da-c0235955c36b
 
# bdae9e2c-8c92-50ba-92da-c0235955c36b
 +
# bef19f3a-b1d1-588d-b4f6-01b4a4a15226
 +
# c19a04d6-7f2f-5c8a-b864-2e3dccfd295e
 +
# c20e2bda-511a-5e8c-8cd2-0a925e516dfd
 
# c35556ad-67f0-5b66-9276-73e07117c329
 
# c35556ad-67f0-5b66-9276-73e07117c329
 
# c3be6486-bf0a-5d4c-98f9-e09b7a48cd02
 
# c3be6486-bf0a-5d4c-98f9-e09b7a48cd02
 
# c53125eb-36f2-58f6-b890-3fdddbb02219
 
# c53125eb-36f2-58f6-b890-3fdddbb02219
 +
# c6702427-bd40-58f9-8df4-d097dc8ab169
 +
# c6df54d7-78ca-54ef-9d7e-212b2307a09f
 
# c92343f2-bc7f-538c-ae59-051331c561b7
 
# c92343f2-bc7f-538c-ae59-051331c561b7
 
# ca8f102e-4186-5b9b-90ad-a562e0009d73
 
# ca8f102e-4186-5b9b-90ad-a562e0009d73
 
# cbd65958-d879-5f15-a21b-b5685d30d9bd
 
# cbd65958-d879-5f15-a21b-b5685d30d9bd
 +
# cd27b5b7-6c20-56c9-8897-47f2f37822e2
 +
# cd54ab7c-e490-5d58-a295-5478015d1184
 
# ce035b77-82af-583b-a3e8-e84a6aee60a7
 
# ce035b77-82af-583b-a3e8-e84a6aee60a7
 
# cfaeca24-0887-5d13-acd0-70e475f6551b
 
# cfaeca24-0887-5d13-acd0-70e475f6551b
Line 3,257: Line 3,327:
 
# d001ee75-ce44-56e9-8b22-6110cc2a2a17
 
# d001ee75-ce44-56e9-8b22-6110cc2a2a17
 
# d0d56e0e-46df-5679-a082-3034b64e5197
 
# d0d56e0e-46df-5679-a082-3034b64e5197
 +
# d220e9c0-d4df-5cb9-a22e-a1fffc52f48c
 
# d4163e0b-71c3-5b98-bc28-fe6ad6c1cbe3
 
# d4163e0b-71c3-5b98-bc28-fe6ad6c1cbe3
 
# d5efa477-cc71-5302-b79a-3be14615bb6d
 
# d5efa477-cc71-5302-b79a-3be14615bb6d
 +
# d7b04463-0909-5038-9e8d-37087ed65a51
 
# d840aefe-d163-5e9d-bbf7-346a1a93207c
 
# d840aefe-d163-5e9d-bbf7-346a1a93207c
 
# d87b4b0d-1af7-521d-93e5-705b9c064b4e
 
# d87b4b0d-1af7-521d-93e5-705b9c064b4e
Line 3,280: Line 3,352:
 
# ec989eb9-12d4-5725-8711-99bc216282c2
 
# ec989eb9-12d4-5725-8711-99bc216282c2
 
# ee1440c2-a7c8-5856-8bb9-b1d2ad39f9a6
 
# ee1440c2-a7c8-5856-8bb9-b1d2ad39f9a6
 +
# eecbc3ed-f227-5334-9392-097417f82396
 
# f076aac5-ca8c-5cfc-80e9-00c006f6562b
 
# f076aac5-ca8c-5cfc-80e9-00c006f6562b
 
# f0d43ac6-b030-539a-8fd4-1799c01edca2
 
# f0d43ac6-b030-539a-8fd4-1799c01edca2
Line 3,288: Line 3,361:
 
# f2d510b5-6bab-5c69-a045-806ce2cb4d5a
 
# f2d510b5-6bab-5c69-a045-806ce2cb4d5a
 
# f3917274-b91c-5846-bee4-d928b3f15d92
 
# f3917274-b91c-5846-bee4-d928b3f15d92
 +
# f3ad957c-d149-5d4f-baf0-4b06a0167e25
 
# f58a17c8-24bd-59f6-a189-7231bf3b74f1
 
# f58a17c8-24bd-59f6-a189-7231bf3b74f1
 
# f61c519b-7315-5061-a763-8057b3ba6fb5
 
# f61c519b-7315-5061-a763-8057b3ba6fb5

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)