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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1638:_Backslashes&amp;diff=110638</id>
		<title>1638: Backslashes</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1638:_Backslashes&amp;diff=110638"/>
				<updated>2016-02-04T13:45:33Z</updated>
		
		<summary type="html">&lt;p&gt;Erickhagstrom: /* Entries in the list */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1638&lt;br /&gt;
| date      = February 3, 2016&lt;br /&gt;
| title     = Backslashes&lt;br /&gt;
| image     = backslashes.png&lt;br /&gt;
| titletext = I searched my .bash_history for the line with the highest ratio of special characters to regular alphanumeric characters, and the winner was: cat out.txt &amp;amp;#124; grep -o &amp;quot;\\\[[(].*\\\[\])][^)\]]*$&amp;quot; ... I have no memory of this and no idea what I was trying to do, but I sure hope it worked.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Need rewriting of the entries in the list and a thorough analysis of the title text}}&lt;br /&gt;
&lt;br /&gt;
Most {{w|Formal language|formal languages}} use the concept of a {{w|String literal|string}}, which is just a text between some delimiters, usually quotes. For example, &amp;quot;Hello, world&amp;quot; is a string. The text being represented is &amp;quot;Hello, world&amp;quot; without the quotes, however the quotes are also written to mark the beginning and end of the string. This is a problem when the text itself contains a quote, as in &amp;quot;This is a &amp;quot;quoted&amp;quot; string&amp;quot;. The quotes around the word &amp;quot;quoted&amp;quot; are intended to be part of the text, but the {{w|Lexical analysis|language processor}} will likely confuse it for the end of the string.&lt;br /&gt;
&lt;br /&gt;
To avoid this problem, an {{w|Escape character|escape character}} (usually a backslash) is prepended to non-string-terminating quotes. So, the previous text would be written as &amp;quot;This is a \&amp;quot;quoted\&amp;quot; string&amp;quot;. The language processor will substitute every occurrence of \&amp;quot; with only the quote character, and the string terminates at the quote character which does not immediately follow a backslash. However, the problem now is that the intended text might contain a backslash itself. For example, the text &amp;quot;C:\&amp;quot; will now be interpreted as an unterminated string containing a quote character. To avoid this, literal backslashes also are escaped with a second backslash, i.e. instead of &amp;quot;C:\&amp;quot; we write &amp;quot;C:\\&amp;quot;, where the language processor interprets \\ as one single backslash and the quote terminates the string.&lt;br /&gt;
&lt;br /&gt;
This doubling of backslashes happens in most programming and scripting languages, but also in other syntactic constructs such as {{w|Regular expression|regular expressions}}. So, when several of these languages are used in conjunction, backslashes pile up exponentially (each layer has to double the number of slashes). A reasonable example would be a {{w|PHP}} script in a web server which writes {{w|JavaScript}} code to be run in the client. If the JavaScript code has to output a smiley for scratching one's head (i.e. &amp;lt;code&amp;gt;r:-\&amp;lt;/code&amp;gt; ), it would look like this:&lt;br /&gt;
 document.write (&amp;quot;r:-\\&amp;quot;);&lt;br /&gt;
However, since this JavaScript code is to be written through a PHP script, the PHP code would be:&lt;br /&gt;
 echo &amp;quot;document.write (\&amp;quot;r:-\\\\\&amp;quot;);&amp;quot;;&lt;br /&gt;
where:&lt;br /&gt;
* The word &amp;lt;code&amp;gt;echo&amp;lt;/code&amp;gt; is the PHP command for writing something&lt;br /&gt;
* The first quote starts the string&lt;br /&gt;
* The &amp;lt;code&amp;gt;document.write (&amp;lt;/code&amp;gt; (including the open parenthesis) is written literally&lt;br /&gt;
* The &amp;lt;code&amp;gt;\&amp;quot;&amp;lt;/code&amp;gt; following that is a literal quote to be written&lt;br /&gt;
* The &amp;lt;code&amp;gt;r:-&amp;lt;/code&amp;gt; is written literally&lt;br /&gt;
* The first two slashes produce one single slash&lt;br /&gt;
* The next two slashes produce another single slash&lt;br /&gt;
* The next &amp;lt;code&amp;gt;\&amp;quot;&amp;lt;/code&amp;gt; produces a literal quote character&lt;br /&gt;
* The close parenthesis and the semicolon are to be written literally&lt;br /&gt;
* The next quote finishes the string.&lt;br /&gt;
* The final semicolon terminates the &amp;lt;code&amp;gt;echo&amp;lt;/code&amp;gt; command&lt;br /&gt;
&lt;br /&gt;
So, the presented scenario has escalated from a simple &amp;lt;code&amp;gt;r:-\&amp;lt;/code&amp;gt; smiley to no less than five backslashes in a row without stepping out of the most common operations. If we go a bit further and try to write a {{w|Java (programming language)|Java}} program that outputs our PHP script, we'd have:&lt;br /&gt;
 System.out.println (&amp;quot;echo \&amp;quot;document.write (\\\&amp;quot;r:-\\\\\\\\\\\&amp;quot;);\&amp;quot;;&amp;quot;;&lt;br /&gt;
Here, we have 11 backslashes in a row: the first 10 produce the 5 we need in our PHP script, and the last one is for escaping the quote character.&lt;br /&gt;
&lt;br /&gt;
This kind of backslash explosion is known as {{w|Leaning toothpick syndrome}}, and can happen in many situations. The one in the title text is about a {{w|Bash (Unix shell)|bash}} command (which uses the backslash to escape arguments) invoking the {{w|grep}} utility which searches for text following a pattern specified by means of a regular expression (which also uses the backslash to escape special characters). This leads to 3 backslashes in a row in the command, which could easily become 7 backslashes in a row if the text being searched for also contains a backslash. Even advanced users who completely understand the concept often have a hard time figuring out exactly how many backslashes are required in a given situation. It is hopelessly frustrating to carefully calculate exactly the number of backslashes and then noticing that there's a mistake so the whole thing doesn't work. At a point, it becomes easier to just keep throwing backslashes in until things work than trying to reason what the correct number is.&lt;br /&gt;
&lt;br /&gt;
=== Entries in the list ===&lt;br /&gt;
The first four entries with 1-4 backslashes make sense: a &amp;quot;real backslash&amp;quot; is when the program is told to find one of these using two backslashes. If you need to find such a double &amp;quot;real backslash&amp;quot; you would need a third, hence the first ''real'' is written in italic. And if you want to write a regular expression to find a backslash, and you're working in a language like Java, you need four backslashes--the regular expression itself would require two backslashes, each of which would need to be expressed as doubled backslashes in the string literal. (The use of four backslashes is specifically mentioned in the documentation for the Python regular expression library [https://docs.python.org/2/library/re.html https://docs.python.org/2/library/re.html].)&lt;br /&gt;
&lt;br /&gt;
Using 5-7 backslashes continues the trend, first with five a reference to {{w|Elder}} which has many meanings. It has become known through fantasy media, examples are the {{w|Elder Gods}} of the Cthulhu Mythos, various 'Elder' magical items and beings in the {{w|Dungeons and Dragons}} mythologies, and the {{w|Elder Days}} is also the name of first Ages of {{w|Middle-earth}} in {{w|The Silmarillion}}, the more-or-less prequel to {{w|The Lord of the Rings}}. More recently it has been used in the {{w|Harry Potter}} universe with the {{w| Magical_objects_in_Harry_Potter#Deathly_Hallows|Elder wand}} made from {{w|Sambucus|Elder wood}}.&lt;br /&gt;
&lt;br /&gt;
Using 6 backslashes will cause them to escape the computer and enter your brain and using 7 backslashes makes it ''so real it {{w|Transcendence (philosophy)|transcends}} {{w|Spacetime|time and space}}.''&lt;br /&gt;
&lt;br /&gt;
The list gives names for all numbers of backslashes from 1 up to 8, but then the last entry has 11 slashes followed by &amp;quot;...&amp;quot; to indicate they continue forever. This is: ''The true name of {{w|Baal (demon)|Ba'al}}, the {{w|Soul eater (folklore)|Soul-Eater}}''. This indicates that if you continue misusing backslashes like this you will end up devoured by a demon, for instance {{w|Beelzebub}}, for being so thoughtless... Ba'al has been [[1419: On the Phone|mentioned]] [[1246: Pale Blue Dot|before]] in {{xkcd}}.&lt;br /&gt;
&lt;br /&gt;
=== Title text ===&lt;br /&gt;
It's unclear whether the regular expression in the title text is valid or not. A long discussion about the validity of the expression has occurred here on explainxkcd.com. The fact that many editors of the site, often themselves extremely technically qualified, can't determine whether the expression is valid or not adds a meta layer to the joke of the comic.  This is probably an example of [[356: Nerd Sniping|nerd sniping]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A list of the names of different numbers of backslashes. After each &amp;quot;item&amp;quot; there is a gray line to the text describing each item. As the text is aligned above each other, the lines becomes shorter as the sequence of backslashes becomes longer until there is just a line with the length of a single hyphen for the last item. There are 1 to 8 backslashes and then 11 plus &amp;quot;...&amp;quot; in the last entry.]&lt;br /&gt;
:\&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;------------&amp;lt;/font&amp;gt; Backslash&lt;br /&gt;
:\\&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;-----------&amp;lt;/font&amp;gt; Real backslash&lt;br /&gt;
:\\\&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;----------&amp;lt;/font&amp;gt; ''Real'' real backslash&lt;br /&gt;
:\\\\&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;----------&amp;lt;/font&amp;gt; Actual backslash, for real this time&lt;br /&gt;
:\\\\\&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;---------&amp;lt;/font&amp;gt; Elder backslash&lt;br /&gt;
:\\\\\\&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;--------&amp;lt;/font&amp;gt; Backslash which escapes the screen and enters your brain&lt;br /&gt;
:\\\\\\\&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;-------&amp;lt;/font&amp;gt; Backslash so real it transcends time and space&lt;br /&gt;
:\\\\\\\\&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;------&amp;lt;/font&amp;gt; Backslash to end all other text&lt;br /&gt;
:\\\\\\\\\\\...&amp;lt;font color=&amp;quot;gray&amp;quot;&amp;gt;-&amp;lt;/font&amp;gt; The true name of Ba'al, the Soul-Eater&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Regex]]&lt;br /&gt;
[[Category:Programming]]&lt;br /&gt;
[[Category:Ba'al]]&lt;/div&gt;</summary>
		<author><name>Erickhagstrom</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1613:_The_Three_Laws_of_Robotics&amp;diff=106539</id>
		<title>Talk:1613: The Three Laws of Robotics</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1613:_The_Three_Laws_of_Robotics&amp;diff=106539"/>
				<updated>2015-12-07T14:28:27Z</updated>
		
		<summary type="html">&lt;p&gt;Erickhagstrom: Answered question about title text.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.youtube.com/watch?v=7PKx3kS7f4A Relevant Computerphile] {{unsigned ip|141.101.84.114}}&lt;br /&gt;
&lt;br /&gt;
I think the second one would also create the &amp;quot;best&amp;quot; robots i.e. ones that have the same level of &amp;quot;free will&amp;quot; as humans do, but won't end up with the robot uprising. X3[[User:International Space Station|International Space Station]] ([[User talk:International Space Station|talk]]) 09:37, 7 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The second ordering was actually covered in a story by Asimov, where a strengthed third law caused a robot to run around a hazard at a distance which maintained an equilibrium between not getting destroyed and obeying orders. More here: https://en.wikipedia.org/wiki/Runaround_(story) [[User:Gearoid|Gearóid]] ([[User talk:Gearoid|talk]]) 09:45, 7 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The explanation itself seems pretty close to complete. I'll leave others to judge if the tag is ready to be removed though. [[User:Halfhat|Halfhat]] ([[User talk:Halfhat|talk]]) 12:20, 7 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Technically, in the world we live in, robots are barely following ONE law - obey orders. Noone ever tried to built robot programmed to never harm human, because such programming would be ridiculously complex. Sure, most robots are built with failsafes, but nothing nearly as effective as Asimov's law, which makes permanent damage to robots brain when it fails to protect humans. Meanwhile, there is lot of effort spent on making robots only follow orders of authorized people, while Asimov's robots generally didn't distinguish between humans. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 13:36, 7 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm wondering about the title text: why would a driverless car kill its passenger before going into a dealership?13:43, 7 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
A driverless car would feel threatened by a trip to a car dealership. The owner would presumably be contemplating a trade-in, which could lead to a visit to the junk yard. [[User:Erickhagstrom|Erickhagstrom]] ([[User talk:Erickhagstrom|talk]]) 14:28, 7 December 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>Erickhagstrom</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1585:_Similarities&amp;diff=102747</id>
		<title>1585: Similarities</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1585:_Similarities&amp;diff=102747"/>
				<updated>2015-10-02T12:59:37Z</updated>
		
		<summary type="html">&lt;p&gt;Erickhagstrom: Removed question about Ponytail's use of &amp;quot;tell me you wouldn't...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1585&lt;br /&gt;
| date      = October 2, 2015&lt;br /&gt;
| title     = Similarities&lt;br /&gt;
| image     = similarities.png&lt;br /&gt;
| titletext = I just came from The Martian, and I just have to say: Forget BB-8; I want a pet Sojourner! It's always been the cutest of our Mars rovers.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|What brand is the Martian based on? Fifty shades is based on the Twilight brand...}}&lt;br /&gt;
&lt;br /&gt;
[[Ponytail]] compares two very different books, by listing their similarities for [[Cueball]] and end up concluding that they are actually the same book.&lt;br /&gt;
&lt;br /&gt;
''{{w|Fifty Shades of Grey}}'' began as a {{w|fan fiction}} of a well known brand (the {{w|Twilight (novel series)|Twilight book series}}). It was originally written on the internet by {{w|E. L. James}}. It was then transformed into a successful book series which was later turned into a {{w|Fifty Shades of Grey (film)|movie}} released in February 2015.&lt;br /&gt;
&lt;br /&gt;
''{{w|The Martian (Weir novel)|The Martian}}'' was originally a serialized story written by {{w|Andy Weir (writer)|Andy Weir}} on his blog which was later compiled into an ebook for people to easily download, then published into a physical book, and has now had a {{w|The Martian (film)|movie}} created based on it. The movie was officially released in the US on the same day this comic was released (October 2nd 2015). [[Randall]] indicates in the title text that he has just seen the movie. This is very likely, as premiere movies often have a sneak preview after midnight on the release day, so it is possible for him to see the movie and then post this comic early on the actual release day. &lt;br /&gt;
&lt;br /&gt;
It is possible that the brand that the Martian derives from is NASA itself. The Martian has been [https://xkcd.com/1536/ compared to Apollo 13] by Randall. [http://www.imdb.com/title/tt0112384/ Apollo 13] does indeed glorify the roles of the NASA engineers; and the Martian does a similar thing.&lt;br /&gt;
&lt;br /&gt;
That Randall would go see this movie as soon as it was released was already made perfectly clear back in June when he released the comic [[1536: The Martian]] showing how excited he is about the book. He then really looked forward to the movie. It is not clear from the comic if he liked the movie. Since he now compares it to a book series that has been {{w|Fifty_Shades_of_Grey#Background|described}} as ''mommy porn'' it could indicate that he was not so satisfied with the movie. On the other hand he may just have noticed this connection and found that it would make a great joke here on the release day.&lt;br /&gt;
&lt;br /&gt;
Since ''Fifty Shades'' is a kinky love story between two young people and ''The Martian'' is a very technical story about surviving completely alone on a hostile planet, the two books could not be any more different. Hence the joke. Cueball continues the joke by joining the two titles using red for Mars, to make a new book title, that should cover both books: ''Fifty Shades of Red.'' Ponytail is very enthusiastic about the book concept, saying it would be irresistible (at least for her and Cueball).&lt;br /&gt;
&lt;br /&gt;
The [http://starwars.wikia.com/wiki/BB-8 BB-8] mentioned in the title text is the {{w|astromech droid}} from the upcoming movie {{w|Star Wars: The Force Awakens}}, and is available as a toy (see also BB-8 on the[http://www.starwars.com/databank/bb-8 official Star Wars] home page). {{w|Sojourner (rover)|Sojourner}} was the Mars Pathfinder robotic Mars rover used by the protagonist of ''The Martian'' ({{w|Matt Damon}} in the movie) to allow him to contact Earth. Randall indicated that he thinks the Sojourner is much more cute than BB-8, and that he would like to have one as a pet. He then states that the Sojourner has always been the cutest among all the {{w|Mars rovers}}. There have been 4 so far the other three being {{w|Opportunity (rover)|Opportunity}}, {{w|Spirit (rover)|Spirit}} and {{w|Curiosity (rover)|Curiosity}} which have already been used in xkcd comics: [[695: Spirit]], [[1091: Curiosity]] and [[1504: Opportunity]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
:[Ponytail is talking to Cueball.]&lt;br /&gt;
&lt;br /&gt;
:Ponytail: So it's a work of fiction about a well-known brand. written on the Internet by an enthusiast, republished as a bestselling book, and then made into a big movie.&lt;br /&gt;
:Cueball: Yup.&lt;br /&gt;
&lt;br /&gt;
:[Ponytail holds her hand to her chin. Beat panel.]&lt;br /&gt;
&lt;br /&gt;
:[Ponytail is talking to Cueball again.]&lt;br /&gt;
:Ponytail: Yeah, ''The Martian'' and ''Fifty Shades of Grey'' are basically the same book.&lt;br /&gt;
:Cueball: &amp;quot;''Fifty Shades of Red?''&amp;quot;&lt;br /&gt;
:Ponytail: Man, ''tell'' me you wouldn't read that.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Robots]]&lt;/div&gt;</summary>
		<author><name>Erickhagstrom</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=482:_Height&amp;diff=98856</id>
		<title>482: Height</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=482:_Height&amp;diff=98856"/>
				<updated>2015-07-31T13:26:23Z</updated>
		
		<summary type="html">&lt;p&gt;Erickhagstrom: Questioning Randall's 46 billion year age of the universe estimate, reference to Planck 2013 results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 482&lt;br /&gt;
| date      = September 29, 2008&lt;br /&gt;
| title     = Height&lt;br /&gt;
| before    = [[#Explanation|↓ Skip to explanation ↓]]&lt;br /&gt;
| image     = height.png&lt;br /&gt;
| titletext = Interestingly, on a true vertical log plot, I think the Eiffel Tower's sides would really be straight lines.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The comic is a companion piece to [[485: Depth]]. Where ''Depth'' uses a {{w|logarithmic scale}} to depict the Earth at progressively greater magnification, from Earth's surface to the interior of a single proton, ''Height'' uses a logarithmic scale to depict the contents of the universe at progressively smaller distances, from the edge of the observable universe to the grass beneath our feet.&lt;br /&gt;
&lt;br /&gt;
Starting from the top, as one often does when reading comics, we begin with the top of the observable universe, described as being 46 billion {{w|light years}} out from the Earth. Randall is stating that this is the longest distance that a ray of light has ever traveled to reach Earth, which implies that the universe is about 46 billion years old. As of 2015, the universe is estimated to be about 14 billion years old. [http://www.aanda.org/articles/aa/abs/2014/11/aa21529-13/aa21529-13.html Planck 2013 results] To the right of the text, [[Black Hat]] stands atop the comic, having just dropped a cat off the edge; he may be testing if cats always land on their feet, or may just be being a jerk, per his usual character. As one scrolls down, the depicted distances become less compressed, until arriving at the surface of Earth, all the while approaching a 1:1 scale with real-life distances. As shown in [[1162: Log Scale]], if Randall didn't do this, the comic would be much, MUCH longer.&lt;br /&gt;
&lt;br /&gt;
In this comic, most objects that are grounded on Earth are scaled logarithmically on the vertical axes and linearly on the horizontal axes (some are scaled linearly on both axes). Displaying objects in this manner noticeably distorts their shape; the Great Pyramid, for instance, looks not like a pyramid but like a bullet. In the title text, Randall muses on how the inwardly-curved sides of the Eiffel Tower might actually become perfectly straightened when subjected to this logarithmic distortion, although it is shown to bulge in the comic proper, meaning Randall probably doesn't fully believe his own musings. The actual shape of the Tower approximates an {{w|Exponential function|exponential curve}}, which would indeed give a straight line on a log scale, although it was actually designed by {{w|Gustave Eiffel}} to minimize wind resistance rather than to be mathematically exact (the design is so perfect that the amount the Tower sways in the wind is less than the amount it is distorted due to thermal expansion of the sunlit side).&lt;br /&gt;
&lt;br /&gt;
Outside of the Earth's atmosphere, the objects are placed at their actual distances from Earth on the log scale, but their shapes are not subjected to the logarithmic scaling of Earth objects, instead appearing as they would be seen (otherwise, round objects like the sun would appear more egg shaped, with the flatter side facing upward). However, objects are still much larger or much smaller than they would be in real life, in order to allow them to be properly seen.&lt;br /&gt;
&lt;br /&gt;
===Objects===&lt;br /&gt;
All objects are sorted from bottom to top by their maximum distance from earth for objects in a solar orbit, and their current distance for others.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Distance&lt;br /&gt;
! Object&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| 435&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;24&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| Black Hat and cat&lt;br /&gt;
| Black Hat kicking a cat off the top of the comic, presumably to determine whether it will land on its feet.&lt;br /&gt;
|-&lt;br /&gt;
| 435&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;24&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | Top of observable universe&lt;br /&gt;
|-&lt;br /&gt;
| 11.3&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;24&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Hubble Deep Field}} objects&lt;br /&gt;
| Objects of extremely distant galaxies found in a long-exposure photograph by of the Hubble telescope, 12 billion light-years away. The right most object is probably intended to be a pulsar, schematically shown from the side.&lt;br /&gt;
|-&lt;br /&gt;
| 9.46&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;24&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | One billion light years&lt;br /&gt;
|-&lt;br /&gt;
| 3.1&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;24&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Pulsar}}&lt;br /&gt;
| A highly magnetized, rotating neutron star that emits a beam of electromagnetic radiation.&lt;br /&gt;
|-&lt;br /&gt;
| 2.36&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;24&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Great Attractor}}&lt;br /&gt;
| An unusual concentration of intergalactic mass.&lt;br /&gt;
|-&lt;br /&gt;
| 425&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;21&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Antennae Galaxies}} (colliding)&lt;br /&gt;
| A pair of colliding galaxies.&lt;br /&gt;
|-&lt;br /&gt;
| 23.6&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;21&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Andromeda Galaxy}}&lt;br /&gt;
| A sibling to our Milky Way. It is the nearest spiral galaxy to ours.&lt;br /&gt;
|-&lt;br /&gt;
| 9.46&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;21&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | One million light years&lt;br /&gt;
|-&lt;br /&gt;
| 2.38&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;21&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| [http://knowyourmeme.com/memes/cat-on-a-keyboard-in-space Cat on a keyboard in space]&lt;br /&gt;
| An internet meme featuring a picture of a cat sitting on a musical keyboard, superimposed on an image of space.&lt;br /&gt;
|-&lt;br /&gt;
| 1.56&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;21&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Magellanic Clouds}}&lt;br /&gt;
| These clouds are a pair of nearby dwarf galaxies.&lt;br /&gt;
|-&lt;br /&gt;
| 263&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| Edge of Galaxy&lt;br /&gt;
| The edge of the {{w|Milky Way}} galaxy, the galaxy in which we reside.&lt;br /&gt;
|-&lt;br /&gt;
| 245&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Galactic Center}}&lt;br /&gt;
| The center of the Milky Way galaxy.&lt;br /&gt;
|-&lt;br /&gt;
| 61.5&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Crab Nebula}}&lt;br /&gt;
| Nebula are supernova remnants&lt;br /&gt;
|-&lt;br /&gt;
| 14.2&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Horsehead Nebula}}&lt;br /&gt;
| A dark nebula that is part of the Orion Constellation.&lt;br /&gt;
|-&lt;br /&gt;
| 12.7&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Orion Nebula}}&lt;br /&gt;
| A nebula that is part of the Orion Constellation, just south of Orion's Belt.&lt;br /&gt;
|-&lt;br /&gt;
| 8.14&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Rigel}}&lt;br /&gt;
| The brightest star in the Orion Constellation it is actually a triple star system known alternatively as Beta Orionis&lt;br /&gt;
|-&lt;br /&gt;
| 6.08&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Betelgeuse}}&lt;br /&gt;
| The star Betelgeuse is displayed along with the location of {{w|Ford_Prefect (character)|Ford Prefect}} on his home planet which orbits Betelgeuse. Ford Prefect is a fictional character from the science fiction parody {{w|The Hitchhiker's Guide to the Galaxy}}.&lt;br /&gt;
|-&lt;br /&gt;
| 4.20&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Pleiades}}&lt;br /&gt;
| The Pleiades also have a derogatory remark, as per [[66: Abusive Astronomy]]&lt;br /&gt;
|-&lt;br /&gt;
| 2.90&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;18&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| The [http://en.memory-alpha.org/wiki/Romulan_Neutral_Zone Romulan Neutral Zone]&lt;br /&gt;
| This marks the edge of the {{w|Star Trek}} Federation.&lt;br /&gt;
|-&lt;br /&gt;
| 931&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; |  The first radio broadcast was in January 1910. Since radio waves travel at the speed of light, and this was published in September of 2008 this the radio waves traveled about 98.5 light years. See {{w|Contact (1997 film)}} for a depiction of this. This is also referenced in [[1212: Interstellar Memes]].&lt;br /&gt;
|-&lt;br /&gt;
| 350&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Arcturus}}&lt;br /&gt;
| An orange giant star that is part of the Boötes constellation.&lt;br /&gt;
|-&lt;br /&gt;
| 320&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Pollux}}&lt;br /&gt;
| One of the most distinct stars in the Gemini Constellation it is large Orange Giant with an apparent visual magnitude of 1.1&lt;br /&gt;
|-&lt;br /&gt;
| 242&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| The edge of {{w|Federation Sector 0-0-1}}&lt;br /&gt;
| The sector of space assigned to Earth in {{w|Star Trek}}.&lt;br /&gt;
|-&lt;br /&gt;
| 224&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Iraq and weapons of mass destruction|&amp;quot;missing WMDs&amp;quot;}}&lt;br /&gt;
| A reference to the alleged weapons of mass destruction that were used as a pretence to mobilize the world population against Iraq, and start the Iraq war.&lt;br /&gt;
|-&lt;br /&gt;
| 81.3&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Sirius}}&lt;br /&gt;
|Also known as Alpha Canis Majoris, the Dog Star, or the North Star it is actually a binary system of Stars consisting of a main sequence white star and a small white dwarf.&lt;br /&gt;
|-&lt;br /&gt;
| 56.6&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Barnard's Star}}&lt;br /&gt;
| Barnards star is a very small red giant that is of great interest to astronomers as an achievement in the SIM (Space Interforometry Mission) to find a celestial object out of solar system that is a s small as 3 earth masses&lt;br /&gt;
|-&lt;br /&gt;
| 41.3&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Alpha Centauri}}&lt;br /&gt;
| Alpha Centauri is the closest star system to our planet.&lt;br /&gt;
|-&lt;br /&gt;
| 30.9&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | One parsec.&lt;br /&gt;
|-&lt;br /&gt;
| 9.46&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | One light-year.&lt;br /&gt;
|-&lt;br /&gt;
| 15.0&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Oort cloud}}&lt;br /&gt;
| A halo of ice balls surrounding our solar system, but missing the {{w|Kupier belt}} between Neptune and the Oort cloud.&lt;br /&gt;
|-&lt;br /&gt;
| 350&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Bupkis}}&lt;br /&gt;
| Yiddish for &amp;quot;nothing&amp;quot;. Only a handful of objects are known to orbit between the Kuiper Belt and the Oort Cloud.&lt;br /&gt;
|-&lt;br /&gt;
| 55.0&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| A comet which will destroy earth in late 2063 &lt;br /&gt;
| To coincide with the latest biblicaly based prophesy for the [http://www.askelm.com/prophecy/p971105.htm end of the world].&lt;br /&gt;
|-&lt;br /&gt;
| 19.5&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Voyager 1}}&lt;br /&gt;
| An early space probe. Distance correct as of 20th Nov 2014, click [http://voyager.jpl.nasa.gov/where/ here] to see NASA's live distance counter.&lt;br /&gt;
|-&lt;br /&gt;
| 16.7&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Pioneer 10}}&lt;br /&gt;
| Listed distance is an estimate based on {{w|Pioneer_10#Current_status|this information}}.&lt;br /&gt;
|-&lt;br /&gt;
| 17.7&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Pioneer 11}}&lt;br /&gt;
| By the similarity in appearance to Pioneer 10 this unlabeled probe must be Pioneer 11. Listed distance is an estimate based on {{w|Pioneer_11#Current_status|this information}}.&lt;br /&gt;
|-&lt;br /&gt;
| 14.5&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Eris (dwarf planet)|Eris}}&lt;br /&gt;
| One of a pair of {{w|Trans-Neptunian object}}s now classified as {{w|dwarf planet}}s. The &amp;quot;All hail Discordia!&amp;quot; after Eris is a reference to {{w|Discordianism}}, a somewhat tongue-in-cheek religion based around the goddess Eris. The distance is the maximum distance from earth.&lt;br /&gt;
|-&lt;br /&gt;
| 7.50&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Pluto}}&lt;br /&gt;
| One of a pair of {{w|Trans-Neptunian object}}s now classified as {{w|dwarf planet}}s. Pluto was originally classified as the 9th planet of the Solar system. Many people was appalled when it was suddenly degraded to dwarf planet. Obviously Randall does not think much of these people thus the comment: ''Not a planet. Neener neener''. The distance is the maximum distance of Pluto from Earth.&lt;br /&gt;
|-&lt;br /&gt;
| 4.70&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Neptune}} &lt;br /&gt;
| Neptune is displayed here with its moons. Neptune is the eighth and final planet in our solar system.&lt;br /&gt;
|-&lt;br /&gt;
| 3.20&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Uranus}} &lt;br /&gt;
| Uranus is dispayed here with its moons. Uranus is the seventh planet in our solar system.&lt;br /&gt;
|-&lt;br /&gt;
| 1.67&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Saturn}} &lt;br /&gt;
| Saturn is displayed along with its moons. One of Saturn's moons, most likely Titan, is labeled as a potential location to find life.  Titan is the only known moon to have an atmosphere and oceans. The oceans cannot be filled with liquid water, as it is far too cold, but are instead filled with liquid methane and ethane. Some hypothisize that life could have formed in such oceans.&lt;br /&gt;
|-&lt;br /&gt;
| 928&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt;m&lt;br /&gt;
 | {{w|Jupiter}} &lt;br /&gt;
| Jupiter is displayed along with its moons. One of Jupiter's moons, most likely Europa, is labeled as a potential location to find life.  Europa may be covered by a deep ocean of water found under a layer of ice many kilometers thick. Some hypothisize that life could have formed in such oceans.&lt;br /&gt;
|-&lt;br /&gt;
| 222&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| Asteroids&lt;br /&gt;
| The {{w|Asteroid|Asteroid belt}} contains a spaceship from {{w|Asteroids (video game)}}&lt;br /&gt;
|-&lt;br /&gt;
| 133&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Mars}}&lt;br /&gt;
| Note the path, reflecting the fact that their distances from Earth vary as the planets move in their orbits with a maximum distance of 261 million km and a minimum of 54.6 million km.&lt;br /&gt;
|-&lt;br /&gt;
| 114&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Venus}}&lt;br /&gt;
| Note the path, reflecting the fact that their distances from Earth vary as the planets move in their orbits with a maximum distance of 401 million km and a minimum of 37.7 million km.&lt;br /&gt;
|-&lt;br /&gt;
| 138&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Mercury}}&lt;br /&gt;
| Mercury is the first planet in out solar system. The distance shown is the maximum distance from Earth.&lt;br /&gt;
|-&lt;br /&gt;
| 149&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Sun}}&lt;br /&gt;
| The Sun is the star at the center of our solar system, around which the Earth orbits.&lt;br /&gt;
|-&lt;br /&gt;
| 16.3&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Discovery One}}&lt;br /&gt;
| The Discovery One from {{w|2001: A Space Odyssey}}, referring to the quote &amp;quot;open the pod bay door, HAL.&amp;quot; Also may be a reference to [[375: Pod Bay Doors]].&lt;br /&gt;
|-&lt;br /&gt;
| 9.43&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;9&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| Planet Express&lt;br /&gt;
| The spaceplane is most likely the Planet Express from {{w|Futurama}}, where Fry once discussed &amp;quot;a big heaping bowl of salt.&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
| 400&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| Human Altitude Record &lt;br /&gt;
| Achieved by the team of {{w|Apollo 13}} approximately 100km higher than the remaining Apollo missions.&lt;br /&gt;
|-&lt;br /&gt;
| 384&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Moon}} &lt;br /&gt;
| The Moon is the Earth's only natural satellite.&lt;br /&gt;
|-&lt;br /&gt;
| 90.4&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Snoop Dogg}}&lt;br /&gt;
| A tongue-in-cheek reference to a rapper notorious for smoking marijuana, shown as having the second-highest altitude record. Someone who is taking drugs is said to be getting high.&lt;br /&gt;
|-&lt;br /&gt;
| 60.5&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Space elevator}}&lt;br /&gt;
| A proposed method of transporting cargo or people into orbit, consisting of a large mass beyond geosynchronous orbit, a station at the geosynchronous point, a cable connecting it to the Earth, and a climber that can scale the cable. Space elevators are also seen in [[697: Tensile vs. Shear Strength]] and [[536: Space Elevators]].&lt;br /&gt;
|-&lt;br /&gt;
| 42.1&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | {{w|Geosynchronous orbit|Geosynchronous Orbit}}&lt;br /&gt;
|-&lt;br /&gt;
| 20.2&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|GPS (satellite)|GPS Satellites}}&lt;br /&gt;
| GPS satellites are used for global positioning.&lt;br /&gt;
|-&lt;br /&gt;
| 3.94&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Lunar Lander}} &lt;br /&gt;
| The quote is a reference to {{w|Contact (1997 film)}} where the main character Ellie Arroway after witnessing a celestial light show up close says &amp;quot;Poetry! They should've sent a poet.&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| 800&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Space debris|Space Junk}}&lt;br /&gt;
| There is a large quantity of defunct objects in orbit around the earth. Amongst other things, this includes old satellites, rocket stages and fragments from collisions or disintegration. Space junk is also referenced in [[1242: Scary Names]] under the title {{w|Kessler syndrome}}&lt;br /&gt;
|-&lt;br /&gt;
| 422.5&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|International Space Station}}&lt;br /&gt;
| The ISS (International Space Station) is a multinational effort to put a research vessel in space. It is currently the largest artifical object in Earth's orbit, as well as the location of the longest continuous human presence in space.&lt;br /&gt;
|-&lt;br /&gt;
| 100&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | The {{w|Edge of space|official edge of space}} as defined by the {{w|Kármán line}}&lt;br /&gt;
|-&lt;br /&gt;
| 76.0&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Meteors}}&lt;br /&gt;
| Meteors are chunks of rock (usually asteroids) that burn up in the atmosphere, producing the bright light associated with them. If the are large enough to hit the ground, they become meterorites, which is why Munroe labeled them only in the upper atmosphere.&lt;br /&gt;
|-&lt;br /&gt;
| 25.0&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|High-altitude balloon|High-altitude balloons}}&lt;br /&gt;
|  Unmanned balloons, typically filled with helium or hydrogen. The current altitude record was set in 2002 by a balloon named BU60-1 which reached 53,000m.&lt;br /&gt;
|-&lt;br /&gt;
| 16.1&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | 1/10 ATM = 0.1 {{w|Atmospheric pressure|atmosphere of pressure}}&lt;br /&gt;
|-&lt;br /&gt;
| 12.0&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Airliner|Airliners}}&lt;br /&gt;
| This is a typical cruising altitude of jet aircraft, equating to roughly 40,000 feet. (Aircraft altitude tends to be specified in feet rather than metres (yay!) ) &lt;br /&gt;
|-&lt;br /&gt;
| 8.84&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Mount Everest}} &lt;br /&gt;
| The Earths highest mountain, located in the {{w|Himalayas|Himalayan mountain range}} in South Asia.&lt;br /&gt;
|-&lt;br /&gt;
| 8.00&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Cory Doctorow}} &lt;br /&gt;
| Cory Doctorow in a balloon, a reference to comic [[239: Blagofaire]].&lt;br /&gt;
|-&lt;br /&gt;
| 6.34&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Space Shuttle Columbia disaster}} &lt;br /&gt;
| The {{w|Space Shuttle Columbia}} and its seven crew were lost when it disintegrated at [http://books.google.co.uk/books?id=6v16AgAAQBAJ&amp;amp;lpg=PA7&amp;amp;ots=LDKQ3nsNHs&amp;amp;dq=shuttle%20columbia%20altitude&amp;amp;pg=PA7#v=onepage&amp;amp;q=shuttle%20columbia%20altitude&amp;amp;f=false approximately 63,400m] in 2003. This number is inconsistent with the height of the graph by a factor of 10 probably a mistype by Randall.&lt;br /&gt;
|-&lt;br /&gt;
| 6.00&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Helicopter}} &lt;br /&gt;
| Though the record for helicopter altitude (without payload) is 12,442m, normal flying is usually performed much lower. In the US, 6000m is into {{w|Class A airspace}}, which is restricted and requires flight under {{w|Instrument Flight Rules}}.&lt;br /&gt;
|-&lt;br /&gt;
| 6.00&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Cloud}} &lt;br /&gt;
| Though not actually labelled there are a couple of clouds shown. While different cloud types vary in height, 6000m is roughly in the middle of the height range for clouds in temperate regions [http://weatherfaqs.org.uk/node/21]&lt;br /&gt;
|-&lt;br /&gt;
| 5.49&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | 1/2 ATM = 0.5 {{w|Atmospheric pressure|atmosphere of pressure}}&lt;br /&gt;
|-&lt;br /&gt;
| 1.78&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| [[Cueball]] &lt;br /&gt;
| Apparently still using Python as shown in comic [[353: Python]].&lt;br /&gt;
|-&lt;br /&gt;
| 800&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | 800 meters&lt;br /&gt;
|-&lt;br /&gt;
| 800&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Burj Khalifa|Burj Dubai}}  &lt;br /&gt;
| Now known as the Burj Khalifa, is the tallest building in the world.&lt;br /&gt;
|-&lt;br /&gt;
| 500&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | 500 meters&lt;br /&gt;
|-&lt;br /&gt;
| 400&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | 400 meters&lt;br /&gt;
|-&lt;br /&gt;
| 325&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Eiffel Tower}} &lt;br /&gt;
| A famous landmark in Paris, France.&lt;br /&gt;
|-&lt;br /&gt;
| 300&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | 300 meters&lt;br /&gt;
|-&lt;br /&gt;
| 200&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | 200 meters&lt;br /&gt;
|-&lt;br /&gt;
| 150&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| Kite &lt;br /&gt;
| Kite string is commonly sold in large spools; a nice thick spool will probably hold 150 meters.&lt;br /&gt;
|-&lt;br /&gt;
| 140&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Great Pyramid of Giza}} &lt;br /&gt;
| One of the Seven Wonders of the Ancient World. It is located in Egypt.&lt;br /&gt;
|-&lt;br /&gt;
| 120&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Baseball|Pop Fly}} &lt;br /&gt;
| In Baseball a 'Pop Fly' is when the batter mis-hits the baseball, which then follows a tall arc deep into the infield where it's easy picking for the other team to catch on its way down. The highest recorded pop fly, not including those that landed in foul territory, was 172 meters.&lt;br /&gt;
|-&lt;br /&gt;
| 115&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Redwood Tree|Redwood trees}} &lt;br /&gt;
| The tallest trees in the world. At 115.61m (379.3ft) {{w|Hyperion (tree)|Hyperion}}, a Coast Redwood, holds the record for the tallest tree in the world.&lt;br /&gt;
|-&lt;br /&gt;
| 100&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background: #ffdead;&amp;quot; | 100 meters&lt;br /&gt;
|-&lt;br /&gt;
| 20.0&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Oak}} &lt;br /&gt;
| While oaks may grow to be in excess of 40m in height, heights of around 20m are more typical. The person in the tree saying, &amp;quot;Hey, squirrels!&amp;quot; is a reference to [[167: Nihilism]].&lt;br /&gt;
|-&lt;br /&gt;
| 16.4&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| Tallest stilts &lt;br /&gt;
| The tallest {{w|stilts}} recorded by the Guinness Book of World Records (as of November 2006) were 16.4 meters, or nearly 54 feet.&lt;br /&gt;
|-&lt;br /&gt;
| 13.0&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Brachiosaurus|Brachiosaur}}&lt;br /&gt;
| A large genus of dinosaur.&lt;br /&gt;
|-&lt;br /&gt;
| 8.00&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Giraffe}} &lt;br /&gt;
| The the tallest living terrestrial animal, with fully grown adults reaching in excess of 5m. While labelled 8m in the comic, the [http://www.big-animals.com/the-giraffe-the-worlds-tallest-animal/ record] for height is reported at 5.8m.&lt;br /&gt;
|-&lt;br /&gt;
| 1.70&amp;amp;nbsp;×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;m&lt;br /&gt;
| {{w|Human height|Folks}}&lt;br /&gt;
| Determining an average height of the world population is fraught with complications, but as a ballpark figure 1.7m is fairly accurate.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:'''Top of observable universe'''&lt;br /&gt;
:[Black Hat is standing on top, throwing a black kitty down.]&lt;br /&gt;
:Black Cat: Mrowl!&lt;br /&gt;
:[Map of the universe from observable universe to Earth. Each area of item is labeled. Labels left to right, up to down:]&lt;br /&gt;
:(46 billion light years up)&lt;br /&gt;
::Hubble Deep Field Objects&lt;br /&gt;
:-One billion light years-&lt;br /&gt;
::Great Attractor&lt;br /&gt;
::Antennae Galaxies (colliding)&lt;br /&gt;
::Andromeda&lt;br /&gt;
::Holy crap lots of space&lt;br /&gt;
:-One million light years-&lt;br /&gt;
::Magellanic Clouds&lt;br /&gt;
::Edge of galaxy&lt;br /&gt;
::Galactic center&lt;br /&gt;
::Crab Nebula&lt;br /&gt;
::Orion Nebula&lt;br /&gt;
::Horsehead Nebula&lt;br /&gt;
::Romulan neutral zone&lt;br /&gt;
::The Pleiades, duh!&lt;br /&gt;
::Rigel&lt;br /&gt;
::Betelgeuse&lt;br /&gt;
::Ford Prefect&lt;br /&gt;
:[Three arrows are pointing up above three lines with the following label:]&lt;br /&gt;
:-Expanding shell of radio transmissions-&lt;br /&gt;
::[Above a dotted line:]&lt;br /&gt;
::Edge of federation sector 0-0-1&lt;br /&gt;
::Pollux&lt;br /&gt;
::Arcturus&lt;br /&gt;
::Missing WMDs&lt;br /&gt;
::Sirius&lt;br /&gt;
::Barnard's Star&lt;br /&gt;
::Alpha Centauri&lt;br /&gt;
:-One parsec-&lt;br /&gt;
:-One light year-&lt;br /&gt;
::Oort Cloud (?)&lt;br /&gt;
::Bupkis&lt;br /&gt;
::Comet which will destroy Earth in late 2063&lt;br /&gt;
::Pioneer 10&lt;br /&gt;
::Voyager I&lt;br /&gt;
::Eris (All hail Discordia!)&lt;br /&gt;
::Pluto (Not a planet. Neener neener.)&lt;br /&gt;
::Neptune&lt;br /&gt;
::Uranus&lt;br /&gt;
::Saturn&lt;br /&gt;
::[Two arrows point to two moons, one next to each of the planets aboe and below.]&lt;br /&gt;
::&amp;lt;-- Life --&amp;gt;&lt;br /&gt;
::Jupiter&lt;br /&gt;
::Asteroids&lt;br /&gt;
::Mars&lt;br /&gt;
::Venus&lt;br /&gt;
::Sun&lt;br /&gt;
::Mercury&lt;br /&gt;
::Spaceship Planet Express: Hey, a heaping bowl of salt!&lt;br /&gt;
::Spaceship Discovery One: Open the fridge door, Hal.&lt;br /&gt;
::Moon&lt;br /&gt;
::Human altitude record (Apollo 13)&lt;br /&gt;
::2nd place: Snoop Dogg&lt;br /&gt;
::Space elevator - One of these days, promise!&lt;br /&gt;
::Geosynchronous Orbit&lt;br /&gt;
::GPS satellites&lt;br /&gt;
::Lunar lander: In retrospect, they &amp;lt;u&amp;gt;shouldn't&amp;lt;/u&amp;gt; have sent a poet. I have no idea how to land.&lt;br /&gt;
::International Space Station&lt;br /&gt;
::Space junk&lt;br /&gt;
:-Official edge of space (100 km)-&lt;br /&gt;
::Meteors&lt;br /&gt;
:-1/10 ATM-&lt;br /&gt;
::High altitude balloons&lt;br /&gt;
::Airliners&lt;br /&gt;
::Shuttle Columbia lost&lt;br /&gt;
:-1/2 ATM-&lt;br /&gt;
::Cory Doctrow&lt;br /&gt;
::Everest&lt;br /&gt;
::Helicopters (6000 m)&lt;br /&gt;
::Cueball: Woo Python!&lt;br /&gt;
::[A vertical scale is drawn along the right side of the picture, starting at 1 km and getting progressivly smaller and smaller.]&lt;br /&gt;
:1 km&lt;br /&gt;
:-800 m-&lt;br /&gt;
::Burj Dubai (~800 m)&lt;br /&gt;
:500&lt;br /&gt;
:400&lt;br /&gt;
::Eiffel Tower (325 m)&lt;br /&gt;
:200&lt;br /&gt;
::Kites&lt;br /&gt;
::Great Pyramid (140 m)&lt;br /&gt;
::Pop fly&lt;br /&gt;
::Redwood (115 m)&lt;br /&gt;
:100m&lt;br /&gt;
::Oak (20 m)&lt;br /&gt;
::A person in the oak: Hey squirrels!&lt;br /&gt;
::Tallest stilts&lt;br /&gt;
::Brachiosaur (13 m)&lt;br /&gt;
::Giraffe (8 m)&lt;br /&gt;
::[Megan and Cueball holding the kite are labeled:] &lt;br /&gt;
::Folks&lt;br /&gt;
:'''The observable universe, from top to bottom''''&lt;br /&gt;
::~On a log scale~&lt;br /&gt;
::Sizes are not to scale, but heights above the Earth's surface are accurate on a log scale (that is, each step up is double the height.)&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Charts]]&lt;br /&gt;
[[Category:Large drawings]]&lt;br /&gt;
[[Category:Comics with inverted brightness]] &lt;br /&gt;
[[Category:Comics featuring Cory Doctorow]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Baseball]]&lt;br /&gt;
[[Category:Animals]]&lt;br /&gt;
[[Category:Dinosaurs]]&lt;br /&gt;
[[Category:Giraffes]]&lt;br /&gt;
[[Category:Space]]&lt;/div&gt;</summary>
		<author><name>Erickhagstrom</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Erickhagstrom&amp;diff=98855</id>
		<title>User:Erickhagstrom</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Erickhagstrom&amp;diff=98855"/>
				<updated>2015-07-31T13:20:46Z</updated>
		
		<summary type="html">&lt;p&gt;Erickhagstrom: Created page with &amp;quot;Hi. I'm Erick G. Hagstrom. When I registered I got an error on my email address, but I don't know where to go to fix it. :-(&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi. I'm Erick G. Hagstrom. When I registered I got an error on my email address, but I don't know where to go to fix it. :-(&lt;/div&gt;</summary>
		<author><name>Erickhagstrom</name></author>	</entry>

	</feed>