<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=141.101.80.121</id>
		<title>explain xkcd - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=141.101.80.121"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/141.101.80.121"/>
		<updated>2026-05-26T00:00:13Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1685:_Patch&amp;diff=120890</id>
		<title>Talk:1685: Patch</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1685:_Patch&amp;diff=120890"/>
				<updated>2016-05-26T22:26:52Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.80.121: /* Resemblance to Xerox number mangling issue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~--&amp;gt;&lt;br /&gt;
Hey, I'm first! Guessing the Bot only JUST created this, it was mere minutes after midnight EST when I landed on this page. Unfortunately this is a comic I'm less capable of explaining. From the looks of it, his Photoshop Patch turned what looks like C code into gobbledegook by filling in several of the spaces (and I think even changing some of the characters, possible with characters which fill more of the space). - NiceGuy1 [[Special:Contributions/108.162.218.77|108.162.218.77]] 04:24, 25 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
This appears to be Python code. Note the &amp;quot;def&amp;quot; keyword, how &amp;quot;for i in [garbled]:&amp;quot; is used rather than C's for syntax, and how there are no semicolons or braces. --[[User:Sherlock9|Sherlock9]] ([[User talk:Sherlock9|talk]]) 05:03, 25 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Photoshop has a 'patch' tool but it has a very different function from a software patch. {{unsigned ip|108.162.242.123}}&lt;br /&gt;
:An explanation of Photoshop's patch tool might be helpful in identifying patterns in what pixels were changed by it, perhaps facilitating the identification of some likely characters. [[User:Dansiman|Dansiman]] ([[User talk:Dansiman|talk]]) 05:56, 25 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The first function looks like &amp;quot;isPrime&amp;quot; and seems to check if a number is prime. The last function looks like &amp;quot;quicksort&amp;quot;. Both are common functions you create when learning programming. Not sure about the second one, but it looks like it uses regular expressions. -- [[Special:Contributions/198.41.242.242|198.41.242.242]] 06:44, 25 May 2016 (UTC)&lt;br /&gt;
:I think the second one is &amp;quot;isPrimeRegex&amp;quot;. *cringe* [[Special:Contributions/141.101.104.25|141.101.104.25]] 08:55, 25 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Second function looks like a function to check if number is a prime using Regex (described here http://www.noulakaz.net/2007/03/18/a-regular-expression-to-check-for-prime-numbers/). I don't know if it deserves some special mention, but at least to me (non-programmer) it looks like one of the most arcane things you can do in programming [[Special:Contributions/141.101.80.79|141.101.80.79]] 07:22, 25 May 2016 (UTC)&lt;br /&gt;
:That indeed looks very much like it. I think this is worth mentioning. --[[Special:Contributions/198.41.242.240|198.41.242.240]] 11:22, 25 May 2016 (UTC)&lt;br /&gt;
:Note that mathematically speaking, that regular expression is NOT regular expression - use of backreference in match is one of originally perl extension which makes it much more powerful (and much slower in some cases). It's just that both python and ruby already copied most of perl extensions of regular expressions. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 12:39, 25 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Do you think the use of pi is a reference to one of the other comics(I forgot which one...)?[[User:Transuranium|Transuranium]] ([[User talk:Transuranium|talk]]) 10:35, 25 May 2016 (UTC)Transuranium&lt;br /&gt;
:I rather guess it is short for pivot. See {{w|quicksort}} for what the pivot does. --[[Special:Contributions/198.41.242.240|198.41.242.240]] 11:22, 25 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
You know, it's theoretically possible for Photoshop to create compilable code in [https://esolangs.org/wiki/Piet the esoteric programming language] &amp;quot;[http://www.dangermouse.net/esoteric/piet.html Piet]&amp;quot;. But unless there's a way to turn off the Patch tool's antialiasing, it'll be practically impossible for patches larger than a single pixel. [[Special:Contributions/108.162.237.220|108.162.237.220]] 14:15, 25 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I don't really know anything about programming, but it looks like it's checking for factors of n from 2 to sqrt(n)+1. Why would it need to check any number larger than sqrt(n) though? If i&amp;gt;sqrt(n), then ij=n implies that j&amp;lt;sqrt(n), and j should already have been found. So the largest integer you need to check is floor( sqrt(n) ), which is in the range from 2 to sqrt(n). Checking ceiling( sqrt(n) ) for a non-square number seems redundant. [[Special:Contributions/108.162.237.250|108.162.237.250]] 15:25, 25 May 2016 (UTC)&lt;br /&gt;
:It's because &amp;lt;code&amp;gt;range(a, b)&amp;lt;/code&amp;gt; in Python means the interval [a, b) (excluding b). [[Special:Contributions/108.162.222.29|108.162.222.29]] 15:41, 25 May 2016 (UTC)&lt;br /&gt;
::That mismatched bracket in your comment is hurting me. [[Special:Contributions/162.158.68.71|162.158.68.71]] 17:02, 25 May 2016 (UTC)&lt;br /&gt;
:: It's not mismatched; the right paren indicates the value's the upper limit but excluded. I'd include a right bracket in my response but I think that might make a compiler curse. [[User:Elvenivle|Elvenivle]] ([[User talk:Elvenivle|talk]])&lt;br /&gt;
&lt;br /&gt;
The line with re.match in the likely original code should have an &amp;quot;r&amp;quot; for &amp;quot;raw&amp;quot; before the first string thus:&lt;br /&gt;
  if re.match(r'^1?$|^(11+?)\1+$', '1'*n):&lt;br /&gt;
I am not changing it in the main explanation because I don't know what colour it should be and it's my first time contributing. - Charles W. [[Special:Contributions/141.101.98.42|141.101.98.42]] 22:24, 25 May 2016 (UTC)&lt;br /&gt;
:Seems like it has been changed by now. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 07:13, 26 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has someone added this to the Protip category?[[Special:Contributions/162.158.2.139|162.158.2.139]] 23:53, 25 May 2016 (UTC)&lt;br /&gt;
:Uhm yes, it should be clear right below these comment on the main page? All categories are listed at the bottom of each page. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 07:01, 26 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
It might be worth explaining the [pivot] * (len(a) - (len(l) + len(r))) since that threw me when I first saw it. Since l has the elements of a &amp;lt; pivot, and r has the elements of a &amp;gt; pivot, len(a) - (len(l) + len(r)) will be the number of elements in a that = pivot (which must be in the range [1, len(a)]), and these are then 'spliced' into the result between the result of quicksorting l and r.&lt;br /&gt;
[[User:Jstout|Jstout]] ([[User talk:Jstout|talk]]) 19:48, 26 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Resemblance to Xerox number mangling issue ==&lt;br /&gt;
&lt;br /&gt;
To me, this reminds me of the problem that a large set of Xerox copiers had. Their faulty use of image compression when scanning could cause portions of images to be replaced with similar portions, but the threshold of similarity was loose enough that numeric data would be subtly corrupted. For example, building plans and spreadsheet data could have numbers copied incorrectly, either of which could certainly have disastrous consequences. Documents were corrupted for a period as much as eight years before the problem was corrected, making legal archive data unreliable for this period, and some of the faulty machines may still be in use. http://www.dkriesel.com/en/blog/2013/0802_xerox-workcentres_are_switching_written_numbers_when_scanning&lt;br /&gt;
:Now that you mention it... Although here it's a person intentionally doing harm to the image.[[Special:Contributions/173.245.52.69|173.245.52.69]] 22:20, 26 May 2016 (UTC)&lt;br /&gt;
::So ''that's'' what it was! I wondered why all the copies I could find of ''Concrete Mathematics'' had random font changes all over (and half the formulas came out wrong). [[Special:Contributions/141.101.80.121|141.101.80.121]] 22:26, 26 May 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.80.121</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1491:_Stories_of_the_Past_and_Future&amp;diff=85166</id>
		<title>1491: Stories of the Past and Future</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1491:_Stories_of_the_Past_and_Future&amp;diff=85166"/>
				<updated>2015-02-25T18:46:46Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.80.121: /* Trivia */ FTGJ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1491&lt;br /&gt;
| date      = February 25, 2015&lt;br /&gt;
| title     = Stories of the Past and Future&lt;br /&gt;
| image     = stories_of_the_past_and_future.png&lt;br /&gt;
| titletext = Little-known fact: The 'Dawn of Man' opening sequence in 2001 cuts away seconds before the Flinstones theme becomes recognizable.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a BOT - Please change this comment when editing this page.}}&lt;br /&gt;
''A larger version of the image is available [http://xkcd.com/1491/large/ here].''&lt;br /&gt;
&lt;br /&gt;
X-axis: Date of publication.&lt;br /&gt;
&lt;br /&gt;
Y-axis, &amp;quot;Years in the future&amp;quot;: Number of years the story's events take place, after the story's publication.&lt;br /&gt;
&lt;br /&gt;
Y-axis, &amp;quot;Years in the past&amp;quot;: Number of years the story's events take place, before the story's publication.&lt;br /&gt;
&lt;br /&gt;
For example, &amp;quot;Water Margin&amp;quot; was published in the 14th century (x ~= 1300) and relates events from the 12th century, about 200 years before its publication (y ~= 200 in the past).&lt;br /&gt;
&lt;br /&gt;
Another example: The film ''{{w|The Bridge on the River Kwai}}'' was released in 1957 and it was set around 14 years before (~1942-43).&lt;br /&gt;
&lt;br /&gt;
Grey area in the &amp;quot;Years in the future&amp;quot; part: Stories set in the future (from their publication's date), whose the story's events' date is already past (from now).&lt;br /&gt;
&lt;br /&gt;
Grey area in the &amp;quot;Years in the past&amp;quot; part: Stories set in the past (from their publication's date), published closer to their setting than to today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Taking the &amp;quot;years in the past&amp;quot; on the y-axis to be read as negatives like in most graphs one can write:&lt;br /&gt;
&lt;br /&gt;
Dates on the lower line satisfy: y = x-2015. Corresponding works were published in the year x = 2015+y and are set in the year x+y = 2015+2y.&lt;br /&gt;
 &lt;br /&gt;
Dates on the upper line satisfy: y = 2015-x. Corresponding works were published in the year x = 2015-y and are set in the year x+y = 2015.&lt;br /&gt;
 &lt;br /&gt;
Thus it's clear that the definitions of the lines are consistent with each other as they follow similar but inverted functions.&lt;br /&gt;
&lt;br /&gt;
In the top portion of the graph, the two sides of the line are defined as &amp;quot;still possible&amp;quot; and &amp;quot;obsolete&amp;quot; (gray area). The gray area (obsolete) expands over time, the prediction (or science fiction work) that are not confirmed by reality are doomed to be obsolete. The author mark the line of the stories set in 2015; they are the expectation for our present in different past times. &lt;br /&gt;
&lt;br /&gt;
In the bottom graph, the line indicates the limit in which the publishing time is nearer to the time treated in the work than to the present. The work in the gray area could be perceived as written by contemporary writers while in most cases they refer to a further past. This is expressed in the warning: &amp;quot;Modern audiences may not recognize which part were supposed to sound old&amp;quot;. This is a recurrent theme in the author's work, being already formulated in [[Period_Speech]].&lt;br /&gt;
&lt;br /&gt;
The bottom of the chart has the Star Wars films, which are set &amp;quot;A long time ago&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Works listed===&lt;br /&gt;
&lt;br /&gt;
{| {{table}}&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Publication'''&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Description'''&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Year Written'''&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Year Difference'''&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Year Set In'''&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Memoirs of the Twentieth Century|Memoirs of the Twentieth Century]]|| book written by Samuel Madden||1733||264||1997&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Golf in the Year 2000|Golf in the Year 2000]]|| novel written by J. McCullough||1892||108||2000&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Looking Backward|Looking Backward]]|| novel written by Edward Bellamy||1888||112||2000&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Enoch Soames|Enoch Soames]]|| short story by Max Beerbohm||1897||100||1997&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:The Time Machine|The Time Machine]]|| novel written by H.G. Wells||1895||800,806||802,701&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Nineteen Eighty-Four|1984]]||novel written by George Orwell||1949||35||1984&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Wythnos yng Nghymru Fydd|A Week in the Wales of the Future]]||novel written by Islwyn Ffowc Elis||1957||76||2033&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:The Jetsons|The Jetsons]]||TV series produced by Hanna-Barbera||1962 *||100||2062 †&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Star Trek: The Original Series|Star Trek !TOS!]]||TV series created by Gene Roddenberry||1966 *||298||2264&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:2001: A Space Odyssey (film)|2001: A Space Odyssey]]||novel written by Arthur C. Clarke||1968||33||2001&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Space: 1999|Space: 1999]]||TV series created by Gerry and Sylvia Anderson||1975 *||24||1999&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:2010: Odyssey Two|2010: Odyssey Two]]||novel written by Arthur C. Clarke||1982||28||2010&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Star Trek: The Next Generation|Star Trek: The Next Generation]]||TV series created by Gene Roddenberry||1987 *||377||2364&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:2061: Odyssey Three|2061: Odyssey Three]]||novel written by Arthur C. Clarke||1987||74||2061&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Zero Wing|Zero Wing]]||arcade/computer game||1989||112||2101 (previously referenced in [[887: Future Timeline]])&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:3001: The Final Odyssey|3001: The Final Odyssey]]||novel written by Arthur C. Clarke||1997||1004||3001&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Star Trek: Enterprise|Enterprise]]||TV series||2001 *||150||2151&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Back to the Future Part II|Back to the Future Part II]]||film directed by Robert Zemeckis||1989||26||2015&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:The Transformers (TV series)|Transformers (TV Series)]]||TV series||1984 *||~ 20||&amp;lt; 2010&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Terminator 2: Judgment Day|Terminator 2 (1995 Portion)]]||film directed by James Cameron||1991||4||1995&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Casablanca (film)|Casablanca]]||film directed by Michael Curtiz||1942||&amp;lt; 1||1941&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:The Pillow Book|The Pillow Book]]||book written by Sei Shōnagon||1002||6||996&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:History of the Peloponnesian War|History of the Peloponnesian War]]||history written by Thucydides||~400 BCE||~10||431-411 BCE&lt;br /&gt;
|-&lt;br /&gt;
| Moby Dick||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Gospels||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Epic of Gilgamesh||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Iliad||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Ashokavadana||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Book of Genesis||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Water Margin||||||||&lt;br /&gt;
|-&lt;br /&gt;
| King John||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Henry IV||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Richard III||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Henry VIII||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Julius Caesar||||||||&lt;br /&gt;
|-&lt;br /&gt;
| King Lear||||||||&lt;br /&gt;
|-&lt;br /&gt;
| A Conneticut Yankee in King Arthur's Court||||||||&lt;br /&gt;
|-&lt;br /&gt;
| [[wikipedia:Lest Darkness Fall|Lest Darkness Fall]]||alternate history SF novel||1939||1404||535&lt;br /&gt;
|-&lt;br /&gt;
| Asterix||French comic by Goscinny and Uderzo||1959*||2009||50 B.C.&lt;br /&gt;
|-&lt;br /&gt;
| The Ten Commandments||film by Cecil B. DeMille||1956||3412||[[wikipedia:The Exodus#Date|1446 BCE]]&lt;br /&gt;
|-&lt;br /&gt;
| The Flintstones||TV series produced by Hanna-Barbera||1960*||&amp;gt;2,5 million||Stone Age&lt;br /&gt;
|-&lt;br /&gt;
| 2001: A Space Odyssey (prologue)||novel written by Arthur C. Clarke||1968|||&amp;gt;2,5 million||Stone Age ([[wikipedia:Lower Paleolithic|Lower Paleolithic]])|&lt;br /&gt;
|-&lt;br /&gt;
| Star Wars (IV - VI)||original film trilogy ||1977-1983|| ||A long time ago&lt;br /&gt;
|-&lt;br /&gt;
| Star Wars (I - III)||prequel film trilogy||1999-2005|| ||A long time ago&lt;br /&gt;
|-&lt;br /&gt;
| Raptor Red||novel by Robert Bakker||1995||&amp;gt;65 million||Cretaceous Period&lt;br /&gt;
|-&lt;br /&gt;
| Star Wars (VII - IX)||sequel film trilogy||2015-2021|| ||A long time ago&lt;br /&gt;
|-&lt;br /&gt;
| Ice Age||animated films by Blue Sky Studios||2002*||&amp;gt;12,000||[[wikipedia:Last glacial period| Paleolithic-Mesolithic]]&lt;br /&gt;
|-&lt;br /&gt;
| 10,000 BC||film by Roland Emmerich||2008||11,992||10,000 BC&lt;br /&gt;
|-&lt;br /&gt;
| 300||film by Zack Snyder||2007||2487||[[wikipedia:Battle of Thermopylae|480 BC]]&lt;br /&gt;
|-&lt;br /&gt;
| Year One||film by Harold Ramis||2009||2008||1 AD&lt;br /&gt;
|-&lt;br /&gt;
| The Prince of Egypt||animated film by DreamWorks||1998||3412||[[wikipedia:The Exodus#Date|1446 BCE]]&lt;br /&gt;
|-&lt;br /&gt;
| Downton Abbey||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Pearl Harbour||film by Michael Bay||2001||60||1941&lt;br /&gt;
|-&lt;br /&gt;
| Saving Private Ryan||film by Steven Spielberg||1998||54||1944&lt;br /&gt;
|-&lt;br /&gt;
| Chariots of Fire||film by Hugh Hudson||1981||57||1924&lt;br /&gt;
|-&lt;br /&gt;
| Blazing Saddles||film by Mel Brooks||1974||100||1874&lt;br /&gt;
|-&lt;br /&gt;
| Back to the Future Part III||film by Robert Zemeckis||1990||105||1885&lt;br /&gt;
|-&lt;br /&gt;
| Roots||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Treasure Island||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Last of the Mohicans||||||||&lt;br /&gt;
|-&lt;br /&gt;
| A Tale of Two Cities||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Gone With The Wind||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Gunsmoke||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Rip Van Winkel [sic]||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Les Miserábles [sic]||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Oklahoma!||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Lawrence of Arabia||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Music Man||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Annie (Play)||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Annie (Movie)||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Schindler's List||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Mad Men||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Evita||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Bonnie and Clyde||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Chinatown||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Gandhi||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Sandlot||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Back to the Future||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Patton||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Catch-22 (Movie)||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Great Escape||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Catch-22 (Book)||||||||&lt;br /&gt;
|-&lt;br /&gt;
| M*A*S*H||film by Robert Altman||1970||19||1951&lt;br /&gt;
|-&lt;br /&gt;
| Grease||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Happy Days||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Platoon||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Wonder Years||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Dirty Dancing||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Right Stuff||||||||&lt;br /&gt;
|-&lt;br /&gt;
| JFK||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Apollo 13||film by Ron Howard||1995||25||1970&lt;br /&gt;
|-&lt;br /&gt;
| That '70s Show||TV series||1998-2006||&amp;gt;22|||1976-1979&lt;br /&gt;
|-&lt;br /&gt;
| The Wolf of Wall Street||film by Martin Scorsese||2013||&amp;gt;18||1987-1995&lt;br /&gt;
|-&lt;br /&gt;
| Freaks and Geeks||||||||&lt;br /&gt;
|-&lt;br /&gt;
| I Love the '80s||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Bridge on the River Kwai||film by David Lean||||||&lt;br /&gt;
|-&lt;br /&gt;
| American Graffiti||film by George Lucas||1973||11||1962&lt;br /&gt;
|-&lt;br /&gt;
| Apocalypse Now||film by Francis Ford Coppola||1979||10||1969&lt;br /&gt;
|-&lt;br /&gt;
| The Big Lebowski||film by the Coen Brothers||1998||7||1991&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:United 93 (film)|United 93]]|| film directed by Paul Greengrass||2006||-5||2001&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:I Love the '90s (U.S. TV series)|I Love the '90s]]|| TV miniseries on VH1||2004||-14||1990&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Hotel Rwanda|Hotel Rwanda]]|| film directed by Terry George||2004||-10||1994&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:I Love the 2000s|I Love the 2000s]]|| TV miniseries on VH1||2014||-14||2000&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* = first episode aired. † = conjectured year set in.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
There is a hypercorrection in ''{{w|Rip Van Winkle}}'' as ''Rip van Winkel''. Washington Irving may have misspelled ''van {{w|nl:Winkel|Winkel}}''.&lt;br /&gt;
&lt;br /&gt;
It's ''{{w|Les Misérables}}'' not ''Les Miserábles''. Note that French doesn't have &amp;quot;á&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
{{w|Lest Darkness Fall}} takes place about 1400 years in the past, but is places around the -500 years line on the graph.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
:'''Date of Publication'''&lt;br /&gt;
:[A logarithmic scale running horizontally, from 3000 BCE to past 2015 CE]&lt;br /&gt;
:'''Years in the Future'''&lt;br /&gt;
:[A logarithmic scale running vertically, from 1 billion down to 0]&lt;br /&gt;
:'''Stories Set in the Future''' (Science Fiction, Prediction)&lt;br /&gt;
::Stories set in 2015&lt;br /&gt;
::[A line divides this region into two. The upper side is labelled &amp;quot;Still Possible&amp;quot;; the lower side is labelled &amp;quot;Obsolete&amp;quot;.]&lt;br /&gt;
:[from left to right...]&lt;br /&gt;
::Memoirs of the Twentieth Century [1733, 265 years in the future]&lt;br /&gt;
::Looking Backward [1888, 112 years in the future]&lt;br /&gt;
::Golf in the Year 2000 [1892, 108 years in the future]&lt;br /&gt;
::The Time Machine [1895, 800 thousand to 30 million years in the future]&lt;br /&gt;
::Enoch Soames [1916, ''circa'' 60 years in the future]&lt;br /&gt;
::1984 [1949, 35 years in the future]&lt;br /&gt;
::A Week in the Wales of the Future [1957, 76 years in the future]&lt;br /&gt;
::The Jetsons [1962-63, 100 years in the future]&lt;br /&gt;
::Star Trek [1966-69, 300 years in the future]&lt;br /&gt;
::2001: A Space Odyssey [1968, 33 years in the future]&lt;br /&gt;
::Space: 1999 [1975-77, 24 years in the future]&lt;br /&gt;
::2010: Odyssey Two [1982, 28 years in the future]&lt;br /&gt;
::Transformers (TV series) [1984-87, 20 years in the future]&lt;br /&gt;
::2061: Odyssey Three [1987, 74 years in the future]&lt;br /&gt;
::Star Trek: The Next Generation [1987-94, ''circa'' 500 years in the future]&lt;br /&gt;
::Back to the Future Part II [1989, 26 years in the future]&lt;br /&gt;
::Zero Wing [1989, 112 years in the future]&lt;br /&gt;
::Terminator 2 (1995 portion) [1991, 4 years in the future]&lt;br /&gt;
::3001: The Final Odyssey [1997, 1004 years in the future]&lt;br /&gt;
::Enterprise [2001-2005, 150 years in the future]&lt;br /&gt;
::This chart [2015, 0 years in the future]&lt;br /&gt;
:'''Years in the Past'''&lt;br /&gt;
:[A logarithmic scale running vertically, from 0 down past 1 billion to &amp;quot;Big Bang&amp;quot;]&lt;br /&gt;
:'''Stories Set in the Past''' (History, Period Fiction)&lt;br /&gt;
::Stories written X years ago and set 2X years ago&lt;br /&gt;
::[A line divides this region into two. The upper side is labelled as follows.]&lt;br /&gt;
::'''Former Period Pieces'''&lt;br /&gt;
::Stories set in the past, but&amp;lt;br/&amp;gt;created long enough ago that&amp;lt;br/&amp;gt;they were published closer&amp;lt;br/&amp;gt;to their setting than to today.&lt;br /&gt;
::Modern audiences may not&amp;lt;br/&amp;gt;recognize which parts were&amp;lt;br/&amp;gt;''supposed'' to sound old.&lt;br /&gt;
:[from left to right...]&lt;br /&gt;
::The Epic of Gilgamesh [''circa'' 2100 BCE, 600 years in the past]&lt;br /&gt;
::The Iliad [''circa''' 800 BCE, 450 years in the past]&lt;br /&gt;
::History of the Peloponnesian War [''circa'' 390 BCE, 10 years in the past]&lt;br /&gt;
::Book of Genesis [''circa'' 500 BCE, 4000 years in the past]&lt;br /&gt;
::Ashokavadana [''circa'' 100 BCE, 300 years in the past]&lt;br /&gt;
::Gospels (various estimates) [''circa'' 250 CE, 24 to 75 years in the past]&lt;br /&gt;
::The Pillow Book [1000 CE, 5 years in the past]&lt;br /&gt;
::Water Margin [''circa'' 1300, 195 years in the past]&lt;br /&gt;
::Richard III [''circa'' 1590, 115 years in the past]&lt;br /&gt;
::Julius Caesar [1599, 1650 years in the past]&lt;br /&gt;
::King John [''circa'' 1600, 500 years in the past]&lt;br /&gt;
::Henry IV [''circa'' 1600, 190 years in the past]&lt;br /&gt;
::King Lear [''circa'' 1606, 3000 years in the past]&lt;br /&gt;
::Henry VIII [''circa'' 1612, 105 years in the past]&lt;br /&gt;
::The Last of the Mohicans [1826, 69 years in the past]&lt;br /&gt;
::Rip Van Winkel [1819, 31-51 years in the past]&lt;br /&gt;
::A Tale of Two Cities [1859, 60 years in the past]&lt;br /&gt;
::Moby-Dick [1851, around 10 years ago]&lt;br /&gt;
:::&amp;quot;Some years ago--never mind how long precisely...&amp;quot;&lt;br /&gt;
::Les Miserábles [1862, 30 years in the past]&lt;br /&gt;
::A Connecticut Yankee in King Arthur's Court&lt;br /&gt;
::Treasure Island&lt;br /&gt;
::Gone With the Wind&lt;br /&gt;
::Lest Darkness Fall&lt;br /&gt;
::Casablanca&lt;br /&gt;
::Oklahoma!&lt;br /&gt;
::The Ten Commandments&lt;br /&gt;
::The Bridge on the River Kwai&lt;br /&gt;
::Gunsmoke&lt;br /&gt;
::Catch-22 (book)&lt;br /&gt;
::The Flintstones&lt;br /&gt;
::The Great Escape&lt;br /&gt;
::Asterix&lt;br /&gt;
::Lawrence of Arabia&lt;br /&gt;
::The Music Man&lt;br /&gt;
::Bonnie and Clyde&lt;br /&gt;
::2001: A Space Odyssey (prologue)&lt;br /&gt;
::American Graffiti&lt;br /&gt;
::Patton&lt;br /&gt;
::Catch-22 (movie)&lt;br /&gt;
::Chinatown&lt;br /&gt;
::Blazing Saddles&lt;br /&gt;
::Apocalypse Now&lt;br /&gt;
::Happy Days&lt;br /&gt;
::Grease&lt;br /&gt;
::M*A*S*H&lt;br /&gt;
::Annie (play)&lt;br /&gt;
::Roots&lt;br /&gt;
::Chariots of Fire&lt;br /&gt;
::Star Wars (IV-VI)&lt;br /&gt;
::Annie (movie)&lt;br /&gt;
::The Right Stuff&lt;br /&gt;
::Back to the Future&lt;br /&gt;
::Gandhi&lt;br /&gt;
::Platoon&lt;br /&gt;
::Dirty Dancing&lt;br /&gt;
::Back to the Future Part III&lt;br /&gt;
::The Wonder Years&lt;br /&gt;
::JFK&lt;br /&gt;
::The Sandlot&lt;br /&gt;
::Schindler's List&lt;br /&gt;
::Raptor Red&lt;br /&gt;
::Apollo 13&lt;br /&gt;
::Star Wars (I-III)&lt;br /&gt;
::The Big Lebowski&lt;br /&gt;
::Evita&lt;br /&gt;
::Saving Private Ryan&lt;br /&gt;
::The Prince of Egypt&lt;br /&gt;
::Freaks and Geeks&lt;br /&gt;
::Hotel Rwanda&lt;br /&gt;
::I Love the '80s&lt;br /&gt;
::That '70s Show&lt;br /&gt;
::Pearl Harbor&lt;br /&gt;
::Ice Age&lt;br /&gt;
::I Love the '90s&lt;br /&gt;
::United 93&lt;br /&gt;
::300&lt;br /&gt;
::10,000 BC&lt;br /&gt;
::Year One&lt;br /&gt;
::The Wolf of Wall Street&lt;br /&gt;
::I Love the 2000s&lt;br /&gt;
::Mad Men&lt;br /&gt;
::Downton Abbey&lt;br /&gt;
::Star Wars (VII-IX)&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Large drawings]]&lt;/div&gt;</summary>
		<author><name>141.101.80.121</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1491:_Stories_of_the_Past_and_Future&amp;diff=85165</id>
		<title>1491: Stories of the Past and Future</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1491:_Stories_of_the_Past_and_Future&amp;diff=85165"/>
				<updated>2015-02-25T18:42:22Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.80.121: /* Works listed */ Lest Darkness Fall&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1491&lt;br /&gt;
| date      = February 25, 2015&lt;br /&gt;
| title     = Stories of the Past and Future&lt;br /&gt;
| image     = stories_of_the_past_and_future.png&lt;br /&gt;
| titletext = Little-known fact: The 'Dawn of Man' opening sequence in 2001 cuts away seconds before the Flinstones theme becomes recognizable.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a BOT - Please change this comment when editing this page.}}&lt;br /&gt;
''A larger version of the image is available [http://xkcd.com/1491/large/ here].''&lt;br /&gt;
&lt;br /&gt;
X-axis: Date of publication.&lt;br /&gt;
&lt;br /&gt;
Y-axis, &amp;quot;Years in the future&amp;quot;: Number of years the story's events take place, after the story's publication.&lt;br /&gt;
&lt;br /&gt;
Y-axis, &amp;quot;Years in the past&amp;quot;: Number of years the story's events take place, before the story's publication.&lt;br /&gt;
&lt;br /&gt;
For example, &amp;quot;Water Margin&amp;quot; was published in the 14th century (x ~= 1300) and relates events from the 12th century, about 200 years before its publication (y ~= 200 in the past).&lt;br /&gt;
&lt;br /&gt;
Another example: The film ''{{w|The Bridge on the River Kwai}}'' was released in 1957 and it was set around 14 years before (~1942-43).&lt;br /&gt;
&lt;br /&gt;
Grey area in the &amp;quot;Years in the future&amp;quot; part: Stories set in the future (from their publication's date), whose the story's events' date is already past (from now).&lt;br /&gt;
&lt;br /&gt;
Grey area in the &amp;quot;Years in the past&amp;quot; part: Stories set in the past (from their publication's date), published closer to their setting than to today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Taking the &amp;quot;years in the past&amp;quot; on the y-axis to be read as negatives like in most graphs one can write:&lt;br /&gt;
&lt;br /&gt;
Dates on the lower line satisfy: y = x-2015. Corresponding works were published in the year x = 2015+y and are set in the year x+y = 2015+2y.&lt;br /&gt;
 &lt;br /&gt;
Dates on the upper line satisfy: y = 2015-x. Corresponding works were published in the year x = 2015-y and are set in the year x+y = 2015.&lt;br /&gt;
 &lt;br /&gt;
Thus it's clear that the definitions of the lines are consistent with each other as they follow similar but inverted functions.&lt;br /&gt;
&lt;br /&gt;
In the top portion of the graph, the two sides of the line are defined as &amp;quot;still possible&amp;quot; and &amp;quot;obsolete&amp;quot; (gray area). The gray area (obsolete) expands over time, the prediction (or science fiction work) that are not confirmed by reality are doomed to be obsolete. The author mark the line of the stories set in 2015; they are the expectation for our present in different past times. &lt;br /&gt;
&lt;br /&gt;
In the bottom graph, the line indicates the limit in which the publishing time is nearer to the time treated in the work than to the present. The work in the gray area could be perceived as written by contemporary writers while in most cases they refer to a further past. This is expressed in the warning: &amp;quot;Modern audiences may not recognize which part were supposed to sound old&amp;quot;. This is a recurrent theme in the author's work, being already formulated in [[Period_Speech]].&lt;br /&gt;
&lt;br /&gt;
The bottom of the chart has the Star Wars films, which are set &amp;quot;A long time ago&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Works listed===&lt;br /&gt;
&lt;br /&gt;
{| {{table}}&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Publication'''&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Description'''&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Year Written'''&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Year Difference'''&lt;br /&gt;
| align=&amp;quot;center&amp;quot; style=&amp;quot;background:#f0f0f0;&amp;quot;|'''Year Set In'''&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Memoirs of the Twentieth Century|Memoirs of the Twentieth Century]]|| book written by Samuel Madden||1733||264||1997&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Golf in the Year 2000|Golf in the Year 2000]]|| novel written by J. McCullough||1892||108||2000&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Looking Backward|Looking Backward]]|| novel written by Edward Bellamy||1888||112||2000&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Enoch Soames|Enoch Soames]]|| short story by Max Beerbohm||1897||100||1997&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:The Time Machine|The Time Machine]]|| novel written by H.G. Wells||1895||800,806||802,701&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Nineteen Eighty-Four|1984]]||novel written by George Orwell||1949||35||1984&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Wythnos yng Nghymru Fydd|A Week in the Wales of the Future]]||novel written by Islwyn Ffowc Elis||1957||76||2033&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:The Jetsons|The Jetsons]]||TV series produced by Hanna-Barbera||1962 *||100||2062 †&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Star Trek: The Original Series|Star Trek !TOS!]]||TV series created by Gene Roddenberry||1966 *||298||2264&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:2001: A Space Odyssey (film)|2001: A Space Odyssey]]||novel written by Arthur C. Clarke||1968||33||2001&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Space: 1999|Space: 1999]]||TV series created by Gerry and Sylvia Anderson||1975 *||24||1999&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:2010: Odyssey Two|2010: Odyssey Two]]||novel written by Arthur C. Clarke||1982||28||2010&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Star Trek: The Next Generation|Star Trek: The Next Generation]]||TV series created by Gene Roddenberry||1987 *||377||2364&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:2061: Odyssey Three|2061: Odyssey Three]]||novel written by Arthur C. Clarke||1987||74||2061&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Zero Wing|Zero Wing]]||arcade/computer game||1989||112||2101 (previously referenced in [[887: Future Timeline]])&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:3001: The Final Odyssey|3001: The Final Odyssey]]||novel written by Arthur C. Clarke||1997||1004||3001&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Star Trek: Enterprise|Enterprise]]||TV series||2001 *||150||2151&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Back to the Future Part II|Back to the Future Part II]]||film directed by Robert Zemeckis||1989||26||2015&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:The Transformers (TV series)|Transformers (TV Series)]]||TV series||1984 *||~ 20||&amp;lt; 2010&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Terminator 2: Judgment Day|Terminator 2 (1995 Portion)]]||film directed by James Cameron||1991||4||1995&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Casablanca (film)|Casablanca]]||film directed by Michael Curtiz||1942||&amp;lt; 1||1941&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:The Pillow Book|The Pillow Book]]||book written by Sei Shōnagon||1002||6||996&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:History of the Peloponnesian War|History of the Peloponnesian War]]||history written by Thucydides||~400 BCE||~10||431-411 BCE&lt;br /&gt;
|-&lt;br /&gt;
| Moby Dick||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Gospels||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Epic of Gilgamesh||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Iliad||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Ashokavadana||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Book of Genesis||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Water Margin||||||||&lt;br /&gt;
|-&lt;br /&gt;
| King John||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Henry IV||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Richard III||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Henry VIII||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Julius Caesar||||||||&lt;br /&gt;
|-&lt;br /&gt;
| King Lear||||||||&lt;br /&gt;
|-&lt;br /&gt;
| A Conneticut Yankee in King Arthur's Court||||||||&lt;br /&gt;
|-&lt;br /&gt;
| [[wikipedia:Lest Darkness Fall|Lest Darkness Fall]]||alternate history SF novel||1939||1404||535&lt;br /&gt;
|-&lt;br /&gt;
| Asterix||French comic by Goscinny and Uderzo||1959*||2009||50 B.C.&lt;br /&gt;
|-&lt;br /&gt;
| The Ten Commandments||film by Cecil B. DeMille||1956||3412||[[wikipedia:The Exodus#Date|1446 BCE]]&lt;br /&gt;
|-&lt;br /&gt;
| The Flintstones||TV series produced by Hanna-Barbera||1960*||&amp;gt;2,5 million||Stone Age&lt;br /&gt;
|-&lt;br /&gt;
| 2001: A Space Odyssey (prologue)||novel written by Arthur C. Clarke||1968|||&amp;gt;2,5 million||Stone Age ([[wikipedia:Lower Paleolithic|Lower Paleolithic]])|&lt;br /&gt;
|-&lt;br /&gt;
| Star Wars (IV - VI)||original film trilogy ||1977-1983|| ||A long time ago&lt;br /&gt;
|-&lt;br /&gt;
| Star Wars (I - III)||prequel film trilogy||1999-2005|| ||A long time ago&lt;br /&gt;
|-&lt;br /&gt;
| Raptor Red||novel by Robert Bakker||1995||&amp;gt;65 million||Cretaceous Period&lt;br /&gt;
|-&lt;br /&gt;
| Star Wars (VII - IX)||sequel film trilogy||2015-2021|| ||A long time ago&lt;br /&gt;
|-&lt;br /&gt;
| Ice Age||animated films by Blue Sky Studios||2002*||&amp;gt;12,000||[[wikipedia:Last glacial period| Paleolithic-Mesolithic]]&lt;br /&gt;
|-&lt;br /&gt;
| 10,000 BC||film by Roland Emmerich||2008||11,992||10,000 BC&lt;br /&gt;
|-&lt;br /&gt;
| 300||film by Zack Snyder||2007||2487||[[wikipedia:Battle of Thermopylae|480 BC]]&lt;br /&gt;
|-&lt;br /&gt;
| Year One||film by Harold Ramis||2009||2008||1 AD&lt;br /&gt;
|-&lt;br /&gt;
| The Prince of Egypt||animated film by DreamWorks||1998||3412||[[wikipedia:The Exodus#Date|1446 BCE]]&lt;br /&gt;
|-&lt;br /&gt;
| Downton Abbey||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Pearl Harbour||film by Michael Bay||2001||60||1941&lt;br /&gt;
|-&lt;br /&gt;
| Saving Private Ryan||film by Steven Spielberg||1998||54||1944&lt;br /&gt;
|-&lt;br /&gt;
| Chariots of Fire||film by Hugh Hudson||1981||57||1924&lt;br /&gt;
|-&lt;br /&gt;
| Blazing Saddles||film by Mel Brooks||1974||100||1874&lt;br /&gt;
|-&lt;br /&gt;
| Back to the Future Part III||film by Robert Zemeckis||1990||105||1885&lt;br /&gt;
|-&lt;br /&gt;
| Roots||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Treasure Island||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Last of the Mohicans||||||||&lt;br /&gt;
|-&lt;br /&gt;
| A Tale of Two Cities||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Gone With The Wind||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Gunsmoke||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Rip Van Winkel [sic]||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Les Miserábles [sic]||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Oklahoma!||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Lawrence of Arabia||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Music Man||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Annie (Play)||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Annie (Movie)||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Schindler's List||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Mad Men||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Evita||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Bonnie and Clyde||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Chinatown||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Gandhi||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Sandlot||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Back to the Future||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Patton||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Catch-22 (Movie)||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Great Escape||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Catch-22 (Book)||||||||&lt;br /&gt;
|-&lt;br /&gt;
| M*A*S*H||film by Robert Altman||1970||19||1951&lt;br /&gt;
|-&lt;br /&gt;
| Grease||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Happy Days||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Platoon||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Wonder Years||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Dirty Dancing||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Right Stuff||||||||&lt;br /&gt;
|-&lt;br /&gt;
| JFK||||||||&lt;br /&gt;
|-&lt;br /&gt;
| Apollo 13||film by Ron Howard||1995||25||1970&lt;br /&gt;
|-&lt;br /&gt;
| That '70s Show||TV series||1998-2006||&amp;gt;22|||1976-1979&lt;br /&gt;
|-&lt;br /&gt;
| The Wolf of Wall Street||film by Martin Scorsese||2013||&amp;gt;18||1987-1995&lt;br /&gt;
|-&lt;br /&gt;
| Freaks and Geeks||||||||&lt;br /&gt;
|-&lt;br /&gt;
| I Love the '80s||||||||&lt;br /&gt;
|-&lt;br /&gt;
| The Bridge on the River Kwai||film by David Lean||||||&lt;br /&gt;
|-&lt;br /&gt;
| American Graffiti||film by George Lucas||1973||11||1962&lt;br /&gt;
|-&lt;br /&gt;
| Apocalypse Now||film by Francis Ford Coppola||1979||10||1969&lt;br /&gt;
|-&lt;br /&gt;
| The Big Lebowski||film by the Coen Brothers||1998||7||1991&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:United 93 (film)|United 93]]|| film directed by Paul Greengrass||2006||-5||2001&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:I Love the '90s (U.S. TV series)|I Love the '90s]]|| TV miniseries on VH1||2004||-14||1990&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:Hotel Rwanda|Hotel Rwanda]]|| film directed by Terry George||2004||-10||1994&lt;br /&gt;
|-&lt;br /&gt;
| [[Wikipedia:I Love the 2000s|I Love the 2000s]]|| TV miniseries on VH1||2014||-14||2000&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* = first episode aired. † = conjectured year set in.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
There is a hypercorrection in ''{{w|Rip Van Winkle}}'' as ''Rip van Winkel''. Washington Irving may have misspelled ''van {{w|nl:Winkel|Winkel}}''.&lt;br /&gt;
&lt;br /&gt;
It's ''{{w|Les Misérables}}'' not ''Les Miserábles''. Note that French doesn't have &amp;quot;á&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
:'''Date of Publication'''&lt;br /&gt;
:[A logarithmic scale running horizontally, from 3000 BCE to past 2015 CE]&lt;br /&gt;
:'''Years in the Future'''&lt;br /&gt;
:[A logarithmic scale running vertically, from 1 billion down to 0]&lt;br /&gt;
:'''Stories Set in the Future''' (Science Fiction, Prediction)&lt;br /&gt;
::Stories set in 2015&lt;br /&gt;
::[A line divides this region into two. The upper side is labelled &amp;quot;Still Possible&amp;quot;; the lower side is labelled &amp;quot;Obsolete&amp;quot;.]&lt;br /&gt;
:[from left to right...]&lt;br /&gt;
::Memoirs of the Twentieth Century [1733, 265 years in the future]&lt;br /&gt;
::Looking Backward [1888, 112 years in the future]&lt;br /&gt;
::Golf in the Year 2000 [1892, 108 years in the future]&lt;br /&gt;
::The Time Machine [1895, 800 thousand to 30 million years in the future]&lt;br /&gt;
::Enoch Soames [1916, ''circa'' 60 years in the future]&lt;br /&gt;
::1984 [1949, 35 years in the future]&lt;br /&gt;
::A Week in the Wales of the Future [1957, 76 years in the future]&lt;br /&gt;
::The Jetsons [1962-63, 100 years in the future]&lt;br /&gt;
::Star Trek [1966-69, 300 years in the future]&lt;br /&gt;
::2001: A Space Odyssey [1968, 33 years in the future]&lt;br /&gt;
::Space: 1999 [1975-77, 24 years in the future]&lt;br /&gt;
::2010: Odyssey Two [1982, 28 years in the future]&lt;br /&gt;
::Transformers (TV series) [1984-87, 20 years in the future]&lt;br /&gt;
::2061: Odyssey Three [1987, 74 years in the future]&lt;br /&gt;
::Star Trek: The Next Generation [1987-94, ''circa'' 500 years in the future]&lt;br /&gt;
::Back to the Future Part II [1989, 26 years in the future]&lt;br /&gt;
::Zero Wing [1989, 112 years in the future]&lt;br /&gt;
::Terminator 2 (1995 portion) [1991, 4 years in the future]&lt;br /&gt;
::3001: The Final Odyssey [1997, 1004 years in the future]&lt;br /&gt;
::Enterprise [2001-2005, 150 years in the future]&lt;br /&gt;
::This chart [2015, 0 years in the future]&lt;br /&gt;
:'''Years in the Past'''&lt;br /&gt;
:[A logarithmic scale running vertically, from 0 down past 1 billion to &amp;quot;Big Bang&amp;quot;]&lt;br /&gt;
:'''Stories Set in the Past''' (History, Period Fiction)&lt;br /&gt;
::Stories written X years ago and set 2X years ago&lt;br /&gt;
::[A line divides this region into two. The upper side is labelled as follows.]&lt;br /&gt;
::'''Former Period Pieces'''&lt;br /&gt;
::Stories set in the past, but&amp;lt;br/&amp;gt;created long enough ago that&amp;lt;br/&amp;gt;they were published closer&amp;lt;br/&amp;gt;to their setting than to today.&lt;br /&gt;
::Modern audiences may not&amp;lt;br/&amp;gt;recognize which parts were&amp;lt;br/&amp;gt;''supposed'' to sound old.&lt;br /&gt;
:[from left to right...]&lt;br /&gt;
::The Epic of Gilgamesh [''circa'' 2100 BCE, 600 years in the past]&lt;br /&gt;
::The Iliad [''circa''' 800 BCE, 450 years in the past]&lt;br /&gt;
::History of the Peloponnesian War [''circa'' 390 BCE, 10 years in the past]&lt;br /&gt;
::Book of Genesis [''circa'' 500 BCE, 4000 years in the past]&lt;br /&gt;
::Ashokavadana [''circa'' 100 BCE, 300 years in the past]&lt;br /&gt;
::Gospels (various estimates) [''circa'' 250 CE, 24 to 75 years in the past]&lt;br /&gt;
::The Pillow Book [1000 CE, 5 years in the past]&lt;br /&gt;
::Water Margin [''circa'' 1300, 195 years in the past]&lt;br /&gt;
::Richard III [''circa'' 1590, 115 years in the past]&lt;br /&gt;
::Julius Caesar [1599, 1650 years in the past]&lt;br /&gt;
::King John [''circa'' 1600, 500 years in the past]&lt;br /&gt;
::Henry IV [''circa'' 1600, 190 years in the past]&lt;br /&gt;
::King Lear [''circa'' 1606, 3000 years in the past]&lt;br /&gt;
::Henry VIII [''circa'' 1612, 105 years in the past]&lt;br /&gt;
::The Last of the Mohicans [1826, 69 years in the past]&lt;br /&gt;
::Rip Van Winkel [1819, 31-51 years in the past]&lt;br /&gt;
::A Tale of Two Cities [1859, 60 years in the past]&lt;br /&gt;
::Moby-Dick [1851, around 10 years ago]&lt;br /&gt;
:::&amp;quot;Some years ago--never mind how long precisely...&amp;quot;&lt;br /&gt;
::Les Miserábles [1862, 30 years in the past]&lt;br /&gt;
::A Connecticut Yankee in King Arthur's Court&lt;br /&gt;
::Treasure Island&lt;br /&gt;
::Gone With the Wind&lt;br /&gt;
::Lest Darkness Fall&lt;br /&gt;
::Casablanca&lt;br /&gt;
::Oklahoma!&lt;br /&gt;
::The Ten Commandments&lt;br /&gt;
::The Bridge on the River Kwai&lt;br /&gt;
::Gunsmoke&lt;br /&gt;
::Catch-22 (book)&lt;br /&gt;
::The Flintstones&lt;br /&gt;
::The Great Escape&lt;br /&gt;
::Asterix&lt;br /&gt;
::Lawrence of Arabia&lt;br /&gt;
::The Music Man&lt;br /&gt;
::Bonnie and Clyde&lt;br /&gt;
::2001: A Space Odyssey (prologue)&lt;br /&gt;
::American Graffiti&lt;br /&gt;
::Patton&lt;br /&gt;
::Catch-22 (movie)&lt;br /&gt;
::Chinatown&lt;br /&gt;
::Blazing Saddles&lt;br /&gt;
::Apocalypse Now&lt;br /&gt;
::Happy Days&lt;br /&gt;
::Grease&lt;br /&gt;
::M*A*S*H&lt;br /&gt;
::Annie (play)&lt;br /&gt;
::Roots&lt;br /&gt;
::Chariots of Fire&lt;br /&gt;
::Star Wars (IV-VI)&lt;br /&gt;
::Annie (movie)&lt;br /&gt;
::The Right Stuff&lt;br /&gt;
::Back to the Future&lt;br /&gt;
::Gandhi&lt;br /&gt;
::Platoon&lt;br /&gt;
::Dirty Dancing&lt;br /&gt;
::Back to the Future Part III&lt;br /&gt;
::The Wonder Years&lt;br /&gt;
::JFK&lt;br /&gt;
::The Sandlot&lt;br /&gt;
::Schindler's List&lt;br /&gt;
::Raptor Red&lt;br /&gt;
::Apollo 13&lt;br /&gt;
::Star Wars (I-III)&lt;br /&gt;
::The Big Lebowski&lt;br /&gt;
::Evita&lt;br /&gt;
::Saving Private Ryan&lt;br /&gt;
::The Prince of Egypt&lt;br /&gt;
::Freaks and Geeks&lt;br /&gt;
::Hotel Rwanda&lt;br /&gt;
::I Love the '80s&lt;br /&gt;
::That '70s Show&lt;br /&gt;
::Pearl Harbor&lt;br /&gt;
::Ice Age&lt;br /&gt;
::I Love the '90s&lt;br /&gt;
::United 93&lt;br /&gt;
::300&lt;br /&gt;
::10,000 BC&lt;br /&gt;
::Year One&lt;br /&gt;
::The Wolf of Wall Street&lt;br /&gt;
::I Love the 2000s&lt;br /&gt;
::Mad Men&lt;br /&gt;
::Downton Abbey&lt;br /&gt;
::Star Wars (VII-IX)&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Large drawings]]&lt;/div&gt;</summary>
		<author><name>141.101.80.121</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1491:_Stories_of_the_Past_and_Future&amp;diff=85085</id>
		<title>Talk:1491: Stories of the Past and Future</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1491:_Stories_of_the_Past_and_Future&amp;diff=85085"/>
				<updated>2015-02-25T06:35:11Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.80.121: factual error?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://xkcd.com/1491/large/ will take you to the large version, which the comic currently doesn't have a link to.  I expect that will be fixed shortly.  [[Special:Contributions/108.162.210.177|108.162.210.177]] 05:30, 25 February 2015 (UTC)&lt;br /&gt;
:I just realized he has a text link for it in the top banner.  I'd delete my comment, but that's rude on a wiki.  Whatever.  [[Special:Contributions/108.162.210.177|108.162.210.177]] 05:35, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The bottom diagonal seems to be mislabelled? Shouldn't it be &amp;quot;Stories written X years and set X years ago&amp;quot; instead of &amp;quot;set 2X years ago&amp;quot;?&lt;br /&gt;
--[[Special:Contributions/108.162.250.175|108.162.250.175]] 05:38, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm not sure where to open bug tickets, but Lest Darkness Fall actually takes place ~1500 years ago, not ~500. [[Special:Contributions/141.101.80.121|141.101.80.121]] 06:35, 25 February 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.80.121</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1472:_Geography&amp;diff=82467</id>
		<title>Talk:1472: Geography</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1472:_Geography&amp;diff=82467"/>
				<updated>2015-01-12T06:57:34Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.80.121: DF&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Anybody notice that he drew an isthmus but didn't label it? [[Special:Contributions/108.162.221.94|108.162.221.94]] 05:49, 12 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Does Randall play Dwarf Fortress? Because the perfect map to build your fort on looks about like this. Volcano near the sea is especially neat luxury. --[[Special:Contributions/141.101.80.121|141.101.80.121]] 06:57, 12 January 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.80.121</name></author>	</entry>

	</feed>