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: [2218] (See [[1506:_xkcloud/Table_of_Permalinks]])
*feed_id: [26733] (See [[1506:_xkcloud/List_of_Permalinks]])
+
*feed_id: [26094] (See [[1506:_xkcloud/List_of_Permalinks]])
  
*feed_images: [1528]
+
*feed_images: [1509]
*prompt_images: [1697] (crashed and found again)
+
*prompt_images: [1692] (crashed and found again)
*prompt_images without permalinks: [169]
+
*prompt_images without permalinks: [188]
  
*feed_text: [1993]
+
*feed_text: [1963]
*prompt_captions: [2287] (crashed and found again)
+
*prompt_captions: [2280] (crashed and found again)
*prompt_captions without permalinks: [295]
+
*prompt_captions without permalinks: [325]
  
 
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,518: Line 1,509:
 
# i've never felt so alone.
 
# i've never felt so alone.
 
# I've never felt so empty before
 
# I've never felt so empty before
 +
# I've seen enough hentai to know where this is going.
 
# i've seen enough hentai to know where this is going.
 
# i've seen enough hentai to know where this is going.
# I've seen enough hentai to know where this is going.
 
 
# If classy cats evolved from regular cats, why are there still regular cats? checkmate, evolution.
 
# If classy cats evolved from regular cats, why are there still regular cats? checkmate, evolution.
 
# if democracy fails you can count on stalin!
 
# if democracy fails you can count on stalin!
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,867: Line 2,857:
 
# 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,863:
 
# 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,883:
 
# 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,901:
 
# 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,933:
 
# 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,942:
 
# 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 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,977: Line 2,980:
 
# 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!
 +
# keep on truckin...
 
# Khan!
 
# Khan!
 
# ladies
 
# ladies
Line 2,987: Line 2,992:
 
# 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 3,003: Line 3,010:
 
# 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,017: Line 3,025:
 
# 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,040: Line 3,049:
 
# 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,051: Line 3,062:
 
# Somehow the welcome mat ended up inside the house.
 
# Somehow the welcome mat ended up inside the house.
 
# steel beams taste best with a dallop of gasoline
 
# steel beams taste best with a dallop of gasoline
 +
# Stop! Hammer time!
 
# 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!
Line 3,075: Line 3,088:
 
# 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,098:
 
# 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,119:
 
# 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,126:
 
# 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,132:
 
# 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 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,145: Line 3,165:
 
# 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,177:
 
# 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
 
# 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,186:
 
# 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,178: Line 3,204:
 
# 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,227:
 
# 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
Line 3,217: Line 3,245:
 
# 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
 
# 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,227: Line 3,257:
 
# 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,245: Line 3,277:
 
# bb76621a-ed64-57ff-bb30-eaf319c66381
 
# bb76621a-ed64-57ff-bb30-eaf319c66381
 
# bdae9e2c-8c92-50ba-92da-c0235955c36b
 
# bdae9e2c-8c92-50ba-92da-c0235955c36b
 +
# bef19f3a-b1d1-588d-b4f6-01b4a4a15226
 
# 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
 +
# 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,259: Line 3,295:
 
# 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,317:
 
# 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,326:
 
# 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)