<?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.221.90</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.221.90"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/108.162.221.90"/>
		<updated>2026-04-17T02:11:09Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1638:_Backslashes&amp;diff=125804</id>
		<title>Talk:1638: Backslashes</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1638:_Backslashes&amp;diff=125804"/>
				<updated>2016-08-26T16:08:22Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It should be noted that this also occurs in almost every programming language where &amp;quot;\&amp;quot; is the escape character. i.e.&lt;br /&gt;
 print(&amp;quot;Hello&amp;quot;)&lt;br /&gt;
 &amp;gt; Hello&lt;br /&gt;
 print(&amp;quot;\&amp;quot;Hello\&amp;quot;&amp;quot;)&lt;br /&gt;
 &amp;gt; &amp;quot;Hello&amp;quot;&lt;br /&gt;
 print(&amp;quot;\\Hello\\&amp;quot;)&lt;br /&gt;
 &amp;gt; \Hello\&lt;br /&gt;
Oh, and by the way, isn't this the third comic to mention &amp;quot;Ba'al, the Soul Eater&amp;quot;? Maybe we should start a category. (Others are [http://www.explainxkcd.com/wiki/index.php/1246:_Pale_Blue_Dot 1246] (title text) and [http://www.explainxkcd.com/wiki/index.php/1419:_On_the_Phone 1419].)&lt;br /&gt;
[[Special:Contributions/173.245.54.29|173.245.54.29]] 06:14, 3 February 2016 (UTC)&lt;br /&gt;
:Did that before seeing you comment, so yes I agree. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 09:47, 3 February 2016 (UTC)&lt;br /&gt;
::But Davidy did not so the category has been deleted again. I have just cleaned up after my mess ;-) so there are no left over links to the dead category... --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 22:27, 8 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The last entry may also be an oblique reference to the infinitely-expandable recursive acronym &amp;quot;GOD = GOD Over Djinn&amp;quot; mentioned in Richard Hofstadter's Gödel, Escher, Bach.[[User:Taibhse|Taibhse]] ([[User talk:Taibhse|talk]]) 16:42, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
;I don't think the regex is invalid&lt;br /&gt;
&lt;br /&gt;
According to &amp;lt;tt&amp;gt;man grep&amp;lt;/tt&amp;gt; you need to specify the &amp;lt;tt&amp;gt;-E&amp;lt;/tt&amp;gt; option to use extended regex; without it unescaped parentheses are not interpreted, so they don't need to match.&lt;br /&gt;
&lt;br /&gt;
My - very wild - guess is that it was the command he used to find the line with the most special characters, but I am not confident enough to edit the article (if someone can confirm?). {{unsigned ip|141.101.66.83}}&lt;br /&gt;
&lt;br /&gt;
If it was supposed to do that, it doesn't work. Running it on my bash history matches no lines, and I have lots of special characters in there [[Special:Contributions/197.234.242.243|197.234.242.243]] 07:12, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Explain it to me like I'm dumb. What is this comic going on about? I think the explanation needs more examples like that hello, above, because that's almost understandable. --[[Special:Contributions/198.41.238.231|198.41.238.231]] 07:47, 3 February 2016 (UTC)&lt;br /&gt;
:I agree. But I cannot help either.--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 09:51, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
This is the third time Randall has mentioned Ba'al the Soul Eater xD [[User:International Space Station|International Space Station]] ([[User talk:International Space Station|talk]]) 08:26, 3 February 2016 (UTC)&lt;br /&gt;
:Yes, that was already mentioned a few hours before you comment, see the first comment. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 09:51, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
After passing the regex through bash, you get &amp;lt;nowiki&amp;gt;\\[[(].*\\[\])][^)\]]*$&amp;lt;/nowiki&amp;gt; That is, the literal character \, followed by [ or (, followed by any number of any characters, followed by \, followed by ] or ), followed by any number of characters that aren't ) or ], until the end of the line. [[Special:Contributions/108.162.216.44|108.162.216.44]] 08:33, 3 February 2016 (UTC)&lt;br /&gt;
:It sounds like you know what you are talking about. Anyone who can explain it good enough for the explanation, and correct the explanation of the title text if it is wrong to say that it would not work. I have added this as the reason for incomplete. But maybe also examples are needed for people with not programming skills/knowledge. We also enjoy xkcd ;-) --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 09:51, 3 February 2016 (UTC)&lt;br /&gt;
:I'm thinking that it's grepping for regular expressions that contain regular expressions. A regex containing &amp;lt;nowiki&amp;gt;&amp;quot;\[...\]&amp;quot;&amp;lt;/nowiki&amp;gt; or &amp;lt;nowiki&amp;gt;&amp;quot;\(...\)&amp;quot;&amp;lt;/nowiki&amp;gt; will match other regular expressions, as almost all non-trivial regexes use either character lists or groups. Now why out.txt is likely to contain not just regexes but rather regexes that search for regexes I have no idea - perhaps he had actually put too many backslashes in and he was trying to grep just for &amp;lt;nowiki&amp;gt;&amp;quot;[...]&amp;quot;&amp;lt;/nowiki&amp;gt; or &amp;lt;nowiki&amp;gt;&amp;quot;(...)&amp;quot;&amp;lt;/nowiki&amp;gt; (i.e. to locate probable regular expressions in out.txt, or anything else in parenthesis for that matter such as countless kinds of code/markup)? [[Special:Contributions/162.158.152.185|162.158.152.185]] 17:35, 4 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
For fun: &lt;br /&gt;
 cat ~/.bash_history | xargs -d &amp;quot;\n&amp;quot; -n 1 -I {} bash -c 'chars=&amp;quot;$(echo &amp;quot;$1&amp;quot; | grep -o &amp;quot;[a-zA-Z0-9 ]&amp;quot; | wc -l)&amp;quot;; echo &amp;quot;$(( 100 - $(( $chars * 100 / ${#1} )) )) $1&amp;quot;' _ {} | sort -nrk 1 | less&lt;br /&gt;
&lt;br /&gt;
Outputs your bash_history, ordered by relative gibberishness. This was copied by hand from desktop to mobile, might well have a few typos.--[[Special:Contributions/162.158.90.208|162.158.90.208]] 10:04, 3 February 2016 (UTC)&lt;br /&gt;
::Besides the fact that -d is a GNU extension to xargs (so it won't exist on OS X, FreeBSD, or anything else but Linux), this is a weird way to calculate gibberishness; I'm guessing functions, variable substitutions, .. and ./, etc. are going to swamp the more unreadable grep and the like. Plus, I think you need a uniq in there somewhere; otherwise, aren't the first few pages are all going to be filled with the 78 copies of &amp;quot;422 cd ..&amp;quot; that tied for most gibberishy in my last 500 commands? --[[Special:Contributions/162.158.255.82|162.158.255.82]] 22:51, 7 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The problem in the comic is not with regexes per se but with situations when the entered text or expression passes through several interpreters, like bash -&amp;gt; grep/sed/awk, or program text -&amp;gt; external shell command. In such cases, you have to escape backslashes for each program in the sequence, and it gets worse if you have 'real' backslashes in the final text that you're processing with the utilities (Windows' file paths, for example). See https://en.wikipedia.org/wiki/Leaning_toothpick_syndrome.&lt;br /&gt;
Feel free to lift this to the explanation page, since I'm not good at longer and more careful explanations than this one.&lt;br /&gt;
Also, gotta notice that Feedly stripped paired backslashes in the title text (probably passed it through some 'interpreter' embedded in its scripts). [[User:Aasasd|Aasasd]] ([[User talk:Aasasd|talk]]) 10:13, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:A funny comment about the MediaWiki software, which is even worse than this comic: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;Nikerabbit&amp;gt; I looked the code for rlike and didn't find where it does this. Can you point me to it? &amp;lt;vvv&amp;gt; $pattern = preg_replace( '!(\\\\\\\\\\\\\\\\)*(\\\\\\\\)?/!', '$1\\/', $pattern ); &amp;lt;Nikerabbit&amp;gt; I thought that was ascii art :)&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; ([https://phabricator.wikimedia.org/P110$275 source]) --[[Special:Contributions/162.158.91.215|162.158.91.215]] 10:18, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Interestingly, I first looked at this on my phone (using &amp;lt;strike&amp;gt;Chrome&amp;lt;/strike&amp;gt; Feedly for Android), but the title text did not display correctly in that the backslashes didn't appear (which was a little confusing!). In Chrome on my Windows desktop, the title text appeared correctly. [[User:Jdluk|Jdluk]] ([[User talk:Jdluk|talk]]) 11:36, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
enough with the harry potter fancruft. &amp;quot;elder&amp;quot; is a [[Wiktionary:elder|perfectly good word]]. just because you came across it for the first time in harry potter means you are *typing carefully* the kind of person that likes harry potter. unless this is a ''harry potter reference'' wiki, of course. in which case i'll prepare a complete list of every word that appears both here and there and put a list on every page. oh, right, no i won't. --[[Special:Contributions/141.101.106.161|141.101.106.161]] 12:41, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Remember that &amp;quot;Elder&amp;quot; is used in a lot of RPGs to denote high level enemies or items. I feel like that's what Randall's referring to here, more than Harry Potter or the general sense of the term &amp;quot;Elder.&amp;quot; {{unsigned ip|108.162.245.156}}&lt;br /&gt;
: +1. Between the fact that harry potter (, ages, or tribes) aren't mentioned anywhere else in the text and the comic being a progressive list, I see this being the most likely explanation. Plus the metion of demons, which are easily the most* common usage of the modifier.&lt;br /&gt;
:: (*) or second most, after &amp;quot;elder gods&amp;quot;, who are, let's face it, also demons. [[Special:Contributions/162.158.180.125|162.158.180.125]] 14:41, 3 February 2016 (UTC)&lt;br /&gt;
::: I'm pretty sure that &amp;quot;Elder backslash&amp;quot; is in reference to the &amp;quot;Elder gods&amp;quot; of Lovecraft. [[Special:Contributions/173.245.54.35|173.245.54.35]] 16:51, 3 February 2016 (UTC)&lt;br /&gt;
:::: Note also that it's called 'The Elder Wand' not as an intensifier, as in this comic and the other examples given, but because it is literally ''made from the wood of an [https://en.wikipedia.org/wiki/Sambucus_nigra Elder Tree]'' I'm pretty sure it's not an intentional reference. -Graptor [[Special:Contributions/173.245.54.23|173.245.54.23]] 19:29, 3 February 2016 (UTC)&lt;br /&gt;
::::: If it's an intentional reference to anything, it's to Lovecraft (or to something similar). I suspect the Elder Wand was an intentional pun by Rowling, however. --[[Special:Contributions/162.158.180.137|162.158.180.137]] 04:16, 4 February 2016 (UTC)&lt;br /&gt;
::::: Since no-one else seemed to want to, I just restructured that paragraph to make it more clear that if anything Harry Potter was inspired by the older examples, not the other way around. Expanded the LOTR reference and added DnD. If anything Randall is likely to be referencing either the Lovecraft references, or the concept of Elder in general. [[Special:Contributions/141.101.64.173|141.101.64.173]] 11:50, 4 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Attempting to add to the discussion: This regex is not necessarily invalid or incomprehensible.  It looks like he was looking for a line with a regular expression or definitely some code.  You just have to work your way through the backslashes.  Although it might be invalid depending on the precise rules.  He has some unescaped closing brackets and closing parenthesis.  If these have to always be escaped then the regex is invalid.  If however you  don't have to escape a closing bracket with no opening bracket, then things are fine.  I'm not familiar enough with grep's regex parser to know how it handles that edge case.  Presuming those unescaped paren and brackets are fine, his regex searches for:&lt;br /&gt;
&lt;br /&gt;
1. A backslash&lt;br /&gt;
&lt;br /&gt;
2. An opening bracket&lt;br /&gt;
&lt;br /&gt;
3. An opening parenthesis (this is a character set but the only character in it is an opening paren)&lt;br /&gt;
&lt;br /&gt;
4. Any number of any characters&lt;br /&gt;
&lt;br /&gt;
5. A backslash&lt;br /&gt;
&lt;br /&gt;
6. An opening bracket&lt;br /&gt;
&lt;br /&gt;
7. A closing bracket&lt;br /&gt;
&lt;br /&gt;
8. A closing paren (presuming it doesn't have to be escaped when there is no opening paren)&lt;br /&gt;
&lt;br /&gt;
9. A closing bracket (presuming it doesn't have to be escaped when there is no opening bracket)&lt;br /&gt;
&lt;br /&gt;
10. Any number of character that are not a closing paren or closing bracket&lt;br /&gt;
&lt;br /&gt;
11. The end of the line&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Basically he is looking for a string that looks like:&lt;br /&gt;
&lt;br /&gt;
\[(AAAAA\[])]AAAAA&lt;br /&gt;
&lt;br /&gt;
Looks like a regex to me, and it looks like this regex also doesn't escape closing paren/brackets that don't have an opening paren/bracket, so I'm guessing that he knows what he is doing and his regex is fine.  Maybe he was playing regex golf?&lt;br /&gt;
[[User:Cmancone|Cmancone]] ([[User talk:Cmancone|talk]])cmancone&lt;br /&gt;
&lt;br /&gt;
Ninjaed by Cmancone, above. I agree with that result in every respect except for the start-of-string being potentially anything, but putting my own analysis in here because it took long enough to type!&lt;br /&gt;
&lt;br /&gt;
Depth-of-backslash might depend upon depth of utility. In Perl, &amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;-quotes (among others) treat everything within as literal whilst &amp;quot;&amp;quot;-quotes (and variations) interpolates any special characters, variables, etc that you put in it.  (Search for &amp;quot;Quote and Quote-like operators&amp;quot; in your favourite PerlDocs source.)  '\sss' is a literal backslash followed by three 's' characters , while &amp;quot;\sss&amp;quot; is the special \s escape (a whitespace) followed by two further regular characters.  You might need to define the first when you need to use it to provide a not-previously-escaped \s so that it might be escaped within another context.  ''Or'' you define it as &amp;quot;\\sss&amp;quot; (escaped-\) the first time, as equivalent to '\sss'.  But '\\sss' would be a literal that, later, could be interpreted as an escaped-\ to the input of a further context where the \s finally becomes 'match a whitespace'.&lt;br /&gt;
 &lt;br /&gt;
'\\\sss' would be literal, whilst &amp;quot;\\\sss&amp;quot; could be equivalent to '\ ss' (literal backslash, literal space, rest of characters).  Then, instead of literal '\\sss', for some purpose, you could interpolate two escaped-backslashes &amp;quot;\\\\sss&amp;quot;... and so on.&lt;br /&gt;
 &lt;br /&gt;
Meanwhile I ''think'', just from visual inspection, &amp;quot;'''\\\[[(].*\\\[\])][^)\]]*$'''&amp;quot; in Bash should obey the interpolation rules quite nicely.  The first two characters must be a literal backslash (from the escaped-backslash) and a literal open-square bracket (again, escaped).  The next open-square and the close-square shortly after depict a character class that contains only an open-parenthesis, and could have been written as '''\('''.&lt;br /&gt;
 &lt;br /&gt;
The '''.*''' indicates zero-or-more (the asterix) instances of ''any'' character (the dot).  There is then a literal backslash (from the next '''\\''' duo) and a literal open-square (the '''\[''' pair) and close-square (the '''\]''' pair).  The ''')''' is literal and does not need escaping (as a parenthesis group had not yet been opened), as is the next ''']''' character.  To be sure, I would have written these two as the pair escapes '''\)\]''', but horses for courses...&lt;br /&gt;
 &lt;br /&gt;
Then there's another character class (the next '''[''' and the final ''']''') required zero-or-more times (the asterix) to use up all the rest of the characters to the end (the ending '''$''' character).  As there was no '''^''' character (a.k.a. caret/circumflex/etc) at the start, the match isn't bothered about what unmatched characters appear before the original '''\('''.  This character class, however, starts with a '''^''' which in this context (the very first character of a character-class definition, not somewhere where an entire match-string starts) indicates negation of the following selection, so it is all characters ''but'' those specified, which is the regular close-parenthesis and (because it needs to be contained within a '''[]''' pair) the escaped close-square.&lt;br /&gt;
 &lt;br /&gt;
So, all matching strings must start with '''\[(''', i.e. the backslash, open-square and open-paren.  They can continue with ''any'' further text, before then having a '''\[])]''', i.e. backslash, open-and-close-squares and close-paren, close-square.  After this, the match continues just as long as there are no non-closing square/classic brackets before the ending.&lt;br /&gt;
 &lt;br /&gt;
The minimum matching literal string would be '''\[(\[])]''' with longer variants being of the form '''X\[(Y\[])]Z''' where X and Y can be replaced by anything (or be absent), and Z can be replaced by anything (or absent!) ''so long as it doesn't contain possibly relevent close-brackets!''. The latter stipulation is likely because the Y (and X) ''is'' allowed to contain these characters, and for some reason you don't want to confuse the test by finding some other '''\[])]''' segment within the X/Y-zones.  (In this context, it doesn't actually seem to matter too much.  But it might do in ways I haven't spotted or just be a hang-over from a prior permutation of the test.)&lt;br /&gt;
 &lt;br /&gt;
The &amp;quot;grep -o&amp;quot; function is working on the output to the file being '''cat'''ed (there are alternate ways of doing this that some people might prefer), to only accept the lines in the file that match the '''X\[(Y\[])]Z''' string.  These lines would appear to be lines of out.txt (a fairly generic name that reveals little to its original purpose) that are well-formed for some other purpose.  A safety-escaped (i.e. not to be taken literally by any simple parser) '''[]'''-grouping containing a '''()'''-group (''not'' escaped, perhaps reasonably in context) containing potentially random text followed by an empty '''[]''' pair (again, safety-escaped).  Depending on the source, the empty '''[]'''-pair could mean many things, as with the other layers.  And the lines may end with any further text.&lt;br /&gt;
 &lt;br /&gt;
The &amp;quot;out.txt&amp;quot; file might be the result of a prior Grep (string-search function) quote possibly scanning code for lines of particular importance by another pattern and dumping the results to out.txt for further perusal.  And then Randall finds the need to dig further into the first result by extracting just those already selected that all have the '''X\[(Y\[])Z]'''-ish pattern to them.&lt;br /&gt;
 &lt;br /&gt;
But I could be wrong, and that's way too long for an official explanation.&lt;br /&gt;
(Perhaps just something like the penultimate paragraph, if we're not entirely mistaken?) [[Special:Contributions/162.158.152.89|162.158.152.89]] 14:14, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The regex is supposed to be looking for:&lt;br /&gt;
 \\\      backslash&lt;br /&gt;
 [[(]     [ or (&lt;br /&gt;
 .*       any character (repeated 0 or more times)&lt;br /&gt;
 space    space&lt;br /&gt;
 \\\      backslash&lt;br /&gt;
 [[\])]   probably meant to match either [, ] or ). However, it's not correct, it instead matches the literal characters [)]&lt;br /&gt;
 [^)\]]*  probably meant to match any character that isn't ) or ], repeated. Instead it means one character that's not a ), and then a ] zero or more times&lt;br /&gt;
 $        end of string&lt;br /&gt;
&lt;br /&gt;
The first problem is that you're not supposed to escape ] in a [...], and it also has to be first in the grouping (unless negated with a ^) It should be [][)] or something similar.&lt;br /&gt;
&lt;br /&gt;
The second problem is the same. The last bit should be [^])]*$ and not [^)\]]*$. [[User:Khris|Khris]] ([[User talk:Khris|talk]]) 14:24, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I was reading through the regex, if using grep you run into an error with an unmatched &amp;quot;)&amp;quot;.  Removing this gets a string such as \[(AAAAA\[]]AAAAA$  http://regexr.com/3cng8 [[Special:Contributions/162.158.214.230|162.158.214.230]] 14:42, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The regex relies on several special cases (*surprise*).&lt;br /&gt;
First: bash double-quote expansion (see [https://www.gnu.org/software/bash/manual/html_node/Double-Quotes.html#Double-Quotes]). Perhaps non-intuitively, \\\ followed by a character that \ doesn't escape is an escaped backslash followed by a literal backslash, effectively the same as \\\\ followed by that same non-escaped character.  After bash double-quote expansion, this results in:&lt;br /&gt;
&lt;br /&gt;
\\[[(].*\\[\])][^)\]]*$&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
grep interprets this as:&lt;br /&gt;
&lt;br /&gt;
# any leading non-\ characters&lt;br /&gt;
# literal backslash&lt;br /&gt;
# character class containing [ and (&lt;br /&gt;
# zero or more *any* characters&lt;br /&gt;
# another literal backslash&lt;br /&gt;
# yet another literal backslash, via a character class containing only a backslash.  Note this does not contain an escaped ], as it might appear at first glance.  See [http://www.gnu.org/software/grep/manual/html_node/Character-Classes-and-Bracket-Expressions.html]&lt;br /&gt;
# literal )&lt;br /&gt;
# literal ]&lt;br /&gt;
# character class of anything except ), \&lt;br /&gt;
# zero or more ]&lt;br /&gt;
# end of line&lt;br /&gt;
&lt;br /&gt;
Matching examples:&lt;br /&gt;
*echo 'asdf\[asdfasdf\\)]a]]]]]]' | grep -o &amp;quot;\\\[[(].*\\\[\])][^)\]]*$&amp;quot;&lt;br /&gt;
*echo '\(\\)]P' | grep -o &amp;quot;\\\[[(].*\\\[\])][^)\]]*$&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Special:Contributions/108.162.216.34|108.162.216.34]] 16:14, 3 February 2016 (UTC)rb&lt;br /&gt;
&lt;br /&gt;
One key thing to understand is that \ is not a special character when it's in a bracket expression - you can't escape characters in bracket expressions. So [^)\] simply means any character other then ) or \. Also, ( and ) are just regular characters unless they are escaped in basic regular expressions - extended regular expressions reverse this rule. {{unsigned|Kalfalfa}}&lt;br /&gt;
&lt;br /&gt;
I don't know about the regular expression in the title text, but I think the explanation is incorrect in that it starts off talking about regular expressions. Escaping backslashes is an issue with strings in programming in general. [[Special:Contributions/173.245.54.46|173.245.54.46]] 17:12, 3 February 2016 (UTC)&lt;br /&gt;
----&lt;br /&gt;
I suspect that Randall may have used the regexp in the title text to *find* malformed regular expressions in a file (out.txt) that he (or someone) had previously filled with output from some error message (or collection of error messages, or at least the output of something where a regular expression had been expected to work but had not worked as expected). [[Special:Contributions/162.158.252.227|162.158.252.227]] 19:06, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
You can use metacharacters in character classes, the only metacharacters in a character class that must be escaped are the closing square bracket (]), the backslash (\), the hyphen, and the carat and hyphen (^) if they are the first listed item in the set. The closing square bracket requires escaping because including it without would signal the end of the set otherwise, which then means the backslash must also be escaped. The hyphen must be escaped because, without it, it signals a range (unless it is listed first, then it is literal without escaping). Carat when listed first because otherwise it signals a negative set.&amp;lt;br&amp;gt;&lt;br /&gt;
Therefore, the end of the title text regex matches a backslash followed by either ] or ), which is then followed by any number (including none) of characters so long as they are not ] nor ) which means the whole regex can match &amp;quot;&amp;lt;span style=&amp;quot;color:#040;&amp;quot;&amp;gt;\[something\] more&amp;lt;/span&amp;gt;&amp;quot; or &amp;quot;&amp;lt;span style=&amp;quot;color:#040;&amp;quot;&amp;gt;\(something\)more&amp;lt;/span&amp;gt;&amp;quot; or &amp;quot;&amp;lt;span style=&amp;quot;color:#040;&amp;quot;&amp;gt;\[something\) more&amp;lt;/span&amp;gt;&amp;quot; as well as &amp;quot;&amp;lt;span style=&amp;quot;color:#040;&amp;quot;&amp;gt;\[something\]&amp;lt;/span&amp;gt;&amp;quot;. — [[Special:Contributions/162.158.255.117|162.158.255.117]] 01:16, 4 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'll add that I use an ''almost identical'' regex in my mail server for matching mailing-list subject lines which often have a format of &amp;quot;&amp;lt;span style=&amp;quot;color:#040;&amp;quot;&amp;gt;[Listname] normal subject line&amp;lt;/span&amp;gt;&amp;quot; which made it pretty recognizable to me. — [[Special:Contributions/162.158.255.117|162.158.255.117]] 01:24, 4 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Example of a match&lt;br /&gt;
&lt;br /&gt;
First, the shell will do some escaping substitution. So, in order to easily read it, let's see what grep really receives:&lt;br /&gt;
&lt;br /&gt;
 $ echo &amp;quot;\\\[[(].*\\\[\])][^)\]]*$&amp;quot;&lt;br /&gt;
 \\[[(].*\\[\])][^)\]]*$&lt;br /&gt;
&lt;br /&gt;
Let's break it out:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;\\&amp;lt;/code&amp;gt; matches a &amp;lt;code&amp;gt;\&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;[[(]&amp;lt;/code&amp;gt; matches either a &amp;lt;code&amp;gt;[&amp;lt;/code&amp;gt; or a &amp;lt;code&amp;gt;(&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;.*&amp;lt;/code&amp;gt; matches any series of characters until the next match&lt;br /&gt;
* &amp;lt;code&amp;gt;\\&amp;lt;/code&amp;gt; matches a &amp;lt;code&amp;gt;\&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;[\]&amp;lt;/code&amp;gt; matches a &amp;lt;code&amp;gt;\&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;)]&amp;lt;/code&amp;gt; matches &amp;lt;code&amp;gt;)]&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;[^)\]&amp;lt;/code&amp;gt; matches anything but &amp;lt;code&amp;gt;)&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;\&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;]*&amp;lt;/code&amp;gt; matches any number of &amp;lt;code&amp;gt;]&amp;lt;/code&amp;gt; (including none)&lt;br /&gt;
* &amp;lt;code&amp;gt;$&amp;lt;/code&amp;gt; matches the end of the string&lt;br /&gt;
&lt;br /&gt;
So the string '''\[aaa\]\\)]a]]]]]]''' matches! {{unsigned ip|108.162.228.167}}&lt;br /&gt;
&lt;br /&gt;
...Maybe it's meant to search for all Game Grumps transcripts which make mention of the &amp;quot;[http://gamegrumps.wikia.com/wiki/Grep Grep]&amp;quot; gag? [[Special:Contributions/108.162.216.55|108.162.216.55]] 15:53, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
...Wow, guys, and here I was thinking he wanted to put the cat out, when the cat didn't want to go out.... [[Special:Contributions/108.162.249.158|108.162.249.158]] 04:03, 4 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
What I think is that Randall probably ''intended'' the regex to match &amp;quot;backslash, opening round or square bracket, anything, backslash, closing round or square bracket, anything that doesn't involve closing round or square brackets&amp;quot;, since (unlike most other possibilities given) that actually looks like something one might want to search for. Whether it ''does'', in fact, match that or something else (or indeed anything at all) is another question entirely. (For all we know, it didn't work, Randall figured out it didn't, and wrote the correct thing the next line over.)&amp;lt;br&amp;gt;Unrelatedly: this comic (and the backslash proliferation in general) reminded me of the Telnet Song. --[[Special:Contributions/162.158.180.137|162.158.180.137]] 04:16, 4 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
That explanation is wrong: &amp;lt;code&amp;gt;[\]&amp;lt;/code&amp;gt; does not match a literal backslash; it would still need to be escaped inside the brackets. That backslash escapes the next character, a ], so the group doesn't end there. The actual expression there is &amp;lt;code&amp;gt;[\])]&amp;lt;/code&amp;gt;, a character group containing an escaped ] and a ). Just like the first part. It is most likely intended to catch content surrounded by [ ] or ( ). [[Special:Contributions/141.101.104.15|141.101.104.15]] 13:43, 4 February 2016 (UTC)&lt;br /&gt;
:To clarify: this makes the expression catch anything that starts with a block surrounded by escaped round or square brackets. So stuff like '''\(Hello world\)more text here''' but with either round or square brackets (or combinations, since there's nothing enforcing they have to match. I'd have made it an OR case with two groups with matching brackets, personally) -[[Special:Contributions/141.101.104.15|141.101.104.15]] 13:51, 4 February 2016 (UTC)&lt;br /&gt;
:You're making the same mistake Randall did: while many (most?) regex dialects use \ as escape inside a character class, this is not true for grep's default syntax. I've expanded that interpretation in my comment below, however the analysis by 108.162.228.167 is a correct explanation of how this expression is ''actually'' interpreted by grep. --[[Special:Contributions/141.101.75.185|141.101.75.185]] 15:42, 4 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Your analysis is thorough and correct, however it is unlikely this is what the regex was intended to accomplish. More likely, Randall is more accustomed to other regex dialects such as Perl(-compatible) regex where a backslash ''does'' work to escape special characters inside a character class.  Under that assumption the regex (with some whitespace inserted for readability) would break up as:&lt;br /&gt;
* &amp;lt;code&amp;gt;\\ [[(]&amp;lt;/code&amp;gt; an escaped opening bracket or paren&lt;br /&gt;
* &amp;lt;code&amp;gt;.*&amp;lt;/code&amp;gt; anything&lt;br /&gt;
* &amp;lt;code&amp;gt;\\ [\])]&amp;lt;/code&amp;gt; an escaped closing bracket or paren&lt;br /&gt;
* &amp;lt;code&amp;gt;[^)\]]* $&amp;lt;/code&amp;gt; no closing bracket or paren occurring on the remainder of the line&lt;br /&gt;
Although the final condition is still a bit obscure, this still makes a ''lot'' more sense. Unfortunately it also crushes Randall's hope the regex worked as intended, since this simply isn't how the expression is parsed with grep's default syntax (which is why I always use &amp;lt;code&amp;gt;grep -P&amp;lt;/code&amp;gt;). --[[Special:Contributions/141.101.75.185|141.101.75.185]] 15:34, 4 February 2016 (UTC)&lt;br /&gt;
----&lt;br /&gt;
Did anyone notice the [https://en.wikipedia.org/wiki/Cat_%28Unix%29#Useless_use_of_cat Useless Use of Cat]? [[Special:Contributions/141.101.106.101|141.101.106.101]] 19:36, 4 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yup - I hereby award Randall with the Useless Use of Cat Award of the day. Cherish it.&lt;br /&gt;
:[[User:Zedn00|Zedn00]] ([[User talk:Zedn00|talk]]) 03:51, 5 February 2016 (UTC) Zedn00&lt;br /&gt;
----&lt;br /&gt;
;Changed Regex&lt;br /&gt;
At some point before 2016-02-09 18:00 +0100, Randall has modified the bash command in the title text!&lt;br /&gt;
&lt;br /&gt;
Original command:&lt;br /&gt;
 cat out.txt | grep -o &amp;quot;\\\[[(].*\\\[\])][^)\]]*$&amp;quot;&lt;br /&gt;
New command:&lt;br /&gt;
 cat out.txt | grep -o &amp;quot;[[(].*[])][^)]]*$&amp;quot;&lt;br /&gt;
&lt;br /&gt;
For the old command, 108.162.228.167's and 108.162.216.34's explanations above were correct.&lt;br /&gt;
&lt;br /&gt;
The new command matches:&lt;br /&gt;
 [[(]  either a '[' or a '('&lt;br /&gt;
 .*    an unbounded and possibly empty sequence of arbitrary characters&lt;br /&gt;
 [])]  either a ']' or a ')'&lt;br /&gt;
 [^)]  any character except for a ')'&lt;br /&gt;
 ]*    an unbounded and possibly empty sequence of ']'&lt;br /&gt;
 $     anchored at end of line&lt;br /&gt;
&lt;br /&gt;
It now e.g. matches '''123[abc.&amp;lt;&amp;gt;)x]]]]]''':&lt;br /&gt;
 $ echo &amp;quot;123[abc.&amp;lt;&amp;gt;)x]]]]]&amp;quot; | tee /dev/stderr | grep -o &amp;quot;[[(].*[])][^)]]*$&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This makes hardly more sense than the original command.&lt;br /&gt;
--[[User:Markus|Markus]] ([[User talk:Markus|talk]]) 17:38, 9 February 2016 (UTC)&lt;br /&gt;
----&lt;br /&gt;
Funny enough, I'm literally looking at some other dev's code right now that actually implements an eight backslash regex sequence, with just the comment &amp;quot;backslash&amp;quot;. I'm still scratching my head over what they were trying to accomplish or even communicate with this. [[User:Domino|Domino]] ([[User talk:Domino|talk]]) 21:45, 16 August 2016 (UTC)domino&lt;br /&gt;
----&lt;br /&gt;
I believe the regex is a reference to xkcd 1313 (Regex Golf)&lt;br /&gt;
[[Special:Contributions/108.162.221.90|108.162.221.90]] 16:08, 26 August 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=712:_Single_Ladies&amp;diff=120557</id>
		<title>712: Single Ladies</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=712:_Single_Ladies&amp;diff=120557"/>
				<updated>2016-05-20T22:00:21Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ corrected another minor grammatical error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 712&lt;br /&gt;
| date      = March 10, 2010&lt;br /&gt;
| title     = Single Ladies&lt;br /&gt;
| image     = single_ladies.png&lt;br /&gt;
| titletext = Using a ring to bind someone you covet into your dark and twisted world? Wow, just got the subtext there. Also, the apparently eager Beyoncé would've made one badass Nazgûl.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The character in armor is {{w|Sauron}}, the main villain in ''{{w|The Lord of the Rings}}'' trilogy. In the backstory, he takes control of Middle-earth by giving several {{w|Rings of Power}} as &amp;quot;gifts&amp;quot; to the great kings of  men after teaching the craft to dwarves and elves. However, he also forged a master ring, the {{w|One Ring}}, to control the {{w|Rings of Power}} and ultimately rule over the kings. However, the elves were not deceived by his plan and took off their rings. Enraged, Sauron starts {{w|War of the Elves and Sauron}}. After losing that war Sauron started a religion in {{w|Númenor}}. After using his influence to convince Númenóreans to attack {{w|Aman}}, the island is destroyed by {{w|Eru}}. Then Sauron starts {{w|Last Alliance of Elves and Men|War against the Last Alliance}}. Sauron is eventually defeated in said war by {{w|Isildur}} who cuts off his ring finger. The books tell the story of a small group of adventurers who rediscover the lost Ring and attempt to destroy it, as Sauron's army gathers its forces to attempt to reclaim the Ring for their master.&lt;br /&gt;
&lt;br /&gt;
{{w|Gil-galad}} is a high Elven-king, and {{w|Galadriel}} is an Elf of royal blood who serves as a matriarch of sorts to the remnants of the Elven race. {{w|Lindon}} is a location on the westernmost side of the continent, serving as the final transition point for Elves passing on to the Undying lands. Sauron refers to an actual event in the first panel, when he tried to gain control of Lindon through deceit; Galadriel and Gil-galad saw through his disguise and cast him out. &lt;br /&gt;
&lt;br /&gt;
In the second panel Sauron is talking about {{w|Eru Ilúvatar}} the creator in Tolkien's Middle-earth legendarium. While Eru created elves and men it was {{w|Aulë}} who created Dwarves, Eru gave them life. Orcs were Elves twisted by {{w|Morgoth}} so Sauron, being his principal lieutenant, would be a natural leader to orcs by the time he created the One Ring.&lt;br /&gt;
&lt;br /&gt;
The song playing in the background is &amp;quot;All the Single Ladies&amp;quot; by Beyoncé, which includes the line &amp;quot;If you liked it then you should have put a ring on it,&amp;quot; referring to ''{{w|wedding rings}}''. This is shown as being what inspired Sauron to devise his plan to control others through the gift of rings.&lt;br /&gt;
&lt;br /&gt;
The title text refers to an often-suggested fan theory that the One Ring ''is'' actually meant to be symbolic of marriage. The {{w|Nazgûl}}, also known as ringwraiths, are the former nine human kings who were bound by the rings, now a band of nine servants to Sauron who constantly seek out the Ring for him.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Beret Guy is talking to Sauron; Sauron is wearing his trademark helmet, but his head is downcast. Music plays in the background.]&lt;br /&gt;
:''Music: All the single ladies, All the single ladies''&lt;br /&gt;
:Beret Guy: Hey Sauron, why so glum?&lt;br /&gt;
:Sauron: Gil-galad saw through me and threw me out of Lindon. Galadriel as well. I'll never rule ''anyone'' at this rate.&lt;br /&gt;
&lt;br /&gt;
:''Music: All the single ladies, All the single ladies''&lt;br /&gt;
:Sauron: Eru created such beautiful creatures - Elves and men and dwarves - and all I've got are these stupid orcs.&lt;br /&gt;
&lt;br /&gt;
:''Music: 'Cause if you liked it then you should have put a ring on it''&lt;br /&gt;
:Sauron: I mean, I-&lt;br /&gt;
&lt;br /&gt;
:[Sauron is suddenly quiet.]&lt;br /&gt;
:''Music: If you liked it then you should have put a ring on it''&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Randall used the wrong &amp;quot;û&amp;quot; character when editing the title text; the character he used was U+0217 LATIN SMALL LETTER U WITH INVERTED BREVE, but the correct character is U+00FB LATIN SMALL LETTER U WITH CIRCUMFLEX. They look very similar at standard font sizes, but the inverted breve is curved, while the circumflex is pointed.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Romance]]&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;br /&gt;
[[Category:LOTR]]&lt;br /&gt;
[[Category:Songs]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=712:_Single_Ladies&amp;diff=120556</id>
		<title>712: Single Ladies</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=712:_Single_Ladies&amp;diff=120556"/>
				<updated>2016-05-20T21:57:43Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Corrected a minor grammatical error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 712&lt;br /&gt;
| date      = March 10, 2010&lt;br /&gt;
| title     = Single Ladies&lt;br /&gt;
| image     = single_ladies.png&lt;br /&gt;
| titletext = Using a ring to bind someone you covet into your dark and twisted world? Wow, just got the subtext there. Also, the apparently eager Beyoncé would've made one badass Nazgûl.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The character in armor is {{w|Sauron}}, the main villain in ''{{w|The Lord of the Rings}}'' trilogy. In the backstory, he takes control of Middle-earth by giving several {{w|Rings of Power}} as &amp;quot;gifts&amp;quot; to the great kings of  men after teaching the craft to dwarves and elves. However, he also forged a master ring, the {{w|One Ring}}, to control the {{w|Rings of Power}} and ultimately rule over the kings. However, the elves were not deceived by his plan and took off their rings. Enraged, Sauron starts {{w|War of the Elves and Sauron}}. After losing that war Sauron started religion in {{w|Númenor}}. After using his influence to convince Númenóreans to attack {{w|Aman}}, the island is destroyed by {{w|Eru}}. Then Sauron starts {{w|Last Alliance of Elves and Men|War against the Last Alliance}}. Sauron is eventually defeated in said war by {{w|Isildur}} who cuts off his ring finger. The books tell the story of a small group of adventurers who rediscover the lost Ring and attempt to destroy it, as Sauron's army gathers its forces to attempt to reclaim the Ring for their master.&lt;br /&gt;
&lt;br /&gt;
{{w|Gil-galad}} is a high Elven-king, and {{w|Galadriel}} is an Elf of royal blood who serves as a matriarch of sorts to the remnants of the Elven race. {{w|Lindon}} is a location on the westernmost side of the continent, serving as the final transition point for Elves passing on to the Undying lands. Sauron refers to an actual event in the first panel, when he tried to gain control of Lindon through deceit; Galadriel and Gil-galad saw through his disguise and cast him out. &lt;br /&gt;
&lt;br /&gt;
In the second panel Sauron is talking about {{w|Eru Ilúvatar}} the creator in Tolkien's Middle-earth legendarium. While Eru created elves and men it was {{w|Aulë}} who created Dwarves, Eru gave them life. Orcs were Elves twisted by {{w|Morgoth}} so Sauron, being his principal lieutenant, would be a natural leader to orcs by the time he created the One Ring.&lt;br /&gt;
&lt;br /&gt;
The song playing in the background is &amp;quot;All the Single Ladies&amp;quot; by Beyoncé, which includes the line &amp;quot;If you liked it then you should have put a ring on it,&amp;quot; referring to ''{{w|wedding rings}}''. This is shown as being what inspired Sauron to devise his plan to control others through the gift of rings.&lt;br /&gt;
&lt;br /&gt;
The title text refers to an often-suggested fan theory that the One Ring ''is'' actually meant to be symbolic of marriage. The {{w|Nazgûl}}, also known as ringwraiths, are the former nine human kings who were bound by the rings, now a band of nine servants to Sauron who constantly seek out the Ring for him.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Beret Guy is talking to Sauron; Sauron is wearing his trademark helmet, but his head is downcast. Music plays in the background.]&lt;br /&gt;
:''Music: All the single ladies, All the single ladies''&lt;br /&gt;
:Beret Guy: Hey Sauron, why so glum?&lt;br /&gt;
:Sauron: Gil-galad saw through me and threw me out of Lindon. Galadriel as well. I'll never rule ''anyone'' at this rate.&lt;br /&gt;
&lt;br /&gt;
:''Music: All the single ladies, All the single ladies''&lt;br /&gt;
:Sauron: Eru created such beautiful creatures - Elves and men and dwarves - and all I've got are these stupid orcs.&lt;br /&gt;
&lt;br /&gt;
:''Music: 'Cause if you liked it then you should have put a ring on it''&lt;br /&gt;
:Sauron: I mean, I-&lt;br /&gt;
&lt;br /&gt;
:[Sauron is suddenly quiet.]&lt;br /&gt;
:''Music: If you liked it then you should have put a ring on it''&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* Randall used the wrong &amp;quot;û&amp;quot; character when editing the title text; the character he used was U+0217 LATIN SMALL LETTER U WITH INVERTED BREVE, but the correct character is U+00FB LATIN SMALL LETTER U WITH CIRCUMFLEX. They look very similar at standard font sizes, but the inverted breve is curved, while the circumflex is pointed.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Romance]]&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;br /&gt;
[[Category:LOTR]]&lt;br /&gt;
[[Category:Songs]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=433:_Journal_5&amp;diff=117805</id>
		<title>433: Journal 5</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=433:_Journal_5&amp;diff=117805"/>
				<updated>2016-04-14T05:30:53Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 433&lt;br /&gt;
| date      = June 6, 2008&lt;br /&gt;
| title     = Journal 5&lt;br /&gt;
| image     = journal_5.png&lt;br /&gt;
| titletext = 'Pick you up at eight?' 'Nine. I've got to re-mine the driveway.'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
In [[Journal]], [[Black Hat]] explains to [[Cueball]] that a hobby of his is to pretend to write in a journal while on the subway, acting embarrassed if anyone sees. He then proceeds to silently scorn the person once they give him any kind of reassurance.&lt;br /&gt;
&lt;br /&gt;
In [[Journal 2]], however, [[Danish]] sees through his ruse. She counteracts it by proving that she understands him, and attempts to resign him to the fact that he will never see her again, thus robbing him of the satisfaction of a proper social connection. She leaves, taking his hat in the process. &lt;br /&gt;
&lt;br /&gt;
Initially stunned, he at last regained his hat in [[Journal 3]], the trademark of his personality and attitude, leaving him with the upper hand.&lt;br /&gt;
&lt;br /&gt;
In [[Journal 4]], however, he is overcome with emotions, to the extend that he has even taken his black hat of while sitting head in hand on a bench, wondering in the title text why he would feel any emotions when he has a hat.&lt;br /&gt;
&lt;br /&gt;
Now, in Journal 5, Black Hat parks his car and soon finds himself on the doorstep of Danish house. He comes to tell her that he gives up and that she wins, because he just has to know who she is. This is very uncharacteristic of Black Hat. He then tries to tell her that he thinks they understand each other's personalities and that this means something to him. He is obviously smitten with her on some level. But all she does about this initially is use her remote control to set off the mines she installed  in the driveway where Black Hat's car is parked.&lt;br /&gt;
&lt;br /&gt;
But, even in his state of love, Black Hat had spotted these mines and moved them to her garage. So when Danish sets them off she destroys her own garage (and possibly her car) instead of Black Hat's car. When he tells her about moving them she is impressed and acknowledges this by saying ''Touché''. Maybe this is when she also begins to respect him in her own weird manner.&lt;br /&gt;
&lt;br /&gt;
Black Hat can foresee that it will be a tricky relationship with their mean personalities crashing together, but when Danish gives him the option to go find a ''non-crazy girl'' he promptly states that this has no interest at all.&lt;br /&gt;
&lt;br /&gt;
In the title text it seems that neither of them is deterred by this obstacle, and their relationship begins when Black Hat tells her that he will pick her up at eight. Although she does ask for one more hour, so she can re-mine the driveway before he comes back at nine. This did not seem to harm their future relationship as in most of the later [[:Category:Comics featuring Danish|comics with Danish]] she is mainly shown together with Black Hat, sometimes even in a clearly romantic setting, like in [[515: No One Must Know]], from where she got her name.&lt;br /&gt;
&lt;br /&gt;
The whole &amp;quot;[[:Category:Journal|Journal]]&amp;quot; story are:&lt;br /&gt;
*[[374: Journal]]&lt;br /&gt;
*[[377: Journal 2]]&lt;br /&gt;
*[[405: Journal 3]]&lt;br /&gt;
*[[432: Journal 4]]&lt;br /&gt;
*[[433: Journal 5]]&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Black Hat parks his car.]&lt;br /&gt;
:''PARK''&lt;br /&gt;
&lt;br /&gt;
:[Black Hat knocks at door.]&lt;br /&gt;
:''KNOCK KNOCK''&lt;br /&gt;
&lt;br /&gt;
:Black Hat: Hi.&lt;br /&gt;
:Danish: Hi.&lt;br /&gt;
&lt;br /&gt;
:Black Hat: I give up. You win. I have to know who you are.&lt;br /&gt;
&lt;br /&gt;
:Black Hat: We understand each other. I can't let that slip away—&lt;br /&gt;
:''beep'' [from device in Danish's hand.]&lt;br /&gt;
:''BOOM''&lt;br /&gt;
&lt;br /&gt;
:Black Hat: What was that?!&lt;br /&gt;
:Danish: Remote mines under your car.&lt;br /&gt;
&lt;br /&gt;
:Black Hat: Oh, those? I moved them to your garage before knocking.&lt;br /&gt;
:Danish: Touché.&lt;br /&gt;
&lt;br /&gt;
:Black Hat: ...This relationship is going to be tricky.&lt;br /&gt;
:Danish: There's still time to leave and find a non-crazy girl.&lt;br /&gt;
:Black Hat: Not even ''slightly'' interested.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Danish]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Journal|05]]&lt;br /&gt;
[[Category:Romance]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1547:_Solar_System_Questions&amp;diff=97173</id>
		<title>Talk:1547: Solar System Questions</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1547:_Solar_System_Questions&amp;diff=97173"/>
				<updated>2015-07-08T02:56:52Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I wonder if &amp;quot;What's the deal with Miranda?&amp;quot; is talking about one of [https://en.wikipedia.org/wiki/Miranda_(moon) Uranus's satellites] or if it's a Firefly/Serenity reference? [[User:Keavon|Keavon]] ([[User talk:Keavon|talk]]) 15:31, 6 July 2015 (UTC)&lt;br /&gt;
* That was my reaction too. Randall is (as he should be) slightly obsessed with Firefly. [[User:Cosmogoblin|Cosmogoblin]] ([[User talk:Cosmogoblin|talk]]) 19:12, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Many of the entries can be found at https://en.wikipedia.org/wiki/List_of_unsolved_problems_in_physics  [[User:Cschwenz|Cschwenz]] ([[User talk:Cschwenz|talk]]) 16:16, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The title text is a reference to the Futurama episode &amp;quot;Butterjunk effect&amp;quot; http://theinfosphere.org/The_Butterjunk_Effect. {{unsigned ip|188.114.98.29}}&lt;br /&gt;
* I suggest it's much more likely to be a reference to Randall's own obsession with humans flying with wings: [[620]], https://what-if.xkcd.com/30/. [[Special:Contributions/108.162.250.161|108.162.250.161]] 01:00, 8 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
What's Titan like? Refernece to Gattaca (https://www.youtube.com/watch?v=lZa83dTf4JA)? [[User:Nk22|The Twenty-second. The Not So Only. The Nathan/Nk22]] ([[User talk:Nk22|talk]]) 16:23, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I wonder if Randal is using us as unpaid researchers to answer his questions for him?[[Special:Contributions/173.245.48.89|173.245.48.89]] 16:53, 6 July 2015 (UTC)&lt;br /&gt;
* Crowd-sourcing space probes? I certainly hope so!! [[User:Cosmogoblin|Cosmogoblin]] ([[User talk:Cosmogoblin|talk]]) 19:12, 6 July 2015 (UTC)&lt;br /&gt;
** I was also thinking that, or at least he might have been thinking, &amp;quot;This oughtta keep those silly people on the ExplainXKCD wiki busy!&amp;quot;. ;) [[User:KieferSkunk|KieferSkunk]] ([[User talk:KieferSkunk|talk]]) 20:42, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Timing is good as it has recently been shown that red organics (Tholins) are produced by the particular UV wavelength called 'Lyman-Alpha' which is almost as bright on Pluto's night-side due to starshine as it is from the Sun during its daytime... the Edgeworth-Kuiper Belt may be the original Red-light District. Go New Horizons! [[User:Squirreltape|Squirreltape]] ([[User talk:Squirreltape|talk]]) 15:13, 7 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ice Spikes could be a reference to the Ice Spikes biome in Minecraft: http://minecraft.gamepedia.com/File:Ice_Plains_Spikes.png [[User:Daedalus|Daedalus]] ([[User talk:Daedalus|talk]]) 10:12, 7 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The last question/the title text could also refer to Robert A. Heinleins &amp;quot;The Menace from Earth&amp;quot;: https://en.wikipedia.org/wiki/The_Menace_from_Earth [[User:Bichlesi|Bichlesi]] ([[User talk:Bichlesi|talk]]) 01:13, 8 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;big white things in Titan's lakes&amp;quot; may also refer to the [http://news.nationalgeographic.com/news/2014/11/141111-titan-lake-island-space-science/ magic islands] that were observed by Cassini.--[[Special:Contributions/108.162.221.90|108.162.221.90]] 02:56, 8 July 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1393:_Timeghost&amp;diff=71440</id>
		<title>1393: Timeghost</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1393:_Timeghost&amp;diff=71440"/>
				<updated>2014-07-11T14:17:31Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ The ghost an old acquaintance of Megan's&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1393&lt;br /&gt;
| date      = July 11, 2014&lt;br /&gt;
| title     = Timeghost&lt;br /&gt;
| image     = timeghost.png&lt;br /&gt;
| titletext = 'Hello, Ghostbusters?' 'ooOOoooo people born years after that movie came out are having a second chiiiild right now ooOoooOoo'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Maybe some expanding? Otherwise this tag can be removed.}}&lt;br /&gt;
[[Megan]] and [[Cueball]] are being haunted by a ghost dedicated to making people feel old. It seems to be like the strips [[891: Movie Ages]] and [[973: MTV Generation]] and the blag post [http://blog.xkcd.com/2012/09/29/odd-temporal-milestones/ Odd Temporal Milestones], but then the ghost reveals that Megan and Cueball will die in a shorter amount of time than the ghost's appearance (maybe a few seconds, maybe years). For obvious reasons, this disturbs them.  An alternative explanation is that the &amp;quot;staaaaart of my haunting&amp;quot; refers to the first time the ghost haunted anyone, and it is possible Timeghost is being deliberately ambiguous in an effort to frighten them more. Alternatively again, Timeghost may be referring simply to the beginning of the comic, which is now three panels away, while the end of the comic is only one panel away; Megan and Cueball's 'death' may refer to their cessation of existence in the comic.&lt;br /&gt;
&lt;br /&gt;
A {{w|factoid}} is a questionable or spurious statement presented as a fact. In this instance, some of the ''factoids'' are easily verifiable, while others are reasonable assumptions based on the number of years passed since the individual events. Several sources advocate the use of the word &amp;quot;factlet&amp;quot; to express a brief interesting fact, while using the word &amp;quot;factoid&amp;quot; for unverifiable or untrue statements passed as fact.&lt;br /&gt;
&lt;br /&gt;
While ''factoids'' tend only to have mostly only entertainment value, then the last ''fact'' from the ghost is a prediction of the future (your death) which is actually of some practical value if it can be trusted.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Timeghost&amp;quot; might be a literal interpretation of {{w|Zeitgeist}}, which is a German term for &amp;quot;spirit of time&amp;quot; and refers to the school of thought that influences or dominates the art and culture of a time period. All the events and people mentioned in this comic have may be considered influences in present day art and culture.&lt;br /&gt;
&lt;br /&gt;
'''Timeline'''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Year||Event&lt;br /&gt;
|-&lt;br /&gt;
|1955-1975||{{w|Vietnam War}}&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|19 years&lt;br /&gt;
|-&lt;br /&gt;
|1994||{{w|Forrest Gump (film)|Forrest Gump}}&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|20 years&lt;br /&gt;
|-&lt;br /&gt;
|2014||Year of this comic&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|1964||{{w|Keanu Reeves}} (Actor) born&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|2 years&lt;br /&gt;
|-&lt;br /&gt;
|1966||Today's new grandparents born (Average age: 48 in the US)&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|48 years&lt;br /&gt;
|-&lt;br /&gt;
|2014||Year of this comic&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|1990||[http://www.cdc.gov/nchs/data/nhsr/nhsr051.pdf Today's new parents born] (Average age: 24 in the US)&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|3 years&lt;br /&gt;
|-&lt;br /&gt;
|1993-1994||{{w|The Simpsons}} Season 5&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|2 years (from '93 to '95)&lt;br /&gt;
|-&lt;br /&gt;
|1994-1995||{{w|The Simpsons}} Season 6&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|4 years&lt;br /&gt;
|-&lt;br /&gt;
|1999||{{w|Eminem}} (Rapper) got big (second album)&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|15 years&lt;br /&gt;
|-&lt;br /&gt;
|2014||Year of this comic&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|1984||{{w|Ghostbusters}}&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|3 years&lt;br /&gt;
|-&lt;br /&gt;
|1987||[http://www.cdc.gov/nchs/data/nhsr/nhsr051.pdf Today's people just having a second child born] (Average age at first childbirth (24) + average gap between first two births (3))&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|27 years&lt;br /&gt;
|-&lt;br /&gt;
|2014||Year of this comic&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Megan are approached by a floating ghost]&lt;br /&gt;
:Timeghost: ''...ooOOOOOOOOooo...Tiiiime is passiiiing!''&lt;br /&gt;
:Megan: Ugh. Timeghost.&lt;br /&gt;
:Cueball: Huh?&lt;br /&gt;
:Megan: Here come the factoids.&lt;br /&gt;
&lt;br /&gt;
:[Timeghost floats around]&lt;br /&gt;
:Timeghost: ''Forrest Gump'' came out closer to the Vietnam War than to the present daaay.&lt;br /&gt;
:Megan: Go ''away!''&lt;br /&gt;
:Timeghost: The average new grand-parents are younger than Keanu Reeeeves!&lt;br /&gt;
:Cueball: That can't be right...&lt;br /&gt;
&lt;br /&gt;
:[Megan clutches her head, possibly attempting to cover her ears]&lt;br /&gt;
:Timeghost: ''Today's new parents were ten when Eminem got big. Daaaaaad muuuuusic. They remember Simpsons season 5 or 6 at the '''earliest'''''.&lt;br /&gt;
:Megan: Argh!&lt;br /&gt;
:Cueball: How long has it been ''doing'' this?&lt;br /&gt;
&lt;br /&gt;
:Timeghost: ''The staaaaart of my haunting is now further away than your deaaaths!''&lt;br /&gt;
:Megan: Will you sto—'''''WHAT!?'''''&lt;br /&gt;
:Timeghost: ooOOOOOOOoo&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1390:_Research_Ethics&amp;diff=70960</id>
		<title>1390: Research Ethics</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1390:_Research_Ethics&amp;diff=70960"/>
				<updated>2014-07-04T14:22:16Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ &amp;quot;what&amp;quot; twice is a typical mistake&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1390&lt;br /&gt;
| date      = July 4, 2014&lt;br /&gt;
| title     = Research Ethics&lt;br /&gt;
| image     = research_ethics.png&lt;br /&gt;
| titletext = I mean, it's not like we could just demand to see the code that's governing our lives. What right do we have to poke around in Facebook's private affairs like that?&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|First draft.}}&lt;br /&gt;
&lt;br /&gt;
This comic references the recent revelation that Facebook engaged in a &amp;quot;psychological experiment&amp;quot; by selectively showing users more &amp;quot;positive&amp;quot; or &amp;quot;negative&amp;quot; posts on their news feed and recording the users' comments to see if the change affected the positivity or negativity of their posts. Further experiments have since been revealed [http://online.wsj.com/articles/facebook-experiments-had-few-limits-1404344378 such as one that tested security measures by locking users out of their accounts]. Here, Megan is commenting on the fact that, while the media is calling this control over what content the user sees &amp;quot;unethical,&amp;quot; Facebook, and other companies like Google, must, one way or another, control what content the user sees, whether to present users with a limited selection of all postings, or to tailor ads to particular users; even if the regular algorithms are not set up for psychological experiments, they are still &amp;quot;manipulating&amp;quot; what posts users see or don't see. As Megan points out, no one really knows what the &amp;quot;normal&amp;quot; constraits are of the algorithm which chooses which posts are shown on news feeeds. This comic is parodying the strong reaction to what is basically already a common practice.&lt;br /&gt;
&lt;br /&gt;
Accumulation, control and analysis of user-generated information can be a part of the terms of service/end user license agreement of a Website or software. In such a scenario, the user has effectively signed his/her consent to being part of such research. Unfortunately, most users don't read the terms before clicking the &amp;quot;I agree&amp;quot; option, so it can come as a shock when the service uses the data in a way the user hadn't anticipated.&lt;br /&gt;
&lt;br /&gt;
Randall writes &amp;quot;what&amp;quot; twice, which is a classic [http://www.moillusions.com/eye-to-brain-coordination/ optical illusion.] Perhaps he is conducting an experiment of his own. It is also a typical mistake that would be detected by many spell checkers [http://blogmines.com/blog/wp-content/uploads/2011/08/image_thumb18.png].&lt;br /&gt;
&lt;br /&gt;
The title text ironically/sarcastically accepts that Facebook has access to all of its users thoughts (through posts/messages and photos, and they can read them for research (or whatever other) purposes, but contrasts this with a suggestion (which likely mirrors how Facebook would respond to such a request) that Facebook's code is private and can not be revealed to us. The title text basically appears to be musing that this is backwards, and our personal data should be considered MORE private than Facebook's programming code, which may be proprietary, but is not personal private data.&lt;br /&gt;
&lt;br /&gt;
It is as if your neighbor was spying on you while you left all your shades open, but you felt it to be inappropriate to find out what he knew about you because that's his business.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
:[Megan is facing Cueball and Ponytail]&lt;br /&gt;
:Megan: Facebook shouldn't choose what what stuff they show us to conduct unethical psychological research. &lt;br /&gt;
:Megan: They should ''only'' make those decisions based on, uh...&lt;br /&gt;
:Megan: However they were doing it before. &lt;br /&gt;
:Megan: Which was probably ethical, right?&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1389:_Surface_Area&amp;diff=70740</id>
		<title>1389: Surface Area</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1389:_Surface_Area&amp;diff=70740"/>
				<updated>2014-07-02T14:48:24Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ probably is a very strong word&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1389&lt;br /&gt;
| date      = July 2, 2014&lt;br /&gt;
| title     = Surface Area&lt;br /&gt;
| image     = surface_area.png&lt;br /&gt;
| titletext = This isn't an informational illustration; this is a thing I think we should do. First, we'll need a gigantic spool of thread. Next, we'll need some kind of ... hmm, time to head to Seattle.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
A [http://xkcd.com/1389/large/ larger version] of this image can be found by clicking the image at xkcd - which can be reached easily from here as always, by clicking on the comic number above.&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Very early draft.}}&lt;br /&gt;
This image shows the total surface areas of all {{w|Terrestrial_planet|terrestrial planets}}, {{w|natural satellite}}s, {{w|asteroid}}s, {{w|minor planet|etc.}} in the {{w|Solar System}}, represented as regions of a single massive landmass (in a similar style to the various [[256: Online Communities|maps]] of the [[802: Online Communities 2|Internet]] Randall has created in the past), with a [[977|Waterman Butterfly]] based map of Earth in the center for scale. Relatively small objects like asteroids, comets, and so on are grouped into two regions at the northeast and southwest corners, while tiny objects like space dust are excluded altogether (probably because their total surface area is impossible to estimate accurately, and also because any estimate would likely be too large to fit easily into the map).  He has likely used this Wikipedia list: {{w|List of Solar System objects by size}}.&lt;br /&gt;
&lt;br /&gt;
The {{w|gas giant}}s Jupiter, Saturn, Uranus, and Neptune are not included, because they don't have a solid surface. If they were included, this part of the map would be a tiny speck compared to the surface area of the gas giants. Similarly the {{w|Sun}} also is not considered a solid but hot {{w|Plasma_(physics)|plasma}}; if it was included it would reduce both the original map and the gas giants to a tiny speck.&lt;br /&gt;
&lt;br /&gt;
Between Earth and Titan is a tiny speck noted &amp;quot;''all human skin''&amp;quot;, which obviously does not refer to a rocky surface and could be thought of as reference to the novel ''{{w|The_Silence_of_the_Lambs_(novel)|The Silence of the Lambs}}''.&lt;br /&gt;
&lt;br /&gt;
The title text explains that this comic is not actually for information, it is something he thinks we should really do - that is, to stitch all the solar system's land areas together, as the comic title says. To do this, we would obviously need a gigantic ball of string and the {{w|Space Needle|Seattle Space Needle}} from Seattle. Of course this is impossible, since the land areas are on the surfaces of spheres.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+Surface area of mentioned objects&lt;br /&gt;
!Object&lt;br /&gt;
!Type&lt;br /&gt;
!Surface area&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Io (moon)|Io}}||Moon of Jupiter||4.191×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.082 Earths)&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Callisto (moon)|Callisto}}||Moon of Jupiter||7.30×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.143 Earths)&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Europa (moon)|Europa}}||Moon of Jupiter||3.09×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.061 Earths)&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Ganymede (moon)|Ganymede}}||Moon of Jupiter||8.70×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.171 Earths)&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Ceres (dwarf planet)|Ceres}}||Dwarf planet||2.85×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|4 Vesta|Vesta}}||Asteroid||8×10&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Asteroids 1km+||Asteroid||???&lt;br /&gt;
|-&lt;br /&gt;
|Asteroids 100m+||Asteroid||???&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Triton (moon)|Triton}}||Moon of Neptune||2.3018×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Ariel (moon)|Ariel}}||Moon of Uranus||4.2113×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Miranda (moon)|Miranda}}||Moon of Uranus||7×10&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Umbriel (moon)|Umbriel}}||Moon of Uranus||4.296×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.008 Earths)&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Oberon (moon)|Oberon}}||Moon of Uranus||7.285×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Titania (moon)|Titania}}||Moon of Uranus||7.82×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Tethys (moon)|Tethys}}||Moon of Saturn||3.61×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Dione (moon)|Dione}}||Moon of Saturn||3.96×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Enceladus|Enceladus}}||Moon of Saturn||8×10&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Iapetus (moon)|Iapetus}}||Moon of Saturn||6.7×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Titan (moon)|Titan}}||Moon of Saturn||8.3×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Rhea (moon)|Rhea}}||Moon of Saturn||7.337×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Earth|Earth}}||Planet||5.10072×10&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Moon|The Moon}}||Moon of Earth||3.793×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|All human skin||||???&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Mercury (planet)|Mercury}}||Planet||7.48×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.147 Earths)&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Mars|Mars}}||Planet||1.447985×10&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.284 Earths)&lt;br /&gt;
|-&lt;br /&gt;
|Various small moons, comets, etc.||||???&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Haumea (dwarf planet)|Haumea}}||Dwarf planet||6.8×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Makemake (dwarf planet)|Makemake}}||Dwarf planet||6.9×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Eris (dwarf planet)|Eris}}||Dwarf planet||1.7×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Pluto|Pluto}}||Dwarf planet||1.665×10&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.033 Earths)&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Charon (moon)|Charon}}||Moon of Pluto||4.58×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|{{w|Venus|Venus}}||Planet||4.60×10&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt; km&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; (0.902 Earths)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1384:_Krypton&amp;diff=70220</id>
		<title>1384: Krypton</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1384:_Krypton&amp;diff=70220"/>
				<updated>2014-06-23T13:39:53Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: This is not unlikely. It is impossible. The writer was clearly on drugs or is a 13-year-old with no knowledge of physics&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1384&lt;br /&gt;
| date      = June 20, 2014&lt;br /&gt;
| title     = Krypton&lt;br /&gt;
| image     = krypton.png&lt;br /&gt;
| titletext = Their Sun and gravity will make you, uh, something, I guess. Out of earshot from Earth, mostly.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic is an [http://tvtropes.org/pmwiki/pmwiki.php/Main/InvertedTrope inverse] version of the {{w|origin story}} of the {{w|superhero}} character {{w|Superman}}.&lt;br /&gt;
&lt;br /&gt;
In the Superman story, {{w|Jor-El}} and his wife {{w|Lara (comics)|Lara}} notice that their home planet {{w|Krypton (comics)|Krypton}} is about to be destroyed in a giant explosion, so they decide to send their baby {{w|Superman|Kal-El}} to {{w|Earth}} to save him - and there he becomes Superman. &lt;br /&gt;
&lt;br /&gt;
In this comic, [[Cueball]] and [[Megan]] also notice that the planet Krypton is about to explode, but instead of attempting to save a baby from Krypton, they decide to send a baby to Krypton from Earth so that he'll stop annoying them with his crying. &lt;br /&gt;
&lt;br /&gt;
In the fourth panel both spaceships can be seen. The rocket containing the Earth baby arrives at planet Krypton, while the crystal star shaped spaceship containing Kal-El leaves Krypton towards Earth - this is a reference to the [http://collectingsuperman.com/wordpress/wp-content/uploads/2013/07/stmstoryboard1a.jpg version of the spaceship] depicted in the 1978 {{w|Superman_(1978_film)|Superman movie}}, (see [[#Trivia|trivia section]]).&lt;br /&gt;
&lt;br /&gt;
In the fifth and last panel we see Krypton explode. &lt;br /&gt;
&lt;br /&gt;
A person with a very fertile imagination who know very little about physics and nothing about Superman could think that it could be the impact of the rocket from Earth that makes Krypton explode. Maybe it would not have exploded if Cueball and Megan had not shipped the baby off?  &lt;br /&gt;
&lt;br /&gt;
In the Superman movie, Kal-El carries with him a lot of information pre-recorded by his parents. During the very long trip he listens to the recordings, one of which explains that the Sun and gravity of Earth will give him (Kal-El) great powers (this is the way he becomes Superman). The '''title text''' is a satirical version of this information, given to the Earth baby during his trip: That Megan &amp;amp; Cueball do not have the faintest idea (or care about) what the sun and gravity of Krypton will do to him - but their best guess at what these ''mostly'' will do to him is to &amp;quot;make you out of earshot from Earth&amp;quot;, which was their original reason for shipping the baby off in the first place.&lt;br /&gt;
&lt;br /&gt;
While this may seem like an extreme reaction to a crying baby, people who have never experienced a child crying for a whole night may have no idea about what types of fantasies could go through one's head. During the long hours of the night, shipping the crying thing in to space may seem like a great idea. This comic could be seen as an illustration of this.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Megan are standing near a telescope.]&lt;br /&gt;
:Cueball: The distant planet Krypton is becoming unstable!&lt;br /&gt;
:Baby crying (from outside the panel): Waaaaaa&lt;br /&gt;
:Megan: That crying baby is really annoying.&lt;br /&gt;
&lt;br /&gt;
:[Cueball and Megan looking at each other]&lt;br /&gt;
&lt;br /&gt;
:[Spaceship taking off]&lt;br /&gt;
&lt;br /&gt;
:[Spaceship passing another spaceship on route to distant planet]&lt;br /&gt;
&lt;br /&gt;
:[Planet exploding]&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Whereas the Kal-El rocket clearly looks like the one in the 1978 Superman, a movie which is also the origin of the title text joke, the Earth baby rocket looks like any nondescript rocket. It has some features in common with the one used in [[1350: Lorenz]] as can be seen here under the [[1350:_Lorenz#Rocket launch|Rocket launch theme]] (color scheme the same, but different body of the rocket). One could also argue that it resembles some of the [http://2.bp.blogspot.com/_M7D1hE_0cz0/TS88t-Rs2vI/AAAAAAAAEMY/EnIOj3AGFu8/s800/SupermanOrigins.jpg various] [http://thecomicmuseum.com/superman146.jpg versions] of the rocket that brought Superman to earth as depicted in early {{w|List of Superman comics|comic books}} (Not that big a resemblance though, due to the very different tip and fins).&lt;br /&gt;
*As the nearest stars are several light years away, this comic does of course not make any sense if you look at it from a scientific point of view. (But can still do if you don't!).&lt;br /&gt;
**First of all - how would Cueball be able to see that Krypton is unstable in a telescope - as we at the moment can only just detect planets around other stars.&lt;br /&gt;
**And even if he did detect this and immediately shipped his baby away in a close to light-speed rocket, then it would take several years to reach Krypton (at best - more likely to be somewhere between a hundred to a thousand years...) &lt;br /&gt;
***Plus, because light takes time to travel, Cueball was seeing the planet as it was many years ago, meaning it had been unstable for some time already. So even for the closest star (exclusive of the earth's sun), it would be 4.3 years to see the instability and then over 4.3 more years (even with close to light speed travel) for the ship to travel, for a total of over 8.6 years from when the light left the planet until the rocket arrived there.&lt;br /&gt;
**As faster than light-speed travel is impossible according to the current model of our universe this option is not really relevant here.&lt;br /&gt;
**During all those years, the unstable planet should still keep together - in spite of being so unstable that Cueball can determine this instability with his telescope on Earth.&lt;br /&gt;
**And then the rocket arrives just when Kal-El is being shipped the other way a few moments before the planet explodes. Of course if the arrival of the rocket causes the explosion this would explain the last two events. Kal-El is shipped off at the last moment when his parents realizes an incoming rocket will destroy their planet... That would actually be funny!&lt;br /&gt;
** The previous remarks assume that Cueball and Megan are standing on Earth. The comic could be plausable if they are standing on a different planet in the same planetary system.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1384:_Krypton&amp;diff=70096</id>
		<title>1384: Krypton</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1384:_Krypton&amp;diff=70096"/>
				<updated>2014-06-20T23:18:36Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Adding snarky remark to stupid comment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1384&lt;br /&gt;
| date      = June 20, 2014&lt;br /&gt;
| title     = Krypton&lt;br /&gt;
| image     = krypton.png&lt;br /&gt;
| titletext = Their Sun and gravity will make you, uh, something, I guess. Out of earshot from Earth, mostly.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic is an inverse version of the {{w|origin story}} of the {{w|superhero}} character {{w|Superman}}.&lt;br /&gt;
&lt;br /&gt;
In the Superman story, {{w|Jor-El}} and his wife {{w|Lara (comics)|Lara}} notice that their home planet {{w|Krypton (comics)|Krypton}} is about to be destroyed in a giant explosion, so they decide to send their baby {{w|Superman|Kal-El}} to {{w|Earth}} to save him - and there he becomes Superman. &lt;br /&gt;
&lt;br /&gt;
In this comic, [[Cueball]] and [[Megan]] also notice that the planet Krypton is about to explode, but instead of attempting to save a baby from Krypton, they decide to send a baby to Krypton from Earth so that he'll stop annoying them with his crying. &lt;br /&gt;
&lt;br /&gt;
In the fourth panel both spaceships can be seen. The rocket containing the Earth baby arrives at planet Krypton, while the crystal star shaped spaceship containing Kal-El leaves Krypton towards Earth - this is a reference to the [http://collectingsuperman.com/wordpress/wp-content/uploads/2013/07/stmstoryboard1a.jpg version of the spaceship] depicted in the 1978 {{w|Superman_(1978_film)|Superman movie}}, (see [[#Trivia|trivia section]]).&lt;br /&gt;
&lt;br /&gt;
In the fifth and last panel we see Krypton explode. &lt;br /&gt;
&lt;br /&gt;
Very fertile imaginations, probably on drugs, could think that it may look like it could be the impact of the rocket from Earth that makes Krypton explode. Maybe it would not have exploded if Cueball and Megan had not shipped the baby off? &lt;br /&gt;
&lt;br /&gt;
In the Superman movie, Kal-El carries with him a lot of information pre-recorded by his parents. During the very long trip he listens to the recordings, one of which explains that the Sun and gravity of Earth will give him (Kal-El) great powers (this is the way he becomes Superman). The '''title text''' is a satirical version of this information, given to the Earth baby during his trip: That Megan &amp;amp; Cueball do not have the faintest idea (or care about) what the sun and gravity of Krypton will do to him - but their best guess at what these ''mostly'' will do to him is to &amp;quot;make you out of earshot from Earth&amp;quot;, which was their original reason for shipping the baby off in the first place.&lt;br /&gt;
&lt;br /&gt;
While this may seem like an extreme reaction to a crying baby, people who have never experienced a child crying for a whole night, may have no idea about what types of fantasies could go through one's head. During the long hours of the night, shipping the crying thing in to space, may seem like a great idea. This comic could be seen as an illustration of this.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Megan are standing near a telescope.]&lt;br /&gt;
:Cueball: The distant planet Krypton is becoming unstable!&lt;br /&gt;
:Baby crying (from outside the panel): Waaaaaa&lt;br /&gt;
:Megan: That crying baby is really annoying.&lt;br /&gt;
&lt;br /&gt;
:[Cueball and Megan looking at each other]&lt;br /&gt;
&lt;br /&gt;
:[Spaceship taking off]&lt;br /&gt;
&lt;br /&gt;
:[Spaceship passing another spaceship on route to distant planet]&lt;br /&gt;
&lt;br /&gt;
:[Planet exploding]&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Whereas the Kal-El rocket clearly looks like the one in the 1978 Superman, a movie which is also the origin of the title text joke, the Earth baby rocket looks like any nondescript rocket. It has some features in common with the one used in [[1350: Lorenz]] as can be seen here under the [[1350:_Lorenz#Rocket launch|Rocket launch theme]] (color scheme the same, but different body of the rocket). One could also argue that it resembles some of the [http://2.bp.blogspot.com/_M7D1hE_0cz0/TS88t-Rs2vI/AAAAAAAAEMY/EnIOj3AGFu8/s800/SupermanOrigins.jpg various] [http://thecomicmuseum.com/superman146.jpg versions] of the rocket that brought Superman to earth as depicted in early {{w|List of Superman comics|comic books}} (Not that big a resemblance though, due to the very different tip and fins).&lt;br /&gt;
*As the nearest stars are several light years away, this comic does of course not make any sense if you look at it from a scientific point of view. (But can still do if you don't!) &lt;br /&gt;
**First of all - how would Cueball be able to see that Krypton is unstable in a telescope - as we at the moment can only just detect planets around other stars. &lt;br /&gt;
**And even if he did detect this and immediately shipped his baby away in a close to light-speed rocket, then it would take several years to reach Krypton (at best - more likely to be somewhere between a hundred to a thousand years...) &lt;br /&gt;
**During all those years, the unstable planet should still keep together - in spite of being so unstable that Cueball can determine this instability with his telescope on Earth.&lt;br /&gt;
**And then the rocket arrives just when Kal-El is being shipped the other way a few moments before the planet explodes. Of course if the arrival of the rocket causes the explosion this would explain the last two events. Kal-El is shipped off at the last moment when his parents realizes an incoming rocket will destroy their planet...&lt;br /&gt;
**As faster than light-speed travel is impossible according to the current model of our universe this option is not really relevant here.&lt;br /&gt;
**Plus, because light takes time to travel, Cueball was seeing the planet as it was many years ago, meaning it had been unstable for some time already.&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1382:_Rocket_Packs&amp;diff=69669</id>
		<title>1382: Rocket Packs</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1382:_Rocket_Packs&amp;diff=69669"/>
				<updated>2014-06-16T18:14:13Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: deleting funny sentence that was probably vandalism.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1382&lt;br /&gt;
| date      = June 16, 2014&lt;br /&gt;
| title     = Rocket Packs&lt;br /&gt;
| image     = rocket_packs.png&lt;br /&gt;
| titletext = Every year: 'It's &amp;lt;year&amp;gt;--I want my jetpack [and also my free medical care covering all my jetpack-related injuries]!'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
For a long time, many people have speculated that in the future, everyone would travel around with rockets strapped to their backs. However, this has not come to pass. &lt;br /&gt;
&lt;br /&gt;
In this comic, Randall is pointing out that the problem with personal rocket packs is not how to attach a rocket to someone's back, but other practical considerations. One might be how to keep the hot exhaust from burning the user's {{w|Calf_(anatomy)|calves}}. (Many {{w|jet pack}} designs actually do have ways to deal with this, such as moving the rockets farther from the user, but there are many other practical issues which have made this an impractical form of travel given current technology).&lt;br /&gt;
&lt;br /&gt;
The title text starts with the trope [http://tvtropes.org/pmwiki/pmwiki.php/Main/IWantMyJetPack &amp;quot;I want my jetpack&amp;quot;]. It continues with pointing out that if people did start using rocket packs, there would also be more injuries, raising health care costs. That's something that people usually don't consider when imagining a future where these devices are commonplace.&lt;br /&gt;
&lt;br /&gt;
So this year when the comics was published the demand was:&lt;br /&gt;
:'' 'It's 2014--I want my jetpack [and also my free medical care covering all my jetpack-related injuries]!' ''&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Text above the frame]&lt;br /&gt;
:Rocket packs are easy. &lt;br /&gt;
:[In the frame: Cueball is lying face down on the ground with his Rocket Packs on his back and his calves severely burned]&lt;br /&gt;
:Cueball: Ow.&lt;br /&gt;
:[Text below the frame]&lt;br /&gt;
:The hard part is inventing the calf shields. &lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1379:_4.5_Degrees&amp;diff=69156</id>
		<title>1379: 4.5 Degrees</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1379:_4.5_Degrees&amp;diff=69156"/>
				<updated>2014-06-09T13:50:34Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ We are in the 21st centuruy. The Celsius scale is not a novelty anymore. Let's talk about degrees Celsius, not degrees on the Celsius scale.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1379&lt;br /&gt;
| date      = June 9, 2014&lt;br /&gt;
| title     = 4.5 Degrees&lt;br /&gt;
| image     = 4_5_degrees.png&lt;br /&gt;
| titletext = The good news is that according to the latest IPCC report, if we enact aggressive emissions limits now, we could hold the warming to 2°C. That's only HALF an ice age unit, which is probably no big deal.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
This comic is a way to visualize the change in climate predicted by the {{w|Intergovernmental Panel on Climate Change|IPCC}} over the next century.  The prediction, 4-5 degrees, doesn't seem like a very large change, but Randall points out that 4.5 °C is the difference between the last Ice Age and today, which is quite a substantial difference.  So, to give context to the number, he measures the temperature in &amp;quot;Ice Age Units,&amp;quot; or IAU.  1 IAU is defined as the change in average global temperature by 4.5 degrees Celsius (8°F).  The {{w|Last glacial period|last ice age}} was 1 IAU colder than the average &amp;quot;modern&amp;quot; global temperature, and Randall's neighborhood was buried under an ice sheet.  The predicted change by the year 2100 is +1 IAU, and while we don't know what its effects will be exactly, a change of +2 IAU created the {{w|Cretaceous Thermal Maximum|&amp;quot;Hothouse Earth&amp;quot;}} of the early {{w|Cretaceous period}}.  In short, while 4.5 °C seems like a small change in temperature, it seems quite a lot bigger if you phrase it as &amp;quot;halfway to having {{w|Arecaceae|palm trees}} at the poles.&amp;quot; There were {{w|Polar forests of the Cretaceous|polar forests}} during the Cretaceous that grew in latitudes up to 85° in both Northern and Southern hemispheres.&lt;br /&gt;
&lt;br /&gt;
On the colder side, -4IAU is associated with {{w|Snowball Earth}}, a near-total freezing of the entire surface. How much of the planet was actually frozen in the {{w|Cryogenian}} period is disputed, although it is usually accepted as consisting of the greatest ice ages known to have occurred on Earth.&lt;br /&gt;
&lt;br /&gt;
The oldest known animal fossils (sponges) are from the Snowball Earth, while flowering plants became the dominant plant species during the Hothouse.&lt;br /&gt;
&lt;br /&gt;
It appears that the 200 m sea level rise given in the last panel for a &amp;quot;Cretaceous Hothouse&amp;quot; (i.e. if all ice on earth melted, including the Antarctic ice cap) should instead be about 70-80 m, according to {{w|Antarctica}}, IPCC (http://www.grida.no/publications/other/ipcc_tar/?src=/climate/ipcc_tar/ TAR WG1, section 11.2.3 on Greenland and Antarctic Ice Sheets) and [http://water.usgs.gov/edu/sealevel.html Sea Level and Climate: USGS Water-Science School].  Perhaps since this is near 200 feet, it was a case of mistaken units.&lt;br /&gt;
&lt;br /&gt;
{{incomplete|Someone change the below interpretation of the title text from &amp;quot;cold&amp;quot; to hot&amp;quot;.}}&lt;br /&gt;
&lt;br /&gt;
The title text notes that even with aggressive emissions reduction, the temperature will still rise by roughly half an IAU (2 ºC).  While it says it's &amp;quot;probably no big deal,&amp;quot; this is probably a joke, because even half of an Ice Age would be a lot of ice.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
:Without prompt, aggressive limits on CO2 emissions, the Earth will likely warm by an average of 4°-5°C by the century’s end.&lt;br /&gt;
:'''How big a change is that?'''&lt;br /&gt;
:[A ruler chart is drawn inside a frame]&lt;br /&gt;
:In the coldest part of the last ice age, Earth’s average temperature was 4.5°C below the 20th century norm.&lt;br /&gt;
:Let’s call a 4.5°C difference one '''”ice age unit.“'''&lt;br /&gt;
:[A ruler with five main divisions - each again with 3 smaller quarter division markers. Above it the five main divisions are marked as follows with 0 in the middle:]&lt;br /&gt;
:-2 IAU  -1 IAU  0 +1 IAU  +2 IAU&lt;br /&gt;
:[Next to the 0 marking a black arrow points toward 0.2 on the scale and above it is written:]&lt;br /&gt;
:Where we are today&lt;br /&gt;
:[The rest of the text is below the ruler]&lt;br /&gt;
:[To the far left below -2 IAU a curved arrow points to the left. Below it is written:]&lt;br /&gt;
:Snowball earth (-4 IAU)&lt;br /&gt;
:[Below -1 IAU a black arrow point toward this division. Below the arrow is written:]&lt;br /&gt;
:20,000 years ago&lt;br /&gt;
:[Below this an image of a glacier. At the top of the image is written:]&lt;br /&gt;
:My neighborhood:&lt;br /&gt;
:[At the bottom of the image is an arrow pointing to the glacier:]&lt;br /&gt;
:Half a mile of ice&lt;br /&gt;
:[Below 0 IAU a black arrow point toward this division. Below the arrow is written:]&lt;br /&gt;
:Average during modern times&lt;br /&gt;
:[Below this an image of Cueball standing on a green field with a city skyline in the background. At the top of the image is written:]&lt;br /&gt;
:My neighborhood:&lt;br /&gt;
:Cueball: Hi!&lt;br /&gt;
:[Below +1 IAU a black arrow point toward this division. Below the arrow is written:]&lt;br /&gt;
:Where we’ll be in 86 years&lt;br /&gt;
:[Below this a white image. At the top of the image is written:]&lt;br /&gt;
:My neighborhood:&lt;br /&gt;
:[Below this is a very large:]&lt;br /&gt;
:'''?'''&lt;br /&gt;
:[Below +2 IAU a black arrow point toward this division. Below the arrow is written:]&lt;br /&gt;
:Cretaceous hothouse&lt;br /&gt;
:+200m sea level rise&lt;br /&gt;
:No glaciers&lt;br /&gt;
:Palm trees at the poles&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics with color]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1378:_Turbine&amp;diff=68982</id>
		<title>1378: Turbine</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1378:_Turbine&amp;diff=68982"/>
				<updated>2014-06-06T13:38:16Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Changing &amp;quot;is not&amp;quot; to &amp;quot;is very similar&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1378&lt;br /&gt;
| date      = June 6, 2014&lt;br /&gt;
| title     = Turbine&lt;br /&gt;
| image     = turbine.png&lt;br /&gt;
| titletext = Ok, plan B: Fly a kite into the blades, with a rock in a sling dangling below it, and create the world's largest trebuchet.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
This is a pun on the term &amp;quot;fan&amp;quot;. A {{w|wind turbine}} (which generates power via kinetic energy produced from the turning of its blades in the wind, and converts it into electricity) is very similar to a {{w|mechanical fan|fan}} (where the fan blades move the air around to provide a cooling effect). The other meaning of &amp;quot;fan&amp;quot; is &amp;quot;someone who is a fanatic&amp;quot; about something (e.g. a football team, a band, etc.). The wind turbine's response to Megan's plan works with both meanings of the word: it is &amp;quot;not a huge fan&amp;quot;, meaning not fanatical about the idea that she has proposed; and &amp;quot;not a huge fan&amp;quot;, meaning not a gigantic device which will blow air at her, as she seems to assume it is.&lt;br /&gt;
&lt;br /&gt;
A {{w|trebuchet}} is a type of catapult. The [http://youtu.be/MTWsmZta6AE setup described] would not resemble the widely known counterweight trebuchet, as the energy rotating the arm and flinging the rock would not be from a raised counterweight. It would rather be more similar to a traction trebuchet.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan is talking to a giant wind turbine.]&lt;br /&gt;
:Megan: I'll hold up a big kite, and you blow air at me until I lift off!&lt;br /&gt;
:Megan: What do you think of that idea?&lt;br /&gt;
:Wind turbine: I'm not a huge fan.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1377:_Fish&amp;diff=68831</id>
		<title>1377: Fish</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1377:_Fish&amp;diff=68831"/>
				<updated>2014-06-04T14:52:48Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Explaining the explanation. MAD = Mutual assured destruction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1377&lt;br /&gt;
| date      = June 4, 2014&lt;br /&gt;
| title     = Fish&lt;br /&gt;
| image     = fish.png&lt;br /&gt;
| titletext = [Astronomer peers into telescope] [Jaws theme begins playing]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The {{w|Fermi Paradox}} is the contradiction that arises between the high likelihood of {{w|extraterrestial life}} and the fact that no evidence for it has thus far been found. &lt;br /&gt;
&lt;br /&gt;
[[Cueball]] and [[Megan]] are having a conversation regarding this, when Megan suggests that perhaps our search for extraterrestrial life is like looking at a patch of ocean floor looking for a fish. The diver knows that there must be a fish somewhere, but is unable to actually find it. She then goes on to ask why the fish would be hidden - i.e. camouflaged, and what it means about the remaining fish. The suggestion is that the fish would be hidden to avoid being eaten by predators, and perhaps the reason no extraterrestrial life is sending any sign of existence back is that they would be destroyed soon after they revealed their location. &lt;br /&gt;
&lt;br /&gt;
The final panels take the metaphor further, suggesting that there is literally a planet sized shark swimming through space eating planets, and since we are panning away from earth and out to the shark it is obviously heading our way... And it turns out that Earth is the next fish!&lt;br /&gt;
&lt;br /&gt;
This explains the title text that has the theme from the movie ''{{w|Jaws (film)|Jaws}}'' playing while astronomers look into their telescopes.  This may also be a reference to the film ''{{w|Alien (film)|Alien}}'', which was pitched with the three word proposal &amp;quot;''Jaws'' in Space.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
By the way, the Chinese sci-fi writer {{w|Liu Cixin}} has published a {{w|Three Body (science_fiction)|trilogy}} called &amp;quot;Three Body&amp;quot;, focusing on this idea (he called it &amp;quot;dark forest&amp;quot;): what if all the visible civilizations have been destroyed? What if revealing your neighbor's location to the universe is similar to the MAD ({{w|Mutual assured destruction}}) situation? The English version should hit the market this year.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
&lt;br /&gt;
[Cueball and Megan are walking down a hill]&lt;br /&gt;
&lt;br /&gt;
Cueball: The Fermi paradox keeps getting worse. If planets are common, where '''is''' everybody?&lt;br /&gt;
&lt;br /&gt;
Megan: Imagine you're a SCUBA diver looking at the ocean floor. You know there's a fish there, but you can't see it. Why?&lt;br /&gt;
&lt;br /&gt;
Cueball: Maybe the fish looks like sand.&lt;br /&gt;
&lt;br /&gt;
Megan: Yeah...&lt;br /&gt;
&lt;br /&gt;
[Zoom out to the Earth from space]&lt;br /&gt;
&lt;br /&gt;
Megan: ...and what would that tell you about the ecosystem?&lt;br /&gt;
&lt;br /&gt;
[Pan to a shark swimming through space towards Earth]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1375:_Astronaut_Vandalism&amp;diff=68670</id>
		<title>1375: Astronaut Vandalism</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1375:_Astronaut_Vandalism&amp;diff=68670"/>
				<updated>2014-06-02T15:21:44Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Deleting reference to missing template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1375&lt;br /&gt;
| date      = May 30, 2014&lt;br /&gt;
| title     = Astronaut Vandalism&lt;br /&gt;
| image     = astronaut_vandalism.png&lt;br /&gt;
| titletext = That night, retired USAF pilots covertly replaced the '62' with '50'.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Signs like this normally show the distance to places on earth's surface. This sign also has an arrow pointing away from earth and towards &amp;quot;space&amp;quot;, with a distance of 62 miles (100&amp;amp;nbsp;km), due to &amp;quot;astronaut vandalism&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
We think of Space as being so very far away.  This comic puts into perspective that it's really a lot closer to get to Space than to many destinations we're used to getting to by car or airplane.  We think of 62 miles as being an easy trip on the ground, but that same 62 miles is incredibly hard when going vertically, against the force of gravity.  Distance-wise, however, it's the same.&lt;br /&gt;
&lt;br /&gt;
The title text states that the distance to &amp;quot;space&amp;quot; was changed later from 62 miles (100&amp;amp;nbsp;km) to 50 miles (80&amp;amp;nbsp;km) by retired Air Force pilots. This indicates that the pilots wanted to reduce the altitude considered to be &amp;quot;space&amp;quot;, so that their own high altitude flights could be considered space flights.&lt;br /&gt;
&lt;br /&gt;
The {{W|U.S. Air Force|USAF}} and other military branches will award {{W|astronaut wings}} to rated astronauts who fly higher than 100 kilometers (62 miles). The 100-kilometer barrier known as the {{W|Kármán line}} was designated as the official boundary between the {{W|Earth's atmosphere}} and {{W|outer space}} by the {{W|Fédération Aéronautique Internationale}} (FAI) in the mid-1950s. Notwithstanding this definition, some test pilots in the 1960s received astronaut wings for their greater-than-50km flights in the {{w|X-15}}. It appears that the military later revised their criteria to only award astronaut wings to those who have flown over 100km. This explains why it was retired pilots who changed the sign - so their wings (and bragging rights) would still be valid.&lt;br /&gt;
&lt;br /&gt;
This comic thus both point out that the limit where space starts is arbitrarily chosen and also that space is often much closer than for instance the two largest cities in some randomly chosen location in the US.&lt;br /&gt;
&lt;br /&gt;
===Possible interpretations===&lt;br /&gt;
There may be an Elvis aspect to this comic.  The mileages are approximately consistent with the signs being in Tupelo, Mississippi, birthplace of Elvis Presley.  Tupelo is about 100 miles from Graceland (Elvis' home) in Memphis, Tennessee.  Tupelo is also a bit over a hundred miles from the International Rock-A-Billy Hall of Fame in Jackson, Tennessee.  The mileages given by Google maps, however, don't exactly match the mileages on the sign in the comic.  Instead of 98 &amp;amp; 115 (in the comic), Google maps gives 101 &amp;amp; 104.&lt;br /&gt;
&lt;br /&gt;
Another possible explanation is a simple mixup. {{W|Winona, Mississippi}} is the hometown of astronaut {{W|Donald H. Peterson}}, who is a retired Air Force officer and pilot, and served as an astronaut in the early Shuttle program. From Winona, it is 115 miles to Memphis International Airport, and 98 miles to Jackson-Medgar Wiley Evers International Airport ([http://www.travelmath.com/nearest-airport/Winona,+MS source]). Thus, the sign would be reasonably located in Winona, albeit with an error, and Peterson would have vandalized it (and some visiting USAF buddy of his could change it back).&lt;br /&gt;
&lt;br /&gt;
The road from Jackson to Memphis is I-55 (northwards); the distance (according to [https://maps.google.co.uk/maps?saddr=jackson&amp;amp;daddr=memphis&amp;amp;hl=en&amp;amp;sll=33.137551,-89.802246&amp;amp;sspn=8.955085,10.338135&amp;amp;geocode=FQXX7AEdluOf-ikhG3SQfysohjGgOPBB5M0TBw%3BFd5WGAIdLPah-ilFl0PqHn7VhzH-thpgFfOT0Q&amp;amp;t=h&amp;amp;mra=ls&amp;amp;z=8 Google Maps]) is 210 miles. That 98+115=213 may indicate that the location is 3 miles off I-55. There is a place called &amp;quot;Pace&amp;quot; near Cleveland which is around 79 miles from Winona. The &amp;quot;astronaut vandalism&amp;quot; may have been to prefix &amp;quot;Pace&amp;quot; with an &amp;quot;s&amp;quot; to form &amp;quot;sPace&amp;quot;, and then to rotate the sign. The spacing on the signs in the cartoon is consistent with the idea that the &amp;quot;s&amp;quot; was added; it is a little cramped. The &amp;quot;P&amp;quot; of &amp;quot;space&amp;quot;, &amp;quot;M&amp;quot; of &amp;quot;Memphis&amp;quot; and &amp;quot;J&amp;quot; of &amp;quot;Jackson&amp;quot; are perhaps a little larger than the other letters, indicating that those might have been the original initial majuscule letters.&lt;br /&gt;
&lt;br /&gt;
Based purely on the mileages, it is most likely that the sign is located in or near Grenada, MS.  This makes the mileages nearly correct when using US-51 as opposed to I-55 to get to Memphis and Jackson, and also is about 62 miles from Pace, MS via Mississippi Route 8.  It is unlikely, however, that a sign in Grenada would include the mileage to such a small town as Pace from such a great distance.  Cleveland would be a much more useful control city for motorists.  Additionally, since the viewer is looking east, Pace would be behind the viewer.  Assuming the one doing the vandalism did more than simply turn and add a letter to the sign, it is possible that they also detached it from the southbound-side of the pole (where it could be viewed pointing to the west) and reattached it to the eastbound side, as shown here.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A signpost with three arrows.]&lt;br /&gt;
:[Arrow pointing up:] &lt;br /&gt;
:Space 62&lt;br /&gt;
:[Arrow pointing right:]&lt;br /&gt;
:Jackson 115&lt;br /&gt;
:[Arrow pointing left:]&lt;br /&gt;
:Memphis 98&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*See [http://www.slate.com/articles/news_and_politics/explainer/2004/09/where_does_space_begin.html Slate: Where does space begin?] for more background.&lt;br /&gt;
*This comic was published on the same day that Version 2 of the {{w|Dragon (spacecraft)|Dragon spaceship}} was unveiled.&lt;br /&gt;
*The mileage of the sign indicates the &amp;quot;[http://welcometheplutians.joelbonner.com/wp/?p=33 scene of the crime]&amp;quot; to be at Grenada, Mississippi.&lt;br /&gt;
*The development codename of Windows 98 was &amp;quot;Memphis&amp;quot;.&lt;br /&gt;
* As said in related What If: [http://what-if.xkcd.com/58/ The reason it's hard to get to orbit isn't that space is high up. It's hard to get to orbit because you have to go so fast.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1373:_Screenshot&amp;diff=68098</id>
		<title>1373: Screenshot</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1373:_Screenshot&amp;diff=68098"/>
				<updated>2014-05-26T13:58:14Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: Category:Comics with color&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1373&lt;br /&gt;
| date      = May 26, 2014&lt;br /&gt;
| title     = Screenshot&lt;br /&gt;
| image     = screenshot.png&lt;br /&gt;
| titletext = I'M PLUGGING IN MY PHONE BUT THE BATTERY ON THE SCREEN ISN'T CHARGING&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|First draft}}&lt;br /&gt;
&lt;br /&gt;
[[Randall]] is viewing a {{w|screenshot}} of a text-message exchange via his own phone's web browser. Such screenshots are frequently posted online, to show content ranging from [http://www.damnyouautocorrect.com/ humorous typos] to [http://www.reddit.com/r/creepyPMs creepy behavior]. In this screenshot, in addition to the text messages' content, we see a battery bar reflecting a charge of 6%. The phone appears to be an {{w|iPhone}}, a device [http://blogs.which.co.uk/technology/apple/new-iphones-still-give-shorter-battery-life-than-android-rivals/ not known for long battery life]; Randall, meanwhile, seems to be running {{w|Android}}, which generally has a longer battery life, and his charge rests at a healthy 85%.&lt;br /&gt;
&lt;br /&gt;
The title text suggests that Randall has plugged in his phone to quell the anxiety induced by the 6% charge in the screenshot, but this measure is obviously unsuccessful, as charging his own phone does nothing to change the charge of the phone in the picture.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;When someone posts a screenshot of their phone,&amp;quot;&lt;br /&gt;
:[A screenshot of a text exchange, being viewed in another phone's browser. The screenshotted phone has a 6% charge, while the phone viewing the screenshot has an 85% one. The charge indicator in the screenshot is circled in red and marked with several exclamation points.]&lt;br /&gt;
:&amp;quot;I can't pay attention to the content if their battery is low.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:816:_Applied_Math&amp;diff=67167</id>
		<title>Talk:816: Applied Math</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:816:_Applied_Math&amp;diff=67167"/>
				<updated>2014-05-12T19:58:58Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: explosion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Where IS the indication that she got the address from [[Black Hat]] ?[[User:Guru-45|Guru-45]] ([[User talk:Guru-45|talk]]) 10:45, 17 May 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
She must have derived it via the principle of explosion. [[Special:Contributions/108.162.221.90|108.162.221.90]] 19:58, 12 May 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1174:_App&amp;diff=67159</id>
		<title>1174: App</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1174:_App&amp;diff=67159"/>
				<updated>2014-05-12T14:43:05Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Transcript */ Question mark is in bold&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1174&lt;br /&gt;
| date      = February 15, 2013&lt;br /&gt;
| title     = App&lt;br /&gt;
| image     = app.png&lt;br /&gt;
| titletext = If I click 'no', I've probably given up on everything, so don't bother taking me to the page I was trying to go to. Just drop me on the homepage. Thanks.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Some web sites have a {{w|mobile app}} designed for use on mobile devices such as smartphones and tablets. In theory this is because the main website will be more difficult to navigate on the small screen of a mobile, or some features won't work. In practice, this alternative is frequently worse than simply viewing the standard web page, for reasons offered in the comic:&lt;br /&gt;
&lt;br /&gt;
*You cannot zoom or change the text size in most of these apps, a feature available on mobile browsers.&lt;br /&gt;
*The app is often of poor quality and is incomplete, lacks part of the content, or lacks features available on the standard web site.&lt;br /&gt;
&lt;br /&gt;
The comic offers a brutally honest version of such a promotional popup. Alternatively to an app, some sites have a mobile version which is still an HTML-based website - just one that has been designed for mobile. These mobile versions (often denoted by being in an &amp;quot;m.&amp;quot; subdomain) often have the same issues as above, or worse, because the sites do not have the benefit of the programability of an app.&lt;br /&gt;
&lt;br /&gt;
Compounding the frustration is that some sites aggressively promote their app/mobile version with a popup message that repeats the suggestion on every visit to the site, and as the title text notes, if you reject the popup, you end up on the site's homepage, rather than the subpage you may have been trying to reach via a web search. A similar effect (where the mobile version will only load the site's main page) is described in more detail in [[869: Server Attention Span|comic 869]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A popup window on top of a webpage displayed in a smartphone browser.]&lt;br /&gt;
:Want to visit an incomplete version of our website where you '''can’t zoom?'''&lt;br /&gt;
:'''Download our app!'''&lt;br /&gt;
:[OK] [No, but ask me again every time]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Computers]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1367:_Installing&amp;diff=67158</id>
		<title>1367: Installing</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1367:_Installing&amp;diff=67158"/>
				<updated>2014-05-12T14:41:47Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1367&lt;br /&gt;
| date      = May 12, 2014&lt;br /&gt;
| title     = Installing&lt;br /&gt;
| image     = installing.png&lt;br /&gt;
| titletext = But still, my scheme for creating and saving user config files and data locally to preserve them across reinstalls might be useful for--wait, that's cookies.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic refers to the kind of &amp;quot;inventions&amp;quot; which seem new from the point of view of a {{w|smartphone}} (handheld computer) user, but have already been around for a long time on desktop or laptop/notebook computers.&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] has a clever idea to skip the downloading and installing of applications on mobile phones: he would host the applications online instead, and provide links to the servers.&lt;br /&gt;
The apps wouldn't stay on the phone all the time; instead the phone would download each app again every time the user wanted to run it.&lt;br /&gt;
&lt;br /&gt;
However, web pages and {{w|web application}}s already work like this.&lt;br /&gt;
Clicking a link will make the browser download a web page and execute the contained HTML and any JavaScript it contains or plugin data (such as Flash applets) that it links to.&lt;br /&gt;
&lt;br /&gt;
The page usually isn't saved long-term on the user's computer; instead the browser downloads it again when needed. HTML 5 does however offer the option of {{w|Cache_manifest_in_HTML5|caching web application files locally}} so it can remain operational when there is no network connection.&lt;br /&gt;
&lt;br /&gt;
In the title text, Cueball's idea for local application storage already exists in the HTTP protocol as {{w|HTTP cookie|cookies}}.  &lt;br /&gt;
More recently, the HTML 5 protocol added the more flexible {{w|Web storage|web storage}}, which does much the same thing.&lt;br /&gt;
&lt;br /&gt;
Native phone applications and web applications are not completely interchangeable.&lt;br /&gt;
The web browser that is needed to run web applications on a mobile phone doesn't allow access to several of the phone's resources, like notifications and sensors. The {{w|Firefox_OS|Firefox OS}} project is trying to standardize access to these resources so that the entire user interface can be a web application, while projects like {{w|Apache_Cordova|Apache Cordova}} make these resources available to web applications by creating a native application wrapper for the web application.&lt;br /&gt;
&lt;br /&gt;
A comic with a similar point of view is [[1174: App]]: Want to visit an incomplete version of our website where you '''can’t zoom? Download our app!'''&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Megan are standing next to each other.]&lt;br /&gt;
:Cueball: Installing things has gotten so fast and painless.&lt;br /&gt;
:Cueball: Why not skip it entirely, and make a phone that has every app &amp;quot;installed&amp;quot; already and just downloads and runs them on the fly?&lt;br /&gt;
&lt;br /&gt;
:[Caption:]&lt;br /&gt;
:I felt pretty clever until I realized I'd invented webpages.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1366:_Train&amp;diff=67005</id>
		<title>1366: Train</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1366:_Train&amp;diff=67005"/>
				<updated>2014-05-09T13:44:30Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Not relativistic (pertaining to the Theory of Relativity) but relative (in relation to something else)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1366&lt;br /&gt;
| date      = May 9, 2014&lt;br /&gt;
| title     = Train&lt;br /&gt;
| image     = train.png&lt;br /&gt;
| titletext = Trains rotate the Earth around various axes while elevators shift its position in space.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|First explain - please check or correct anything I may have done wrong.}}&lt;br /&gt;
&lt;br /&gt;
This comic plays on the way everything in the universe can be viewed from a relative perspective. Rather than viewing it as the train moving itself relative to Earth, Randall explains it as trains moving the Earth relative to itself. &lt;br /&gt;
&lt;br /&gt;
The title text takes this further by saying that elevators do the same thing by pulling the Earth up and down, rather than moving up and down by themselves.&lt;br /&gt;
&lt;br /&gt;
These examples use the train and the elevator as fixed points to define relative travel. The more common method to define movement is to use the Earth's surface as fixed point, but other reference points could be the {{w|Earth's_rotation|Earth's center}}, the {{w|Sun}}, predefined {{w|Fixed_star|&amp;quot;fixed&amp;quot; stars}} or the {{w|Galactic_Center|center of our galaxy}}. Each of these would result in a completely different movement speed.&lt;br /&gt;
&lt;br /&gt;
It should also be noted that the comic's logic only holds true for single, isolated trains; if all the trains on the planet were actually causing rotation, then their mutually exclusive directions would cause jams.  The trains would, however, have a minute, immeasurable effect on the Earth's rotation (see [http://what-if.xkcd.com/41/ 41: Go West] and [[162: Angular Momentum]]).&lt;br /&gt;
&lt;br /&gt;
The logic of the comic also fails when taking acceleration into account. Whether the train or earth is moving can be determined by which one experiences a force due to acceleration or deacceleration when the train starts.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
TRAIN:&lt;br /&gt;
&lt;br /&gt;
''A picture of a tiny planet (presumably meant to be Earth) with [[Cueball]] on the south, [[Hairy]] on the right, and [[Megan]] on the left.  At the top is a train on tracks with another cueball in it.''&lt;br /&gt;
&lt;br /&gt;
A machine that grabs the&lt;br /&gt;
Earth by metal rails and&lt;br /&gt;
rotates it until the part&lt;br /&gt;
you want is near you&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1364:_Like_I%27m_Five&amp;diff=66749</id>
		<title>1364: Like I'm Five</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1364:_Like_I%27m_Five&amp;diff=66749"/>
				<updated>2014-05-05T14:22:34Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Adding characters to the titole text, because it is confusing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1364&lt;br /&gt;
| date      = May 5, 2014&lt;br /&gt;
| title     = Like I'm Five&lt;br /&gt;
| image     = like_im_five.png&lt;br /&gt;
| titletext = 'Am I taking care of you? I have a thesis to write!' 'My parents are at their house; you visited last--' 'No, no, explain like you're five.'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|}}&lt;br /&gt;
ELI5, or Explain Like I'm Five (e.g. [http://www.reddit.com/r/explainlikeimfive/ on Reddit]), is a way of asking for a simpler explanation of some difficult topic. In this comic, Cueball asks Megan for a simple explanation of her thesis. Megan takes it literally by acting as if Cueball is an actual five year old. A five-year-old kid standing miles away from home without his parents talking to a strange woman is worrying, so Megan pretends to panic and asks where his parents are.&lt;br /&gt;
&lt;br /&gt;
The title text is a continuation of the conversation. When Cueball attempts to respond to Megan's questions, she asks him to also speak as if he is five.&lt;br /&gt;
:Megan: Am I taking care of you? I have a thesis to write!&lt;br /&gt;
:Cueball: My parents are at their house; you visited last--&lt;br /&gt;
:Megan: No, no, explain like you're five.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Cueball: What've you been up to?&lt;br /&gt;
:Megan: Doing tons of math for my thesis.&lt;br /&gt;
:Cueball: Can you explain it like I'm five?&lt;br /&gt;
:Megan: &amp;quot;Oh my god, where are your parents?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=290:_Fucking_Blue_Shells&amp;diff=66116</id>
		<title>290: Fucking Blue Shells</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=290:_Fucking_Blue_Shells&amp;diff=66116"/>
				<updated>2014-04-25T13:52:56Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Deleting reference to unrelated comic, which simply happens to have 3 words relevant to this comic (but not the reason for those 3 words).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 290&lt;br /&gt;
| date      = July 16, 2007&lt;br /&gt;
| title     = Fucking Blue Shells&lt;br /&gt;
| image     = fucking_blue_shells.png&lt;br /&gt;
| titletext = You can evade blue shells in Double Dash, but it is deep magic.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
Sometimes, something suddenly goes wrong and you can only shout obscenities at it. For instance, when the dog bites, when the bee stings, something unexpected happens, or a program crashes (i.e. a {{w|Segmentation fault|segfault}}) the victim often reacts by swearing.&lt;br /&gt;
&lt;br /&gt;
For [[Randall]], however, profanities are caused mostly by blue shells in the video game {{w|Mario Kart}}. The blue shells, when fired, target the player currently in first place and stop them cold. In a close game, a player can go from first to an unrecoverable last in one hit. &lt;br /&gt;
&lt;br /&gt;
The title text refers to the &amp;quot;{{w|Mario_Kart:_Double_Dash!!|Double Dash}}&amp;quot; edition of Mario Kart. This includes a technique to avoid being hit by a blue shell, but it requires skillful timing to accomplish.  The term &amp;quot;deep magic&amp;quot; is a reference to {{w|The Chronicles of Narnia}}, in which Aslan explains away a seeming miracle as such.&lt;br /&gt;
&lt;br /&gt;
Interestingly it seems that Randall swear more over people who use irony than over injuries!&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:My Profanity Usage By Cause:&lt;br /&gt;
:[Pie chart is shown.]&lt;br /&gt;
:[Injury is about 5% of pie chart.]&lt;br /&gt;
:[Irony is about 5% of pie chart.]&lt;br /&gt;
:[Misc is about 5% of pie chart.]&lt;br /&gt;
:[Segfaults is about 10% of pie chart.]&lt;br /&gt;
:[Mario Kart is about 75% of pie chart.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Charts]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Video games]]&lt;br /&gt;
[[Category:Mario Kart]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1353:_Heartbleed&amp;diff=64955</id>
		<title>1353: Heartbleed</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1353:_Heartbleed&amp;diff=64955"/>
				<updated>2014-04-09T12:09:11Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1353&lt;br /&gt;
| date      = April 9, 2014&lt;br /&gt;
| title     = Heartbleed&lt;br /&gt;
| image     = heartbleed.png&lt;br /&gt;
| titletext = I looked at some of the data dumps from vulnerable sites, and it was ... bad. I saw emails, passwords, password hints. SSL keys and session cookies. Important servers brimming with visitor IPs. Attack ships on fire off the shoulder of Orion, c-beams glittering in the dark near the Tannhäuser Gate. I should probably patch OpenSSL.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&amp;quot;Heartbleed&amp;quot; refers to a critical bug in the OpenSSL security library. This bug was publicly released on Monday, April 7th, 2014.&lt;br /&gt;
Due to a programming error in OpenSSL versions 1.0.1 through 1.0.1f (inclusive), attackers could read random server memory by sending specially prepared heartbeat signals to an affected server.&lt;br /&gt;
This exploit allows attackers to obtain random pieces of information, including, but not limited to, the servers private key(!!!), in-memory passwords, contents of open files, and much more.&lt;br /&gt;
More information is available at [http://heartbleed.com heartbleed.com] or under CVE-2014-0160, [https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-0160 CVE-2014-0160 at nvd.nist.gov]&lt;br /&gt;
&lt;br /&gt;
This bug is classified as extremely critical due to the potential of unveiling the servers private key, enabling anyone to impersonate the server and/or decrypt all traffic to it (unless &amp;quot;perfect forward secrecy&amp;quot; ciphers is used, which is currently rare).&lt;br /&gt;
Furthermore, because the exploit occurs in the handshake phase of setting up a connection, no traces of it are logged.&lt;br /&gt;
I.E. You can be attacked and never be the wiser.&lt;br /&gt;
&lt;br /&gt;
The mouseover text cites the {{w|Tears in rain soliloquy}}, the dying words of the replicant and main antagonist Roy Batty (played by {{w|Rutger Hauer}}) in the 1982 film ''{{w|Blade Runner}}'', implying that replicant brains use one of the affected versions of OpenSSL.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Megan: Heartbleed must be the worst web security lapse ever.&lt;br /&gt;
:Cueball: Worst so far. Give us time.&lt;br /&gt;
:Megan: I mean, this bug isn't just broken encryption.&lt;br /&gt;
:Megan: It lets website visitors make a server dispense random memory contents.&lt;br /&gt;
:Megan: It's not just keys. It's traffic data. Emails. Passwords. Erotic faniction.&lt;br /&gt;
:Cueball: Is '''everything''' compromised?&lt;br /&gt;
:Megan: Well, the attack is limited to data stored in computer memory.&lt;br /&gt;
:Cueball: So paper is safe. And clay tablets.&lt;br /&gt;
:Megan: Our imaginations, too.&lt;br /&gt;
:Cueball: See, we'll be fine.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1351:_Metamaterials&amp;diff=64364</id>
		<title>1351: Metamaterials</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1351:_Metamaterials&amp;diff=64364"/>
				<updated>2014-04-04T15:17:39Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ switch is a better word that shift&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1351&lt;br /&gt;
| date      = April 4, 2014&lt;br /&gt;
| title     = Metamaterials&lt;br /&gt;
| image     = metamaterials.png&lt;br /&gt;
| titletext = If I developed a hue-shifting metamaterial, I would photobomb people's Instagram pics with a sheet of material that precisely undid the filter they were using.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Feels incomplete.}}&lt;br /&gt;
&lt;br /&gt;
{{w|Metamaterials}}, artificially created materials typically composed of very finely structured “conventional” materials, may cause light passing through them to shift.  The exact color it shifts to varies based on the design of the material.&lt;br /&gt;
In today’s comic, Megan uses her metamaterial (which is in the shape of a box) to switch the colors of the cliché Valentine’s Day poem, “{{w|Roses are red}}, violets are blue, sugar is sweet and so are you.”&lt;br /&gt;
&lt;br /&gt;
The title text references this with Randall pondering making a metamaterial that reverses the effect of {{w|instagram}} filters, likely by placing the material between the camera and the subject just before the picture is taken.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
:[Picture of a red violet.]&lt;br /&gt;
:Megan (off-screen): Violets are red.&lt;br /&gt;
&lt;br /&gt;
:[Picture of a blue rose.]&lt;br /&gt;
:Megan (off-screen): And roses are blue.&lt;br /&gt;
&lt;br /&gt;
:[Megan holding sheet of transparent material in front of the two flowers: red violet, blue rose.  Cueball stands nearby.]&lt;br /&gt;
:Megan: When metamaterials&lt;br /&gt;
&lt;br /&gt;
:[Megan moves the object away from the flowers.  Now violet is blue, and rose is red]&lt;br /&gt;
:Megan: Alter their hue.&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:Comics with color]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1350:_Lorenz&amp;diff=63792</id>
		<title>1350: Lorenz</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1350:_Lorenz&amp;diff=63792"/>
				<updated>2014-04-01T17:49:38Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ April 1st 2014 was a Tuesday&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1350&lt;br /&gt;
| date      = April 1, 2014&lt;br /&gt;
| title     = Lorenz&lt;br /&gt;
| image     = lorenz.png&lt;br /&gt;
| titletext = Every choice, no matter how small, begins a new story&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{incomplete|All possible dialogues are not yet accounted for}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic is a April fools comic with crowd sourced content. Since April 1st 2014 was a Tuesday, this comic is not in the normal sequence Monday, Wednesday and Friday.&lt;br /&gt;
&lt;br /&gt;
It appears that new panels may be generated by Randall in near real time as user suggestions to dialog is submitted.&lt;br /&gt;
&lt;br /&gt;
The title 'Lorenz' is referring to {{w|Edward Norton Lorenz}} who among other subjects was famous for {{w|Chaos theory}}.  The title is a reference to that the story line of today's comic will include most (all?) of the user submitted dialogue and hence will in nature be chaotic.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A transcript will be difficult to create due to the branching nature of the comic.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Computers]]&lt;br /&gt;
[[Category:Dynamic comics]]&lt;br /&gt;
[[Category:April fool's comics]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1348:_Before_the_Internet&amp;diff=63544</id>
		<title>Talk:1348: Before the Internet</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1348:_Before_the_Internet&amp;diff=63544"/>
				<updated>2014-03-28T17:34:00Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'm pretty sure that Randall doesn't make this mistake, but &amp;quot;Before the Internet&amp;quot; and &amp;quot;Before the Web&amp;quot; are two very different things in a way that old fogeys like myself (and him) tend to mutter on about when anyone younger than maybe 40 make the mistake of conflating the two.&lt;br /&gt;
If that's Exploit Mom, she'd probably be too young to ''really'' know times pre-Internet in the truest sense.  (Although &amp;quot;before the layperson ''knew'' about the Internet&amp;quot; could be placed somewhere in the mid-to-late '90s, which ''is'' after the early '90s inception of the Web.)&lt;br /&gt;
Enough pedantry.  Someone needs to make a more useful comment than the above, and quickly! [[Special:Contributions/141.101.89.211|141.101.89.211]] 06:00, 28 March 2014 (UTC)&lt;br /&gt;
:The person asking the question is a child-character.  The adult-character then followed up with a clarification question &amp;quot;[Do you mean] not having a phone or computer to distract you?&amp;quot;.  Though, in your &amp;quot;truest sense&amp;quot;, &amp;quot;before the Internet&amp;quot; and &amp;quot;the first decade or so of the Internet&amp;quot; would be mostly the same.  The Internet didn't have much of an impact on or value to society until after it reached a certain size.[http://en.wikipedia.org/wiki/Network_effect] [[Special:Contributions/108.162.237.64|108.162.237.64]] 07:15, 28 March 2014 (UTC)&lt;br /&gt;
I read a lot. Before the internet was cheap, I would go to the library on my bike, borrow 5 books (the limit), read them all and go to the library again. On a good weekend day I could repeat this 3 or 4 times. Some books I've read thousands of times. Relevant irrelevant comment[[Special:Contributions/108.162.218.41|108.162.218.41]] 07:18, 28 March 2014 (UTC)&lt;br /&gt;
: Very impressive.  Libraries are typically open for 8 hours a day, so you read 15-20 (3-4 x 5) books in 8 hours.  That's about 30 minutes per book.&lt;br /&gt;
: A short novel is about 200 pages.  I'm an accomplished reader, and I read about a page a minute.  Assuming you read exclusively short novels, you managed 7 pages a minute, or 3500 words per minute, or one page every 10 seconds.  That's about three times the 1000-words-per-minute limit on human skim-reading comprehension.  I'm very impressed!&lt;br /&gt;
: This may explain why you have had to read some books thousands of times.  At a reading speed of 3500 words per minute, your comprehension was likely extremely poor, necessitating you to go back many times to understand what was going on.  May I suggest that in future, you read more slowly, so that you can understand better the first time?  You'll enjoy what you're reading so much more.[[Special:Contributions/173.245.53.178|173.245.53.178]] 17:11, 28 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Does this comic even ''need'' explaining? Pretty self-explanatory of you ask me. —[[Special:Contributions/108.162.210.237|108.162.210.237]] 08:04, 28 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I think some sort of explanation relating to why this is funny.  It is sort of the opposite of the standard nostalgia.  Rather like our parents generation may have had a similar discussion with their parents about the invention of TV (add a generation if you are too young).  When you think about it, it is a bit odd how society is keen to develop tech to make things better, and at the same time declare that things were better in the past.  We sometimes get quite good expositions on this sort of thing here... hopefully someone with some sociology/psychology knowledge can explain this a bit better. {{unsigned ip|108.162.219.19}}&lt;br /&gt;
::Agreed it's fairly self-explanatory.  The 'reverse-nostalgia' point is interesting.  I guess the joke here is kind of that the Mom is making it sound like there was nothing to do before the internet, whereas in reality there was plenty to do; people weren't sitting around waiting for the internet to be invented so they didn't know that it was a thing that could be missing from their lives, it just seems that way now because we can't imagine our lives without it.  In a way, it's almost a variation on the classic 'we can't watch TV, it hasn't been invented yet' joke.[[Special:Contributions/173.245.53.148|173.245.53.148]] 11:31, 28 March 2014 (UTC)&lt;br /&gt;
:::People weren't sitting around waiting for Internet to be invented. Computers already existed, so people were walking around with floppy disks (or tapes) and saying things like &amp;quot;It would be great if we could exchange data while sitting home ...&amp;quot; -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 11:48, 28 March 2014 (UTC)&lt;br /&gt;
::My main question is whether the Mom character is being serious or sarcastic - as in the way some people like to wind children up by giving them made-up answers to questions.[[Special:Contributions/173.245.53.148|173.245.53.148]] 11:33, 28 March 2014 (UTC)&lt;br /&gt;
:::Yeah, she could be messing with her by just answering with the opposite of what she's clearly expected to say in this exchange. I think the joke works both ways. [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 15:24, 28 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Of course the past was better. Before the Internet, I had lot of free time I could spend whatever I wanted. Now I'm forced to spend most of day in work. Oh, wait, that isn't because of Internet but because I was child and had summer holiday and now I'm adult. (Also, the Internet technically exists since December 1974, but for most people, mid-1990s is start of Internet and my &amp;quot;before the Internet&amp;quot; refers to that). -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 11:48, 28 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Isn't this a joke on how older people say younger people don't interact with eachother unless through cellphone etc. Even if they are sitting right next to eachother--[[User:Nitho|Nitho]] ([[User talk:Nitho|talk]]) 11:59, 28 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Ponytail&lt;br /&gt;
In [[1105: License Plate]] we can see Ponytail is a police officer. Therefore she must be at least 22, and therefore she was born before 1990. If this comic features Ponytail, then it must be set at most in 2000 (when Ponytail was 10). But in 2000 or before people didn't have smartphones. In my opinion this comic is set in 2014, and therefore the girl character is not [[Ponytail]] but simply a girl with a ponytail. [[Special:Contributions/173.245.50.84|173.245.50.84]] 12:44, 28 March 2014 (UTC)&lt;br /&gt;
:Or maybe [[1105: License Plate]] was set in 2024?&lt;br /&gt;
:While we are identifying Randalls characters by how they are drawn, I don't think he does. (except for Blackhat and Beret Guy) -- [[User:Xorg|Xorg]] ([[User talk:Xorg|talk]]) 13:20, 28 March 2014 (UTC)&lt;br /&gt;
::Of course he doesn't. In [[1344: Digits]] it was arbitrary to label one character as Cueball and the other as Guy. [[Special:Contributions/108.162.221.90|108.162.221.90]] 17:34, 28 March 2014 (UTC) (I'm [[Special:Contributions/173.245.50.84|173.245.50.84]]).&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1348:_Before_the_Internet&amp;diff=63518</id>
		<title>1348: Before the Internet</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1348:_Before_the_Internet&amp;diff=63518"/>
				<updated>2014-03-28T12:30:41Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ If this is a child it can't be Ponytail&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1348&lt;br /&gt;
| date      = March 28, 2014&lt;br /&gt;
| title     = Before the Internet&lt;br /&gt;
| image     = before_the_internet.png&lt;br /&gt;
| titletext = We watched DAYTIME TV. Do you realize how soul-crushing it was? I'd rather eat an iPad than go back to watching daytime TV.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|First draft, please proofread and edit.}}&lt;br /&gt;
[[Megan]] appears with a girl with a ponytail. After been asked what life was like before the internet, Megan answered with the most basic answer possible, just describing what the girl likely already knew. When the girl broadens her question, Megan responds with what it is likely many kids think life was like before the internet: dull, boring, and eventless. Megan continues on to explain that even the fact that life was more fulfilling and engaging did not compensate for the nonexistence of the internet.&lt;br /&gt;
The title text goes on to include daytime television. Daytime television consisted mostly of soap operas, and children's programming existed almost exclusively before noon on Saturdays. Further, Megan also believes that dying due to lots of different types of metal poisoning (eating an iPad) would be better than going back to watching daytime TV as it existed in a pre-internet world.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Ponytail: Do you remember before the internet?&lt;br /&gt;
:Megan: Oh yeah, totally.&lt;br /&gt;
:Ponytail: what was it like?&lt;br /&gt;
:Megan: Not having a phone or computer to distract you?&lt;br /&gt;
:Ponytail: Yeah.&lt;br /&gt;
:Megan: It was '''''SO. BORING.''''' All the time. I just '''''sat''''' there. It was the '''''worst.'''''&lt;br /&gt;
:Ponytail: But wasn't it, like, more fulfilling? Engaging?&lt;br /&gt;
:Megan: Wasn't worth it.&lt;br /&gt;
:Ponytail: ''I'' still get bored.&lt;br /&gt;
:Megan: Not like we did.&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Internet]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1346:_Career&amp;diff=63369</id>
		<title>1346: Career</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1346:_Career&amp;diff=63369"/>
				<updated>2014-03-26T11:25:56Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Suppressing &amp;quot;citation needed&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1346&lt;br /&gt;
| date      = March 24, 2014&lt;br /&gt;
| title     = Career&lt;br /&gt;
| image     = career.png&lt;br /&gt;
| titletext = They'd convince me to come out of retirement for one last job: biting into a giant lump of slightly soft wax a couple of times.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|There is a probability of some nontrivial connection between those three tasks,The 'explanation' does not properly explain the comic}}&lt;br /&gt;
Cueball is presumably asked to answer the typical HR interview question: What is your dream job? Rather than going with the more common answers that are designed to increase the chances of landing that particular job, Cueball talks about unrealistic jobs that are fun, whimsical, and so well compensated that a little over one hour on the clock would provide enough wealth for a luxurious retirement; of course, you can have such a job only in your dreams. Some people think peeling lint off dryer traps is quite fun, but it gets boring soon, so Cueball wants to do that only for 5 minutes, followed by pressing a lightsaber handle up to things (this does not exist yet, sadly) for an hour. Then Cueball would like to retire to a life of luxury, and the only way to bring him out of it is to offer him to do another fun task till he gets bored again.&lt;br /&gt;
&lt;br /&gt;
The lightsaber part is most likely a reference to the beginning of Star Wars Episode I, where Jedi Qui-Gon Jinn does exactly this.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is talking to a woman sitting behind a desk]&lt;br /&gt;
:Cueball: It would start with five minutes of peeling lint from dryer traps&lt;br /&gt;
:Cueball: Followed by an hour of pressing a lightsaber handle against things and switching it on.&lt;br /&gt;
:Cueball: Then I'd retire to a life of luxury.&lt;br /&gt;
&lt;br /&gt;
When people ask me to describe my dream job, I'm never sure how realistic to be.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Star Wars]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1346:_Career&amp;diff=63260</id>
		<title>1346: Career</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1346:_Career&amp;diff=63260"/>
				<updated>2014-03-24T12:32:57Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ dream has (at least) two meanings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1346&lt;br /&gt;
| date      = March 24, 2014&lt;br /&gt;
| title     = Career&lt;br /&gt;
| image     = career.png&lt;br /&gt;
| titletext = They'd convince me to come out of retirement for one last job: biting into a giant lump of slightly soft wax a couple of times.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|There is a probability of some nontrivial connection between those three tasks}}&lt;br /&gt;
&lt;br /&gt;
Cueball's dream job, rather than being an astronaut or game designer or some other typical response, is to do a variety of really easy and/or cool tasks. Who HASN'T wanted to press a lightsaber handle up to things and watch it pierce through?&lt;br /&gt;
The alt text references a similarly easy and fun task.&lt;br /&gt;
&lt;br /&gt;
Human Resources people expect applicants to say realistic jobs they dream of (dream as ''an aspiration or goal'' or ''something of unreal excellence)''. On the other hand Cueball says crazy jobs someone could dream of having (dream here is ''a succession of images passing through the mind during sleep),'' but it's impossible that anyone would pay someone for peeling lint from dryer traps.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is talking to a woman]&lt;br /&gt;
:Cueball: It would start with five minutes of peeling lint from dryer traps&lt;br /&gt;
:Cueball: Followed by an hour of pressing a lightsaber handle against things and switching it on.&lt;br /&gt;
:Cueball: Then I'd retire to a life of luxury.&lt;br /&gt;
&lt;br /&gt;
When people ask me to describe my dream job, I'm never sure how realistic to be.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1345:_Answers&amp;diff=63123</id>
		<title>1345: Answers</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1345:_Answers&amp;diff=63123"/>
				<updated>2014-03-21T12:16:55Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ &amp;amp;mdash&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1345&lt;br /&gt;
| date      = March 21, 2014&lt;br /&gt;
| title     = Answers&lt;br /&gt;
| image     = answers.png&lt;br /&gt;
| titletext = Stanford sleep researcher William Dement said that after 50 years of studying sleep, the only really solid explanation he knows for why we do it is 'because we get sleepy'.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Cueball claims that humans are driven by their curiosity, which is never-ending.  This appears to be a riff on the recurring philosophical question of what separates humanity from the rest of the animals.  [[Megan]] answers this blanket statement by observing an apparent paradox:  Everyone spends approximately eight hours per day in an unconscious state of sleep, but no one has yet discovered the biological purpose of sleep.  This implies that every member of the human species is confronted daily with a mystery, yet no one &amp;quot;loses sleep over it&amp;quot;&amp;amp;mdash;that is, almost no one is distracted by this mystery.  This implies that Cueball's observed curiosity has a perceptible and proximate limit.  &lt;br /&gt;
&lt;br /&gt;
It should be noted that many scientists are in fact busily investigating the reasons that humans sleep, although that inquiry has not resulted in satisfying answers.  Some offered explanations are: to avoid nocturnal predators, to give the body a chance to repair itself, and to allow the brain a period to sort out long-term from short-term memories.  &lt;br /&gt;
&lt;br /&gt;
It should also be noted that &amp;quot;Which is why it keeps me awake all night&amp;quot; would have been a better punchline for Cueball than &amp;quot;touché.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
The tooltip makes a semi-tautological statement that people sleep only &amp;quot;because we get sleepy.&amp;quot;  This is an example of question-begging, because getting sleepy only means that someone is feeling the urge to sleep.  This may be an oblique reference to the French playwright Moliere [https://en.wiktionary.org/wiki/dormitive_principle], who created a satirical character who claimed to have discovered the answer to a popular question:  The reason opium makes someone sleepy, said the character (a doctor), was that it contained a &amp;quot;dormitive principle&amp;quot; (i.e., something that makes someone sleepy).&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Megan are talking.]&lt;br /&gt;
:Cueball: Humans are defined by our curiosity, our hunger for answer.&lt;br /&gt;
:Megan: We all spend a third of our lives lying down with our eyes closed and '''''NOBODY KNOWS WHY.'''''&lt;br /&gt;
:Cueball: Touché.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1344:_Digits&amp;diff=62988</id>
		<title>1344: Digits</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1344:_Digits&amp;diff=62988"/>
				<updated>2014-03-19T12:41:53Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: Not only Randall sees Tetris patterns in skylines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1344&lt;br /&gt;
| date      = March 19, 2014&lt;br /&gt;
| title     = Digits&lt;br /&gt;
| image     = digits.png&lt;br /&gt;
| titletext = It's taken me 20 years to get over skyline tetris.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|The title text and Skyline Tetris is not explained}}&lt;br /&gt;
[http://gabrielecirulli.github.io/2048/ 2048] is a popular browser-based game in which players must move tiles in a 4 by 4 grid with numbers on them. When two tiles of the same number touch they can be merged into one tile with a value of the two tiles combined. So when two 4-tiles touch and are merged they form one 8-tile. The player can move the tiles by pressing an arrow key (or swiping in a direction on the mobile version), which will move all the tiles in that direction. Everytime the player makes such a move another tile will appear on a random cell. The goal of the game is to get a tile with the number 2048. &lt;br /&gt;
&lt;br /&gt;
In the comic the room number can be seen as 4 tiles with the values 8, 2, 2 and 4. If these occur in the game the player can merge the two 2-tiles into one 4-tile. This will then cause two 4-tiles to lie next to eachother so these can be merged into one 8-tile. Finally the two 8-tiles can be merged into one 16-tile.&lt;br /&gt;
&lt;br /&gt;
The title text refers to the imagining of how parts of a city skyline could fit nicely with other parts in a manner similar to how tiles in Tetris can fit nicely into a landscape of Tetris blocks (presumably to complete a row or two). Randall, as many others,[http://shirt.woot.com/derby/entry/2869/chicago-skyline-tetris-redux] apparently got hooked on Tetris so much when it came out that, for 20 years, he would look at city skylines and see Tetris-like patterns in it. Similarly, he has now been hooked onto 2048 and notices number patterns that would be desirable to obtain during the game.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A guy is walking and Cueball is following him.]&lt;br /&gt;
:Guy: The talk is in room 8224.&lt;br /&gt;
:Cueball: Ooh, nice.&lt;br /&gt;
:Guy: What?&lt;br /&gt;
:Cueball: ...Sorry. Nothing.&lt;br /&gt;
&lt;br /&gt;
:Caption: Great, now I'll spend the rest of my life noticing numbers that would make good 2048 combos.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1102:_Fastest-Growing&amp;diff=62727</id>
		<title>1102: Fastest-Growing</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1102:_Fastest-Growing&amp;diff=62727"/>
				<updated>2014-03-14T14:45:02Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ not &amp;quot;therefore&amp;quot; but &amp;quot;presumably&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1102&lt;br /&gt;
| date      = August 31, 2012&lt;br /&gt;
| title     = Fastest-Growing&lt;br /&gt;
| image     = fastest_growing.png&lt;br /&gt;
| titletext = I lead a small but extraordinarily persuasive religion whose only members are door-to-door proselytizers from other faiths.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Explanation ==&lt;br /&gt;
Using percentage of growth can be a misleading value to use for gauging the importance or popularity of something. If you have 5 members and then add 5 more, that would mean you have achieved a growth of 100%.&lt;br /&gt;
&lt;br /&gt;
In the case portrayed in this comic the claim appears to be that the other person's religion grew by 85%. [[Black Hat]] attempts humorously to show the flaw in using that statistic by growing his group by 100% (therefore, presumably, first place), which he simply does by adding his friend [[Rob]] to his religion, and thus increasing his membership from 1 to 2. The other person then says that his religion has a significant number of members (and not just one or two), but Black Hat doesn't care and responds that he hopes they are all OK with being &amp;quot;in second place&amp;quot; (since the main argument from the other guy was about being the fastest-growing).&lt;br /&gt;
&lt;br /&gt;
The title text is probably Black Hat parodying the entire point of having a religion. He managed to snag himself a door-to-door {{w|Proselytism|proselytizer}} who tries to convert people to a faith that is not Black Hat's faith of door-to-door proselytizers from other religions. Black Hat himself is probably a door-to-door proselytizer from yet another faith.&lt;br /&gt;
&lt;br /&gt;
Another interpretation is that the title text could be another way that Black Hat could take the 'fastest-growing' claim out of context to make it meaningless. By composing his religion of the unwitting proselytizers of other faiths, he can claim the highest ratio of converts to current adherents. (Note that the amount of people converted is often exaggerated by groups that try to spread a faith.) Although the beliefs spread by his proselytizers vary widely, Black Hat is not concerned with what his so-called followers believe. Thus, he can claim the title of fastest-growing religion without having any value to his religion.&lt;br /&gt;
&lt;br /&gt;
== Transcript ==&lt;br /&gt;
:[A man sporting a thinning comb-over is holding a black book and a clipboard]&lt;br /&gt;
:Person: You should check us out. We're the fastest-growing religion in the country.&lt;br /&gt;
:Black Hat: &amp;quot;Fastest-growing&amp;quot; is such a dubious claim.&lt;br /&gt;
:Person: It's true! We grew by 85% over the past year.&lt;br /&gt;
&lt;br /&gt;
:[Black Hat turns to off screen right]&lt;br /&gt;
:Black Hat: Hey, Rob — Wanna join my religion?&lt;br /&gt;
:(from off screen, aka Rob): Sure, whatever.&lt;br /&gt;
&lt;br /&gt;
:[Turning back, Black Hat pulls out a steno notebook and pencil]&lt;br /&gt;
:Black Hat: Well, looks like my religion grew by 100% this year.&lt;br /&gt;
&lt;br /&gt;
:Person: We have 38,000 members!&lt;br /&gt;
:[Black hat starts to walk away]&lt;br /&gt;
:Black hat: Hope they're all OK with second place.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* There is a wiki page on the subject here: &amp;quot;{{w|Growth of religion}}&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Rob]]&lt;br /&gt;
[[Category:Religion]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1342:_Ancient_Stars&amp;diff=62713</id>
		<title>1342: Ancient Stars</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1342:_Ancient_Stars&amp;diff=62713"/>
				<updated>2014-03-14T13:06:47Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Changing absurd word &amp;quot;unfortunately&amp;quot; to &amp;quot;however&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1342&lt;br /&gt;
| date      = March 14, 2014&lt;br /&gt;
| title     = Ancient Stars&lt;br /&gt;
| image     = ancient_stars.png&lt;br /&gt;
| titletext = 'The light from those millions of stars you see is probably many thousands of years old' is a rare example of laypeople substantially OVERestimating astronomical numbers.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Title-text could use some extra explanation.}}&lt;br /&gt;
Cueball is making a common observation; many of the visible stars in the sky are so distant that it takes thousands years for light from that star to reach Earth. However, the brightest star, Sirius, also happens to be one of the nearest at a mere 8.6 light-years (in other words, the light that was arriving from Sirius in 2014, when the comic was posted, was emitted some time around August 2005). The previous US president, George W. Bush, was in office from 2000 to 2008; as Megan notes, this isn't terribly impressive.&lt;br /&gt;
&lt;br /&gt;
The title-text references the fact that most normal people have a hard time imagining the large scale of astronomical numbers (for example, the distance between astronomical  bodies or the size of a sun); they typically imagine them as many orders of magnitude smaller than they actually are. In this case, however, they instead overestimate both the number of stars and their distance by quite a bit. (It's frequently cited that about 5,000 - 10,000 stars are visible by the naked eye. - e.g. {{W|Apparent_magnitude|Wikipedia}} claims that there are 9,096 stars of apparent magnitude greater than 6.5, and to see most of those you need pretty good eyes and a very dark night. And at any point on Earth you will of course only be able to see less than half of these as the rest are blocked by the Earth!)&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball pointing up into the night sky.]&lt;br /&gt;
:Cueball: Just think - the light from that star was emitted thousands of years ago. It could be long gone.&lt;br /&gt;
:Megan: That's Sirius. It's eight light-years away.&lt;br /&gt;
:Cueball: Oh.&lt;br /&gt;
:Cueball: Just think - the light from that star was emitted in the previous presidential administration.&lt;br /&gt;
:Megan: Mmm, doesn't pack quite the punch.&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:Astronomy]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1341:_Types_of_Editors&amp;diff=62534</id>
		<title>1341: Types of Editors</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1341:_Types_of_Editors&amp;diff=62534"/>
				<updated>2014-03-12T13:39:36Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Deleting silent H in the pronunciation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1341&lt;br /&gt;
| date      = March 12, 2014&lt;br /&gt;
| title     = Types of Editors&lt;br /&gt;
| image     = types_of_editors.png&lt;br /&gt;
| titletext = m-x machineofdeath-mode&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
{{w|WYSIWYG}}, pronounced, &amp;quot;wizz-ee-wig&amp;quot;, is an acronym that stands for &amp;quot;What you see is what you get&amp;quot;. In regards to computers, it refers to text editors in which the user can see exactly what will be published as he is typing it. The comic compares various types of editors. &lt;br /&gt;
&lt;br /&gt;
A WYSIWYG editor displays the edited document in its final, typically printed, form. &lt;br /&gt;
&lt;br /&gt;
A WYSIN(not)WYG, is similar to an HTML source editor, where you enter raw HTML code and are (in a different view) presented with the rendered appearance of the page. The em tag marks text that has stress emphasis&lt;br /&gt;
&lt;br /&gt;
The WYSITUTWYG (&amp;quot;... is totally unrelated to ...&amp;quot;) editor apparently takes your input and proceeds to ignore it entirely, instead displaying totally unrelated words.&lt;br /&gt;
&lt;br /&gt;
Finally, the WYSIHYD (&amp;quot;... is how you die&amp;quot;) &amp;quot;editor&amp;quot; is not an editor at all, but a pun on the multiple meanings of the word &amp;quot;get&amp;quot;: If you see &amp;quot;eaten by wolves&amp;quot;, you will get ... eaten by wolves. The white-on-black writing is probably a reference to the anime ''Death Note''.&lt;br /&gt;
&lt;br /&gt;
The title text is a fictitious command, [https://en.wikipedia.org/wiki/Meta_key meta]-x machineofdeath-mode, to the highly extensible {{w|Emacs}} text editor. Emacs operates in various &amp;quot;modes&amp;quot;, which are customizations for specific purposes. Placing Emacs into &amp;quot;Machine of Death&amp;quot; mode would turn it into a WYSIHYD editor. Another fictitious emacs command can be found in comic [[378]]. &amp;quot;Machine of Death&amp;quot; is a reference to the 2010 book [http://machineofdeath.net/ Machine of Death], with [[Randall Munroe]] being one of the writers. It is a collection of short stories about a device that can predict how people die from a drop of their blood. In many of the stories very unusual deaths are predicted, often in a very literal way.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
[There are four panels, each with different headings over them.]&lt;br /&gt;
&lt;br /&gt;
[The first panel shows two titled text boxes, one above the other]&lt;br /&gt;
:[First panel title] '''WYSIWYG''' What you see is what you get&lt;br /&gt;
::[Upper text box title] What you see:&lt;br /&gt;
:::''Hi''&lt;br /&gt;
::[Lower text box title] What you get:&lt;br /&gt;
:::''Hi''&lt;br /&gt;
&lt;br /&gt;
[The second panel shows two titled text boxes, one above the other, the same as the first box]&lt;br /&gt;
:[Second panel title] '''WYSINWYG''' What you see is not what you get&lt;br /&gt;
::[Upper text box title] What you see:&lt;br /&gt;
:::&amp;amp;lt;em&amp;amp;gt;Hi&amp;amp;lt;/em&amp;amp;gt;&lt;br /&gt;
::[Lower text box title] What you get:&lt;br /&gt;
:::''Hi''&lt;br /&gt;
&lt;br /&gt;
[The third panel is presented the same as the first two]&lt;br /&gt;
:[Third panel title] '''WYSITUTWYG''' What you see is totally unrelated to what you get&lt;br /&gt;
::[Upper text box title] What you see:&lt;br /&gt;
:::&amp;amp;lt;em&amp;amp;gt;Hi&amp;amp;lt;/em&amp;amp;gt;&lt;br /&gt;
::[Lower text box title] What you get:&lt;br /&gt;
:::The HORSE is a noble animal.&lt;br /&gt;
&lt;br /&gt;
[The fourth panel shows two titled text areas, (which are not outlined with a border), one above the other]&lt;br /&gt;
:[Forth panel title] '''WYSIHYD''' What you see is how you die&lt;br /&gt;
::[Upper text area title] What you see:&lt;br /&gt;
:::[White text on a black background] EATEN BY WOLVES&lt;br /&gt;
::[Lower text area] What you get:&lt;br /&gt;
:::Eaten By Wolves&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1199:_Silence&amp;diff=62039</id>
		<title>1199: Silence</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1199:_Silence&amp;diff=62039"/>
				<updated>2014-03-06T21:03:34Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1199&lt;br /&gt;
| date      = April 15, 2013&lt;br /&gt;
| title     = Silence&lt;br /&gt;
| image     = silence.png&lt;br /&gt;
| titletext = All music is just performances of 4'33&amp;quot; in studios where another band happened to be playing at the time.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
''{{w|4'33&amp;quot;}}'' is a 1952 composition by American avant-garde composer {{w|John Cage}} consisting of four minutes and thirty-three seconds of silence. More specifically, 4'33&amp;quot; consists entirely of faint ambient sounds coming from the environment, while all the players silently hold their instruments. The noise of the audience is considered part of the composition. It is Cage's most famous work, and the subject of many music jokes. Note that John Cage wrote plenty of other [http://www.youtube.com/watch?v=8fPSz-o4zzY non-silent things].&lt;br /&gt;
&lt;br /&gt;
[[Megan]] is using an app on her smartphone that analyzes music that is playing and uses an online database to figure out what it is (popular real-world examples include {{w|Shazam (service)|Shazam}} and {{w|SoundHound}}). She does this in an empty room, correctly matching ''4'33&amp;quot;''. ([[Cueball]] attempted to use the same app in [[1192: Humming]], but Megan hacked it there.)&lt;br /&gt;
&lt;br /&gt;
The title text refers to the fact that since 4'33&amp;quot; is composed of the ambient sounds in an environment, if that environment is a recording studio, the ambient sound is a band playing another song.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan is walking with a phone in her hand.]&lt;br /&gt;
&lt;br /&gt;
:[Megan stops.]&lt;br /&gt;
&lt;br /&gt;
:[Megan raises her phone.]&lt;br /&gt;
:Phone: Identify song recorded&lt;br /&gt;
:Phone: &amp;gt; LIVE [Beta]&lt;br /&gt;
&lt;br /&gt;
:[Megan is in an empty room.]&lt;br /&gt;
:Phone: Listening...&lt;br /&gt;
&lt;br /&gt;
:[The phone screen.]&lt;br /&gt;
:Positive match:&lt;br /&gt;
:'''4'33&amp;quot;'''&lt;br /&gt;
:'''John Cage'''&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Music]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1338:_Land_Mammals&amp;diff=61966</id>
		<title>1338: Land Mammals</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1338:_Land_Mammals&amp;diff=61966"/>
				<updated>2014-03-06T12:58:43Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */  Since it's very unlikely that Randall assumed 49.7 kg per person, it is more possible that he assumed the average human weighs 50 kg and the world population is 7.16 billion people.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1338&lt;br /&gt;
| date      = March 5, 2014&lt;br /&gt;
| title     = Land Mammals&lt;br /&gt;
| image     = land_mammals.png&lt;br /&gt;
| titletext = Bacteria still outweigh us thousands to one--and that's not even counting the several pounds of them in your body.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|The division of animal blocks are clear but only 6 are labeled. Some qualified guesses as to how the other (at least the largest) blocks are divided should be possible... What about the layout of the blocks?}}&lt;br /&gt;
&lt;br /&gt;
This comic shows the total weight of mankind and other land mammals. &lt;br /&gt;
Only in the last century or so have humans, and their pets and livestock, come to occupy such a great proportion of the earth's land mammal mass.&lt;br /&gt;
&lt;br /&gt;
Per the diagram, there are 358 million tons of humans, 864 million tons of pets and livestock, of which 520 million tons comes from cattle, and 34 million tons of wild animals; for a total of 1.3 billion tons.&lt;br /&gt;
&lt;br /&gt;
As of March 2014 the world population was about 7.2 billion people so the comic assumes an average human weighs of about 49.7 kg: 7.2 billion people &amp;amp;times; 49.7 kg = 358 billion kg = 358 million tons. Since it's very unlikely that Randall assumed 49.7 kg per person, it is more possible that he assumed the average human weighs 50 kg and the world population is 7.16 billion people. As more than 25% of the [http://www.worldometers.info/world-population/world-population-gender-age.php worlds population is below 15 years of age], and many people live in poverty (i.e. no chance of obesity), this estimate may be very valid, although it may at first appear on the low side.&lt;br /&gt;
&lt;br /&gt;
Cattle is by far more heavy than the total human population, but we do manage to outweigh both Sheep and Pigs - which may come as a surprise - as these animals probably by far outweigh the population in the countries that produce the main part of the worlds meat from such animals.&lt;br /&gt;
&lt;br /&gt;
It is interesting to note that the world's heaviest land dwelling animal - the elephant - only takes up one square! It is the only type of wild animal to be singled out in the comic.&lt;br /&gt;
&lt;br /&gt;
There are 8 distinct blocks of wild animal (elephants and 7 others). There are 13 distinct blocks of pets and live stock (only the top 5 are labeled - in order of weight they are: Cattle, Sheep, Pigs, Goats and Horses). Dogs would properly also take up a large part - it could be the 6th largest, the one at the top - but how detailed are the division of species...?&lt;br /&gt;
&lt;br /&gt;
Note that only land dwelling mammals are taken into account - thus no whales. It is not clear as to where, for instance, seals, sea lions and walruses belong -  although they could belong to land mammals.&lt;br /&gt;
&lt;br /&gt;
All other types of animals are not included. For instance, the weight of insects would outweigh us by far. Although not as much as the bacteria mentioned in the title text - they outweigh us 1000:1.&lt;br /&gt;
&lt;br /&gt;
And that is without counting the part of our body weight that consist of bacteria: Several pounds. A fact that most people would properly like to ignore - which is a good reason to mention it here. These pounds are already counted as part of the total human weight.&lt;br /&gt;
&lt;br /&gt;
The comic references the book [http://vaclavsmil.com/the-earths-biosphere-evolution-dynamics-and-change/ The Earth's Biosphere: Evolution, Dynamics, and Change] by {{W|Vaclav Smil}} as the source for most of the data - although a few other sources has also been used. These other sources are not referenced.&lt;br /&gt;
&lt;br /&gt;
==Table of the block sizes==&lt;br /&gt;
&lt;br /&gt;
*The table ranks each of the groups of blocks from 1 to 22 according to the size of the group = the number of blocks. # Blocks thus equals weight of the group in million tons = billion kg.&lt;br /&gt;
*There is  total of 1256 blocks representing 1.256 billion tons. &lt;br /&gt;
**358 million tons of humans&lt;br /&gt;
**864 million tons of mammal pets and livestock&lt;br /&gt;
**34 million tons of wild land dwelling mammals&lt;br /&gt;
&lt;br /&gt;
:Feel free to enter a comment on the groups especially those that are not already identified.&lt;br /&gt;
&lt;br /&gt;
:The population should only be be stated (in millions) if it can found through references - the XKCD average weight (in kg) is then given from the number of blocks in the group.&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width: auto; text-align: center; font-size: 95%; table-layout: fixed; line-height:1.25&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Rank&lt;br /&gt;
! # Blocks&lt;br /&gt;
! Type&lt;br /&gt;
! Text&lt;br /&gt;
!Population (millions)&lt;br /&gt;
!XKCD weight (kg)&lt;br /&gt;
!Notes/comments&lt;br /&gt;
|-&lt;br /&gt;
! 1&lt;br /&gt;
! 520&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! Cattle&lt;br /&gt;
! 1000&lt;br /&gt;
! 520&lt;br /&gt;
! They only outweighs us by weight - not by numbers - there has been a stable [http://www.statista.com/statistics/263979/global-cattle-population-since-1990/ population] of about {{W|List of even-toed ungulates by population|1 billion cattle}} since 2007.&lt;br /&gt;
|-&lt;br /&gt;
! 2&lt;br /&gt;
! 358&lt;br /&gt;
! Humans&lt;br /&gt;
! &lt;br /&gt;
! 7200&lt;br /&gt;
! 49,7&lt;br /&gt;
! According to this [http://www.worldometers.info/world-population/ population counter] there are more than 7.2 billion people in the world today (as of march 2014).&lt;br /&gt;
|-&lt;br /&gt;
! 3&lt;br /&gt;
! 135&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! Sheep&lt;br /&gt;
! 1000&lt;br /&gt;
! 135&lt;br /&gt;
!There is about {{W|List of even-toed ungulates by population|1 billion sheep}} according to wikipedia. The {{W|Domestic_sheep#Description_and_evolution|average sheep}} weight of 135 kg seems highly exaggerated as only the rams can weigh more then that.&lt;br /&gt;
|-&lt;br /&gt;
! 4&lt;br /&gt;
! 90&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! Pigs&lt;br /&gt;
! 1000/2100?&lt;br /&gt;
! 90/43?&lt;br /&gt;
! According to the Wikipedia the {{W|Pig#Distribution_and_evolution|population of pigs}} is about {{W|List of even-toed ungulates by population|1 billion}}. According to the [http://apps.fas.usda.gov/psdonline/psdReport.aspx?hidReportRetrievalName=Swine+Summary+Selected+Countries&amp;amp;hidReportRetrievalID=1649&amp;amp;hidReportRetrievalTemplateID=7 2nd reference] given for this in the wiki article, there is, however, 1.3 billions, and then 0.8 billion more (probably piglets) for a total of 2.1 billion? The piglets will not weigh much though.&lt;br /&gt;
|-&lt;br /&gt;
! 5&lt;br /&gt;
! 39&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! Goats&lt;br /&gt;
! 864&lt;br /&gt;
! 45&lt;br /&gt;
! The {{W|Goat#Worldwide_goat_population_statistics|goat popultaion}} can be summed up to 864 million from the wiki page. According to this list there are {{W|List of even-toed ungulates by population|850 million goats}}.&lt;br /&gt;
|-&lt;br /&gt;
! 6&lt;br /&gt;
! 29&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! Horses&lt;br /&gt;
! 58&lt;br /&gt;
! 500&lt;br /&gt;
! According to Wikipedia there is a population of {{W|List of odd-toed ungulates by population|58 million}} horses. Horses can {{W|Horse#Size_and_measurement|weigh from 400-1000 kg}}. There are probably not that many foals compared to adults, as for instance for cattle and pigs.&lt;br /&gt;
|-&lt;br /&gt;
! 7&lt;br /&gt;
! 13&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! 8&lt;br /&gt;
! 10&lt;br /&gt;
! Wild animals&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
! The largest grouping of wild animals, less than 1/50 of the weight of cattle - although representing almost a third of all the wild land mammals.&lt;br /&gt;
|-&lt;br /&gt;
! 9&lt;br /&gt;
! 8&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T10&lt;br /&gt;
! 7&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T10&lt;br /&gt;
! 7&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T10&lt;br /&gt;
! 7&lt;br /&gt;
! Wild animals&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! 13&lt;br /&gt;
! 6&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T14&lt;br /&gt;
! 5&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T14&lt;br /&gt;
! 5&lt;br /&gt;
! Wild animals&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! 16&lt;br /&gt;
! 4&lt;br /&gt;
! Wild animals&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T17&lt;br /&gt;
! 3&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T17&lt;br /&gt;
! 3&lt;br /&gt;
! Wild animals&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T19&lt;br /&gt;
! 2&lt;br /&gt;
! Pets/Livestock&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T19&lt;br /&gt;
! 2&lt;br /&gt;
! Wild animals&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! T19&lt;br /&gt;
! 2&lt;br /&gt;
! Wild animals&lt;br /&gt;
! &lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
! 22&lt;br /&gt;
! 1&lt;br /&gt;
! Wild animals&lt;br /&gt;
! Elephants&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
! The only wild animal to be singled out with text - also the heaviest land dwelling animal - but still only take up one block.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
:Earth's Land Mammals by weight&lt;br /&gt;
&lt;br /&gt;
:[After a block to indicate the size of each block:] = 1,000,000 tons&lt;br /&gt;
&lt;br /&gt;
:[Dark gray block:] Humans [Light gray block:] Our pets and livestock [Green block:] Wild animals&lt;br /&gt;
&lt;br /&gt;
:[The rest of the comic consist of blocks representing the weight of mammals. Some of the blocks are labeled:]&lt;br /&gt;
:Cattle &lt;br /&gt;
:Pigs&lt;br /&gt;
:Goats&lt;br /&gt;
:Sheep&lt;br /&gt;
:Elephants&lt;br /&gt;
:Horses&lt;br /&gt;
&lt;br /&gt;
:[Bottom text:]&lt;br /&gt;
:Data from Vaclav Smil's The Earth's Biosphere: Evolution, Dynamics, and Change, Plus a Few Other Sources&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1338:_Land_Mammals&amp;diff=61841</id>
		<title>1338: Land Mammals</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1338:_Land_Mammals&amp;diff=61841"/>
				<updated>2014-03-05T13:09:27Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Those are probably metric tons. However it should be shown if they are not.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1338&lt;br /&gt;
| date      = March 5, 2014&lt;br /&gt;
| title     = Land Mammals&lt;br /&gt;
| image     = land_mammals.png&lt;br /&gt;
| titletext = Bacteria still outweigh us thousands to one--and that's not even counting the several pounds of them in your body.&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;
&lt;br /&gt;
This comic shows the domination, in terms of body mass, of mankind over the animal kingdom. Only in the last century or so have humans, and their pets and livestock, come to occupy such a great proportion of the earth's land mammal mass.&lt;br /&gt;
&lt;br /&gt;
Per the diagram, there are 358 million tons of Humans, 864 million tons of pets and livestock, and 34 million tons of wild animals; for a total of 1.3 billion tons.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
Earth's Land Mammals by weight&lt;br /&gt;
&lt;br /&gt;
(Each block) = 1,000,000 tons&lt;br /&gt;
&lt;br /&gt;
(dark gray block) Humans,&lt;br /&gt;
(light gray block) Our pets and livestock,&lt;br /&gt;
(greenish gray block) wild animals&lt;br /&gt;
&lt;br /&gt;
Labelled animals: pigs, goats, sheep, horses, elephants, cattle&lt;br /&gt;
&lt;br /&gt;
Bottom Text:&lt;br /&gt;
&amp;quot;Data from Vaclav Smil's The Earth's Biosphere: Evolution, Dynamics, and Change, Plus a Few Other Sources&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Title text: Bacteria still outweigh us thousands to one--and that's not even counting the several pounds of them in your body.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1335:_Now&amp;diff=61197</id>
		<title>1335: Now</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1335:_Now&amp;diff=61197"/>
				<updated>2014-02-26T22:26:34Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Transcript */ +r&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;plainlinks&amp;quot;&amp;gt;&lt;br /&gt;
{{comic&lt;br /&gt;
| number    = 1335&lt;br /&gt;
| before    = The comic image isn't actually rotating this quickly, this is a faster animated picture. For the current state, see [http://xkcd.com/now/ http://xkcd.com/now]&lt;br /&gt;
| date      = February 26, 2014&lt;br /&gt;
| title     = Now&lt;br /&gt;
| image     = now.gif&lt;br /&gt;
| titletext = This image stays roughly in sync with the day (assuming the Earth continues spinning). Shortcut: [http://xkcd.com/now xkcd.com/now]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Too many guesses, too many parentheses, maybe more. The time zones need an explain.}}&lt;br /&gt;
The picture rotates by 3.75 {{w|degree (angle)|degrees}} every 15 minutes (so far, and presumably forever), as does the Earth, so that it is constantly up to date in showing which regions are currently at which times of day. The picture change seems to happen half-way through a 15-minute time increment (that is, at 7½, 22½, 37½, and 52½ minutes after each hour), so that the picture is always correct for the nearest multiple of 15 minutes.&lt;br /&gt;
&lt;br /&gt;
The map projection of the earth in the middle of the picture shows an {{w|azimuthal equidistant projection}} with the {{w|South Pole}} in the center which is uncommon because most times this projection has the North Pole at its center. [[Randall]] was playing on projections before here: [[ 977: Map Projections ]].&lt;br /&gt;
&lt;br /&gt;
The list of cities and countries doesn't always match the map, because the list takes into account local variations in {{w|time zone}}s.  The map shows the current (February 2014) configuration of time zones with respect to {{w|daylight saving time}} (also known as summer time), which is  being observed at the time of the comic's initial release in parts of Australia, New Zealand, Brazil, and other countries not named in this comic. If the map is to stay accurate through the year, the location of place names will have to move over the next few months as parts of the southern hemisphere go off DST and parts of the northern hemisphere go onto it, but we don't yet know whether this will happen.&lt;br /&gt;
&lt;br /&gt;
In many countries, {{w|business hours}} are considered to be from 9am to 5pm. With some exceptions, including emergencies, it is generally considered rude to place a {{w|telephone}} call to someone's residence during the hours when most people are asleep (Randall portrays this time period as extending from 10pm to 8am).  This may be a reference to the 10pm &amp;quot;cutoff&amp;quot; time [http://www.youtube.com/watch?v=L0WeQJW-H3Y discussed] in an episode of &amp;quot;Curb Your Enthusiasm.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
On midnight at UTC we can see this situation:&lt;br /&gt;
*00:00 UTC {{w|Greenwich Mean Time}}&lt;br /&gt;
::UK, Portugal&lt;br /&gt;
::West Africa&lt;br /&gt;
*01:00 UTC {{w|Central European Time}}&lt;br /&gt;
::Most of central Europe&lt;br /&gt;
::Nigeria, and many more countries belonging to the {{w|West Africa Time}} zone&lt;br /&gt;
*02:00 UTC {{w|Eastern European Time}}&lt;br /&gt;
::Eastern Europe, many countries like Bulgaria, Romania or Greece&lt;br /&gt;
::The {{w|Levant}} (Cyprus, Lebanon, Syria, Palestine, Jordan, Israel, and a part of southern Turkey)&lt;br /&gt;
::Egypt&lt;br /&gt;
*03:00 UTC {{w|UTC+03:00}} (East Africa Time, Eastern Europe Forward Time, and Arabia Standard Time)&lt;br /&gt;
::Ethiopia, Kenya, Madagascar, Somalia, and more&lt;br /&gt;
::Kaliningrad and Belarus&lt;br /&gt;
::Iraq, Kuwait, Saudi Arabia, and more.&lt;br /&gt;
::Iran is at {{w|Iran Standard Time}}, using an offset of UTC+03:30&lt;br /&gt;
*04:00 UTC {{w|UTC+04:00}} &lt;br /&gt;
::{{w|Moscow Time}}&lt;br /&gt;
::United Arab Emirates, Mauritius, and more&lt;br /&gt;
::Afghanistan is at {{w|Time in Afghanistan}}, using an offset of UTC+04:30&lt;br /&gt;
::Iran is at {{w|Iran Standard Time}}, using an offset of UTC+03:30&lt;br /&gt;
*05:00 UTC {{w|UTC+05:00}}&lt;br /&gt;
::Pakistan, Western Australia, Maldives and some France former colonies.&lt;br /&gt;
::Afghanistan is at {{w|Time in Afghanistan}}, using an offset of UTC+04:30&lt;br /&gt;
::India and Sri Lanka using {{w|UTC+05:30}}&lt;br /&gt;
::Nepal is using an much more odd offset at {{w|UTC+05:45}}&lt;br /&gt;
*06:00 UTC {{w|UTC+06:00}}&lt;br /&gt;
::Bangladesh, Bhutan...&lt;br /&gt;
::UK {{w|British Indian Ocean Territory}}&lt;br /&gt;
::Russia at {{w|Yekaterinburg Time}}, also Kazakhstan and Kyrgyzstan&lt;br /&gt;
::China doesn't use only a single time zone because Xinjiang and Tibet are different.&lt;br /&gt;
::India and Sri Lanka using {{w|UTC+05:30}}&lt;br /&gt;
::Nepal is using an much more odd offset at {{w|UTC+05:45}}&lt;br /&gt;
*07:00 UTC&lt;br /&gt;
::South-east Asia&lt;br /&gt;
::India&lt;br /&gt;
*08:00 UTC&lt;br /&gt;
::China&lt;br /&gt;
::Singapore&lt;br /&gt;
::Philippines&lt;br /&gt;
::Perth&lt;br /&gt;
*09:00 UTC&lt;br /&gt;
::Japan&lt;br /&gt;
::The Koreas&lt;br /&gt;
*10:00 UTC&lt;br /&gt;
::Brisbane&lt;br /&gt;
*11:00 UTC&lt;br /&gt;
::Most Australian cities&lt;br /&gt;
*12:00 UTC&lt;br /&gt;
::Kamchatka&lt;br /&gt;
*13:00 UTC&lt;br /&gt;
::New Zealand&lt;br /&gt;
*14:00 UTC&lt;br /&gt;
::[Hawaii should be here]&lt;br /&gt;
*15:00 UTC&lt;br /&gt;
::Alaska&lt;br /&gt;
*16:00 UTC&lt;br /&gt;
::US West Coast&lt;br /&gt;
*17:00 UTC&lt;br /&gt;
::Denver&lt;br /&gt;
*18:00 UTC&lt;br /&gt;
::Mexico&lt;br /&gt;
::Chicago&lt;br /&gt;
::Texas&lt;br /&gt;
*19:00 UTC&lt;br /&gt;
::Eastern Canada&lt;br /&gt;
::US East Coast&lt;br /&gt;
*20:00 UTC&lt;br /&gt;
::Canadian Maritimes&lt;br /&gt;
*21:00 UTC&lt;br /&gt;
::Coastal Brazil&lt;br /&gt;
*22:00 UTC&lt;br /&gt;
::[South Georgia Island should be here]&lt;br /&gt;
*23:00 UTC&lt;br /&gt;
::[Cape Verde should be here]&lt;br /&gt;
&lt;br /&gt;
==Technical notes==&lt;br /&gt;
When first posted, the picture was exactly 12 hours off. Somewhere around 5:10 UTC, this was fixed.  The original version also included a listing for Inland Brazil; this could have created a conflict with US East Coast when Daylight-Saving Time begins in the US, and it has been removed.&lt;br /&gt;
&lt;br /&gt;
The names used for the image files refer not to {{w|Universal Time|UTC (Universal Time)}} as one might expect but rather to the time exactly 12 hours off of that. The name of the image file linked from the page matched Universal Time during the first few hours, but the file-naming scheme did not change when the comic was corrected.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
&lt;br /&gt;
[The comic is a moving circle with a static part. The fist two columns in the table below should show the static part. The rest of the columns show the part that moves during the day. The first static circle is divided in 22 segments representing the 24 hours of the day. Noon and Midnight actually mean 11-13 and 23-1]&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!First static circle&lt;br /&gt;
!Second static circle&lt;br /&gt;
!First moving circle&lt;br /&gt;
!Second moving circle&lt;br /&gt;
!Third moving circle&lt;br /&gt;
!Fourth moving circle&lt;br /&gt;
|-&lt;br /&gt;
|Noon&lt;br /&gt;
|rowspan=&amp;quot;5&amp;quot;|Business hours (9-5)&lt;br /&gt;
|UK&lt;br /&gt;
|West Africa&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Most of Europe&lt;br /&gt;
|Nigeria&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Eastern Europe&lt;br /&gt;
|The Levant&lt;br /&gt;
|Egypt&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Iraq&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|Iran&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Moscow&lt;br /&gt;
|Afghanistan&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&lt;br /&gt;
|Pakistan&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|India&lt;br /&gt;
|-&lt;br /&gt;
|PM&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|South-east Asia&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|China&lt;br /&gt;
|Singapore&lt;br /&gt;
|Philippines&lt;br /&gt;
|Perth&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Japan&lt;br /&gt;
|The Koreas&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Brisbane&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|rowspan=&amp;quot;9&amp;quot;|Rude to call&lt;br /&gt;
|Most Australian cities&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Midnight&lt;br /&gt;
|Kamchatka&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|New Zealand&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&amp;amp;nbsp;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Alaska&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|US West Coast&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|AM&lt;br /&gt;
|Denver&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|Mexico&lt;br /&gt;
|Chicago&lt;br /&gt;
|Texas&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|Eastern Canada&lt;br /&gt;
|US East Coast&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Canadian Maritimes&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Coastal Brazil&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics with color]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1335:_Now&amp;diff=61118</id>
		<title>1335: Now</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1335:_Now&amp;diff=61118"/>
				<updated>2014-02-26T14:25:50Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Transcript */ class=&amp;quot;wikitable&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;plainlinks&amp;quot;&amp;gt;&lt;br /&gt;
{{comic&lt;br /&gt;
| number    = 1335&lt;br /&gt;
| before    = This image isn't actually rotating this quickly, this is a gif. For the current state, see http://xkcd.com/now/&lt;br /&gt;
| date      = February 26, 2014&lt;br /&gt;
| title     = Now&lt;br /&gt;
| image     = now.gif&lt;br /&gt;
| titletext = This image stays roughly in sync with the day (assuming the Earth continues spinning). Shortcut: [http://xkcd.com/now xkcd.com/now]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|I've never created a page for a new comic before, so there are many things to fix.  Like the transcript.}}&lt;br /&gt;
&lt;br /&gt;
The picture rotates every 15 minutes with the Earth, showing which regions are currently at which times of day, going by the Sun.  The list of cities and countries doesn't always match the map, because the list takes into account local variations in {{w|Time Zone}}s, as well as {{w|Summer Time}} where it is currently being observed in Australia and New Zealand.  The map will soon have to move the list of North American cities and regions for Daylight-Saving Time (which is the same thing as Summer Time), but we don't yet know if this will happen.&lt;br /&gt;
&lt;br /&gt;
Every 15 minutes (so far, and presumably forever), the image changes. The names used for the image files refer not to {{w|Universal Time}} as one might expect but rather to the time exactly 12 hours off of that. The picture change seems to happen half-way through a 15-minute time increment (so at 7½ minutes after the hour, then 22½ minutes, then 37½, 52½, and repeating), so that the picture is always correct for the nearest multiple of 15 minutes.&lt;br /&gt;
&lt;br /&gt;
When first posted, the picture was exactly 12 hours off. The name of the image file linked from the page matched Universal Time, rather than being 12 hours off as explained above.  Somewhere around 5:10 UTC, this was fixed.  The original version also included a listing for Inland Brazil; this could have created a conflict with US East Coast when Daylight-Saving Time begins in the US, and it has been removed.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!colspan=&amp;quot;2&amp;quot;|Hour (Midnight GMT)&lt;br /&gt;
!colspan=&amp;quot;4&amp;quot;|Country/City&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
|UK&lt;br /&gt;
|West Africa&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|Most of Europe&lt;br /&gt;
|Nigeria&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|Eastern Europe&lt;br /&gt;
|The Levant&lt;br /&gt;
|Egypt&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|Iraq&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|Iran&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|Moscow&lt;br /&gt;
|Afghanistan&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|Pakistan&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|India&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|South-east Asia&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|China&lt;br /&gt;
|Singapore&lt;br /&gt;
|Philippines&lt;br /&gt;
|Perth&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|Japan&lt;br /&gt;
|The Koreas&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|Brisbane&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|Most Australian cities&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|Kamchatka&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|New Zealand&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|Alaska&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|US West Coast&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|Denver&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|Mexico&lt;br /&gt;
|Chicago&lt;br /&gt;
|Texas&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|Eastern Canada&lt;br /&gt;
|US East Coast&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|Canadian Maritimes&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|Coastal Brazil&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: Iran and India do not have whole hour GMT offsets.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics with color]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1333:_First_Date&amp;diff=60724</id>
		<title>1333: First Date</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1333:_First_Date&amp;diff=60724"/>
				<updated>2014-02-21T12:30:13Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ dropping quotes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1333&lt;br /&gt;
| date      = February 21, 2014&lt;br /&gt;
| title     = First Date&lt;br /&gt;
| image     = first_date.png&lt;br /&gt;
| titletext = I sympathize with the TPP protagonist because I, too, have progressed through a surprising number of stages of life despite spending entire days stuck against simple obstacles.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
'TPP,' or '{{w|Twitch Plays Pokémon}},' was the first of a creative and radical new variant of streaming gameplay videos created in early 2014.&lt;br /&gt;
&lt;br /&gt;
With the increasing popularity of watching video games be played (usually by 'popular' gamers known for entertaining gameplay), streaming sites dedicated to streaming gameplay were created; twitch.tv was one such site.&lt;br /&gt;
&lt;br /&gt;
Whereas traditional video game streams involved the channel broadcaster or other personality playing the game, the channel &amp;quot;Twitch Plays Pokémon&amp;quot; recorded a bot playing an emulated Pokemon game. The game was given inputs by the bot based on players' messages in the video stream itself; meaning that for all intents and purposes, the watchers of the stream were playing the game, using chat &amp;quot;commands.&amp;quot; The player behaved incredibly erratically, frequently getting &amp;quot;stuck against simple obstacles&amp;quot; (as mentioned in the title-text) and moving about in a strange manner (&amp;quot;Why are you up there?&amp;quot;/&amp;quot;Bye...Okay, coming back now&amp;quot;). TPP surged in popularity rapidly from its inception, reaching 80K channel viewers within a mere 5 days. Derivative channels (such as 'TwitchPlayers') soon arose, turning &amp;quot;Twitch Plays...&amp;quot; into an idea rather than a single channel - the idea of crowd-sourcing a task, such as controlling a single person (as in the Pokémon games) for erratic and often hilarious results. The stream has reached [http://knowyourmeme.com/memes/events/twitch-plays-pokemon memetic status], and as of this writing it is still ongoing; you can participate right now.&lt;br /&gt;
&lt;br /&gt;
In the above comic, Cueball and Megan are on a date, however, Megan is behaving very erratically. Cueball determines that Megan is being &amp;quot;controlled by Twitch,&amp;quot; as her behavior matches well with that of the &amp;quot;TPP Protagonist&amp;quot; (whose name, canonically, is Red). Megan loudly declares at one point that she is &amp;quot;SAVING&amp;quot; her 'game progress.' Her fascination with the &amp;quot;cool spiral&amp;quot; is an allusion to TPP players' fascination with the &amp;quot;Helix Fossil,&amp;quot; an in-game item regarded with a near-religious reverence by TPP players for its constant appearance (because user input often leads to the checking of the in-game backpack, where the Helix fossil and other items resided, the players jokingly decided that the protagonist was &amp;quot;looking to the Helix for guidance;&amp;quot; this quickly led to its regard as a &amp;quot;religious symbol.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
The title-text, as explained above, simply is a light-hearted joke from xkcd, empathizing with TPP as he has also spent real-life days stuck against simple obstacles.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Megan are sitting at a table.]&lt;br /&gt;
:Cueball: So, did you grow up around here?&lt;br /&gt;
:Megan: I love you.&lt;br /&gt;
:Cueball: ...Huh?&lt;br /&gt;
:Megan: Waiter! One of everything on the menu.&lt;br /&gt;
&lt;br /&gt;
:[Megan is now standing on her chair.]&lt;br /&gt;
:Cueball: Why are you up there?&lt;br /&gt;
:Megan: I'm stuck. This plate looks delicious. Aaaoogaoag.&lt;br /&gt;
&lt;br /&gt;
:[Megan has left the panel.]&lt;br /&gt;
:Megan (off-screen): Bye. Ok. Coming back now.&lt;br /&gt;
&lt;br /&gt;
:[Megan is sitting in her chair again, now holding a Helix Fossil.]&lt;br /&gt;
:Cueball: You're being controlled by Twitch, aren't you?&lt;br /&gt;
:Megan: Check out this cool spiral!&lt;br /&gt;
:Cueball: It's—&lt;br /&gt;
:Megan: '''SAVING.'''&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:Internet]]&lt;br /&gt;
[[Category:Pokémon]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=450:_The_Sea&amp;diff=60539</id>
		<title>450: The Sea</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=450:_The_Sea&amp;diff=60539"/>
				<updated>2014-02-19T13:17:34Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: Changing Category:Sex to Category:Penis&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 450&lt;br /&gt;
| date      = July 16, 2008&lt;br /&gt;
| title     = The Sea&lt;br /&gt;
| image     = the_sea.png&lt;br /&gt;
| titletext = And then a second one, to drain the sea.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Cueball]] becomes introspective when contemplating the sea. The straightforward reading of &amp;quot;how small I really am&amp;quot; means he feels humbled by the sea and recognizes his insignificance on this planet. This is a common sentiment expressed in poetry, literature, and blogs.&lt;br /&gt;
&lt;br /&gt;
However, in English the sentences ''I'm small'' and ''I'm big'' can also mean ''my penis is small''[http://im-small.tumblr.com/] and ''my penis is big''.[http://es.urbandictionary.com/define.php?term=big&amp;amp;defid=3086531][http://wtfcontent.com/wtf-2500.htmlhttp://wtfcontent.com/wtf-2500.html]&lt;br /&gt;
&lt;br /&gt;
The final line ''&amp;quot;I should get one of those pumps&amp;quot;'' references a {{w|penis pump}}, a device that is alleged to permanently increase the size of the male member. Anybody with access to the internet or an email account is continually bombarded with spam messages and advertisements for penis enlargement products, all of which work about as well as you would expect. That is, not at all.&lt;br /&gt;
&lt;br /&gt;
Even if Cueball is not literally saying that he has a small penis, men very commonly associate their own self image with the size of their organ. Therefore, enlarging it would improve his self image and make him feel less small.&lt;br /&gt;
&lt;br /&gt;
The title text suggests another straightforward way to read the word pump. Namely as a water pump to drain the ocean. Cueball is unsatisfied with the sea intimidating him, and is turning his attention to &amp;quot;putting the sea in its place&amp;quot;. Of course this is impossible as the only place on Earth that will hold all that water is the sea itself. There's a bit of subversive humor in the title text since many people will think &amp;quot;water pump&amp;quot; before &amp;quot;penis pump&amp;quot;; by specifying that the first pump is not for the sea, Randall is ensuring everyone gets the full joke.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball stands on a beach at night, staring out across the moonlit ocean.]&lt;br /&gt;
:Cueball: The sea always makes me realize&lt;br /&gt;
:Cueball: How small I really am.&lt;br /&gt;
:Cueball: I should get one of those pumps.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Penis]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1141:_Two_Years&amp;diff=60533</id>
		<title>1141: Two Years</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1141:_Two_Years&amp;diff=60533"/>
				<updated>2014-02-19T12:53:40Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Transcript */ Official transcript adapted for explainxkcd&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1141&lt;br /&gt;
| date      = November 30, 2012&lt;br /&gt;
| title     = Two Years&lt;br /&gt;
| image     = two years.png&lt;br /&gt;
| imagesize = &lt;br /&gt;
| titletext = She won the first half of all our chemo Scrabble games, but then her IV drugs started kicking in and I *dominated*.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Explanation ==&lt;br /&gt;
&lt;br /&gt;
This comic marks the second year of [[Randall Munroe]]'s wife's battle with cancer, and appears to depict actual events from those two years.&lt;br /&gt;
&lt;br /&gt;
Some explanations:&lt;br /&gt;
* Panel 1: Randall's wife-to-be (at that point) receives a diagnosis over the phone as Randall sits by her side supportively.&lt;br /&gt;
* Panel 2: Undergoing IV (intravenous) {{w|chemotherapy}}. Because of the hair loss that results from chemotherapy, many patients opt to shave their heads when they undergo chemotherapy. Her hair grows back over the course of the following panels.&lt;br /&gt;
* Panel 3: The two of them spending time alone together. &lt;br /&gt;
* Panel 4: The couple are waiting for the results of a scan. A phone is on the middle of the table that they are waiting to ring.&lt;br /&gt;
* Panel 5: More chemotherapy. The couple are playing {{w|Scrabble}}, in which players use letter tiles to spell words in a cross-word style. She uses the fact that she has cancer as leverage to get Randall to ignore the fact that the word she has played (zarg) is not a real word.&lt;br /&gt;
* Panel 6: Someone suggests they come for a visit next year, but all they can think about are the words &amp;quot;next year&amp;quot;, indicating that they know the future is very much in doubt. &lt;br /&gt;
* Panel 7: They get married.&lt;br /&gt;
* Panel 8: The couple watching {{w|humpback whales}}, possibly on their {{w|honeymoon}}.&lt;br /&gt;
* Panel 9: Randall is paraphrasing a line from the song &amp;quot;{{w|Still Alive}}&amp;quot; ([http://www.youtube.com/watch?v=l_S0PGu-cH4 video]) from the video game ''{{w|Portal}}'' (''&amp;quot;I'm doing science and I'm still alive&amp;quot;'').&lt;br /&gt;
* Panel 10: The two of them sit under a tree reflecting on the significance of the past two years.&lt;br /&gt;
* Panel 11: Randall and his wife have dinner to celebrate the fact that she has made it two years since her {{w|biopsy}}.&lt;br /&gt;
The title text is referring to a possible {{w|Chemotherapy#Neurological adverse effects|side-effect of chemotherapy drugs}}, the inability to concentrate.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Randall and Randall's fiancée sit on a bed, Randall's fiancée is talking on the phone. The person she is talking to, a doctor holding a clipboard, is shown inset.]&lt;br /&gt;
:Randall's fiancée: Oh god.&lt;br /&gt;
&lt;br /&gt;
:[Randall and Randall's fiancée sit together while Randall's fiancée, now bald, is receiving chemotherapy. They are both on their laptops.]&lt;br /&gt;
:IV pump: ... BEEEP ... BEEEP ... BEEEP ... &lt;br /&gt;
&lt;br /&gt;
:[Randall and Randall's fiancée (who is wearing a knit cap) are paddling a kayak against a scenic mountain backdrop.]&lt;br /&gt;
&lt;br /&gt;
:[:[Randall and Randall's fiancée sit at a table, staring at a cell phone. There is a clock on the wall. Her head is stubbly.]]&lt;br /&gt;
:Randall's fiancée: How long can it take to read a scan?&lt;br /&gt;
&lt;br /&gt;
:[Randall and Randall's fiancée are back at the hospital again, Randall's fiancée receiving chemo. They are playing Scrabble.]&lt;br /&gt;
:Randall: &amp;amp;quot;ZARG&amp;amp;quot; isn&amp;amp;#39;t a word.&lt;br /&gt;
:Randall's fiancée: But &lt;br /&gt;
:CAAAANCER.&lt;br /&gt;
&lt;br /&gt;
:Randall: ...ok, fine.&lt;br /&gt;
&lt;br /&gt;
:[Randall and Randall's fiancée are listening to a friend speak. A large thought bubble is above their heads. She's wearing a knit cap.]&lt;br /&gt;
:Friend: So next year you should come visit us in the mount... [the rest is obscured by a thought bubble].&lt;br /&gt;
:Randall &amp;amp;amp; Randall's fiancée: (thinking) &amp;amp;quot;Next year&amp;amp;quot;&lt;br /&gt;
&lt;br /&gt;
:[Randall and Randall's fiancée (with short hair) getting married, a heart above their heads. Randall's wife's hair is growing back a little.]&lt;br /&gt;
&lt;br /&gt;
:[Randall and Randall's wife (wearing a knit cap) stand on a beach, watching a whale jump out of the water.]&lt;br /&gt;
:&amp;amp;lt;&amp;amp;lt;FWOOSH&amp;amp;gt;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
:[Randall's wife is sitting at a desk with several books and a laptop. Randall stands behind her. Her hair has grown back a little more.]&lt;br /&gt;
:Randall: Hey - you&amp;amp;#39;re doing science, and you&amp;amp;#39;re still alive.&lt;br /&gt;
:Randall's wife: Yeah!&lt;br /&gt;
&lt;br /&gt;
:[Randall and Randall's wife sit under a tall tree on a hill.]&lt;br /&gt;
:Randall: It&amp;amp;#39;s really only been two years?&lt;br /&gt;
:Randall's wife: They were big years.&lt;br /&gt;
&lt;br /&gt;
:[Randall and Randall's wife sit at a table in a fancy restaurant, the waiter brings them a dish with a cover on it. Her hair has grown back more.]&lt;br /&gt;
:Waiter: Happy.. anniversary?&lt;br /&gt;
:Randall's wife: Biopsy-versary!&lt;br /&gt;
:Waiter: ...eww.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Randall Munroe]]&lt;br /&gt;
[[Category:Romance]]&lt;br /&gt;
[[Category:Cancer]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1330:_Kola_Borehole&amp;diff=60031</id>
		<title>1330: Kola Borehole</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1330:_Kola_Borehole&amp;diff=60031"/>
				<updated>2014-02-14T15:29:22Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: see also&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1330&lt;br /&gt;
| date      = February 14, 2014&lt;br /&gt;
| title     = Kola Borehole&lt;br /&gt;
| image     = kola_borehole.png&lt;br /&gt;
| titletext = Tonight's top story: Lucifer, the Prince of Darkness, died in his home this morning at the age of [unintelligible rune]. Due to the large number of sharks inhabiting his former kingdom, no body could be recovered.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
The {{w|Kola Superdeep Borehole}} is the result of a scientific drilling project by the Soviet Union in what is now north-western Russia that began in 1970 and continued through 1992 . It was an attempt to drill as far into the Earth as possible. The deepest hole reached 12,262 metres (40,230 ft).&lt;br /&gt;
&lt;br /&gt;
[[Megan]] suggests that there is a hoax/rumour that the drilling hit a super-hot cavern from which screams emanated. Although super-hot temperature was the reason the project was abandoned, there is no evidence of any chamber of voices being discovered. As Megan notes, the hoax plays on the popular notion that {{w|Hell}} is literally a physical place below us (therefore by definition, towards the centre of the Earth), whereas Heaven is above us; often depicted in the clouds.&lt;br /&gt;
&lt;br /&gt;
Megan suggests that the miners therefore sealed the hole to “seal in” Hell; there is no mention in the Wikipedia article about the hole being sealed, and given potential future scientific data, the 22 years spent drilling and the cost of sealing the hole, it seems likely that when it was abandoned, the hole was left intact.&lt;br /&gt;
&lt;br /&gt;
[[Black Hat]] suggests that if the Hoax were true and the miners did believe they’d drilled into Hell, a better alternative to sealing the hole would have been to dig a canal to the ocean, thereby allowing water to flow into the hole and into Hell. Given the common depiction of a subterranean hell is characterized by fire and brimstone and extreme heat, filling hell with water would both drastically alter the landscape, and presumably shortly thereafter, entirely flood Hell.&lt;br /&gt;
&lt;br /&gt;
Megan never though of that possibility and compliments Black Hat’s ingenuity by suggesting that if there were ever a real conflict with Hell, she would want to be “on his side”, given his clever suggestion on how to destroy Hell. He responds by suggesting that Megan is “nice” and therefore probably won’t be on his side. This suggests Black Hat considers himself evil and thinks he would be fighting [i]for[/i] Hell, rather than against it.&lt;br /&gt;
&lt;br /&gt;
The title text parodies a non-descript news report of a person’s death. In this case it is about {{w|Lucifer}} being killed by Black Hat carrying out his plan to flood Hell. However, the report is written in a non-descript way that ignores the presumed sensationalism of the story (i.e. that Hell exists and has been flooded). It is notable that “Lucifer” is often used in modern times to refer to {{w|Satan}} and both are used to refer to the “leader” or “keeper” of Hell, although they are not biblically the same entity, and are not tied directly to hell. Much of the modern image of Hell is derived from Dante’s “{{w| Inferno (Dante) |Inferno}}” along with a variety of additional details which have been added and changed throughout the years.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[1040: Lakes and Oceans]], [http://xkcd.com/1040/large/ 1040 large], on the right hand side.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan and Black Hat are sitting in front of their laptops.]&lt;br /&gt;
:Megan: Ever hear of the Kola Borehole?&lt;br /&gt;
:Black Hat: No -- what's that?&lt;br /&gt;
:Megan: A Soviet project to drill deep into the Earth's crust.&lt;br /&gt;
&lt;br /&gt;
:Megan: There's a hoax report claiming that their drill broke through into a superhot cavern, and when they lowered a microphone into the hole, they heard tormented screaming. People say that's why the miners sealed the well and abandoned the project.&lt;br /&gt;
&lt;br /&gt;
:Black Hat: Why would anyone ''believe'' that story?&lt;br /&gt;
:Megan: I guess some people think Hell is literally an underground place.&lt;br /&gt;
&lt;br /&gt;
:Black Hat: No -- I mean, why would the miners seal the opening? Why not just dig a canal connecting it to the ocean? Unless they '''''like''''' Hell.&lt;br /&gt;
&lt;br /&gt;
:Megan: ...If there's ever a war between Earth and Hell, I hope I'm on '''''your''''' side.&lt;br /&gt;
:Black Hat: You seem nice; you probably won't be.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Religion]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=37:_Hyphen&amp;diff=59847</id>
		<title>37: Hyphen</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=37:_Hyphen&amp;diff=59847"/>
				<updated>2014-02-12T17:03:30Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Don't be silly. In American English ass almost never means donkey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 37&lt;br /&gt;
| date      = October 28, 2005&lt;br /&gt;
| title     = Hyphen&lt;br /&gt;
| image     = hyphen.jpg&lt;br /&gt;
| titletext = I do this constantly&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This is the first &amp;quot;[[My Hobby]]&amp;quot; comic in ''[[xkcd]]''. In these comics, [[Randall]] suggests an obscure activity or pastime he enjoys which he declares as his &amp;quot;hobby&amp;quot;. In the premiere &amp;quot;My Hobby&amp;quot; comic, Randall's hobby is mentally re-interpreting what people mean when they say &amp;quot;[adjective]-ass [noun]&amp;quot; by moving the hyphen to after the word &amp;quot;ass&amp;quot; instead of before.&lt;br /&gt;
&lt;br /&gt;
The semi-{{Wiktionary|scatological}} suffix &amp;quot;-ass&amp;quot; is used as an intensifier in informal US English speech, usually attached to an adjective directly modifying a noun, as in &amp;quot;big-ass car&amp;quot; or &amp;quot;funny-ass comedian&amp;quot;. In this comic, [[Cueball]] is exploring the increased humor aspect of changing &amp;quot;-ass&amp;quot; from a suffix modifying the adjective, to &amp;quot;ass-&amp;quot;, a prefix modifying the noun, yielding a &amp;quot;big ass-car&amp;quot; or a &amp;quot;funny ass-comedian&amp;quot;, the former presumably being a large car for carrying buttocks, the latter being a humorous comedian specializing in jokes about lower back. The prefix &amp;quot;ass-&amp;quot; may also have a negative connotation, indicating that something is disliked. An &amp;quot;ass-car&amp;quot; may be a very crappy car, for example.&lt;br /&gt;
&lt;br /&gt;
Another explanation would be that, since this suffix/prefix refers to an element of human anatomy, the car would be in the shape of said anatomical piece.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:My hobby: whenever anyone calls something an [adjective]-ass [noun], I mentally move the hyphen one word to the right.&lt;br /&gt;
:[Cueball is talking to a friend about a car that resembles a Volkswagen Beetle.]&lt;br /&gt;
:Cueball: Man, that's a sweet ass-car.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Original comment from [[Randall]]: &amp;quot;Tune in Monday for the conclusion to the story of the boy and his barrel.&amp;quot;  The comic posted on Monday was [[25: Barrel - Part 4]], which really wasn't the conclusion of the story of the boy and his barrel.&lt;br /&gt;
*This is the twenty-fifth comic originally posted to livejournal. The previous was [[23: T-shirts]]. The next was [[25: Barrel - Part 4]].&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics posted on livejournal]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:My Hobby]]&lt;br /&gt;
[[Category:Language]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1329:_Standing&amp;diff=59831</id>
		<title>1329: Standing</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1329:_Standing&amp;diff=59831"/>
				<updated>2014-02-12T12:49:23Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ lowercase&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1329&lt;br /&gt;
| date      = February 12, 2014&lt;br /&gt;
| title     = Standing&lt;br /&gt;
| image     = standing.png&lt;br /&gt;
| titletext = At first I was making fun of them, but joke's on me--the deer is surprisingly ergonomic, except for the kicks.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Start made on explanation.  Please expand.}}&lt;br /&gt;
&lt;br /&gt;
{{w|Standing desk}}s are a current fad in modern tech companies.  Supposedly more ergonomic and comfortable than sitting all day, they can be combined with treadmills or stationary bicycles to enable exercise to be taken while working.  In the comic, Cueball tells Megan that standing desks are still not the apex of innovation, and straps a computer to a deer to provide constant exercise while working.&lt;br /&gt;
&lt;br /&gt;
The title text takes this a step further, saying that the deer was surprisingly ergonomic, apart from the kicks (which would, presumably, be quite debilitating).&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:My Hobby]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=61:_Stacey%27s_Dad&amp;diff=59464</id>
		<title>61: Stacey's Dad</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=61:_Stacey%27s_Dad&amp;diff=59464"/>
				<updated>2014-02-05T20:49:30Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 61&lt;br /&gt;
| date      = February 8, 2006&lt;br /&gt;
| title     = Stacey's Dad&lt;br /&gt;
| image     = staceys_dad.jpg&lt;br /&gt;
| titletext = I bet she gets you to mow the lawn, doesn't she?&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic refers to the song &amp;quot;{{w|Stacy's Mom}}&amp;quot;, by {{w|Fountains of Wayne}}. As the background singers repeatedly say, &amp;quot;Stacy's mom has got it goin' on.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
Here are the lyrics for the second verse:&lt;br /&gt;
:&amp;lt;i&amp;gt;Stacy, do you remember when I mowed your lawn? (mowed your lawn)&lt;br /&gt;
:Your mom came out with just a towel on (towel on)&lt;br /&gt;
:I could tell she liked me from the way she stared (the way she stared)&lt;br /&gt;
:And the way she said, &amp;quot;You missed a spot over there&amp;quot; (a spot over there)&lt;br /&gt;
:And I know that you think it's just a fantasy&lt;br /&gt;
:But since your dad walked out, your mom could use a guy like me&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(chorus)&lt;br /&gt;
:&amp;lt;i&amp;gt;Stacy's mom has got it goin' on&lt;br /&gt;
:She's all I want, and I've waited so long&lt;br /&gt;
:Stacy, can't you see you're just not the girl for me&lt;br /&gt;
:I know it might be wrong,&lt;br /&gt;
:but I'm in love with Stacy's mom&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The humor in this is that in the song the singer finds Stacy's Mom desirable, but in the comic the dad, who walked out, is saying that she is very undesirable and the singer should run away while he still can. &amp;quot;That woman has a lot going on&amp;quot; alludes directly to the first line of the chorus, but refers to the things that are going on in a negative, rather than a positive, light.&lt;br /&gt;
&lt;br /&gt;
The title text elaborates on this idea, implying that she manipulated the singer to mow her lawn.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Stacey's Dad: Look, I know you think that since I walked out she could use a guy like you. But trust me. That woman has got a lot going on, and you want none of it. Get out while you still can.&lt;br /&gt;
&lt;br /&gt;
:[Printed across the bottom of the panel.]&lt;br /&gt;
:Stacey's dad.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Music]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=713:_GeoIP&amp;diff=59357</id>
		<title>713: GeoIP</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=713:_GeoIP&amp;diff=59357"/>
				<updated>2014-02-04T19:17:55Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: Deleting Category:Sex&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 713&lt;br /&gt;
| date      = March 12, 2010&lt;br /&gt;
| title     = GeoIP&lt;br /&gt;
| image     = geoip.png&lt;br /&gt;
| titletext = 'Meet hot young singles in your mom's basement today'? Man, screw you, GeoIP.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Geolocation|GeoIP}} is a service that converts IP addresses to their respective location on the earth. This is done by looking up the IP address in a database maintained by various Internet Service providers. Advertisers often take advantage of the {{w|Keeping up with the Joneses|Joneses effect}} by creating localized ads which misleadingly appear to be specific to your location, but are often simply stock photographs with the name of the nearest town superimposed on top.&lt;br /&gt;
&lt;br /&gt;
The comic satirizes this phenomenon. The {{w|International Space Station}} has a data downlink, which presumably has some public-facing IP address on the (Earth-based) internet. In this comic, [[Cueball]] trolls the advertisers from onboard the ISS, by inserting his actual location ({{w|low Earth orbit}}) into the database under that IP address. Thus, the advertisements claim that there are &amp;quot;local girls&amp;quot; in low Earth orbit. Since all the crewmembers of the ISS know each other (and we can be reasonably certain that nobody else lives in low Earth orbit), Cueball underlines the obvious lie in GeoIP-based advertising.&lt;br /&gt;
&lt;br /&gt;
The title text refers to how specific GeoIP can get. However, knowing that someone is in their mom's basement is hyperbole.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[External view of a satellite orbiting Earth. Dialog comes from within.]&lt;br /&gt;
:Cueball: Yes!&lt;br /&gt;
:Ponytail: What?&lt;br /&gt;
:Cueball: I got our downlink into a GeoIP database.&lt;br /&gt;
&lt;br /&gt;
:[Internal view of the satellite, Cueball and Ponytail are floating about, Cueball is at a computer mounted to the wall.]&lt;br /&gt;
:Ponytail: Why?&lt;br /&gt;
:Cueball: To mess with our advertisers. Check it out.&lt;br /&gt;
&lt;br /&gt;
:[An ad reads &amp;quot;Meet local girls in Low Earth Orbit tonight!&amp;quot; and has two photos of girls in sexy poses, one captioned &amp;quot;Tanya, 18&amp;quot; and the other &amp;quot;Amber, 19&amp;quot;. Below them is a button that reads &amp;quot;CHAT LIVE&amp;quot;.]&lt;br /&gt;
&lt;br /&gt;
{{Comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics with color]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1324:_Weather&amp;diff=59082</id>
		<title>1324: Weather</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1324:_Weather&amp;diff=59082"/>
				<updated>2014-01-31T13:57:50Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: 18z&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1324&lt;br /&gt;
| date      = January 31, 2014&lt;br /&gt;
| title     = Weather&lt;br /&gt;
| image     = weather.png&lt;br /&gt;
| titletext = At least if you're really into, like, Turkish archaeology, store clerks aren't like 'hey, how 'bout those Derinkuyu underground cities!' when they're trying to be polite.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Hairy]] makes a casual comment about the weather and [[Cueball]] responds with detailed information about the current weather system and forecasts, which Hairy probably wasn't interested in at all.&lt;br /&gt;
&lt;br /&gt;
{{w|Jet stream|Jet streams}} are strong air currents high in the atmosphere which have a big influence on the weather. &lt;br /&gt;
&lt;br /&gt;
The {{w|Global Forecast System}} (NCEP-GFS) is a computer model used by the {{w|National Weather Service}} to predict the weather up to 16 days in advance. The model is run 4 times a day and the output is distinguished by the UTC hour is was started (18z in this case).&lt;br /&gt;
&lt;br /&gt;
18z (or better 18Z) is UTC 18:00 (6 PM in Greenwich, England, 10 AM in California). See {{w|ISO 8601}} in Wikipedia.&lt;br /&gt;
&lt;br /&gt;
Part of the prediction is the {{w|atmospheric pressure}} expressed in {{w|Bar (unit)|mbar}} (or mb). 960 mbar is very low pressure, which is usually associated with seriously bad weather (record low pressure for Minessota was 963  mbar till 1998).&lt;br /&gt;
&lt;br /&gt;
Store clerks are known for small talk about the weather as part of their sales talk. In title text, a clerk instead makes small talk about {{w|Derinkuyu Underground City|Derinkuyu Underground Cities}}, one of the most well-known {{w|History of Turkey|archaeological sites in Turkey}}, which is a country very well known for its many well-preserved ancient sites from a broad range of time periods.  It would be very tempting for Turkish archaeology geek to launch into a detailed conversation on the subject or related news.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Hairy are talking.]&lt;br /&gt;
:Hairy: So, how 'bout this weather?&lt;br /&gt;
:Cueball: I ''know,'' right? The whole jet stream layer is ''nuts!''&lt;br /&gt;
:Hairy: Um, sure...&lt;br /&gt;
:Cueball: The 18z GFS forecasts 960mb by Tuesday. Think it'll verify?&lt;br /&gt;
:Hairy: What?&lt;br /&gt;
:Cueball: ...Right. Sorry. Uh, yeah! Weather sure has been crazy.&lt;br /&gt;
:Weather geeks have it tough.&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1324:_Weather&amp;diff=59081</id>
		<title>1324: Weather</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1324:_Weather&amp;diff=59081"/>
				<updated>2014-01-31T13:52:35Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: Adding paragraphs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1324&lt;br /&gt;
| date      = January 31, 2014&lt;br /&gt;
| title     = Weather&lt;br /&gt;
| image     = weather.png&lt;br /&gt;
| titletext = At least if you're really into, like, Turkish archaeology, store clerks aren't like 'hey, how 'bout those Derinkuyu underground cities!' when they're trying to be polite.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Hairy]] makes a casual comment about the weather and [[Cueball]] responds with detailed information about the current weather system and forecasts, which Hairy probably wasn't interested in at all.&lt;br /&gt;
&lt;br /&gt;
{{w|Jet stream|Jet streams}} are strong air currents high in the atmosphere which have a big influence on the weather. &lt;br /&gt;
&lt;br /&gt;
The {{w|Global Forecast System}} (NCEP-GFS) is a computer model used by the {{w|National Weather Service}} to predict the weather up to 16 days in advance. The model is run 4 times a day and the output is distinguished by the UTC hour is was started (18z in this case).&lt;br /&gt;
&lt;br /&gt;
Part of the prediction is the {{w|atmospheric pressure}} expressed in {{w|Bar (unit)|mbar}} (or mb). 960 mbar is very low pressure, which is usually associated with seriously bad weather (record low pressure for Minessota was 963  mbar till 1998).&lt;br /&gt;
&lt;br /&gt;
Store clerks are known for small talk about the weather as part of their sales talk. In title text, a clerk instead makes small talk about {{w|Derinkuyu Underground City|Derinkuyu Underground Cities}}, one of the most well-known {{w|History of Turkey|archaeological sites in Turkey}}, which is a country very well known for its many well-preserved ancient sites from a broad range of time periods.  It would be very tempting for Turkish archaeology geek to launch into a detailed conversation on the subject or related news.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Hairy are talking.]&lt;br /&gt;
:Hairy: So, how 'bout this weather?&lt;br /&gt;
:Cueball: I ''know,'' right? The whole jet stream layer is ''nuts!''&lt;br /&gt;
:Hairy: Um, sure...&lt;br /&gt;
:Cueball: The 18z GFS forecasts 960mb by Tuesday. Think it'll verify?&lt;br /&gt;
:Hairy: What?&lt;br /&gt;
:Cueball: ...Right. Sorry. Uh, yeah! Weather sure has been crazy.&lt;br /&gt;
:Weather geeks have it tough.&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1323:_Protocol&amp;diff=58902</id>
		<title>1323: Protocol</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1323:_Protocol&amp;diff=58902"/>
				<updated>2014-01-29T12:17:04Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.221.90: /* Explanation */ Eve is a proper name but eavesdropper isn't&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1323&lt;br /&gt;
| date      = January 29, 2014&lt;br /&gt;
| title     = Protocol&lt;br /&gt;
| image     = protocol.png&lt;br /&gt;
| titletext = Changing the names would be easier, but if you're not comfortable lying, try only making friends with people named Alice, Bob, Carol, etc.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|check grammar, explain better Alice and Bob, and adding links to other comics related with cryptography}}&lt;br /&gt;
Alice, Bob, and Eve  are names usually used in cryptographic conversations. Talking about &amp;quot;Person A&amp;quot;, &amp;quot;Person B&amp;quot;, &amp;quot;Person C&amp;quot;, and so on gets awkward, so names beginning with each letter are used instead.  Eve is short for &amp;quot;eavesdropper&amp;quot; - a person trying to find out what's being said in the conversations between the other people. The classic situation involves Alice wanting to send a secret message to Bob, while Eve (the eavesdropper), attempts to read the message, ideally without Alice or Bob ever finding out. Additional participants such as Carol (Person C) can be added if necessary. The list of names has become very standardised over time. (More information on Wikipedia: {{w|Alice and Bob}}). &lt;br /&gt;
&lt;br /&gt;
The joke here is that any computer scientist, hearing the names used, will think that they are listening to a cryptography problem. By using this, you can force them to listen any boring story just by changing the names, and using the list of names usually used in these examples. The story being a boring one actually helps with this effect: the fewer unique details, the more it sounds like a general problem.&lt;br /&gt;
&lt;br /&gt;
The title text just shows a more radical approach to the problem, for the people who don't want to lie. In this approach instead of changing the names, you only make friends with people who have appropriate names already.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In comic [[177: Alice and Bob]] these names are also used in the same context and we meet Eve.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is telling a story to a Computer Scientist who is seated at his desk.]&lt;br /&gt;
:Cueball: Alice sends a message to Bob saying to meet her somewhere.&lt;br /&gt;
:Computer Scientist: Uh huh.&lt;br /&gt;
:Cueball: But Eve sees it, too, and goes to the place.&lt;br /&gt;
:Computer Scientist: With you so far.&lt;br /&gt;
:Cueball: Bob is delayed, and Alice and Eve meet.&lt;br /&gt;
:Computer Scientist: Yeah?&lt;br /&gt;
:I've discovered a way to get computer scientists to listen to any boring story.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Computers]]&lt;/div&gt;</summary>
		<author><name>108.162.221.90</name></author>	</entry>

	</feed>