<?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=108.162.238.181</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=108.162.238.181"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/108.162.238.181"/>
		<updated>2026-04-16T18:26:22Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:344:_1337:_Part_4&amp;diff=101654</id>
		<title>Talk:344: 1337: Part 4</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:344:_1337:_Part_4&amp;diff=101654"/>
				<updated>2015-09-14T02:19:40Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.238.181: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It's the piping of &amp;quot;find ~&amp;quot; (all files in Mom's current login's home directory) and &amp;quot;find ~nomad&amp;quot; (all files in the home directory of user &amp;quot;nomad&amp;quot;, presumably that's Elaine's account also on Mom's machine, having recently been on a 'life journey' of self-discovery and learning) through the shred command that is doing the directory recursion, as part of the &amp;quot;find&amp;quot; command's default behaviour (IIRC).  I've never used the shredding command myself, but I'd say that it's operating on the list given it by the &amp;quot;find&amp;quot;, rather than doing the directory-burrowing itself, for which I'd expect parameters of a &amp;quot;~/* ~/.* -r&amp;quot; (or &amp;quot;-R&amp;quot; or &amp;quot;-s&amp;quot;) type of variant to activate the &amp;quot;all files, in all directories from here&amp;quot; inspection...  ICBW. Best to check the man pages, though... (Also Mom's obviously got maximum rights for herself, or is drilling through su, as I'd expect.) [[Special:Contributions/178.98.31.27|178.98.31.27]] 08:30, 19 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;find&amp;quot; is passed a variety of arguments - an argument that is not part of an optional parameter (i.e. -name \*.php would specify all files ending with &amp;quot;.php&amp;quot; - the backslash is used to prevent bash or another shell from expanding the parameter into a full list of .php files) is treated as a file or directory to begin searching. So &amp;quot;find ~&amp;quot; would begin searching in the user's own home directory; &amp;quot;find ~nomad&amp;quot; would begin the search in the home directory of the user &amp;quot;nomad&amp;quot;. All file and directory names are sent to stdout (standard output).&lt;br /&gt;
&lt;br /&gt;
:Piping the result requires the use of the | symbol (shift-backslash). It's used to pipe data from stdout to stdin (standard input).&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;xargs&amp;quot; is a Linux command that constructs command lines by reading a list of files from stdin and treating each with a command (and optional arguments) specified after &amp;quot;xargs&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;shred&amp;quot; is a program that takes a filename as a parameter and overwrites the file repeatedly to keep the original contents, which can be discerned using increasingly-expensive hardware solutions, from being pieced together.&lt;br /&gt;
&lt;br /&gt;
:With this in mind:&lt;br /&gt;
&lt;br /&gt;
::find ~ | xargs shred&lt;br /&gt;
&lt;br /&gt;
:1) finds all files (and directories) in the hierarchy of the user's home directory, and sends the list to stdout;&lt;br /&gt;
:2) the list gets piped to &amp;quot;xargs&amp;quot;, which&lt;br /&gt;
:3) passes each file to &amp;quot;shred&amp;quot; for shredding.&lt;br /&gt;
&lt;br /&gt;
:Issues regarding symbolic links, filtering directory names from the operation, and modifying the operating parameters of &amp;quot;shred&amp;quot; will be left to the aspiring sysadmin to discover for theirself. [[User:Thokling|Thokling]] ([[User talk:Thokling|talk]]) 13:42, 21 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It should be noted that if you want to have a file system that can shred data reliably you will need to use a file system without journaling or it is possible some of your data can be stored in the journal(The journal describes the nature of a write and its prior state before writing to it in order to safeguard the file system against unexpected shutdown).&lt;br /&gt;
&lt;br /&gt;
What is more a lot of modern hard drive detect bad sectors and move data elsewhere, leaving the old data in a sector marked as &amp;quot;do not use&amp;quot;. This data will not be securely deleted from these sectors and can be manually accessed by forensics later.&lt;br /&gt;
&lt;br /&gt;
The commonly accepted solution is to use block device level encryption to prevent sensitive data from ever being written.&lt;br /&gt;
&lt;br /&gt;
In short the '''shred''' command can give someone an unrealistic sense of security. I don't think this is relevant to the comic but I just wanted to share what I knew on the subject. [[Special:Contributions/108.162.246.117|108.162.246.117]] 08:52, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Title IV, Section 408: Authorization of deadly force.&amp;quot; Does that make any sense in the real world? I don't see an explanation about this remark. [[User:Daniel Carrero|Daniel Carrero]] ([[User talk:Daniel Carrero|talk]]) 09:48, 10 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Someone should put in that Stallman was given a Katana.[[Special:Contributions/108.162.249.210|108.162.249.210]] 00:29, 13 June 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:And also that katana-wielding Stallman comes from [[225: Open Source]]. [[Special:Contributions/108.162.229.173|108.162.229.173]] 22:29, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
'''find''' can take multiple path arguments so she could just used '''find ~ ~nomad'''. [[Special:Contributions/108.162.238.181|108.162.238.181]] 02:19, 14 September 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>108.162.238.181</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1553:_Public_Key&amp;diff=98145</id>
		<title>Talk:1553: Public Key</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1553:_Public_Key&amp;diff=98145"/>
				<updated>2015-07-21T19:54:25Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.238.181: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'm assuming he's referring to the GPG/PGP Key. Basically you have a key pair, one private that you use to sign/encrypt and one public, which can be used to verify your private key was used to sign. See [https://en.wikipedia.org/wiki/Public-key_cryptography Wikipedia] for more information. If you posted your private key, anyone could sign as if they were you. I sign pretty much everything (not to mailing lists though), but don't think I've seen anyone else ever do so, even those I know have keys. See [[1181: PGP]] for more. [[Special:Contributions/198.41.235.35|198.41.235.35]] 04:59, 20 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Don't believe everything certification authorities are telling you. X.509 SSL certificates works exactly same. Certificate is just a public key signed by certification authority. And yes, you can sign email with X.509 certificate. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 09:54, 20 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
This comic should be added to [[:Category:Cryptography]], but I'm not sure how to do that or whether I can do that. [[User:Nick818|Nick818]] ([[User talk:Nick818|talk]]) 07:06, 20 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:{{u|Nick818}}—Someone did this today, but for your future reference, you just need to add &amp;lt;tt&amp;gt;&amp;lt;nowiki&amp;gt;[[Category:Cryptography]]&amp;lt;/nowiki&amp;gt;&amp;lt;/tt&amp;gt; to the page that needs to be categorized. It's helpful and customary to add the code to the bottom of the page. Cheers, [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 10:21, 20 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
This explanation completely misses the point that the PGP workflow is fundamentally flawed which has been stated by more than one expert, e.g. famously last year by Matthew Green, leading to demands to &amp;quot;let it die&amp;quot; and be replaced by something workable. --[[Special:Contributions/108.162.254.190|108.162.254.190]] 11:21, 20 July 2015 (UTC)&lt;br /&gt;
:The problem is, that there isn’t anything more “workable” at the moment. &amp;lt;small&amp;gt;BTW: 7CD1E35FD2A3A158&amp;lt;/small&amp;gt;. --[[User:DaB.|DaB.]] ([[User talk:DaB.|talk]]) 11:27, 20 July 2015 (UTC)&lt;br /&gt;
::Well, I don't want to solve the problem of front-end cryptography here, and this site won't either. But the comic appeared in a climate of a quite general consensus and acceptance of the failure of PGP/GPG, and not technically but because of social and usability reasons. This explanation letting out that is quite comically in itself. --[[Special:Contributions/108.162.254.190|108.162.254.190]] 13:12, 20 July 2015 (UTC)&lt;br /&gt;
:::The main problem of end-to-end email cryptography is serious lack of companies who would actually WANT to do it properly. Most companies are directly interrested in violating your privacy. Keeping hard-to-work-with PGP is in their benefit. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 10:10, 21 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Remember Responsible Behavior? https://xkcd.com/364/ [[User:Xquestion|Xquestion]] ([[User talk:Xquestion|talk]]) 13:03, 20 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
But did the author post his public key anywhere ? :v [[Special:Contributions/141.101.104.166|141.101.104.166]] 17:29, 20 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Worth noting that posting his private key actually would be crowdsourcing his signing decisions, since anyone could do it. [[Special:Contributions/108.162.221.102|108.162.221.102]] 04:57, 21 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
    -----BEGIN PGP SIGNED MESSAGE-----&lt;br /&gt;
    Hash: SHA1&lt;br /&gt;
    &lt;br /&gt;
    FWIW, I use PGP. :)&lt;br /&gt;
    -----BEGIN PGP SIGNATURE-----&lt;br /&gt;
    Version: GnuPG v1&lt;br /&gt;
    &lt;br /&gt;
    iEYEARECAAYFAlWuhWoACgkQHkr3KdXO/9A/ZACeM5Oho5XEDZnjo2q4yZBTqABo&lt;br /&gt;
    ET0Ani928heXg9aHmju0e0aK8JV7pvxH&lt;br /&gt;
    =CsEo&lt;br /&gt;
    -----END PGP SIGNATURE-----&lt;br /&gt;
''&amp;amp;mdash; [[User:Tbc|tbc]] ([[User talk:Tbc|talk]]) 18:17, 21 July 2015 (UTC)''&lt;br /&gt;
&lt;br /&gt;
&amp;quot;the keys themselves do not hold &amp;quot;private&amp;quot; or &amp;quot;public&amp;quot; roles until one is released and becomes the public key&amp;quot; --- that might be true of ''some'' crypto-systems, but it is definite '''not''' true of anything based on RSA, such as PGP/GPG. The prime factors (or exponents derived from them) are definitely the &amp;quot;private&amp;quot; part, and the composite product is definitely the &amp;quot;public&amp;quot; part. You '''cannot'' simply choose which part of the pair to make public. [[Special:Contributions/108.162.238.181|108.162.238.181]] 19:54, 21 July 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>108.162.238.181</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1491:_Stories_of_the_Past_and_Future&amp;diff=85132</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=85132"/>
				<updated>2015-02-25T15:07:36Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.238.181: &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;
:It is correct, if you see both relative from now. The middle line is written X years ago and set X years ago and thus contemporary. Sebastian --[[Special:Contributions/108.162.231.68|108.162.231.68]] 06:46, 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;br /&gt;
: I'll second that -- [[User:Brettpeirce|Brettpeirce]] ([[User talk:Brettpeirce|talk]]) 12:36, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Kind of reminds of a Minkowski diagram. Sebastian --[[Special:Contributions/108.162.231.68|108.162.231.68]] 06:50, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
More and more science fiction works wander into the category obsolete science fiction, and more and more historical works are not recognisable as such by the average viewer as the movies have been filmed such a long time ago anyway. Sebastian --[[Special:Contributions/108.162.231.68|108.162.231.68]] 06:55, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
There seems to be a mistake with the large diagonal line.  It says &amp;quot;Stories written X years ago and set 2X years ago.&amp;quot;  It should say, &amp;quot;... and set X years ago.&amp;quot;  Am I missing something here? [[User:Effy|Effy]] ([[User talk:Effy|talk]]) 09:35, 25 February 2015 (UTC)&lt;br /&gt;
:Nevermind, I see now that the y-axis is date relative to publication, not absolute dates relative to today.  My bad. [[User:Effy|Effy]] ([[User talk:Effy|talk]]) 09:37, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I may have missed it, but can't see {{w|Paris in the Twentieth Century}}, written in 1863, about 1960, but only published in 1994.  Which would have been an interesting addition. [[Special:Contributions/141.101.98.192|141.101.98.192]] 10:13, 25 February 2015 (UTC)&lt;br /&gt;
:In fact, I'm thinking it could have been represented as a (dotted?) ''diagonal'' arrowed line between &amp;quot;1960 in 1863&amp;quot;/future-trending and &amp;quot;1960 in 1994&amp;quot;/past-trending points. But never mind. [[Special:Contributions/141.101.98.192|141.101.98.192]] 10:38, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... this is why experienced sci-fi writers don't date their stories. On the other hand, many sci-fi became obviously obsolete even without the date. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 11:00, 25 February 2015 (UTC)&lt;br /&gt;
:I have experience with this.  Back in 1995 I advised a prospective author-friend (prospective author; already and still a friend, surprisingly) on the latest computing matters to help a plot device in a &amp;quot;five minutes into the future&amp;quot; story.  Even two years later, it sounded so dated and... naff.  ('Luckily', it didn't sell too well anyway (bad choice of publishers), so my failure-as-futurologist - uncredited as it also fortunately was - wasn't so wildly known.) [[Special:Contributions/141.101.98.192|141.101.98.192]] 13:04, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I've been trying and trying to figure out what the heck his point might be, as IMO there usually seems to be some point he's trying to make or way he's trying to be clever, beyond the interesting nature of the observation - and I think I might have seen one (though there is probably something else) - anyone notice that the area under the &amp;quot;Stories set in 2015&amp;quot; line is awfully bare? at least compared to the areas on either side of the 'x / 2x' line. that could simply be his particular selection of works(?) anyone have some ideas of things that might deserve to go in there that were not included? -- [[User:Brettpeirce|Brettpeirce]] ([[User talk:Brettpeirce|talk]]) 12:45, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I think the point here is that there are a lot of books one hasn't read yet. I, for one, sought out ''Memoirs of the Twentieth Century'' and ''The Pillow Book'' after reading this strip. --[[User:Koveras|Koveras]] ([[User talk:Koveras|talk]]) 13:30, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
As for writing a transcript or explanation, concerning order, I would think it would make some sense to flatten it on one axis (probably the y-axis, starting from Star Wars?) or if it is practical enough, the best might be some sort of &amp;quot;radial&amp;quot;(?) axis (is that a thing?), where the axis would be anchored at &amp;quot;this chart&amp;quot;, and swing like a radar beam around from the bottom (Downton Abbey, Mad Men, and Star Wars, up through the 'x / 2x' line, through the 'contemporary' line and then the 'set in 2015' line, to finish with '3001', possibly making a small attempt to keep related works (like Star Wars) together in the listing. Any comments? -- [[User:Brettpeirce|Brettpeirce]] ([[User talk:Brettpeirce|talk]]) 12:55, 25 February 2015 (UTC)&lt;br /&gt;
:Whatever the fixation, I started work on something, but other people will get there before me.  So here's my ideas.  Five columns: &amp;quot;Story (and format description/author?)&amp;quot;, &amp;quot;First Published/Premiered&amp;quot;, &amp;quot;Date offset(s)&amp;quot;, &amp;quot;Featured date(s)&amp;quot; and &amp;quot;Notes&amp;quot;, with sorting on each potentially numerical one (although ranges/freetext/vagueness may play havoc with such sorting, by past experience).&lt;br /&gt;
:I already have a complete list of listed titles (in case anyone needs it), though maybe not error-free and not yet been ordered other than by &amp;quot;input order&amp;quot;.&lt;br /&gt;
 Memoirs of the Twentieth Century&lt;br /&gt;
 Golf in the Year 2000&lt;br /&gt;
 Looking Backward&lt;br /&gt;
 Enoch Soames&lt;br /&gt;
 The Time Machine&lt;br /&gt;
 1984&lt;br /&gt;
 A Week in the Wales of the Future&lt;br /&gt;
 The Jetsons&lt;br /&gt;
 Star Trek !TOS!&lt;br /&gt;
 2001: A Space Odyssey&lt;br /&gt;
 Space: 1999&lt;br /&gt;
 2010: Odyssey Two&lt;br /&gt;
 Star Trek: The Next Generation&lt;br /&gt;
 2061: Odyssey Three&lt;br /&gt;
 Zero Wing&lt;br /&gt;
 3001: The Final Odyssey&lt;br /&gt;
 Enterprise&lt;br /&gt;
 Back to the Future Part II&lt;br /&gt;
 Transformers (TV Series)&lt;br /&gt;
 Terminator 2 (1995 Portion)&lt;br /&gt;
 Casablanca&lt;br /&gt;
 The Pillow Book&lt;br /&gt;
 History of the Peloponnesian War&lt;br /&gt;
 Moby Dick&lt;br /&gt;
 Gospels&lt;br /&gt;
 The Epic of Gilgamesh&lt;br /&gt;
 The Iliad&lt;br /&gt;
 Ashokavadana&lt;br /&gt;
 Book of Genesis&lt;br /&gt;
 Water Margin&lt;br /&gt;
 King John&lt;br /&gt;
 Henry IV&lt;br /&gt;
 Richard III&lt;br /&gt;
 Henry VIII&lt;br /&gt;
 Julius Caesar&lt;br /&gt;
 King Lear&lt;br /&gt;
 A Conneticut Yankee in King Arthur's Court&lt;br /&gt;
 Lest Darkness Fall&lt;br /&gt;
 Asterix&lt;br /&gt;
 The Ten Commandments&lt;br /&gt;
 The Flintstones&lt;br /&gt;
 2001: A Space Odyssey (prologue)&lt;br /&gt;
 Star Wars (IV - VI)&lt;br /&gt;
 Star Wars (I - III)&lt;br /&gt;
 Raptor Red&lt;br /&gt;
 Star Wars (VII - IX)&lt;br /&gt;
 Ice Age&lt;br /&gt;
 10,000 BC&lt;br /&gt;
 300&lt;br /&gt;
 Year One&lt;br /&gt;
 The Prince of Egypt&lt;br /&gt;
 Downton Abbey&lt;br /&gt;
 Pearl Harbour&lt;br /&gt;
 Saving Private Ryan&lt;br /&gt;
 Chariots of Fire&lt;br /&gt;
 Blazing Saddles&lt;br /&gt;
 Back to the Future Part III&lt;br /&gt;
 Roots&lt;br /&gt;
 Treasure Island&lt;br /&gt;
 The Last of the Mohicans&lt;br /&gt;
 A Tale of Two Cities&lt;br /&gt;
 Gone With The Wind&lt;br /&gt;
 Gunsmoke&lt;br /&gt;
 Rip Can Winkel [sic]&lt;br /&gt;
 Les Misera'bles&lt;br /&gt;
 Oklahoma!&lt;br /&gt;
 Lawrence of Arabia&lt;br /&gt;
 The Music Man&lt;br /&gt;
 Annie (Play)&lt;br /&gt;
 Annie (Movie)&lt;br /&gt;
 Schindler's List&lt;br /&gt;
 Mad Men&lt;br /&gt;
 Evita&lt;br /&gt;
 Bonnie and Clyde&lt;br /&gt;
 Chinatown&lt;br /&gt;
 Gandhi&lt;br /&gt;
 The Sandlot&lt;br /&gt;
 Back to the Future&lt;br /&gt;
 Patton&lt;br /&gt;
 Catch-22 (Movie)&lt;br /&gt;
 The Great Escape&lt;br /&gt;
 Catch-22 (Book)&lt;br /&gt;
 M*A*S*H&lt;br /&gt;
 Grease&lt;br /&gt;
 Happy Days&lt;br /&gt;
 Platoon&lt;br /&gt;
 The Wonder Years&lt;br /&gt;
 Dirty Dancing&lt;br /&gt;
 The Right Stuff&lt;br /&gt;
 JFK&lt;br /&gt;
 Apollo 13&lt;br /&gt;
 That '70s Show&lt;br /&gt;
 The Wolf of Wall Street&lt;br /&gt;
 Freaks and Geeks&lt;br /&gt;
 I Love the '80s&lt;br /&gt;
 The Bridge on the River Kwai&lt;br /&gt;
 American Graffiti&lt;br /&gt;
 Apocalypse Now&lt;br /&gt;
 The Big Lebowski&lt;br /&gt;
 United 93&lt;br /&gt;
 I Love the '90s&lt;br /&gt;
 Hotel Rwanda&lt;br /&gt;
 I Love the 2000s&lt;br /&gt;
:(Do cut that out of this Talk Page when no longer necessary!)&lt;br /&gt;
:What I've so far put together (but not yet checked my link formats or WikiTabled) is...&lt;br /&gt;
 {{w|Memoirs of the Twentieth Century|}}, book written by Samuel Madden	1733	+264	1997-8&lt;br /&gt;
 {{w|Golf in the Year 2000|}}, novel written by J. McCullough	1892	+108	2000&lt;br /&gt;
 {{w|Looking Backward|}}, novel written by Edward Bellamy	1888	+112	2000&lt;br /&gt;
 {{w|Enoch Soames|}}, short story by Max Beerbohm	1916	(check!)	1897&lt;br /&gt;
 {{w|The Time Machine|}}, novel written by H.G. Wells	1895	(range!)	802,701 CE and +30 million years&lt;br /&gt;
 {{w|United 93 (film)|}}, film directed by Paul Greengrass	2006	-5	2001	&lt;br /&gt;
 {{w|I Love the '90s (U.S. TV series)|}}, TV miniseries on VH1	2004	-14..-5	1990-9	A programme by the same name was broadcast by the BBC in 2001&lt;br /&gt;
 {{w|Hotel Rwanda|}}, film directed by Terry George	2004	-10	1994	&lt;br /&gt;
 {{w|I Love the 2000s|}}, TV miniseries on VH1	2014	-14..-5	2000-2009	&lt;br /&gt;
:...but I'm probably duplicating someone else's efforts so by the time I get back to it you'll have a complete and better version online.  FYI if you're determined to build on this while I'm absent, however. [[Special:Contributions/141.101.98.192|141.101.98.192]] 14:22, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
This appears to be a log-log graph, but with abrupt changes in scale along one axis yielding cusps in the &amp;quot;still possible / obsolete&amp;quot; line.  Is there a name for that? -- [[Special:Contributions/108.162.210.169|108.162.210.169]] 14:29, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I created a basic table using 141.101.98.192's data - bits corrected. [[User:Jarod997|Jarod997]] ([[User talk:Jarod997|talk]]) 14:46, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in the process of writing a transcript myself. Mine is not formatted as a table; I am under the impression that this is the preferred approach to transcripts on this site. However, the existing table would be ''perfect'' in another section, where we can give more detail than a true transcript can/should provide (e.g. &amp;quot;this is a book written by X, here's the wikilink&amp;quot;, &amp;quot;this is an error, it should be X&amp;quot;, etc.) -- [[User:Peregrine|Peregrine]] ([[User talk:Peregrine|talk]]) 14:55, 25 February 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Not sure of the protocol here, but the trivia section currently states that &amp;quot;Rip Van Winkel&amp;quot; is a misspelling of &amp;quot;Rip Van Winkle.&amp;quot; The use of Winkel in the comic can be correct. (http://i.imgur.com/Z0adeEJ.jpg) The transcription also lists &amp;quot;Rip Can Winkel [sic]&amp;quot; but the comic actually uses &amp;quot;Rip Van Winkel.&amp;quot;&lt;/div&gt;</summary>
		<author><name>108.162.238.181</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1025:_Tumblr&amp;diff=83977</id>
		<title>1025: Tumblr</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1025:_Tumblr&amp;diff=83977"/>
				<updated>2015-02-03T17:29:27Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.238.181: /* Transcript */ Minor clarification. Cue Ball didn't say that last part. That was the punchline under the image.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1025&lt;br /&gt;
| date      = March 5, 2012&lt;br /&gt;
| title     = Tumblr&lt;br /&gt;
| image     = tumblr.png&lt;br /&gt;
| titletext = Dot Tumblr Dot Com, on the other hand, would be an awful name for a band, if only because of how hard it would be to direct people to your band's website.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Tumblr}} is a {{w|microblogging}} service, which has become a home for lots of animated {{w|Graphics Interchange Format|gif}}s and other internet {{w|Internet meme|memes}}, as well as other assorted novelties.&lt;br /&gt;
&lt;br /&gt;
The phrase that [[Cueball]] used to use when he heard a random phrase was &amp;quot;would be a good name for a band.&amp;quot; With the advent of Tumblr, his go-to response has shifted because of the proliferation of Tumblr blogs with strange names.&lt;br /&gt;
&lt;br /&gt;
[http://raccoonsexdungeon.tumblr.com Raccoon Sex Dungeon] is an actual Tumblr page. See [[#Trivia|trivia]] below.&lt;br /&gt;
&lt;br /&gt;
In the title text he muses on the fact that ''Dot Tumblr Dot Com'' would be an awful band name. There could be several reasons for this, but he mentions that it would be hard to direct fans to the band's website. As an example, someone who hears &amp;quot;www.thedottumblrdotcom.com&amp;quot; might instead write it out as &amp;quot;www.the.tumblr.com.com&amp;quot; since '.' is often pronounced as &amp;quot;dot.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Megan: You know those weird noises coming from my attic? Turns out some raccoons got in and were operating this, like, raccoon sex dungeon.&lt;br /&gt;
:Cueball: ...dot tumblr dot com.&lt;br /&gt;
:Punchline: ''For me, &amp;quot;...Dot tumblr dot com&amp;quot; has been gradually replacing &amp;quot;...would be a good name for a band.&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Randall ''did'' register a tumblr page called &amp;quot;[http://raccoonsexdungeon.tumblr.com Raccoon Sex Dungeon]&amp;quot; to coincide with this comic. He had already done the same with [http://wetriffs.com Wetriffs.com] (archive [http://web.archive.org/web/20130518191217/http://wetriffs.com/ here]) to coincide with Megan registering that domain in [[305: Rule 34]].&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Social networking]]&lt;/div&gt;</summary>
		<author><name>108.162.238.181</name></author>	</entry>

	</feed>