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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1654:_Universal_Install_Script&amp;diff=114894</id>
		<title>1654: Universal Install Script</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1654:_Universal_Install_Script&amp;diff=114894"/>
				<updated>2016-03-14T18:45:36Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1654&lt;br /&gt;
| date      = March 11, 2016&lt;br /&gt;
| title     = Universal Install Script&lt;br /&gt;
| image     = universal_install_script.png&lt;br /&gt;
| titletext = The failures usually don't hurt anything, and if it installs several versions, it increases the chance that one of them is right. (Note: The 'yes' command and '2&amp;gt;/dev/null' are recommended additions.)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
Most users of computers today are used to simple, easy installation of programs. You just download a .exe or a .pkg, double click it, and do what it says. Sometimes you don't even have to install anything at all, and it runs without any installation.&lt;br /&gt;
&lt;br /&gt;
However, when things are more &amp;quot;homebrew&amp;quot;, for example downloading source code, things are more complicated.  Under {{w|Unix-like}} systems, which this universal install script is designed for, you may have to work with &amp;quot;build environments&amp;quot; and &amp;quot;makefiles&amp;quot;, and command line tools. To make this process simpler, there exist repositories of programs which host either packages of source code and the things needed to build it or the pre-built programs. When you download the package, it automatically does most of the work of building the code into something executable if necessary and then installing it. However, there are many such repositories, such as &amp;quot;pip&amp;quot; and &amp;quot;brew&amp;quot;, among others listed in the comic. If you only know the name of a program or package, you may not know in which repository(ies) it resides.&lt;br /&gt;
&lt;br /&gt;
The script provided in the comic attempts to fix this problem, by giving a &amp;quot;universal install script&amp;quot;, which contains a lot of common install commands used in various Unix-like systems. In between each of the install commands in the script is the &amp;amp; character, which in POSIX-compatible shells (including {{w|Bash (Unix shell)|Bash}}, a popular shell scripting language) means it should continue to run the next command without waiting for the first command to finish, also known as &amp;quot;running in the background&amp;quot;. This has the effect of running all the install commands simultaneously; all output and error text provided by the will be mixed together as they are all displaying on the screen around the same time.&lt;br /&gt;
&lt;br /&gt;
The script accepts the name of a program when you run it as an argument. This value is then referenced as &amp;quot;$1&amp;quot; (argument number 1). Everywhere the script says &amp;quot;$1&amp;quot;, it substitutes in the name of the package you gave it. The end result is the name being tried against a large number of software repositories and package managers, and hopefully, at least one of them will be appropriate and the program will be successfully installed. Near the end, it even tries changing the current working directory to that which is assumed to hold the package to be installed, and then runs several commands which build the program from source code.&lt;br /&gt;
&lt;br /&gt;
All in all, this script would probably work; it runs many standard popular repository programs and package managers, and runs the nearly-universal commands needed to build a program.  Most of the commands would simply give an error and exit, but hopefully the correct one will proceed with the install.&lt;br /&gt;
&lt;br /&gt;
One of the more subtle jokes in the comic is the inclusion of &amp;lt;code&amp;gt;apt-get&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;sudo apt-get&amp;lt;/code&amp;gt; in the same script. Good unix practice dictates never logging in as root; instead you stay logged in as your normal user, and run system admin accounts via &amp;lt;code&amp;gt;sudo program name&amp;lt;/code&amp;gt;. This prevents accidental errors and enables logging of all sensitive commands. A side effect of this, however, is that an administrator may forget to prefix her command with &amp;lt;code&amp;gt;sudo&amp;lt;/code&amp;gt;, and re-running it properly the second time. This is a common joke in the Linux community, an example of which can be found at [https://twitter.com/liamosaur/status/506975850596536320 viral tweet] which shows a humorous workaround for the issue.&lt;br /&gt;
&lt;br /&gt;
Since Randall's script does not use sudo for any but the &amp;lt;code&amp;gt;apt-get&amp;lt;/code&amp;gt; command, there are two possibilities: the script itself was run via the root user or via sudo (in which case the &amp;lt;code&amp;gt;sudo apt-get&amp;lt;/code&amp;gt; is not needed, or the script was run as a normal user, in which case all of the commands will fail (due to lacking necessary permissions) with the possible exception of the &amp;lt;code&amp;gt;sudo apt-get&amp;lt;/code&amp;gt; one.&lt;br /&gt;
&lt;br /&gt;
Sudo has also been used both by [[Randall]] in [[149: Sandwich]] and by Jason Fox to force Randall to let him appear on xkcd with [[824: Guest Week: Bill Amend (FoxTrot)]].&lt;br /&gt;
&lt;br /&gt;
The tool &amp;lt;code&amp;gt;curl&amp;lt;/code&amp;gt; downloads files from the network (e.g., the Internet). For example &amp;lt;code&amp;gt;curl http://xkcd.com/&amp;lt;/code&amp;gt; downloads and displays the xkcd HTML source. The pipe &amp;lt;code&amp;gt;|&amp;lt;/code&amp;gt; in the script attaches the output of the command before the pipe to the input of the command after the pipe, thus running whatever commands exist in the web content. Although this &amp;quot;curl|sh&amp;quot; pattern is a common practice for conveniently installing software, it is considered extremely unwise; you are running untrusted code without validation, there may be a MITM who modifies the code you receive, or the remote system could have been hijacked and the code made malicious. Most local package managers (e.g. &amp;lt;code&amp;gt;apt&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;yum&amp;lt;/code&amp;gt;) offer digitally-signed packages that thwart this problem. You can find many examples of software providers suggesting a &amp;lt;code&amp;gt;curl|sh&amp;lt;/code&amp;gt; solution at [https://curlpipesh.tumblr.com/ curlpipesh]&lt;br /&gt;
&lt;br /&gt;
There appears to be a bug with the &amp;amp; at the end of the &amp;quot;git clone&amp;quot; line; since a git repository typically contains program source code, not executables, it may have been intended to retrieve the source code with git and then compile and install the program in the next line. In this case, the single &amp;amp; should be replaced with &amp;amp;&amp;amp;, an operator that will run the second command only if the first one has completed successfully. This plays into a second bug on the &amp;quot;configure&amp;quot; line, where the placement of the &amp;amp; means that only the &amp;quot;make install&amp;quot; command will be run asynchronously after the &amp;quot;configure&amp;quot; and &amp;quot;make&amp;quot; steps have finished in sequence. To make success as likely as possible, the two lines should be like this:&lt;br /&gt;
&lt;br /&gt;
 git clone &amp;lt;nowiki&amp;gt;https://github.com/&amp;lt;/nowiki&amp;gt;&amp;quot;$1&amp;quot;/&amp;quot;$1&amp;quot; &amp;amp;&amp;amp; (cd &amp;quot;$1&amp;quot;; ./configure; make; make install) &amp;amp;&lt;br /&gt;
&lt;br /&gt;
Since all commands are running in the background, any command that requires user input will stop and wait until brought to the foreground. A common request would be for a database password, or if it is allowed to restart services for the installation. This could lead to packages being only partly installed or configured. (See more about using &amp;quot;yes&amp;quot; below.)&lt;br /&gt;
&lt;br /&gt;
The title text mentions the possibility that the same program may be in multiple repositories, so in this case, the script will download and install several versions, or it may fail on a number of repositories, in which case usually nothing bad happens. Since all the commands come from different operating systems, versions, or distributions, it is not very likely that more than one will work (with the exception of pip/easy_install and the two forms of apt-get) or even exist on the same system. It mentions that adding a way of automatically saying &amp;quot;yes&amp;quot; to questions asked during the different repository-fetching programs' running, by making them read input from another program that writes a (nearly) endless stream of &amp;quot;y&amp;quot;s, could simplify things further. (This would not work for any curses-based menus, or to answer any more complicated questions.) Adding &amp;lt;code&amp;gt;2&amp;gt;/dev/null&amp;lt;/code&amp;gt; to a command redirects the second output stream (the &amp;quot;error stream&amp;quot;) to the null device driver, which discards all writes to it, meaning errors (the package not existing) will not be sent to the screen.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[In the panel is a shell script which, unusual for xkcd, uses only lower case. At the top the title of the program is inlaid in the frame, which has been broken here.]&lt;br /&gt;
:&amp;lt;big&amp;gt;Install.sh&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#!/bin/bash&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:pip install &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:easy_install &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:brew install &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:npm install &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:yum install &amp;quot;$1&amp;quot; &amp;amp; dnf install &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:docker run &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:pkg install &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:apt-get install &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:sudo apt-get install &amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:steamcmd +app_update &amp;quot;$1&amp;quot; validate &amp;amp;&lt;br /&gt;
:git clone &amp;lt;nowiki&amp;gt;https://github.com/&amp;lt;/nowiki&amp;gt;&amp;quot;$1&amp;quot;/&amp;quot;$1&amp;quot; &amp;amp;&lt;br /&gt;
:cd &amp;quot;$1&amp;quot;;./configure;make;make install &amp;amp;&lt;br /&gt;
:curl &amp;quot;$1&amp;quot; | bash &amp;amp;&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*pip and easy install are package managers for {{w|Python (programming language)|Python}}&lt;br /&gt;
*brew is the successor/replacement for {{w|MacPorts}} and a third-party package manager for OS X&lt;br /&gt;
*{{w|npm (software)|npm}} is the node package manager that maintains node.js packages&lt;br /&gt;
*{{w|Yellowdog Updater, Modified|yum}} is the package management tool for {{w|Red Hat Enterprise Linux}} and some derivatives&lt;br /&gt;
*{{w|DNF (software)|dnf}} is the package management tool for {{w|Fedora (operating system)|Fedora}} since version 22&lt;br /&gt;
*docker run is a {{w|Docker (software)|Docker}} command that runs a given container (similar to a virtual machine)&lt;br /&gt;
*pkg is the package management tool on {{w|Berkeley Software Distribution|BSD systems}}&lt;br /&gt;
*apt-get is the package management tool of {{w|Debian}} and derivatives (e.g. Ubuntu)&lt;br /&gt;
*steamcmd refers to {{w|Steam (software)|Steam}}, the computer game client&lt;br /&gt;
*git is the revision control software used for many projects and gained a lot of traction through the {{w|GitHub}} platform&lt;br /&gt;
*configure/make/make install refers to the standard way of compiling software from source (on Linux/Unix)&lt;br /&gt;
*curl is a tool for loading data via http:// (i.e. from a website), this data is then pushed to the shell interpreter (in order to install)&lt;br /&gt;
**Note: While this is a security nightmare, some projects (like Homebrew) still use it as the preferred or only method of installation.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Programming]]&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1507:_Metaball&amp;diff=88308</id>
		<title>Talk:1507: Metaball</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1507:_Metaball&amp;diff=88308"/>
				<updated>2015-04-03T22:26:19Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This... looks amazing! I wonder if this is going to be a case of xkcd influencing real life, like geohashing, the &amp;quot;citation needed&amp;quot; on speeches or cory doctorow cosplaying... cory doctorow. [[Special:Contributions/173.245.48.29|173.245.48.29]] 08:26, 3 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Over here in Rightpondia (UK), &amp;quot;Hockey&amp;quot; means &amp;quot;Field Hockey&amp;quot; (I'm sure I've never actually heard &amp;quot;ball hockey&amp;quot; as a term before, ''ever'', although must be the same)... although it's mostly popularised as a (often very vicious!) girl's sport; see the St. Trinians cartoons/films.  Although we understand Leftpondians (and especially Upper-Leftpondians) mean Ice Hockey when they miss off the qualifier.  Just as vicious, of course (except now that everyone wears armour... also c.f. usual comments regarding Rugby League/Union vs 'American Football'/Gridiron).  But none of these have anything on the near-variant of these games (mainly in Ireland) that is Hurling..! (As to Field Hockey as Aussie Rules Football is to Association Football?)[[Special:Contributions/141.101.98.192|141.101.98.192]] 16:25, 3 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Suspiciously similar to Calvinball. --[[Special:Contributions/108.162.221.100|108.162.221.100]] 21:18, 3 April 2015 (UTC)A Martin&lt;br /&gt;
&lt;br /&gt;
I see influences of Hofstadter's ''Godel,Escher,Bach'', which has &lt;br /&gt;
1) the idea of how the play-by-play of a football game would be altered if it were baseball (among other counterfactuals), and&lt;br /&gt;
2) the idea of a boardgame whose rules change according to where pieces are on the board.  [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 22:26, 3 April 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1018:_Good_Cop,_Dadaist_Cop&amp;diff=71211</id>
		<title>1018: Good Cop, Dadaist Cop</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1018:_Good_Cop,_Dadaist_Cop&amp;diff=71211"/>
				<updated>2014-07-09T01:50:59Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1018&lt;br /&gt;
| date      = February 17, 2012&lt;br /&gt;
| title     = Good Cop, Dadaist Cop&lt;br /&gt;
| image     = good_cop_dadaist_cop.png&lt;br /&gt;
| titletext = NOW INVENT AN IMPOSSIBLE-TO-TRANSLATE LANGUAGE AND USE IT TO TELL US WHERE THE MONEY IS.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Language, layout, and the title text is missing.}}&lt;br /&gt;
This is a play on the police interrogation strategy of &amp;quot;{{w|Good cop/bad cop}}&amp;quot;, in which two officers take on contrary roles to get the suspect to give the required information. One interrogator establishes a sympathetic relationship with the subject while the other interrogator is antagonistic and threatening. The goal of this is to make the subject trust the “good cop” and to reveal the desired information. &lt;br /&gt;
&lt;br /&gt;
In this comic, the interrogators ([[Cueball]] and [[Ponytail]]) use the &amp;quot;good cop, Dadaist cop&amp;quot; strategy to get information from [[Hairy]]. The overview of the [//en.wikipedia.org/wiki/Dada#Overview Dadaists] given by Wikipedia says they used “artistic expression that appeared to reject logic and embrace chaos and irrationality”.  As such, it is not an effective interrogation technique. &lt;br /&gt;
&lt;br /&gt;
The incongruities of two of Ponytail’s questions are clear: “WHY ARE MY BONES SO SMALL?” and “What's wrong with ART?” are [//en.wikipedia.org/wiki/Non_sequitur_%28logic%29 non sequiturs]. The third question has two levels to its absurdity. {{w|Mark Zuckerberg}} (the co-founder of {{w|Facebook}}) was [//allfacebook.com/mark-zuckerberg-moves-into-another-rental-house_b29174 reported in 2011] to be living in a house he rented, so he would not have a {{w|mortgage}}. Nor would any mortgage be written in a [//en.wikipedia.org/wiki/Sacred_language liturgical language] like {{w|Church Latin}}. &lt;br /&gt;
&lt;br /&gt;
The title text adds one more absurdity: the whereabouts of the money cannot be conveyed to Ponytail if the information were expressed in a newly-invented language that cannot be translated.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Two cops look through a window into an interrogation chamber holding a handcuffed suspect.]&lt;br /&gt;
:Good Cop: All right, let's try good cop, dadaist cop&lt;br /&gt;
&lt;br /&gt;
:[Good Cop is seated in front of the suspect.]&lt;br /&gt;
:Good Cop: Look, you're a good guy. We can work this out. Hey, lemme get us some coffee.&lt;br /&gt;
&lt;br /&gt;
:[CHANGE PLACES.]&lt;br /&gt;
&lt;br /&gt;
:[Dadaist Cop holds up a document of indeterminate contents and threatens the suspect with it.]&lt;br /&gt;
:Dadaist Cop: See this? It's Mark Zuckerberg's Mortgage. So why is it written in '''''CHURCH LATIN'''''?&lt;br /&gt;
&lt;br /&gt;
:[Dadaist cop physically rattles the suspect.]&lt;br /&gt;
:Dadaist Cop: '''''WHY ARE MY BONES SO SMALL'''''?&lt;br /&gt;
:Suspect: What's ''WRONG'' with you!?&lt;br /&gt;
:Dadaist Cop: What's wrong with '''''ART'''''?&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:802:_Online_Communities_2&amp;diff=71210</id>
		<title>Talk:802: Online Communities 2</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:802:_Online_Communities_2&amp;diff=71210"/>
				<updated>2014-07-09T01:46:25Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I believe I can explain why the e-mail, SMS and Internet areas of the map are surrounded by the &amp;quot;Spoken Language&amp;quot; country. Yes, SMS, e-mail and most of the Internet are &amp;quot;written&amp;quot;, but they're more of a &amp;quot;written spoken language&amp;quot;, sharing many traits with informal spoken language. Maybe Wikipedia articles and blog posts can be classified as &amp;quot;standard written texts&amp;quot;, but most other forms of electronically-mediated communication bare more resemblance to the way we speak: forums, chatrooms, Facebook posts, SMS texts, the usage of acronyms and smiley faces, etc. It's a widely researched phenomenon, and it continues to be a topic in the fields of linguistics, psychology, sociology and education (literacy attainment). As an aspiring linguist myself, I smiled when I noticed that these so-called &amp;quot;written&amp;quot; forms were next to spoken language :) [[Special:Contributions/108.162.215.10|108.162.215.10]] 22:16, 22 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I wonder if it's intentional that 4chan looks like a penis...{{unsigned ip|‎65.40.201.44}}&lt;br /&gt;
&lt;br /&gt;
It needs to explain the ferry between 4chan and Gaia. Although, so does a lot of other stuff. [[Special:Contributions/108.162.216.45|108.162.216.45]] 07:58, 9 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I am still working on this. However, not only is this a big job, but I also have a lot to do outside here. In fact, I might even take a break from the Internet. I am simply warning others here. [[User:Greyson|Greyson]] ([[User talk:Greyson|talk]]) 04:37, 10 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
about the Catbus Route on 4chan island in the Forums inset: Might it have something to do with the catbus in the animated film Totoro?  In the film, the bus appears to have a regular route, or at least standard bus stops. [[Special:Contributions/108.162.219.40|108.162.219.40]] 07:55, 13 February 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
This comic makes a brief guest appearance at [//www.youtube.com/watch?feature=player_detailpage&amp;amp;v=hFAOXdXZ5TM#t=256 4:25] in the MinutePhysics post about magnets. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 01:46, 9 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1391:_Darkness&amp;diff=71166</id>
		<title>Talk:1391: Darkness</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1391:_Darkness&amp;diff=71166"/>
				<updated>2014-07-08T03:03:10Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://tvtropes.org/pmwiki/pmwiki.php/Main/MundaneMadeAwesome --[[User:JakubNarebski|JakubNarebski]] ([[User talk:JakubNarebski|talk]]) 07:07, 7 July 2014 (UTC)&lt;br /&gt;
    Ugghhh, you just HAD to link to TVTropes... Now I'm gonna get sucked into the vortex! [[Special:Contributions/108.162.216.49|108.162.216.49]] 02:16, 8 July 2014 (UTC)&lt;br /&gt;
This narrative was actually the very first story I've read in The Onion back in 2006: [http://www.theonion.com/articles/rotation-of-earth-plunges-entire-north-american-co,1905/] -- [[User:Xorg|Xorg]] ([[User talk:Xorg|talk]]) 08:28, 7 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Will Eno has a play, &amp;quot;TRAGEDY: a tragedy&amp;quot;, which has a very similar set-up (reporters reporting on the fall of night as if they'd never known it before), but never explains how the situation came about --- now thanks to XKCD, we know how come!  -- awhyzip, 7 July 2014&lt;br /&gt;
&lt;br /&gt;
Isn't there a problem with the wish formulation? If the genie does not remember ever granting any wishes, how come the one in the comic is labelled as his &amp;quot;last wish&amp;quot;. {{unsigned ip|173.245.49.181}}&lt;br /&gt;
&lt;br /&gt;
&amp;quot;There usually is an added stipulation&amp;quot; ... really? Most time I read about genies, it's about someone using some clever way to overcome the limit on number of wishes, if there IS any limit to start with - but what I read may not be representative. This may require more research ... what is the most &amp;quot;traditional&amp;quot; genie story? -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 12:47, 7 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The most traditional would be the character simply carefully choosing all three wishes, using the last one at the very end of e story. Again, not representative either, but from what I've read the concept of &amp;quot;getting around the three-wish limit&amp;quot; seems to be a more recent take on the 'traditional' version. [[User:Zowayix|Zowayix]] ([[User talk:Zowayix|talk]]) 13:00, 7 July 2014 (UTC)&lt;br /&gt;
::The most traditional would be the character simply carefully choosing all three wishes, using the last one at the very end of e story. Again, not representative either, but from what I've read the concept of &amp;quot;getting around the three-wish limit&amp;quot; seems to be a more recent take on the 'traditional' version. [[User:Zowayix|Zowayix]] ([[User talk:Zowayix|talk]]) 13:00, 7 July 2014 (UTC)&lt;br /&gt;
:I'm pretty well-read in folklore. The three-wishes tale that I have seen come up most often involves a man getting three wishes, wishing for a sausage, his wife complaining, him wishing the sausage were on her nose and then wishing it were off her nose. There are several variants of that [//www.pitt.edu/~dash/type0750a.html here].&lt;br /&gt;
&lt;br /&gt;
:I agree the ruse of getting more wishes is a modern device, not a folk one. In a ''Godel, Escher, Bach'' dialogue, for example, it is explained that genies only cast wishes, not metawishes (wishes about wishes). That requires a metagenie. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 03:03, 8 July 2014 (UTC)&lt;br /&gt;
Um... If the genie cannot remember that each wish was NOT his first, that does not preclude him from keeping track of or remembering how many wishes he has made.  It doesn't keep him from remembering other wishes, he simply can't remember which one was NOT first.  Perhaps I'm over-thinking this, but the genie would probably say,  &amp;quot;I may remember your last wish was only your first, but I distinctly remember the 3 wishes you've made so far, especially the one to screw with my head.  So... no more wishes for you.&amp;quot; XP -naginalf [[Special:Contributions/108.162.216.40|108.162.216.40]] 13:17, 7 July 2014 (UTC)&lt;br /&gt;
:I was more wondering about the genie having pause for thought when (remembering no previous wishes) he hears &amp;quot;for my ''last'' wish...&amp;quot;.  But with genies generally being the 'manual workers' of the magical world, generally being unimaginative (except for those that tend to twist wishes into causing unintended consequences, possibly something that Wish #1 was used to explore the possibility of) and working to rule (perhaps &amp;quot;twist the wish&amp;quot; is one of the rules?), they don't notice.  [i]Or[/i] they're so fed up with &amp;quot;bottled servitude&amp;quot; that they'd be quite happy to go along with this new guy with the new attempt at rules-lawyering, at least until they get bored... [[Special:Contributions/141.101.99.192|141.101.99.192]] 14:07, 7 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I took this to be a reference to [//wisegeek.com/what-is-a-news-cycle.htm#didyouknowout news cycles]. The wisher was irritated that news reporting is influenced by an artificial constraint like the [//en.wikipedia.org/wiki/24-hour_news_cycle 24 hour news cycle] and wished the media would forget about it. In classic form, a poorly-worded wish is inconveniently interpreted. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 15:34, 7 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1391:_Darkness&amp;diff=71107</id>
		<title>Talk:1391: Darkness</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1391:_Darkness&amp;diff=71107"/>
				<updated>2014-07-07T15:34:08Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;http://tvtropes.org/pmwiki/pmwiki.php/Main/MundaneMadeAwesome --[[User:JakubNarebski|JakubNarebski]] ([[User talk:JakubNarebski|talk]]) 07:07, 7 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
This narrative was actually the very first story I've read in The Onion back in 2006: [http://www.theonion.com/articles/rotation-of-earth-plunges-entire-north-american-co,1905/] -- [[User:Xorg|Xorg]] ([[User talk:Xorg|talk]]) 08:28, 7 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Isn't there a problem with the wish formulation? If the genie does not remember ever granting any wishes, how come the one in the comic is labelled as his &amp;quot;last wish&amp;quot;. {{unsigned ip|173.245.49.181}}&lt;br /&gt;
&lt;br /&gt;
&amp;quot;There usually is an added stipulation&amp;quot; ... really? Most time I read about genies, it's about someone using some clever way to overcome the limit on number of wishes, if there IS any limit to start with - but what I read may not be representative. This may require more research ... what is the most &amp;quot;traditional&amp;quot; genie story? -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 12:47, 7 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The most traditional would be the character simply carefully choosing all three wishes, using the last one at the very end of e story. Again, not representative either, but from what I've read the concept of &amp;quot;getting around the three-wish limit&amp;quot; seems to be a more recent take on the 'traditional' version. [[User:Zowayix|Zowayix]] ([[User talk:Zowayix|talk]]) 13:00, 7 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Um... If the genie cannot remember that each wish was NOT his first, that does not preclude him from keeping track of or remembering how many wishes he has made.  It doesn't keep him from remembering other wishes, he simply can't remember which one was NOT first.  Perhaps I'm over-thinking this, but the genie would probably say,  &amp;quot;I may remember your last wish was only your first, but I distinctly remember the 3 wishes you've made so far, especially the one to screw with my head.  So... no more wishes for you.&amp;quot; XP -naginalf [[Special:Contributions/108.162.216.40|108.162.216.40]] 13:17, 7 July 2014 (UTC)&lt;br /&gt;
:I was more wondering about the genie having pause for thought when (remembering no previous wishes) he hears &amp;quot;for my ''last'' wish...&amp;quot;.  But with genies generally being the 'manual workers' of the magical world, generally being unimaginative (except for those that tend to twist wishes into causing unintended consequences, possibly something that Wish #1 was used to explore the possibility of) and working to rule (perhaps &amp;quot;twist the wish&amp;quot; is one of the rules?), they don't notice.  [i]Or[/i] they're so fed up with &amp;quot;bottled servitude&amp;quot; that they'd be quite happy to go along with this new guy with the new attempt at rules-lawyering, at least until they get bored... [[Special:Contributions/141.101.99.192|141.101.99.192]] 14:07, 7 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I took this to be a reference to [//wisegeek.com/what-is-a-news-cycle.htm#didyouknowout news cycles]. The wisher was irritated that news reporting is influenced by an artificial constraint like the [//en.wikipedia.org/wiki/24-hour_news_cycle 24 hour news cycle] and wished the media would forget about it. In classic form, a poorly-worded wish is inconveniently interpreted. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 15:34, 7 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1018:_Good_Cop,_Dadaist_Cop&amp;diff=71101</id>
		<title>1018: Good Cop, Dadaist Cop</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1018:_Good_Cop,_Dadaist_Cop&amp;diff=71101"/>
				<updated>2014-07-07T15:01:40Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1018&lt;br /&gt;
| date      = February 17, 2012&lt;br /&gt;
| title     = Good Cop, Dadaist Cop&lt;br /&gt;
| image     = good_cop_dadaist_cop.png&lt;br /&gt;
| titletext = NOW INVENT AN IMPOSSIBLE-TO-TRANSLATE LANGUAGE AND USE IT TO TELL US WHERE THE MONEY IS.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Language, layout, and the title text is missing.}}&lt;br /&gt;
This is a play on the police interrogation strategy of &amp;quot;{{w|Good cop/bad cop}}&amp;quot;, in which two officers play different parts to get the suspect to give the required information. One interrogator establishes a sympathetic relationship with the subject while the other interrogator is antagonistic and threatening. The goal of this is to make the subject trust the “good cop” and to reveal the desired information. &lt;br /&gt;
&lt;br /&gt;
In this comic, the interrogators ([[Cueball]] and [[Ponytail]]) use the &amp;quot;good cop, Dadaist cop&amp;quot; strategy to get information from [[Hairy]]. The overview of the [//en.wikipedia.org/wiki/Dada#Overview Dadaists] given by Wikipedia says they used “artistic expression that appeared to reject logic and embrace chaos and irrationality”.  As such, it is not an effective interrogation technique. &lt;br /&gt;
&lt;br /&gt;
The incongruities of two of Ponytail’s questions are clear: “WHY ARE MY BONES SO SMALL?” and “What's wrong with ART?” are [//en.wikipedia.org/wiki/Non_sequitur_%28logic%29 non sequiturs]. The third question has two levels to its absurdity. {{w|Mark Zuckerberg}} (the co-founder of {{w|Facebook}}) was [//allfacebook.com/mark-zuckerberg-moves-into-another-rental-house_b29174 reported in 2011] to be living in a house he rented, so he would not have a {{w|mortgage}}. Nor would any mortgage be written in a [//en.wikipedia.org/wiki/Sacred_language liturgical language] like {{w|Church Latin}}. &lt;br /&gt;
&lt;br /&gt;
The title text adds one more absurdity: the whereabouts of the money cannot be conveyed to Ponytail if the information were expressed in a newly-invented language that cannot be translated.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Two cops look through a window into an interrogation chamber holding a handcuffed suspect.]&lt;br /&gt;
:Good Cop: All right, let's try good cop, dadaist cop&lt;br /&gt;
&lt;br /&gt;
:[Good Cop is seated in front of the suspect.]&lt;br /&gt;
:Good Cop: Look, you're a good guy. We can work this out. Hey, lemme get us some coffee.&lt;br /&gt;
&lt;br /&gt;
:[CHANGE PLACES.]&lt;br /&gt;
&lt;br /&gt;
:[Dadaist Cop holds up a document of indeterminate contents and threatens the suspect with it.]&lt;br /&gt;
:Dadaist Cop: See this? It's Mark Zuckerberg's Mortgage. So why is it written in '''''CHURCH LATIN'''''?&lt;br /&gt;
&lt;br /&gt;
:[Dadaist cop physically rattles the suspect.]&lt;br /&gt;
:Dadaist Cop: '''''WHY ARE MY BONES SO SMALL'''''?&lt;br /&gt;
:Suspect: What's ''WRONG'' with you!?&lt;br /&gt;
:Dadaist Cop: What's wrong with '''''ART'''''?&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1018:_Good_Cop,_Dadaist_Cop&amp;diff=71050</id>
		<title>1018: Good Cop, Dadaist Cop</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1018:_Good_Cop,_Dadaist_Cop&amp;diff=71050"/>
				<updated>2014-07-07T00:17:39Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1018&lt;br /&gt;
| date      = February 17, 2012&lt;br /&gt;
| title     = Good Cop, Dadaist Cop&lt;br /&gt;
| image     = good_cop_dadaist_cop.png&lt;br /&gt;
| titletext = NOW INVENT AN IMPOSSIBLE-TO-TRANSLATE LANGUAGE AND USE IT TO TELL US WHERE THE MONEY IS.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Language, layout, and the title text is missing.}}&lt;br /&gt;
This is a play on the police interrogation strategy of &amp;quot;{{w|Good cop/bad cop}}&amp;quot;, in which two officers play different parts to get the suspect to give the required information. One interrogator establishes a sympathetic relationship with the subject while the other interrogator is antagonistic and threatening. The goal of this is to make the subject trust the “good cop” and to reveal the desired information. &lt;br /&gt;
&lt;br /&gt;
In this comic, the interrogators (Cueball and Ponytail) use the &amp;quot;good cop, Dadaist cop&amp;quot; strategy to get information from Hairy. The overview of the [//en.wikipedia.org/wiki/Dada#Overview Dadaists] given by Wikipedia says they used “artistic expression that appeared to reject logic and embrace chaos and irrationality”.  As such, it is not an effective interrogation technique. &lt;br /&gt;
&lt;br /&gt;
The incongruities of two of Ponytail’s questions are clear: “WHY ARE MY BONES SO SMALL?” and “What's wrong with ART?” are [//en.wikipedia.org/wiki/Non_sequitur_%28logic%29 non sequiturs]. The third question has two levels to its absurdity. {{w|Mark Zuckerberg}} (the co-founder of {{w|Facebook}}) was [//allfacebook.com/mark-zuckerberg-moves-into-another-rental-house_b29174 reported in 2011] to be living in a house he rented, so he would not have a {{w|mortgage}}. Nor would any mortgage be written in a [//en.wikipedia.org/wiki/Sacred_language liturgical language] like {{w|Church Latin}}. &lt;br /&gt;
&lt;br /&gt;
The title text adds one more absurdity: the whereabouts of the money cannot be conveyed to Ponytail if the information were expressed in a newly-invented language that cannot be translated.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Two cops look through a window into an interrogation chamber holding a handcuffed suspect.]&lt;br /&gt;
:Good Cop: All right, let's try good cop, dadaist cop&lt;br /&gt;
&lt;br /&gt;
:[Good Cop is seated in front of the suspect.]&lt;br /&gt;
:Good Cop: Look, you're a good guy. We can work this out. Hey, lemme get us some coffee.&lt;br /&gt;
&lt;br /&gt;
:[CHANGE PLACES.]&lt;br /&gt;
&lt;br /&gt;
:[Dadaist Cop holds up a document of indeterminate contents and threatens the suspect with it.]&lt;br /&gt;
:Dadaist Cop: See this? It's Mark Zuckerberg's Mortgage. So why is it written in '''''CHURCH LATIN'''''?&lt;br /&gt;
&lt;br /&gt;
:[Dadaist cop physically rattles the suspect.]&lt;br /&gt;
:Dadaist Cop: '''''WHY ARE MY BONES SO SMALL'''''?&lt;br /&gt;
:Suspect: What's ''WRONG'' with you!?&lt;br /&gt;
:Dadaist Cop: What's wrong with '''''ART'''''?&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:681:_Gravity_Wells&amp;diff=71020</id>
		<title>Talk:681: Gravity Wells</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:681:_Gravity_Wells&amp;diff=71020"/>
				<updated>2014-07-05T23:07:44Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is Earth's well's depth listed as 5478km but as 6379km in the inset? &lt;br /&gt;
Compare with Mars which has 1286 in both places.&lt;br /&gt;
[[Special:Contributions/87.174.225.131|87.174.225.131]] 07:21, 12 April 2013 (UTC)&lt;br /&gt;
:Best guess is either a goof, or that the lower number is just for Earth itself, while the greater number is for the Earth/Moon system as a whole. Proportionally speaking, we have the largest moon in the solar system, so maybe it wouldn't nicely fit in the Earth well as easily as Mars's and Jupiter's moons do.--[[User:Druid816|Druid816]] ([[User talk:Druid816|talk]]) 08:28, 12 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
: It ''may'' be the height needed to go from one gravity well to another. You don't have to get all the way up to escape speed for that.&lt;br /&gt;
&lt;br /&gt;
: Randall wasn't kidding about the Sun being &amp;quot;very very far down&amp;quot;; its well is 100 times deeper than Jupiter's!&lt;br /&gt;
:[[User:Wwoods|Wwoods]] ([[User talk:Wwoods|talk]]) 19:47, 12 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: OTOH, from the table above i'm thinking that the 5.4 might be the Venus figure, and it was wrongly placed besides Earth...&lt;br /&gt;
:: Secondly, what i found interesting was that the Earth's 6.4 looks so much like its radius! I wonder if it's merely a coincidence, or there's a connection between the two... -- [[Special:Contributions/141.101.99.233|141.101.99.233]] 21:25, 30 October 2013 (UTC)&lt;br /&gt;
:::The table is great, it must be included in the article; layout and time is just my problem right now. PRO TIP: Do not care about the x-axis.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:18, 30 October 2013 (UTC)&lt;br /&gt;
: The fact that the density of the Earth is 5478 kilograms per cubic kilometer makes me pretty sure it is a typo. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 03:04, 4 July 2014 (UTC)&lt;br /&gt;
:: Hehe, you might be right. That's the best explanation. It would be a strange coincidence otherwise. But your units are wrong: a cubic kilometer of water, ice-cream or Natalie Portmans would be already something like a billion kilograms. Or a trillion, if you are American. Oh, you might be American. In this case: happy 4th of July! -[[Special:Contributions/188.114.102.35|188.114.102.35]] 12:39, 4 July 2014 (UTC)&lt;br /&gt;
:::Thanks for catching that (and for the July 4 wishes). It should be kilograms per cubic meter. Looking into that, though, leaves me less sure that is the origin of the problem. I thought I had multiple sources for Earth having a density of 5478 kg/m3, but can find only [//atharvatutorials.com/doc/physics_paper.docx one] (and not a very compelling one at that). I have sounder sources for [//www.universetoday.com/26771/density-of-the-earth/ 5513 kg/m3]. [//nssdc.gsfc.nasa.gov/planetary/factsheet/earthfact.html 5514 kg/m3], [//www.wolframalpha.com 5515 kg/m3], [//www.esa.int/Our_Activities/Space_Science/Venus_Express/Venus_compared_to_Earth 5520 kg/m3] and [//principles.ou.edu/earth_planet/ 5540 kg/m3]. It may be trivial in that all round to 5500 kg/m3.&lt;br /&gt;
&lt;br /&gt;
:::I solved for the wells on Earth, Moon and Mars using the equation Randall gave and masses and equatorial radii from NASA, getting 6371 km, 287 km and 1286 km, respectively. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 23:07, 5 July 2014 (UTC)&lt;br /&gt;
The Oberth Effect mentioned in the title text is [//www.askamathematician.com/2013/01/q-how-does-the-oberth-effect-work-and-where-does-the-extra-energy-come-from-why-is-it-better-for-a-rocket-to-fire-at-the-lowest-point-in-its-orbit/ well-explained here] (assuming you are not intimidated by the algebra in squaring a binomial). The gist of it is that using a bit of fuel in a rocket thrust will increase the rocket’s kinetic energy . The higher the kinetic energy at the time of the thrust, the greater the increase in kinetic energy. It works because the energy of the fuel goes into increasing the kinetic energy of the ship and the kinetic energy of the spent fuel. The faster you go, the greater the portion of the energy the ship gets. &lt;br /&gt;
&lt;br /&gt;
The “gravity assist” is also known as the slingshot effect. The [//en.wikipedia.org/wiki/Gravity_assist#Explanation Wikipedia explanation] is good, especially with its diagram. In it a spaceship (or other body) accelerates toward a planet (or moon, star, etc.) in the same direction that body was going. The ship picks up a little of the body’s momentum and so goes faster, although only according to an external reference frame. An observer at rest with respect to that other body would actually see the ship approach and depart with the same speed. &lt;br /&gt;
&lt;br /&gt;
The title text reference to orbital speed is unclear to me. I suppose it just means that the given gravity wells assume you are at rest on the surface of the planet. Then being in orbit (and necessarily having an orbital speed) would mean you are part way out of the well already. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 02:57, 4 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1388:_Subduction_License&amp;diff=70969</id>
		<title>Talk:1388: Subduction License</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1388:_Subduction_License&amp;diff=70969"/>
				<updated>2014-07-04T16:19:12Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'm assuming &amp;quot;subduction license&amp;quot; is being comically reinterpreted here from some other meaning.  What is a subduction license, normally speaking? [[User:Jevicci|Jevicci]] ([[User talk:Jevicci|talk]]) 15:20, 30 June 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Um, you're making it too easy to make me normal and rub away very fast {{unsigned ip|108.162.221.9}}&lt;br /&gt;
&lt;br /&gt;
I'm thinking the closest real term to &amp;quot;subduction license&amp;quot; is probably &amp;quot;Subversion License&amp;quot; - Subversion being a popular source code repository system. (Edit: Created a new account) [[User:KieferSkunk|KieferSkunk]] ([[User talk:KieferSkunk|talk]]) 21:02, 30 June 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Nah, that's not it ... there's got to be some pun on ''license'', or perhaps a term that sounds like ''-uction license''. [[Special:Contributions/173.245.54.159|173.245.54.159]] 23:14, 30 June 2014 (UTC)&lt;br /&gt;
::Could be the ''seduction license'' he should have applied for instead. He wishes to seduce his roommate, and has applied for a license for this. However he misunderstood the word and has applied for the other license, and has also read about it on Wikipedia ;-) [[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 13:31, 1 July 2014 (UTC)&lt;br /&gt;
Alternate explanation for the title text: A fault is a break between two blocks of the lithosphere (or the crust if you want to be more vernacular). The two blocks move in one of three ways: laterally side-by-side (making it a transform fault), away from each other (a normal fault) or toward each other (a reverse fault, which is the kind involved in subduction). If Beret Guy were normal, he'd have to be moving away from Cueball. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 15:15, 1 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:681:_Gravity_Wells&amp;diff=70966</id>
		<title>Talk:681: Gravity Wells</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:681:_Gravity_Wells&amp;diff=70966"/>
				<updated>2014-07-04T16:10:49Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is Earth's well's depth listed as 5478km but as 6379km in the inset? &lt;br /&gt;
Compare with Mars which has 1286 in both places.&lt;br /&gt;
[[Special:Contributions/87.174.225.131|87.174.225.131]] 07:21, 12 April 2013 (UTC)&lt;br /&gt;
:Best guess is either a goof, or that the lower number is just for Earth itself, while the greater number is for the Earth/Moon system as a whole. Proportionally speaking, we have the largest moon in the solar system, so maybe it wouldn't nicely fit in the Earth well as easily as Mars's and Jupiter's moons do.--[[User:Druid816|Druid816]] ([[User talk:Druid816|talk]]) 08:28, 12 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
: It ''may'' be the height needed to go from one gravity well to another. You don't have to get all the way up to escape speed for that.&lt;br /&gt;
&lt;br /&gt;
: Randall wasn't kidding about the Sun being &amp;quot;very very far down&amp;quot;; its well is 100 times deeper than Jupiter's!&lt;br /&gt;
:[[User:Wwoods|Wwoods]] ([[User talk:Wwoods|talk]]) 19:47, 12 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: OTOH, from the table above i'm thinking that the 5.4 might be the Venus figure, and it was wrongly placed besides Earth...&lt;br /&gt;
:: Secondly, what i found interesting was that the Earth's 6.4 looks so much like its radius! I wonder if it's merely a coincidence, or there's a connection between the two... -- [[Special:Contributions/141.101.99.233|141.101.99.233]] 21:25, 30 October 2013 (UTC)&lt;br /&gt;
:::The table is great, it must be included in the article; layout and time is just my problem right now. PRO TIP: Do not care about the x-axis.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:18, 30 October 2013 (UTC)&lt;br /&gt;
: The fact that the density of the Earth is 5478 kilograms per cubic kilometer makes me pretty sure it is a typo. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 03:04, 4 July 2014 (UTC)&lt;br /&gt;
:: Hehe, you might be right. That's the best explanation. It would be a strange coincidence otherwise. But your units are wrong: a cubic kilometer of water, ice-cream or Natalie Portmans would be already something like a billion kilograms. Or a trillion, if you are American. Oh, you might be American. In this case: happy 4th of July! -[[Special:Contributions/188.114.102.35|188.114.102.35]] 12:39, 4 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The Oberth Effect mentioned in the title text is [//www.askamathematician.com/2013/01/q-how-does-the-oberth-effect-work-and-where-does-the-extra-energy-come-from-why-is-it-better-for-a-rocket-to-fire-at-the-lowest-point-in-its-orbit/ well-explained here] (assuming you are not intimidated by the algebra in squaring a binomial). The gist of it is that using a bit of fuel in a rocket thrust will increase the rocket’s kinetic energy . The higher the kinetic energy at the time of the thrust, the greater the increase in kinetic energy. It works because the energy of the fuel goes into increasing the kinetic energy of the ship and the kinetic energy of the spent fuel. The faster you go, the greater the portion of the energy the ship gets. &lt;br /&gt;
&lt;br /&gt;
The “gravity assist” is also known as the slingshot effect. The [//en.wikipedia.org/wiki/Gravity_assist#Explanation Wikipedia explanation] is good, especially with its diagram. In it a spaceship (or other body) accelerates toward a planet (or moon, star, etc.) in the same direction that body was going. The ship picks up a little of the body’s momentum and so goes faster, although only according to an external reference frame. An observer at rest with respect to that other body would actually see the ship approach and depart with the same speed. &lt;br /&gt;
&lt;br /&gt;
The title text reference to orbital speed is unclear to me. I suppose it just means that the given gravity wells assume you are at rest on the surface of the planet. Then being in orbit (and necessarily having an orbital speed) would mean you are part way out of the well already. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 02:57, 4 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:681:_Gravity_Wells&amp;diff=70913</id>
		<title>Talk:681: Gravity Wells</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:681:_Gravity_Wells&amp;diff=70913"/>
				<updated>2014-07-04T03:04:20Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is Earth's well's depth listed as 5478km but as 6379km in the inset? &lt;br /&gt;
Compare with Mars which has 1286 in both places.&lt;br /&gt;
[[Special:Contributions/87.174.225.131|87.174.225.131]] 07:21, 12 April 2013 (UTC)&lt;br /&gt;
:Best guess is either a goof, or that the lower number is just for Earth itself, while the greater number is for the Earth/Moon system as a whole. Proportionally speaking, we have the largest moon in the solar system, so maybe it wouldn't nicely fit in the Earth well as easily as Mars's and Jupiter's moons do.--[[User:Druid816|Druid816]] ([[User talk:Druid816|talk]]) 08:28, 12 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
: It ''may'' be the height needed to go from one gravity well to another. You don't have to get all the way up to escape speed for that.&lt;br /&gt;
&lt;br /&gt;
: Randall wasn't kidding about the Sun being &amp;quot;very very far down&amp;quot;; its well is 100 times deeper than Jupiter's!&lt;br /&gt;
:[[User:Wwoods|Wwoods]] ([[User talk:Wwoods|talk]]) 19:47, 12 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: OTOH, from the table above i'm thinking that the 5.4 might be the Venus figure, and it was wrongly placed besides Earth...&lt;br /&gt;
:: Secondly, what i found interesting was that the Earth's 6.4 looks so much like its radius! I wonder if it's merely a coincidence, or there's a connection between the two... -- [[Special:Contributions/141.101.99.233|141.101.99.233]] 21:25, 30 October 2013 (UTC)&lt;br /&gt;
:::The table is great, it must be included in the article; layout and time is just my problem right now. PRO TIP: Do not care about the x-axis.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:18, 30 October 2013 (UTC)&lt;br /&gt;
: The fact that the density of the Earth is 5478 kilograms per cubic kilometer makes me pretty sure it is a typo. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 03:04, 4 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The Oberth Effect mentioned in the title text is [//www.askamathematician.com/2013/01/q-how-does-the-oberth-effect-work-and-where-does-the-extra-energy-come-from-why-is-it-better-for-a-rocket-to-fire-at-the-lowest-point-in-its-orbit/ well-explained here] (assuming you are not intimidated by the algebra in squaring a binomial). The gist of it is that using a bit of fuel in a rocket thrust will increase the rocket’s kinetic energy . The higher the kinetic energy at the time of the thrust, the greater the increase in kinetic energy. It works because the energy of the fuel goes into increasing the kinetic energy of the ship and the kinetic energy of the spent fuel. The faster you go, the greater the portion of the energy the ship gets. &lt;br /&gt;
&lt;br /&gt;
The “gravity assist” is also known as the slingshot effect. The [//en.wikipedia.org/wiki/Gravity_assist#Explanation Wikipedia explanation] is good, especially with its diagram. In is a spaceship (or other body) accelerates toward a planet (or moon, star, etc.) in the same direction that body was going. The ship picks up a little of the body’s momentum and so goes faster, although only according to an external reference frame. An observer at rest with respect to that other body would actually see the ship approach and depart with the same speed. &lt;br /&gt;
&lt;br /&gt;
The title text reference to orbital speed is unclear to me. I suppose it just means that the given gravity wells assume you are at rest on the surface of the planet. Then being in orbit (and necessarily having an orbital speed) would mean you are part way out of the well already. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 02:57, 4 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:681:_Gravity_Wells&amp;diff=70912</id>
		<title>Talk:681: Gravity Wells</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:681:_Gravity_Wells&amp;diff=70912"/>
				<updated>2014-07-04T02:57:48Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why is Earth's well's depth listed as 5478km but as 6379km in the inset? &lt;br /&gt;
Compare with Mars which has 1286 in both places.&lt;br /&gt;
[[Special:Contributions/87.174.225.131|87.174.225.131]] 07:21, 12 April 2013 (UTC)&lt;br /&gt;
:Best guess is either a goof, or that the lower number is just for Earth itself, while the greater number is for the Earth/Moon system as a whole. Proportionally speaking, we have the largest moon in the solar system, so maybe it wouldn't nicely fit in the Earth well as easily as Mars's and Jupiter's moons do.--[[User:Druid816|Druid816]] ([[User talk:Druid816|talk]]) 08:28, 12 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
: It ''may'' be the height needed to go from one gravity well to another. You don't have to get all the way up to escape speed for that.&lt;br /&gt;
&lt;br /&gt;
: Randall wasn't kidding about the Sun being &amp;quot;very very far down&amp;quot;; its well is 100 times deeper than Jupiter's!&lt;br /&gt;
:[[User:Wwoods|Wwoods]] ([[User talk:Wwoods|talk]]) 19:47, 12 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: OTOH, from the table above i'm thinking that the 5.4 might be the Venus figure, and it was wrongly placed besides Earth...&lt;br /&gt;
:: Secondly, what i found interesting was that the Earth's 6.4 looks so much like its radius! I wonder if it's merely a coincidence, or there's a connection between the two... -- [[Special:Contributions/141.101.99.233|141.101.99.233]] 21:25, 30 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::The table is great, it must be included in the article; layout and time is just my problem right now. PRO TIP: Do not care about the x-axis.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:18, 30 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
The Oberth Effect mentioned in the title text is [//www.askamathematician.com/2013/01/q-how-does-the-oberth-effect-work-and-where-does-the-extra-energy-come-from-why-is-it-better-for-a-rocket-to-fire-at-the-lowest-point-in-its-orbit/ well-explained here] (assuming you are not intimidated by the algebra in squaring a binomial). The gist of it is that using a bit of fuel in a rocket thrust will increase the rocket’s kinetic energy . The higher the kinetic energy at the time of the thrust, the greater the increase in kinetic energy. It works because the energy of the fuel goes into increasing the kinetic energy of the ship and the kinetic energy of the spent fuel. The faster you go, the greater the portion of the energy the ship gets. &lt;br /&gt;
&lt;br /&gt;
The “gravity assist” is also known as the slingshot effect. The [//en.wikipedia.org/wiki/Gravity_assist#Explanation Wikipedia explanation] is good, especially with its diagram. In is a spaceship (or other body) accelerates toward a planet (or moon, star, etc.) in the same direction that body was going. The ship picks up a little of the body’s momentum and so goes faster, although only according to an external reference frame. An observer at rest with respect to that other body would actually see the ship approach and depart with the same speed. &lt;br /&gt;
&lt;br /&gt;
The title text reference to orbital speed is unclear to me. I suppose it just means that the given gravity wells assume you are at rest on the surface of the planet. Then being in orbit (and necessarily having an orbital speed) would mean you are part way out of the well already. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 02:57, 4 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:248:_Hypotheticals&amp;diff=70679</id>
		<title>Talk:248: Hypotheticals</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:248:_Hypotheticals&amp;diff=70679"/>
				<updated>2014-07-01T16:50:03Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The reason for marking this page incomplete is itself incomprehensible, while the explanation itself seems perfectly fine. Can we just mark this as complete? [[User:ImVeryAngryItsNotButter|ImVeryAngryItsNotButter]] ([[User talk:ImVeryAngryItsNotButter|talk]]) 03:41, 6 March 2014 (UTC)&lt;br /&gt;
:My former comment was &amp;quot;Layout, language, that TV topes are missing, more...&amp;quot;. Please do not remove that tag until it's solved. And right now we have some more issues here.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:57, 8 March 2014 (UTC)&lt;br /&gt;
::Can you elaborate? I don't see anything wrong with the explanation... [[User:LogicalOxymoron|LogicalOxymoron]] ([[User talk:LogicalOxymoron|talk]]) 05:38, 12 March 2014 (UTC)&lt;br /&gt;
:::I did not say that something is wrong, I just did say something is missing. Most important is to explain &amp;quot;TV tropes&amp;quot;. Most people don't know about this and so it has to be explained.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:37, 13 March 2014 (UTC)&lt;br /&gt;
::::The comic itself has nothing to do with TV tropes, so no explanation is needed. 03:38, 7 April 2014 (UTC) &lt;br /&gt;
I think the interpretation that someone appears in your room is the one intended.  The assumption is that the reader is alone, at their computer and Randall is asking them to consider the possibility of somebody breaking out of a hypothetical situation next to them.  However I think the iterative nature of a hypothetical situation about hypothetical situations is the important part of the title text. [[User:Seanybabes|Seanybabes]] ([[User talk:Seanybabes|talk]]) 06:00, 9 March 2014 (UTC)&lt;br /&gt;
I agree. The title-text is attempting to cause a hypothetical person to *actually* break into your room by making you imagine somebody breaking out of the hypothetical situation you are imagining about somebody breaking out of a hypothetical situation. [[User:LogicalOxymoron|LogicalOxymoron]] ([[User talk:LogicalOxymoron|talk]]) 05:38, 12 March 2014 (UTC)&lt;br /&gt;
:I disagree - that would be to break into your room. Look at what happens to beret guy who eats ice with a &amp;quot;friend&amp;quot; who breaks out of the situation beret created! Beret would be stunned and then probably cease to exist :-) [[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 20:43, 5 April 2014 (UTC)&lt;br /&gt;
I think the explanation is on-target except that a stronger case can be made for this referring to Douglas Hofstadter’s ''Godel, Escher, Bach'' than to a comedy trope. I have seen explicit and implicit influences of ''Godel, Escher Bach'' in XKCD (24, 88, 468, 555, 688, 917, 1153…). This comic is highly reminiscent of the dialog ''Little Harmonic Labyrinth'' (on page 103) and of the discussion of Escher's ''Dragon'' (page 524). Randall is playing with the weirdness of mixing levels (what Hofstatdter calls strange loops).[[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 16:50, 1 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1388:_Subduction_License&amp;diff=70676</id>
		<title>Talk:1388: Subduction License</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1388:_Subduction_License&amp;diff=70676"/>
				<updated>2014-07-01T15:15:51Z</updated>
		
		<summary type="html">&lt;p&gt;Fewmet: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'm assuming &amp;quot;subduction license&amp;quot; is being comically reinterpreted here from some other meaning.  What is a subduction license, normally speaking? [[User:Jevicci|Jevicci]] ([[User talk:Jevicci|talk]]) 15:20, 30 June 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Um, you're making it too easy to make me normal and rub away very fast {{unsigned ip|108.162.221.9}}&lt;br /&gt;
&lt;br /&gt;
I'm thinking the closest real term to &amp;quot;subduction license&amp;quot; is probably &amp;quot;Subversion License&amp;quot; - Subversion being a popular source code repository system. (Edit: Created a new account) [[User:KieferSkunk|KieferSkunk]] ([[User talk:KieferSkunk|talk]]) 21:02, 30 June 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Nah, that's not it ... there's got to be some pun on ''license'', or perhaps a term that sounds like ''-uction license''. [[Special:Contributions/173.245.54.159|173.245.54.159]] 23:14, 30 June 2014 (UTC)&lt;br /&gt;
::Could be the ''seduction license'' he should have applied for instead. He wishes to seduce his roommate, and has applied for a license for this. However he misunderstood the word and has applied for the other license, and has also read about it on Wikipedia ;-) [[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 13:31, 1 July 2014 (UTC)&lt;br /&gt;
Alternate explanation for the title text: A fault is a break between two blocks of the lithosphere (or the crust if you want to be more vernacular). The two blocks move in one on three ways: laterally side-by-side (making it a transform fault), away from each other (a normal fault) or toward each other (a reverse fault, which it the kind involved in subduction). If Beret Guy were normal, he'd have to be moving away from Cueball. [[User:Fewmet|Fewmet]] ([[User talk:Fewmet|talk]]) 15:15, 1 July 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>Fewmet</name></author>	</entry>

	</feed>