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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1597:_Git&amp;diff=180332</id>
		<title>1597: Git</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1597:_Git&amp;diff=180332"/>
				<updated>2019-09-23T16:14:26Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Trivia */ Contributed a long-overdue update to the information about the past mention of this comic on the page for ''what if?'' #153.  I may add archive links later if I can find them.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1597&lt;br /&gt;
| date      = October 30, 2015&lt;br /&gt;
| title     = Git&lt;br /&gt;
| image     = git.png&lt;br /&gt;
| titletext = If that doesn't fix it, git.txt contains the phone number of a friend of mine who understands git. Just wait through a few minutes of 'It's really pretty simple, just think of branches as...' and eventually you'll learn the commands that will fix everything.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
===This is Git===&lt;br /&gt;
{{w|Git (software)|Git}} is a version control system, used to manage the code in many millions of software projects. It is very powerful, and was amongst the first widely adopted tools to use a distributed version control model (the &amp;quot;beautiful {{w|graph theory}} {{w|Tree (graph theory)|tree model}}&amp;quot;), meaning that there is no single central repository of code. Instead, users share code back and forth to synchronise their repositories, and it is up to each project to define processes and procedures for managing the flow of changes into a stable software product.&lt;br /&gt;
&lt;br /&gt;
===How do we use it?===&lt;br /&gt;
Although very powerful, the command line of Git is notoriously difficult to learn and master. Dozens of blog posts and websites (see [http://think-like-a-git.net/epic.html], [http://stevebennett.me/2012/02/24/10-things-i-hate-about-git/]), and even books ([http://blog.anvard.org/conversational-git/chapter-01.html], [http://git-scm.com/book/en/v2]) have been written to help users navigate this complexity. &lt;br /&gt;
&lt;br /&gt;
The difficulty of using Git in common situations is contradicted by the apparent simplicity of its use in tutorial-style situations. Committing and sharing changes is fairly straightforward, for instance, but recovering from situations such as accidental commits, pushes or bad merges is difficult without a solid understanding of the rather large and complex conceptual model. For instance, three of the top five highest voted questions on Stack&amp;amp;nbsp;Overflow are questions about how to carry out relatively simple tasks: undoing the last commit, changing the last commit message, and deleting a remote branch.&lt;br /&gt;
&lt;br /&gt;
This comic thus explores the difference between the idealised view of Git's architecture, and its actual typical usage. Tutorials for Git tend to use simple systems in their examples, and only deal with the most basic commands to get started, which can create the misleading impression that Git can be used effectively without extensive study.&lt;br /&gt;
&lt;br /&gt;
Due to this problem, compounded by the fact that Git's commands are named differently from similar commands in other version control systems, many users (including Cueball) are unable to use it beyond basic commands, and might try to avoid problems by saving their code outside Git, downloading a newer copy, and then re-applying their changes to the new copy instead of trying to understand and use the features that exist in Git to accomplish this task.&lt;br /&gt;
&lt;br /&gt;
===Memorize these shell commands===&lt;br /&gt;
Cueball suggests &amp;quot;just memoriz[ing] these shell commands and type them to sync up&amp;quot;. He is probably referring to a sequence of commands such as:&lt;br /&gt;
&lt;br /&gt;
    git pull&lt;br /&gt;
    # remote changes have now been received, so work on your file&lt;br /&gt;
    git add file.txt&lt;br /&gt;
    git commit -m &amp;quot;Added some text&amp;quot;&lt;br /&gt;
    git push&lt;br /&gt;
&lt;br /&gt;
===If you get errors...===&lt;br /&gt;
As long as every contributor to the project follows these principles, this may suffice for a while. But many situations may cause &amp;quot;errors&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
* merge conflicts (two people editing the same part of the same file)&lt;br /&gt;
* unmerged changes (another person committed a change before you did, so you need to merge their changes first)&lt;br /&gt;
* attempting to recover from a situation such as an accidental merge, and making the situation worse.&lt;br /&gt;
&lt;br /&gt;
In a situation such as a merge conflict, Git will show an error message such as:&lt;br /&gt;
&lt;br /&gt;
    CONFLICT (modify/delete): README.md deleted in HEAD and modified in branch-b. Version branch-b of README.md left in tree.&lt;br /&gt;
    # Automatic merge failed; fix conflicts and then commit the result.&lt;br /&gt;
&lt;br /&gt;
===Save your work elsewhere...===&lt;br /&gt;
Although Git experts can of course deal with such situations, the remedy proposed by Cueball is &amp;quot;save your work elsewhere, delete the project, and download a fresh copy&amp;quot;. That is, to copy the files out of their local repository's working directory, delete that whole structure, then clone the remote repository again (and, implicitly, copy the saved work back again):&lt;br /&gt;
&lt;br /&gt;
 # Copy files elsewhere&lt;br /&gt;
 mkdir /tmp/myproject&lt;br /&gt;
 cp * /tmp/myproject&lt;br /&gt;
 cd ..&lt;br /&gt;
 # delete the project&lt;br /&gt;
 rm -rf myproject&lt;br /&gt;
&lt;br /&gt;
 # Download a fresh copy&lt;br /&gt;
 git clone https://github.com/myorg/myproject&lt;br /&gt;
 cd myproject&lt;br /&gt;
&lt;br /&gt;
 # Copy saved work&lt;br /&gt;
 cp /tmp/myproject/* .&lt;br /&gt;
&lt;br /&gt;
Abandoning the old project likely means losing some work, but may be faster and give a more predictable outcome than attempting to salvage the situation. Applying this method to a mere merge conflict issue may prolong the issue however, as the merge conflicts may still be present.&lt;br /&gt;
&lt;br /&gt;
===Title text===&lt;br /&gt;
The title text suggests an alternative method for working around Git's complexities, which reflects common practice: knowing a &amp;quot;Git expert&amp;quot; who can help in any situation. Such experts are somewhat notorious for waxing lyrically about Git's strengths, so it may be necessary to win their favour by first letting them ramble enthusiastically about it. They will hopefully eventually give the exact commands needed. In practice, the question-and-answer site Stack&amp;amp;nbsp;Overflow is frequently used for this exact purpose.&lt;br /&gt;
&lt;br /&gt;
It may even be a reference to the infamous tweet &amp;quot;[https://twitter.com/agnoster/status/44636629423497217 Git gets easier once you get the basic idea that branches are homeomorphic endofunctors mapping submanifolds of a Hilbert space]&amp;quot; which has been [http://www.beyondjava.net/blog/git-explained-in-really-simple-words/ discussed here] but it is inconclusive whether a meaningful interpretation exists.&lt;br /&gt;
&lt;br /&gt;
Putting a telephone number of someone who &amp;quot;understands Git&amp;quot; into such a file is humorous because:&lt;br /&gt;
*Software teams would more normally use electronic means of communication&lt;br /&gt;
*Explaining Git over the phone to team members should not be necessary, as there is extensive help available online, and&lt;br /&gt;
*In the situation where many team members would need phone support to avoid or fix basic Git problems, this would be extremely distracting to the person whose phone number was given in the file.&lt;br /&gt;
&lt;br /&gt;
=== TL;DR===&lt;br /&gt;
In short: programmers use {{w|Version control|version control systems}} to track changes to code. Most of these version control systems are quite similar and easy to learn if you already know another one. Git is a version control system based on completely different principles, and most programmers find it difficult to wrap their heads around it (although Git also offers a large number of nontrivial benefits over standard version control systems, which is why it is used). Cueball is one of those programmers.&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
&lt;br /&gt;
This comic was referenced in an earlier version of the page for ''what if?'' #153, where Randall, due to a problem with git, had at one time erroneously posted a draft of his [[what if?]] piece on peptides. As of December 17th, 2016 the page read:&lt;br /&gt;
&lt;br /&gt;
:;Whoops&lt;br /&gt;
:This article is still in progress. An early draft was unintentionally posted here thanks to Randall's {{xkcd|1597|troubled approach to git}}, and it took a little bit to get everything sorted out and rolled back. Sorry for the mixup!&lt;br /&gt;
&lt;br /&gt;
On January 30, 2017, the page was updated with a completed article, ''{{what if|153|Hide the Atmosphere}}''.  As of September 23, 2019, the page no longer contains any reference to this comic or Randall's earlier mistake with Git (or anything related to Git, for that matter).&lt;br /&gt;
&lt;br /&gt;
The comic [[1296: Git Commit]] also features Git.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball points to a computer on a desk while Ponytail and Hairy are standing further away behind an office chair.]&lt;br /&gt;
:Cueball: This is git. It tracks collaborative work on projects through a beautiful distributed graph theory tree model.&lt;br /&gt;
:Ponytail: Cool. How do we use it?&lt;br /&gt;
:Cueball: No idea. Just memorize these shell commands and type them to sync up. If you get errors, save your work elsewhere, delete the project, and download a fresh copy.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Git]]&lt;br /&gt;
[[Category:Computers]]&lt;br /&gt;
[[Category:Internet]]&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=164133</id>
		<title>1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=164133"/>
				<updated>2018-10-13T01:22:59Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Trivia */ Added a second bracket to better reflect the actual transcript.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1037&lt;br /&gt;
| date      = April 1, 2012&lt;br /&gt;
| title     = Umwelt&lt;br /&gt;
| image     = umwelt_the_void.jpg&lt;br /&gt;
| titletext = Umwelt is the idea that because their senses pick up on different things, different animals in the same ecosystem actually live in very different worlds. Everything about you shapes the world you inhabit--from your ideology to your glasses prescription to your web browser.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;toclimit-3&amp;quot; style=&amp;quot;float:right; margin-left: 10px;&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This was the third [[:Category:April fools' comics|April fools' comic]] released by [[Randall]]. The previous fools comic was &lt;br /&gt;
[[880: Headache]] from Friday April 1st 2011. The next was [[1193: Externalities]] released on Monday April 1st 2013.&lt;br /&gt;
&lt;br /&gt;
This comic was released on April 1 even though that was [[:Category:Sunday comics|a Sunday]] (only the third comic to be released on a Sunday). But it was only due to the April Fool joke, as it did replace the comic that would have been scheduled for Monday, April 2nd. The next comic, [[1038: Fountain]], was first released on Wednesday, April 4th. This was the first that could be different for different readers.&lt;br /&gt;
&lt;br /&gt;
An {{w|Umwelt}}, as the title text explains, is the idea that one's entire way of thinking is dependent on their surroundings. Thus, this {{w|April Fools}} comic changes based on the browser, location, or referrer. Thus, what the viewer is viewing the comic on, where they live, or where they came from determines which comic they actually see. As a result, there are actually multiple comics that went up on April Fools' Day, although only one is seen.&lt;br /&gt;
(Fun Fact: the German word &amp;quot;Umwelt&amp;quot; does not mean anything vaguely similar; it translates in all contexts almost exactly as &amp;quot;environment&amp;quot;.)&lt;br /&gt;
&lt;br /&gt;
Information about how the wide variety of data was collected and credit for the viewers who contributed can be found [http://www.reddit.com/r/xkcd/comments/rnst4/april_fools_xkcd_changing_comic/ here].&lt;br /&gt;
&lt;br /&gt;
===The Void===&lt;br /&gt;
[[File:umwelt the void.jpg]]&lt;br /&gt;
&lt;br /&gt;
If the device or browser you are using does not support Javascript, you will simply see a static image of a white swirl on a dark background.&lt;br /&gt;
&lt;br /&gt;
Possible reference to The Ring (http://imgur.com/wlGmm), as though to suggest that using an alternative browser is dismal and horrific.&lt;br /&gt;
&lt;br /&gt;
Davean (xkcd's sysadmin): &amp;quot;[This] comic isn't available everywhere and it can come up i[n] some situation[s] only for recognized browsers.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Browser: Alternative Browser&lt;br /&gt;
&lt;br /&gt;
===Aurora===&lt;br /&gt;
[[File:umwelt aurora.png]]&lt;br /&gt;
&lt;br /&gt;
One could interpret that since Megan didn't go out and therefore missed seeing the {{w|Aurora}} (northern lights), Cueball in his [[1350:_Lorenz#Knit_Cap_Girl|knit cap]] lied about it. That way, she wouldn't have felt sad that she missed out. Another interpretation could be that he decides that since she did not even bother to go outside to see such a spectacular sight he will not tell her about it. And yet another could be that he did not think it was interesting.&lt;br /&gt;
&lt;br /&gt;
Cueball could possibly also be red-green colorblind, seeing the green aurorae as grey &amp;quot;clouds&amp;quot;. This would serve as an example for the theme of the comic, as a non-colorblind person and a colorblind person seeing the same color would perceive it differently, one seeing it as its true color, and the other seeing it without the shade of color they cannot see.&lt;br /&gt;
&lt;br /&gt;
This image changed based on the size of the browser window including different panels at different sizes.&lt;br /&gt;
&lt;br /&gt;
Locations: Canada, Boston, Maine, New York, Ohio, Oregon, Texas, Minnesota, Norway, Denmark, France, Rhode Island (not sure if mobile only or not.) (also in virginia, but using ohio in the first panel) (also in maryland, but using canada in the first panel)&lt;br /&gt;
&lt;br /&gt;
In [[1302: Year in Review]] a possibly different Megan has a completely different approach to the chance of seeing northern lights, as that was the only event she was looking forward to in 2013, and it failed. If this is the same Megan, perhaps she learned that there actually were northern lights in her area from another source, and so desperately wanted to have another chance to see them.&lt;br /&gt;
&lt;br /&gt;
===Snake===&lt;br /&gt;
[[File:umwelt snake composite 1024.png]]&lt;br /&gt;
[[:File:umwelt snake composite.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
The joke here is the extreme length of snakes. The world's longest snake is the python, the longest ever being 33 feet or approx. 10 meters. The blue and orange circles refer to the hit game {{w|Portal}}.&lt;br /&gt;
There is also a reference to the book &amp;quot;The Little Prince&amp;quot; in the second panel, where there is a large bulge in the snake that looks like an elephant. The Little Prince starts out by mentioning a drawing that the author made when he was six that showed an elephant inside a snake.&lt;br /&gt;
&lt;br /&gt;
Also, the number and content of the panels changes depending on the size of your browser window.&lt;br /&gt;
&lt;br /&gt;
This image changed based on the size of the browser window including different panels at different sizes.&lt;br /&gt;
&lt;br /&gt;
Specific AltText for this image: Umwelt is the idea that because their senses pick up on different things, different animals in the same ecosystem actually live in very different worlds. Everything about you shapes the world you inhabit -from your ideology to your glasses prescription to your browser window size.&lt;br /&gt;
&lt;br /&gt;
Location: Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS, Chrome version 49.0.2623.112), Connecticut (Safari for iOS), Virginia (on Chrome), Michigan (Firefox v46.0.1), Penang (Chrome Version 65.0.3325.162).&lt;br /&gt;
&lt;br /&gt;
===Black Hat===&lt;br /&gt;
[[File:umwelt tortoise 1024.png]]&lt;br /&gt;
[[:File:umwelt tortoise.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
Cueball as an analyst attempts to psychoanalyze [[Black Hat|Black Hat's]] [[72: Classhole|classhole]] tendencies. Cueball's quote and the whole setup is a direct reference to the movie {{w|Blade Runner}} (1982) and Black Hat is taking the Voight-Kampff test which is used to identify replicants from real humans.&lt;br /&gt;
&lt;br /&gt;
Black Hat's reason for not helping the tortoise is that ''it ''''knows''' what it did'' and thus in Black Hat's world view it deserves being turned over. The final part of the joke is that when zooming out it turns out that there is a tortoise behind Black Hat and he has actually already turned it over for what it did.&lt;br /&gt;
&lt;br /&gt;
Location: Seems to appear mostly in &amp;quot;other countries&amp;quot; — those without location-specific comics.&lt;br /&gt;
&lt;br /&gt;
===Too Quiet===&lt;br /&gt;
[[File:umwelt too quiet 1024.png]]&lt;br /&gt;
[[:File:umwelt too quiet.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
A reference to {{w|Jurassic Park (film)|Jurassic Park}} which has been [[87: Velociraptors|constantly]] [[135: Substitute|referred]] [[1110: Click and Drag|to]] [[155: Search History|before]] [[758: Raptor Fences|in]] this comic.&lt;br /&gt;
&lt;br /&gt;
Also referencing the film {{w|2 Fast 2 Furious|2 Fast 2 Furious}}, an entertaining, yet intellectually unprovoking sequel in a popular film franchise, which is aimed at teenagers and young adults, prompting the blunt response from the stickman. The fact that Steve would use such a cliché {{w|2000s (decade)|noughties}} movie term in such an intense moment, and the subsequent curse, is the joke in this comic.&lt;br /&gt;
&lt;br /&gt;
Location: short version — iPhone 5c Safari browser in Texas, iPhone 5 Chrome Browser in Minnesota, long version - Google Chrome browser in Indiana, Windows 8 Laptop&lt;br /&gt;
&lt;br /&gt;
===Pond===&lt;br /&gt;
[[File:umwelt pond mobile.png]][[File:umwelt pond wide.png]]&lt;br /&gt;
&lt;br /&gt;
Two different versions showed, the narrower version for mobile devices.&lt;br /&gt;
&lt;br /&gt;
Location: The Netherlands and various other countries.&lt;br /&gt;
&lt;br /&gt;
===Galaxies===&lt;br /&gt;
[[File:umwelt galaxies 1024.jpg]]&lt;br /&gt;
[[:File:umwelt galaxies.jpg|Full size]]&lt;br /&gt;
&lt;br /&gt;
Megan is distracted from her conversation with [[Cueball]] by realizing that the space behind his head, from her vantage point, contains millions of galaxies. This is similar to an [http://nssdc.gsfc.nasa.gov/image/astro/hst_deep_field.jpg incredible photograph] taken by the Hubble Telescope, in which a tiny dark area of space in fact contained numerous galaxies.&lt;br /&gt;
&lt;br /&gt;
The title text is an imaginative leap from this scenario: that the galaxies would be up to no good once Cueball is turned away from them.  This is presumably a reference to [http://www.mariowiki.com/boo Boo], an enemy from certain Mario games who moves toward Mario only when Mario is facing away from Boo.&lt;br /&gt;
&lt;br /&gt;
This comic was only reported once... the intended environmental context is a mystery.&lt;br /&gt;
&lt;br /&gt;
Location: unknown&lt;br /&gt;
&lt;br /&gt;
===xkcd Gold===&lt;br /&gt;
[[File:umwelt xkcd gold.png]]&lt;br /&gt;
&lt;br /&gt;
This is probably a reference to the 4chan Gold Account, an implementation on 4chan that does not actually exist, and is usually used to trick newcomers into revealing their credit card numbers. The joke is that &amp;quot;Gold Account&amp;quot; users can supposedly block other users from viewing images they have posted. The fifth panel is probably a reference to Beecock, a notorious set of shocker images. 4chan's moderators have been known to give out &amp;quot;beecock bans&amp;quot; or &amp;quot;/z/ bans&amp;quot; to particularly annoying users, which redirect the user to a page containing beecock and the text &amp;quot;OH NO THE BOARD IS GONE&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Referrer: 4chan&lt;br /&gt;
&lt;br /&gt;
===Yo Mama===&lt;br /&gt;
[[File:umwelt dog ballast.png]]&lt;br /&gt;
&lt;br /&gt;
Possible reference to Kurt Vonnegut Jr.'s &amp;quot;{{w|Harrison Bergeron}}.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Possibly a veiled criticism of Facebook. This could be slightly rewritten as: &amp;quot;This comic takes place in a dystopian future where the government is afraid of dissent, so it tracks everyone at all times, and some people privately doubt the government, but not enough to stop submitting information to Facebook. But that dystopian future is now.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Referrer: Facebook&lt;br /&gt;
&lt;br /&gt;
===Reddit===&lt;br /&gt;
[[File:umwelt reddit.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to referencing, because Reddit, as a referring site, likes references to its referencing in its references.&lt;br /&gt;
&lt;br /&gt;
This comic also features recursive imagery similar to [[688: Self-Description|Self Description]] where the second panel embeds the entire comic within itself.&lt;br /&gt;
&lt;br /&gt;
Referrer: Reddit&lt;br /&gt;
&lt;br /&gt;
===Buns and Hot dogs===&lt;br /&gt;
[[File:umwelt somethingawful.jpg]]&lt;br /&gt;
&lt;br /&gt;
This is a reference to the question &amp;quot;Why do hot dogs come in packages of 6 while buns come in packages of 8?&amp;quot; &lt;br /&gt;
&lt;br /&gt;
Another, more sexual reference to this question can be found in [[1641: Hot Dogs]].&lt;br /&gt;
&lt;br /&gt;
Referrer: SomethingAwful, Questionable Content, &amp;amp; MetaFilter&lt;br /&gt;
&lt;br /&gt;
===Twitter===&lt;br /&gt;
[[File:umwelt twitter.jpg]]&lt;br /&gt;
&lt;br /&gt;
A summary of the content &amp;quot;typically&amp;quot; found on Twitter.&lt;br /&gt;
&lt;br /&gt;
In the tweet feed, there are three tweets about some podcast on the top, followed by the tweet containing link they clicked on to get to the comic, tweets about Rob Delaney, unspecified passive-aggressive tweets, and a tweet from [http://en.wikipedia.org/wiki/Horse_ebooks Horse Ebooks] retweeted by one of the users the reader follows.&lt;br /&gt;
&lt;br /&gt;
On the left, the topmost dialog, with profile information, shows that the user has posted 1,302 tweets, but only follows 171 people and has even fewer followers, at a measly 48. This is marked with a sad face, implying that the user wants more followers.&lt;br /&gt;
&lt;br /&gt;
Below that is the &amp;quot;who to follow&amp;quot; dialog, which is written up as consisting of &amp;quot;assholes&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Below that is the &amp;quot;trending tags&amp;quot; dialog for the United States. It is full of tags about word games, tags about misogyny, and tags about Justin Bieber.&lt;br /&gt;
&lt;br /&gt;
Below that is an unidentified dialog full of &amp;quot;stuff your eyes automatically ignore&amp;quot;. And finally, on the bottom is the background colour, which is &amp;quot;a really pleasant blue&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Referrer: Twitter&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
[[File:umwelt wikipedia wide.jpg]]&lt;br /&gt;
[[File:umwelt wikipedia mobile.png]]&lt;br /&gt;
&lt;br /&gt;
The term {{w|Mile High Club}} (or MHC) is a slang term applied collectively to individuals who have had sexual intercourse while on board of an aircraft. Randall says that reading the news articles on it has distracted him from making that comic.&lt;br /&gt;
&lt;br /&gt;
Two different versions shown, the narrower version (the single panel with all the text) for mobile devices.&lt;br /&gt;
&lt;br /&gt;
Referrer: Wikipedia&lt;br /&gt;
&lt;br /&gt;
===Google Chrome===&lt;br /&gt;
[[File:umwelt chrome1.jpg]]&lt;br /&gt;
&lt;br /&gt;
{{w|Sergey Brin}} (born August 21, 1973) is an American computer scientist and Internet entrepreneur who, with Larry Page, co-founded Google, one of the most profitable Internet companies. As of 2013, his personal wealth was estimated to be $24.4 billion. Randall makes the joke that as the founder of Google, Brin's permission would be needed to use Google Chrome. Because there are millions of people who use Google, it is likely that at least some of the time Brin would be asleep, thus he would need to be woken.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome&lt;br /&gt;
&lt;br /&gt;
===Chrome/Firefox===&lt;br /&gt;
[[File:umwelt chrome2.png]]&lt;br /&gt;
&lt;br /&gt;
Mozilla {{w|Firefox}} is a free and open-source web browser developed for Windows, OS X, and Linux, with a mobile version for Android and iOS, by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Cueball is complaining about {{w|Google Chrome}}, to which [[Ponytail]] replies that there is an {{w|add-on}} that fixes what he is complaining about. When questioned, she replies that the add-on is Firefox, which isn't an add-on at all and is instead a different browser.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome&lt;br /&gt;
&lt;br /&gt;
===Google Chrome-2===&lt;br /&gt;
[[File:umwelt chrome3.png]]&lt;br /&gt;
&lt;br /&gt;
This panel references Google Chrome's error screen, which shows a puzzle piece. The comic humorously implies that Chrome is looking for that piece. When completing jigsaw puzzles, a common strategy is to figure out where the pieces must be from their geometry rather than from the picture they create. In this case, the text suggests that Chrome believes the puzzle piece connects to the pieces which form one of the corners of the puzzle, which may seem impossible because any piece that links up to a corner would usually have at least one flat edge, which this piece has none. However, more complicated puzzles have complex shapes and are not always simply approximate squares with tabs and blanks.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome or silk on desktop view&lt;br /&gt;
&lt;br /&gt;
===Mozilla Firefox Private Browsing===&lt;br /&gt;
[[File:umwelt firefox incognito.png]]&lt;br /&gt;
&lt;br /&gt;
Another reference to crashing web browsers.&lt;br /&gt;
&lt;br /&gt;
Browser: Firefox (Incognito only?)&lt;br /&gt;
&lt;br /&gt;
===Internet Explorer===&lt;br /&gt;
[[File:umwelt ie.png]]&lt;br /&gt;
&lt;br /&gt;
Yet another reference to crashing web browsers&lt;br /&gt;
&lt;br /&gt;
Browser: Internet Explorer&lt;br /&gt;
&lt;br /&gt;
===Maxthon===&lt;br /&gt;
[[File:umwelt maxthon.png]]&lt;br /&gt;
&lt;br /&gt;
Browser: Maxthon&lt;br /&gt;
&lt;br /&gt;
===Netscape Navigator===&lt;br /&gt;
[[File:umwelt netscape womanoctopus.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt netscape man.png]]&lt;br /&gt;
&lt;br /&gt;
{{w|Netscape Navigator}} was a web browser popular in the 1990s.&lt;br /&gt;
&lt;br /&gt;
Browser: Netscape&lt;br /&gt;
&lt;br /&gt;
===Rockmelt===&lt;br /&gt;
[[File:umwelt rockmelt.png]]&lt;br /&gt;
&lt;br /&gt;
{{w|Rockmelt}} is a social-media-based browser.&lt;br /&gt;
&lt;br /&gt;
Reference to the gospel song {{w|Longing for Old Virginia: Their Complete Victor Recordings (1934)|&amp;quot;There's no hiding place down here&amp;quot; by The Carter Family}}, later covered by Stephen Stills.&lt;br /&gt;
&lt;br /&gt;
:I run to the rock just to hide my face&lt;br /&gt;
:And the rocks cried out, no hiding place&lt;br /&gt;
:There's no hiding place down here&lt;br /&gt;
&lt;br /&gt;
It may additionally be a reference to the ''Babylon 5'' episode &amp;quot;And the Rock Cried Out, No Hiding Place,&amp;quot; which featured the song.&lt;br /&gt;
&lt;br /&gt;
Browser: Rockmelt&lt;br /&gt;
&lt;br /&gt;
===Plugin Disabled===&lt;br /&gt;
[[File:umwelt plugin disabled.png]]&lt;br /&gt;
&lt;br /&gt;
When the Google Chrome web browser does not have the required software (called a plug-in) to display a web page's content, it displays a puzzle piece icon and an error message. In this case, Chrome informs the user that the content is impossible to display. &lt;br /&gt;
&lt;br /&gt;
Browser: Plugin (?) Disabled, Safari Desktop&lt;br /&gt;
&lt;br /&gt;
===Corporate Networks===&lt;br /&gt;
[[File:umwelt corporate general.png]]&lt;br /&gt;
[[File:umwelt corporate amazon chrome.png]]&lt;br /&gt;
[[File:umwelt corporate amazon firefox.png]]&lt;br /&gt;
[[File:umwelt corporate amazon other.png]]&lt;br /&gt;
[[File:umwelt corporate google chrome.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft chrome.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft firefox.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft other.png]]&lt;br /&gt;
[[File:umwelt corporate nytimes chrome.png]]&lt;br /&gt;
[[File:umwelt corporate nytimes other.png]]&lt;br /&gt;
&lt;br /&gt;
These error messages appear if the user is on a network owned by one of the corporations noted. The error message includes a warning against speaking on the company's behalf.&lt;br /&gt;
&lt;br /&gt;
ISP: Corporate networks of Amazon, Google, Microsoft, NY Times&lt;br /&gt;
&lt;br /&gt;
===Military===&lt;br /&gt;
[[File:umwelt military.png]]&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] assumes that anyone using a military network has an important job like watching for incoming missiles. He includes a thank-you to the user for their military service.&lt;br /&gt;
&lt;br /&gt;
ISP: Military networks&lt;br /&gt;
&lt;br /&gt;
===T-Mobile===&lt;br /&gt;
[[File:umwelt tmobile.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to T-Mobile's distinguishing feature (at the time it was written) of weaker coverage, in relation to other major providers.&lt;br /&gt;
&lt;br /&gt;
ISP: T-Mobile&lt;br /&gt;
&lt;br /&gt;
===Verizon and AT&amp;amp;T===&lt;br /&gt;
[[File:umwelt verizon.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt att.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to Verizon and AT&amp;amp;T's scandals/controversy regarding implementation of bandwidth caps.&lt;br /&gt;
&lt;br /&gt;
ISP: Verizon and AT&amp;amp;T&lt;br /&gt;
&lt;br /&gt;
===France===&lt;br /&gt;
[[File:umwelt france.jpg]]&lt;br /&gt;
&lt;br /&gt;
A common joke about France is that the nation does not win wars. This originated from France's annexation by Germany during World War II, and America's late entry into the war, which is sometimes portrayed humorously as a case of America 'saving' Europe, in this joke particularly France (the role of the French resistance is usually not mentioned), leading to a common American joke at the expense of France's military prowess [http://www.albinoblacksheep.com/text/victories.html][http://politicalhumor.about.com/library/images/blpic-frenchmilitaryvictories.htm][http://politicalhumor.about.com/library/jokes/bljokefrenchmilitaryhistory.htm]. When France did not form part of the coalition that invaded Iraq in 2003, aligning with the many countries that condemned U.S. action, the joke was revived. &lt;br /&gt;
&lt;br /&gt;
A Google search of &amp;quot;French Military Victories&amp;quot; + 'I'm feeling lucky' used to direct to &amp;quot;did you mean: french military defeats&amp;quot; (due to a {{w|Google bomb}}). Cueball is trying to show this to his friend, who is French. However, his joke backfires, as his friends immediately points out that the stereotype of France not having military victories is undercut by the fact that one of the most innovative military commanders in history, Napoleon, was French, and in fact conquered much of Europe.&lt;br /&gt;
&lt;br /&gt;
The last line of the comic further implies that Cueball is not as smart as he thinks he is in regards to anything French, as he mispronounces the French loan word &amp;quot;touche&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Locations: France &amp;amp; Quebec&lt;br /&gt;
&lt;br /&gt;
===Germany===&lt;br /&gt;
[[File:umwelt germany.png]]&lt;br /&gt;
&lt;br /&gt;
This comic references the {{w|Berlin airlift#The start of the Berlin Airlift|Berlin Airlift}}, a relief measure for citizens in West Berlin (surrounded by East Germany) instituted by the Western Allies after World War II. In reality, the Western Allies flew a grand total of 500,000 tons of food over the Soviet blockade in planes. Randall puts a twist on this event by making it more fun: dropping supplies from a grand chairlift. The play on words is that &amp;quot;chairlift&amp;quot; rhymes with &amp;quot;airlift&amp;quot; and thus makes an easy substitution. The chair force is also a name that other service branches use to make fun of the air force.&lt;br /&gt;
&lt;br /&gt;
Location: Germany&lt;br /&gt;
&lt;br /&gt;
===Israel===&lt;br /&gt;
[[File:umwelt israel.png]]&lt;br /&gt;
&lt;br /&gt;
Transcript:&lt;br /&gt;
&lt;br /&gt;
בחורה: אמא, פגשתי בחור נהדר! אבל הוא לא יהודי.‏&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
רגע, מה את אומרת, &amp;quot;גם אנחנו לא&amp;quot;?‏&lt;br /&gt;
&lt;br /&gt;
אני לגמרי מבולבלת.‏&lt;br /&gt;
&lt;br /&gt;
(Translation from Hebrew)&lt;br /&gt;
&lt;br /&gt;
Person: Mom, I met a great guy! But he's not Jewish. ...Wait, what do you mean &amp;quot;neither are we&amp;quot;? I'm completely confused.&lt;br /&gt;
&lt;br /&gt;
A reference to the multiple use of the word Jewish to denote both a religious group and a nationality/ethnicity.&lt;br /&gt;
&lt;br /&gt;
Location: Israel&lt;br /&gt;
&lt;br /&gt;
===Carnot Cycle===&lt;br /&gt;
[[File:umwelt japan.png]]&lt;br /&gt;
&lt;br /&gt;
A pun on &amp;quot;cycle&amp;quot;; a &amp;quot;{{w|Carnot cycle}}&amp;quot; is a thermodynamic cycle (e.g. refrigeration). Its efficiency depends on the temperature of the hot and cold 'reservoirs' in which it is operating.  The icon on the side of the motorcycle resembles a [http://en.wikipedia.org/wiki/File:Carnot_cycle_p-V_diagram.svg graph of the Carnot cycle.]&lt;br /&gt;
&lt;br /&gt;
Location: Japan&lt;br /&gt;
&lt;br /&gt;
===UK===&lt;br /&gt;
[[File:umwelt uk.jpg]]&lt;br /&gt;
&lt;br /&gt;
He worded this as though to imply that the UK is a state of the U.S., and an unimportant one at that, which pokes fun at the UK, creating a paradox (sort of).&lt;br /&gt;
&lt;br /&gt;
Location: UK&lt;br /&gt;
&lt;br /&gt;
===Blizzard===&lt;br /&gt;
[[File:umwelt disasters blizzard.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or blizzards are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in, the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: Alabama, Boston, Chicago, Dallas, Georgia, Halifax, Illinois, Michigan, Minnesota, Missouri, the Northeast, Ohio, Oklahoma, Ottawa, Pennsylvania, Philadelphia, Texas, Toronto, Tennessee, New York, Wisconsin&lt;br /&gt;
&lt;br /&gt;
===Tornado===&lt;br /&gt;
[[File:umwelt disasters tornado.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or tornadoes are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: Alabama, Dallas, Illinois, Georgia, The Midwest, Missouri, Ohio, Oklahoma, Ottawa, Tennessee, Texas (and Virginia, but it used Ohio in the third panel)&lt;br /&gt;
&lt;br /&gt;
Tornadoes are a [[:Category:Tornadoes|recurring subject]] on xkcd. The picture used in [[1754: Tornado Safety Tips]] reminds a lot of the one from this version of Umvelt. [[Category:Tornadoes]]&lt;br /&gt;
&lt;br /&gt;
===Hurricane===&lt;br /&gt;
[[File:umwelt disasters hurricane.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or hurricanes are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: D.C, Florida, Georgia, Houston, Miami, New Jersey, North Carolina, South Carolina, Virginia&lt;br /&gt;
&lt;br /&gt;
===Lake Diver Killer===&lt;br /&gt;
[[File:umwelt lake diver.png]]&lt;br /&gt;
&lt;br /&gt;
This comic shows a news reporter standing in front of a lake. She is reporting on a serial killer who targets divers. As more divers are sent in to investigate and/or search for bodies, more divers go missing and are presumably murdered. &lt;br /&gt;
&lt;br /&gt;
Location: Bay Areas, Metro Detroit, Vermont showed an image specifically referencing Lake Champlain&lt;br /&gt;
&lt;br /&gt;
===Lincoln Memorial===&lt;br /&gt;
[[File:umwelt lincoln memorial.png]]&lt;br /&gt;
&lt;br /&gt;
Locations: Illinois &amp;amp; Washington D.C.&lt;br /&gt;
&lt;br /&gt;
===Helicopter Hunting===&lt;br /&gt;
[[File:umwelt helicoptor.png]]&lt;br /&gt;
&lt;br /&gt;
In Alaska, governments and individuals have {{w|Wolf hunting#North America 2|shot wolves en masse from helicopters}} in an attempt to artificially inflate populations of game, such as moose and caribou, to make hunting them easier. This is opposed by many, as the game populations are not endangered (thus, this threatens ecological balance); wolves are a small threat to livestock in North America; most of the wolf body —including meat and bones— goes wasted as they are sought mainly for their pelts.&lt;br /&gt;
&lt;br /&gt;
Location: Alaska&lt;br /&gt;
&lt;br /&gt;
===Newspaper===&lt;br /&gt;
[[File:umwelt life scientists.png]][[File:umwelt life rit.png]][[File:umwelt life umass.png]]&lt;br /&gt;
&lt;br /&gt;
Creating new life has long been a well understood process, in a lab or otherwise.&lt;br /&gt;
&lt;br /&gt;
Location: Various&lt;br /&gt;
&lt;br /&gt;
Specific versions appeared for RIT and UMass Amherst&lt;br /&gt;
&lt;br /&gt;
===Robot Paul Revere===&lt;br /&gt;
[[File:umwelt paul revere.png]]&lt;br /&gt;
&lt;br /&gt;
Combination of the legend of {{w|Paul Revere#&amp;quot;Midnight Ride&amp;quot;|Paul Revere}} and computer binary.&lt;br /&gt;
&lt;br /&gt;
Location: Boston&lt;br /&gt;
&lt;br /&gt;
===Counting Cards===&lt;br /&gt;
&amp;lt;!-- card counting explanation needed. --&amp;gt;&lt;br /&gt;
All four colleges in this series are in Massachusetts and, being similar, in pairs, rival each other to some extent (Harvard-MIT, and Smith-Wellesley). The comic contains a reference to the {{w|MIT Blackjack Team}}, which entered popular culture via the {{w|21 (2008 film)|film 21}}, and a possible reference to Orwell's book '1984' and/or {{w|Chain of Command (Star Trek: The Next Generation)|popular homage to it via Star Trek}}: &amp;quot;There are four lights.&amp;quot;[http://www.youtube.com/watch?v=ChYIm6MW39k]&lt;br /&gt;
&lt;br /&gt;
Bonus: The thought-gears in panel 3 are spinning against each other.&lt;br /&gt;
&lt;br /&gt;
Location: Harvard&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards harvard.png]]&lt;br /&gt;
&lt;br /&gt;
Location: MIT&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards mit.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Course 15s&amp;quot; at MIT are the business major students, often mocked for taking a less-rigorous program.&lt;br /&gt;
&lt;br /&gt;
Location: Smith&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards smith.png]]&lt;br /&gt;
&lt;br /&gt;
Location: Wellesley&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards wellesley.png]]&lt;br /&gt;
&lt;br /&gt;
Both Wellesley and Smith are all-women colleges in Massachusetts.&lt;br /&gt;
&lt;br /&gt;
===Giant Box Trap===&lt;br /&gt;
[[File:umwelt box trap.png]]&lt;br /&gt;
&lt;br /&gt;
Randall got his undergrad in Physics at the {{w|Christopher Newport University}}, and was scheduled to return shortly to give a talk.&lt;br /&gt;
&lt;br /&gt;
Location: Christopher Newport University&lt;br /&gt;
&lt;br /&gt;
===Chemo Support===&lt;br /&gt;
[[File:umwelt chemo.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] has shaved his head in support of people going through {{w|chemotherapy}} but, as he is always depicted as a stick figure with no hair, no one can tell.&lt;br /&gt;
&lt;br /&gt;
Randall's now-wife was diagnosed with breast cancer, and apparently DFCI is where they've been spending much of their time.&lt;br /&gt;
&lt;br /&gt;
Location: Dana-Farber Cancer Institute&lt;br /&gt;
&lt;br /&gt;
===Reviews===&lt;br /&gt;
[[File:reviews.png]]&lt;br /&gt;
&lt;br /&gt;
The previous strip appears twice when using [[wikipedia:Tor (anonymity network)|Tor]].&lt;br /&gt;
&lt;br /&gt;
Browser: Any using Tor, xkcd API (JSON, RSS, Atom), w3m, and reports of seeing it on a Kindle Fire HD; also happens if visiting with a browser that does not support JavaScript (such as Firefox with NoScript)&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Note to courageous readers- The transcript has been reordered in the order in which the comics appear in the picture and appropriate names have been given.]&lt;br /&gt;
&lt;br /&gt;
:'''The Void'''&lt;br /&gt;
:[An epic void with a bright light shining right on you.]&lt;br /&gt;
&lt;br /&gt;
:'''Aurora'''&lt;br /&gt;
:[Cueball heading out past Megan comfortably sitting in front of a desk.]&lt;br /&gt;
:Cueball: Apparently there's a solar flare that's causing some Great Aurorae. CBC says they may even be visible here! Wanna drive out to see?&lt;br /&gt;
:Megan: Hockey's on.&lt;br /&gt;
:Cueball: Ok. Later.&lt;br /&gt;
&lt;br /&gt;
:[An expansive, marvelous image of emerald green northern lights, floating down through the sky.]&lt;br /&gt;
&lt;br /&gt;
:Megan: See anything?&lt;br /&gt;
:Cueball: No, just clouds.&lt;br /&gt;
:Megan: Not surprised.&lt;br /&gt;
&lt;br /&gt;
:'''Aurora-US'''&lt;br /&gt;
:[Cueball heading out past Megan comfortably sitting in front of a desk.]&lt;br /&gt;
:Cueball: Apparently there's a solar storm causing northern lights over Canada. CNN say they might even be visible {Options: &amp;quot;As Far South As Us&amp;quot;, &amp;quot;Here in Boston&amp;quot;, &amp;quot;Maine&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oregon&amp;quot;, &amp;quot;New York&amp;quot;}! Wanna drive out to see?&lt;br /&gt;
:Megan: It's cold out.&lt;br /&gt;
:Cueball: Ok. Later.&lt;br /&gt;
&lt;br /&gt;
:[An expansive, marvelous image of emerald green northern lights, floating down through the sky.]&lt;br /&gt;
&lt;br /&gt;
:Megan: See anything?&lt;br /&gt;
:Cueball: No, just clouds.&lt;br /&gt;
:Megan: Not surprised.&lt;br /&gt;
&lt;br /&gt;
:'''Snake'''&lt;br /&gt;
:[Two people standing next to each other. Megan is holding the head end of a snake. Depending on the width of your browser, the snake is: three frames, the third of which  has a little bit of a bump; the first frame has a human-size bump, the second has a third person looking at the snake, and the third has the snake going though two Portals; a squirrel and the human-size bump in the first frame, a ring next to the third person in the second frame, and Beret Guy riding the snake in front of the portal; or The squirrel, a fourth person within the snake being coiled, and the human bump in the first frame, the ring, a fifth person in love, and the third person in the second frame, Beret Guy and the portal in the third frame, and the same two people in the fourth frame.]&lt;br /&gt;
&lt;br /&gt;
:Megan: I found a snake, but then I forgot to stop.&lt;br /&gt;
&lt;br /&gt;
:'''Black hat'''&lt;br /&gt;
:[Two people sitting at a desk. One is Black Hat. The other is an analyst. Black Hat has a number of terminals attached to his head.]&lt;br /&gt;
:Analyst: You come across a tortoise in the desert. You flip it over. It struggles to right itself. You watch. You're not helping. Why is that?&lt;br /&gt;
&lt;br /&gt;
:Black Hat: It '''knows''' what it did.&lt;br /&gt;
&lt;br /&gt;
:[View of the entire scene, with said turtle off in the distance on its back and trying to right itself.]&lt;br /&gt;
&lt;br /&gt;
:'''Too quiet'''&lt;br /&gt;
:[A group of four scale down a wall into a field in the middle of the night. They walk off single-file.]&lt;br /&gt;
:Person 1: It's quiet.&lt;br /&gt;
&lt;br /&gt;
:Person 3: Yeah - *Too* quiet.&lt;br /&gt;
&lt;br /&gt;
:[A Velociraptor is off in the distance, following the group.]&lt;br /&gt;
:Person 4: Yeah - too *too* quiet.&lt;br /&gt;
&lt;br /&gt;
:Person 2: Yeah - 2quiet2furious.&lt;br /&gt;
:Person 1: Fuck off, Steve.&lt;br /&gt;
&lt;br /&gt;
:'''Pond'''&lt;br /&gt;
:[A landscape showing a pond, some reeds, and a set of mountains off in the distance.]&lt;br /&gt;
&lt;br /&gt;
:'''Galaxies'''&lt;br /&gt;
:[A trio of galaxies.]&lt;br /&gt;
:Galaxy 1: He's not looking!&lt;br /&gt;
:Galaxy 3: Let's get him!&lt;br /&gt;
:[Lines draw in illustrating the eye-line of one of a pair of people.]&lt;br /&gt;
:Cueball: So he said he didn't get the text, but c'mon, he *never* misses texts. Right? ..hello?&lt;br /&gt;
:Megan: I'm just staring at your head freaked out by the fact that there are millions of galaxies *directly behind it*.&lt;br /&gt;
&lt;br /&gt;
:'''xkcd Gold'''&lt;br /&gt;
:[Cueball holding bat.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: Sorry, but this comic&lt;br /&gt;
&lt;br /&gt;
:[Cueball starts to wind up.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: requires&lt;br /&gt;
&lt;br /&gt;
:[Cueball prepares to strike with bat.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: XKCD&lt;br /&gt;
&lt;br /&gt;
:[Cueball swings at a beehive.]&lt;br /&gt;
:GOLD&lt;br /&gt;
&lt;br /&gt;
:[Penis Bees fly out of the beehive.]&lt;br /&gt;
&lt;br /&gt;
:'''Yo mamma'''&lt;br /&gt;
:[Cueball yells at a friend.]&lt;br /&gt;
:Cueball: Oh yeah? Well you mama's so ''cynical'', her only dog ballast is a ''leash''!&lt;br /&gt;
:(This comic takes place in a dystopian future where the government is afraid dogs can hover, so it requires them to wear weights at all times, and some people privately doubt the government, but not enough to stop buying dog weights.)&lt;br /&gt;
&lt;br /&gt;
:'''Reddit'''&lt;br /&gt;
:Five seconds ago:&lt;br /&gt;
:[You sitting in front of a desk, reading a reddit thread.]&lt;br /&gt;
:You: Oh, hey, reddit has a link to some XKCD april fools comic.&lt;br /&gt;
&lt;br /&gt;
:Now: [An image of the xkcd comic page.]&lt;br /&gt;
:Five seconds from now:&lt;br /&gt;
&lt;br /&gt;
:You: ..hey&lt;br /&gt;
&lt;br /&gt;
:30 seconds from now:&lt;br /&gt;
:[DANCE PARTY!]&lt;br /&gt;
&lt;br /&gt;
:'''Buns and Hot dogs'''&lt;br /&gt;
:Cueball: What I wanna know is why do hot dogs come in packages of six while buns come in these huge sacks of ash and blood from which &amp;quot;Ave Maria&amp;quot; is faintly audible?&lt;br /&gt;
:[Chanting sacks of gore in the background.]&lt;br /&gt;
&lt;br /&gt;
:'''Twitter'''&lt;br /&gt;
:[A Twitter account page with the following: Many tweets, fewer following, even fewer followers, A bunch of assholes in the suggested follow box, trending topics partitioned into: Word Games, Misogyny, and Bieber, stuff your eyes automatically ignore, A really pleasant blue. and the timeline: Something about a podcast, Someone confused because the description doesn't match the link, The link you clicked on to get to this comic, Rob Delaney, Passive Aggression, and horse ebooks.]&lt;br /&gt;
&lt;br /&gt;
:'''Wikipedia'''&lt;br /&gt;
:[There's no comic here because instead of drawing one, I spent the last hour reading every news story cited in the Wikipedia article on The Mile High Club.]&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome'''&lt;br /&gt;
:[A Chrome plugin error page.]&lt;br /&gt;
:Chrome: This plugin requires Sergey Brin's permission to run. Please wait while he is woken.&lt;br /&gt;
&lt;br /&gt;
:'''Chrome/Firefox'''&lt;br /&gt;
:[Two people; Cueball is sitting at a desk in front of a laptop.]&lt;br /&gt;
:Cueball: Man, chrome's hardware acceleration really sucks.&lt;br /&gt;
:Ponytail: Oh - Theres' a great add-on that fixes it.&lt;br /&gt;
:Cueball: Oh? What's it called?&lt;br /&gt;
:Ponytail: &amp;quot;Firefox&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome-2'''&lt;br /&gt;
:[A Chrome plugin error page with the characteristic jigsaw piece.]&lt;br /&gt;
:Chrome: Chrome is looking for this piece. Have you seen it? Chrome thinks it links up with a corner.&lt;br /&gt;
&lt;br /&gt;
:'''Mozilla Firefox Private Browsing'''&lt;br /&gt;
:[Firefox error page.]&lt;br /&gt;
:Firefox: Well, this is embarrassing. You know how I'm not supposed to peek at your browsing in private mode? Firefox.. is sorry. Firefox will not blame you if you&lt;br /&gt;
:[Button with text.]&lt;br /&gt;
:Click here to report this incident.&lt;br /&gt;
&lt;br /&gt;
:'''Internet Explorer'''&lt;br /&gt;
:[IE error page.]&lt;br /&gt;
:IE: Error: Internet Explorer has given up.&lt;br /&gt;
&lt;br /&gt;
:'''Maxthon'''&lt;br /&gt;
:Cueball: Maxthon? Hey, 2005 called. Didn't say anything. All I could hear was sobbing. This is getting harder. Anyway, yeah, Maxthon's still cool! Didn't know it was still around!&lt;br /&gt;
&lt;br /&gt;
:'''Netscape Navigator'''&lt;br /&gt;
:[Two different versions exist: one with Cueball talking and one with Megan with tentacle arms talking.]&lt;br /&gt;
:Person: Netscape Navigator? Hey, the nineties called - drunk as usual. I hung up without saying anything. This is getting harder. Anyway - it's cool that you'e got netscape running.&lt;br /&gt;
&lt;br /&gt;
:'''Rockmelt'''&lt;br /&gt;
:[Cueball running to laptop.]&lt;br /&gt;
:I ran to Rockmelt to hide my face&lt;br /&gt;
&lt;br /&gt;
:[Cueball sitting at laptop.]&lt;br /&gt;
:But Rockmelt cried out -&lt;br /&gt;
&lt;br /&gt;
:[Laptop shouting.]&lt;br /&gt;
:NO HIDING PLACE&lt;br /&gt;
&lt;br /&gt;
:[zoom out.]&lt;br /&gt;
:NO HIDING PLACE DOWN HERE&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome-3'''&lt;br /&gt;
:[A chrome plugin error page.]&lt;br /&gt;
:Chrome: There does not exist --nor could there '''ever''' exist-- a plugin capable of displaying this content.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/Amazon/The Times/Google - Chrome'''&lt;br /&gt;
:[Chrome error page.]&lt;br /&gt;
:Chrome: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/Amazon/The Times/Google is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/Amazon - Firefox'''&lt;br /&gt;
:[Firefox error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/Amazon is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/The Times'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/The Times is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Corporate - Generic'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, we work as a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Military'''&lt;br /&gt;
:[Person looking at two browser windows.]&lt;br /&gt;
:Cueball: I know y'all know what you're doing. But if you're on a military machine and you're supposed to be watching for missiles or something, I hope you're keeping an eye on that in the background while you're reading comics. Also: Thanks.&lt;br /&gt;
&lt;br /&gt;
:'''T-Mobile'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Data Error: T-Mobile was unable to establish a connection&lt;br /&gt;
&lt;br /&gt;
:'''Verizon'''&lt;br /&gt;
:[Error page]&lt;br /&gt;
:Error: You have exceeded your Verizon monthly bandwidth cap. Mobile web browsing has been disabled.&lt;br /&gt;
&lt;br /&gt;
:'''France'''&lt;br /&gt;
:[Two people; one of which is browsing using a laptop.]&lt;br /&gt;
:Cueball: Hey, you're French, right? Ever see what happens when you type &amp;quot;French Military Victories&amp;quot; into Google?&lt;br /&gt;
:French person: Does it take you to an article on Napoleon?&lt;br /&gt;
&lt;br /&gt;
:French person: ..no? Strange, given how he kicked everyone's asses up and down Europe for over a decade.&lt;br /&gt;
&lt;br /&gt;
:[Beat frame.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: Touche.&lt;br /&gt;
:French person: You know, that'd sound smarter if you didn't pronounce it like it rhymes with &amp;quot;douche&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:'''Germany'''&lt;br /&gt;
:[Cueball dropping food from an unorthodox high perch.]&lt;br /&gt;
:June 1948: In response to the Soviet blockade of East Germany, the western allies construct the Berlin Chairlift.&lt;br /&gt;
:Cueball on chairlift: Food!&lt;br /&gt;
&lt;br /&gt;
:'''Israel'''&lt;br /&gt;
:[Person on phone.]&lt;br /&gt;
:Person (Translation from Hebrew): Mom, I met a great guy! But he's not Jewish. ...Wait, what do you mean &amp;quot;neither are we&amp;quot;? I'm completely confused.&lt;br /&gt;
&lt;br /&gt;
:'''Carnot Cycle'''&lt;br /&gt;
:[Ponytail on a motorcycle with a heat-entropy graph on the side.]&lt;br /&gt;
:Ponytail: Check out my new Carnot Cycle!&lt;br /&gt;
:Cueball: Neat - how fast does it go?&lt;br /&gt;
:Ponytail: Depends how cold it is outside.&lt;br /&gt;
&lt;br /&gt;
:'''Great Britain'''&lt;br /&gt;
:[Illustration of the Atlantic ocean.]&lt;br /&gt;
:American person: Sorry I don't have a comic poking fun at the UK here. I only had time to get to the most ''important'' US states.&lt;br /&gt;
:British person: Hey - At least we have free health care and real ale.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Blizzard'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;Alabama&amp;quot;, &amp;quot;Boston&amp;quot;, &amp;quot;Chicago&amp;quot;, &amp;quot;Dallas&amp;quot;, &amp;quot;Georgia&amp;quot;, &amp;quot;Halifax&amp;quot;, &amp;quot;Illinois&amp;quot;, &amp;quot;Michigan&amp;quot;, &amp;quot;Minnesota&amp;quot;, &amp;quot;Missouri&amp;quot;, &amp;quot;the Northeast&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oklahoma&amp;quot;, &amp;quot;Ottawa&amp;quot;, 'Pennsylvania&amp;quot;, &amp;quot;Philadelphia&amp;quot;, &amp;quot;Texas&amp;quot;, &amp;quot;Toronto&amp;quot;, &amp;quot;Tennessee&amp;quot;, &amp;quot;New York&amp;quot;, &amp;quot;Wisconsin&amp;quot;}! That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
:[Both people are trudging through a massive blizzard.]&lt;br /&gt;
:Danish: In pictures, snow always looked so nice and sof - ''AAAA! MY NECK! How do people live here?!''&lt;br /&gt;
:Cueball: Come on - it's only three more miles.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Tornado'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;Alabama&amp;quot;, &amp;quot;Dallas&amp;quot;, &amp;quot;Illinois&amp;quot;, &amp;quot;The Midwest&amp;quot;, &amp;quot;Missouri&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oklahoma&amp;quot;, &amp;quot;Ottawa&amp;quot;, &amp;quot;Tennessee&amp;quot;, &amp;quot;Texas&amp;quot;}!&lt;br /&gt;
:Cueball: That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
:[Both people are in a shelter in a prairie with a rapidly-approaching tornado.]&lt;br /&gt;
:Danish: AAAA CLOSE THE SHELTER DOOR!&lt;br /&gt;
:Cueball: Say the magic words...&lt;br /&gt;
:Danish: THIS PLACE IS THE WORST!&lt;br /&gt;
:Cueball: Thank you.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Hurricane'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;D.C&amp;quot;, &amp;quot;Florida&amp;quot;, &amp;quot;Houston&amp;quot;, &amp;quot;Miami&amp;quot;, &amp;quot;New Jersey&amp;quot;, &amp;quot;North Carolina&amp;quot;, &amp;quot;South Carolina&amp;quot;, &amp;quot;Virgina&amp;quot;}! That was huge!&lt;br /&gt;
:Cueball: That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
&lt;br /&gt;
:[Both are in the middle of a hurricane. Danish is grabbing onto a signpost to avoid being swept away.]&lt;br /&gt;
:Danish: AAAAA WHAT THE SHIIIIT!&lt;br /&gt;
:Cueball: Calm down - this is barely a category 2.&lt;br /&gt;
&lt;br /&gt;
:'''Lake Diver Killer'''&lt;br /&gt;
:[TV Field Reporter in front of a cordoned-off lake.]&lt;br /&gt;
:Reporter: Police divers searching the bay say they have recovered the body of another victim of the &amp;quot;Lake Diver Killer.&amp;quot;&lt;br /&gt;
:Reporter: During the search, three more divers were reported missing.&lt;br /&gt;
&lt;br /&gt;
:'''Washington'''&lt;br /&gt;
:[The statue of Abraham Lincoln in the Lincoln Memorial.]&lt;br /&gt;
:In this Marble Prison As in the nightmares of the nation they tried to devour&lt;br /&gt;
:The nanobots that constituted Abraham Lincoln&lt;br /&gt;
:Are entombed forever.&lt;br /&gt;
&lt;br /&gt;
:'''Alaska'''&lt;br /&gt;
:[A person with a gun chasing a helicopter on the back of a wolf in a snowy Alaskan field.]&lt;br /&gt;
:Some people hunt wolves from helicopters. I hunt helicopters from a wolf.&lt;br /&gt;
&lt;br /&gt;
:'''Life in lab'''&lt;br /&gt;
:[Newspaper headline.]&lt;br /&gt;
:Scientists/UMass Amherst students/RIT students create life in lab&lt;br /&gt;
:[Caption under picture of scientists.]&lt;br /&gt;
:&amp;quot;The trick was fuckin'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:'''American Revolution'''&lt;br /&gt;
:Robot Paul Revere: Remember: Zero if by land, One if by sea.&lt;br /&gt;
&lt;br /&gt;
:'''MIT'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of MIT students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: I see their admission standards have been slipping.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''MIT Course 15c'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of MIT students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: I *knew* we shouldn't have picked course 15s.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''Smith/Wellesley'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of Smith/Wellesley students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: We should've gone with Wellesley/Smith.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''CNU'''&lt;br /&gt;
:[Person unsuspectingly strolls under a giant box trap controlled by a Trible.]&lt;br /&gt;
:I worry that CNU only invited me back as a ruse because they realized I never turned in my final paper and want my diploma back. But if it turns out it's for real, I'll see you Wednesday at the Ferguson!&lt;br /&gt;
&lt;br /&gt;
:'''Dana Farber'''&lt;br /&gt;
:[Cueball, pointing towards head.]&lt;br /&gt;
:Cueball: Check it out - In support of people going through chemo, I shaved my head.&lt;br /&gt;
:Lots of love to everyone reading this at Dana Farber. Cancer sucks. If you are new to DFCI, there's a great little garden on the third floor of the yawkey if you need somewhere quiet to just sit for a little bit and breathe.&lt;br /&gt;
&lt;br /&gt;
:'''Reviews'''&lt;br /&gt;
:Shopping before online reviews:&lt;br /&gt;
:[Cueball and Megan stand in a store. Cueball points at a lamp on the table in front of him. There is another lamp on the table behind them.]&lt;br /&gt;
:Cueball: This lamp is pretty.&lt;br /&gt;
:Megan: And affordable.&lt;br /&gt;
:Cueball: Let's get it.&lt;br /&gt;
:Megan Ok! &lt;br /&gt;
&lt;br /&gt;
:Shopping now:&lt;br /&gt;
:[Cueball points at a lamp on the table in front of him. Megan looks at her phone.]&lt;br /&gt;
:Cueball: This lamp is pretty.&lt;br /&gt;
:Megan: It's got 1 1/2 stars on Amazon. Reviews all say to avoid that brand.&lt;br /&gt;
&lt;br /&gt;
:[Cueball and Megan are now both looking at their phones.]&lt;br /&gt;
:Cueball: This one has good reviews.&lt;br /&gt;
:Megan: Wait, one guy says when he plugged it in, he got a metallic taste in his mouth and his cats went deaf.&lt;br /&gt;
:Cueball: Eek. What about- ...no, review points out it resembles a uterus.&lt;br /&gt;
&lt;br /&gt;
:[Cueball is still looking at his phone, Megan has hers at her side.]&lt;br /&gt;
:Cueball: Ok, I found a Swiss lampmaker with perfect reviews. Her lamps start at 1,300 Francs and she's only reachable by ski lift.&lt;br /&gt;
:Megan: You know, our room looks fine in the dark.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Reddit user [http://www.reddit.com/user/SomePostMan SomePostMan] created a [http://www.reddit.com/r/xkcd/comments/t6wmh/all_umwelt_1037_comics_in_two_imgur_albums/ post] that collected all of the Umwelt comics and added explanations. Much of his information is now included in this wiki.&lt;br /&gt;
&lt;br /&gt;
*The transcript section for this comic also included a note alluding to its extreme length:&lt;br /&gt;
: &amp;lt;nowiki&amp;gt;[[Two people...]]&amp;lt;/nowiki&amp;gt;  ((..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all this))  &lt;br /&gt;
: [[Two people standing next to each other.  One is holding the head end of a snake...&lt;br /&gt;
&lt;br /&gt;
*And the comic doesn't appear in iPad browsers. The top buttons and the bottom buttons are side by side, and you can only see the title in the top.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:April fools' comics]]&lt;br /&gt;
[[Category:Dynamic comics]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;br /&gt;
[[Category:Comics featuring Danish]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Philosophy]]&lt;br /&gt;
[[Category:Penis]]&lt;br /&gt;
[[Category:Video games]]&lt;br /&gt;
[[Category:Velociraptors]]&lt;br /&gt;
[[Category:Your Mom]]&lt;br /&gt;
[[Category:Puns]]&lt;br /&gt;
[[Category:Squirrels]]&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=921:_Delivery_Notification&amp;diff=156874</id>
		<title>921: Delivery Notification</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=921:_Delivery_Notification&amp;diff=156874"/>
				<updated>2018-05-09T23:59:34Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Transcript */ Changed &amp;quot;(r)&amp;quot; to registered trademark symbol (&amp;quot;®&amp;quot;).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 921&lt;br /&gt;
| date      = July 6, 2011&lt;br /&gt;
| title     = Delivery Notification&lt;br /&gt;
| image     = delivery_notification.png&lt;br /&gt;
| titletext = You can arrange a pickup of your sword in Rivendell between the hours of noon and 7:00 PM.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
In the US, when the package delivery company {{w|UPS}} knocks on your door or rings your doorbell and cannot reach you, they leave a delivery attempt notification stuck to your door. An example is shown in the first panel.&lt;br /&gt;
&lt;br /&gt;
This comic hints that the threshold for the UPS delivery person to leave such a notice is unreasonably low. The delivery personnel make only a token effort to deliver the package (which, incidentally, is their only actual job) before posting the yellow delivery notification and unconcernedly driving away to their next delivery.&lt;br /&gt;
&lt;br /&gt;
After missing the delivery, [[Cueball]] (who is directly referencing {{w|Lord of the Rings}}) asks the Elves to reforge the sword in order to go on a quest to retrieve his new laptop. In Lord of the Rings, {{w|Aragorn}} (accepting his role as the heir to the king of the West) had the sword of {{w|Elendil}} called {{w|Narsil}} reforged (which symbolizes the reuniting of the race of man under one leader). Cueball obviously views the UPS building as a dangerous and impenetrable fortress, and possession of such a sword is the only way to guarantee success in his quest.&lt;br /&gt;
&lt;br /&gt;
Ironically, when the elves come to deliver the new sword, the delivery elf is unable to raise anyone in the house, and simply leaves another delivery notification.&lt;br /&gt;
&lt;br /&gt;
In the title text, {{w|Rivendell}} is one of the home of the elves. The broken shards of Narsil lived in Rivendell with {{w|Elrond}} and his elves. The sorting depot of Rivendell has the same, limited opening hours as the UPS.  It is apparent that Cueball will not be getting his laptop in time for his flight.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[The first panel is a UPS InfoNotice®. Most of the text on it is just scribbles, though the company logo and header is clear.]&lt;br /&gt;
&lt;br /&gt;
:[A person opens their door to see the InfoNotice®. From off panel, a second person reacts.]&lt;br /&gt;
:Person: ''What!'' I've been here all day!&lt;br /&gt;
:Off-panel person 2: Huh?&lt;br /&gt;
:Person: They have my laptop.&lt;br /&gt;
&lt;br /&gt;
:[Now both people are visible. The first is making an expansive gesture of annoyance.]&lt;br /&gt;
:Person 2: So get it tomorrow.&lt;br /&gt;
:Person: I fly out in the morning and they don't open till noon!&lt;br /&gt;
:Person 2: Sucks.&lt;br /&gt;
&lt;br /&gt;
:[The first person is at a laptop. The second is once again off-panel.]&lt;br /&gt;
:Person: It's ''right there''. I can see the UPS building on the map.&lt;br /&gt;
:Off-panel person 2: Ok...&lt;br /&gt;
&lt;br /&gt;
:[Dramatic zoom to the person's upper torso and face, along with clenched fist.]&lt;br /&gt;
:Person: My laptop is there. It's ''mine''.&lt;br /&gt;
:Person: I'm going to get it.&lt;br /&gt;
&lt;br /&gt;
:[Even more dramatic zoom! The person's featureless face fills the panel.]&lt;br /&gt;
:Off-panel person 2: They won't let you.&lt;br /&gt;
:Person: Who are they to keep from me what is mine?&lt;br /&gt;
:Off-panel person 2: Dude, they—&lt;br /&gt;
&lt;br /&gt;
:[The person spins, raising a finger, most likely to indicate some sort of quest at hand.]&lt;br /&gt;
:Person: A quest is at hand!&lt;br /&gt;
:Off-panel person 2: Security's gonna throw you out.&lt;br /&gt;
:Person: I fear neither death nor pain. But I will not go unarmed.&lt;br /&gt;
&lt;br /&gt;
:(Three inset panels overlap, in a montage format. The person narrates.)&lt;br /&gt;
:[Elves in long robes stand around a table, on which lies a broken sword.]&lt;br /&gt;
:Narrating person: Light the beacons and send word to the Elves. They must reforge the sword of my fathers.&lt;br /&gt;
&lt;br /&gt;
:[An Elf beats the sword together on an anvil.]&lt;br /&gt;
&lt;br /&gt;
:[An Elf rides a horse, silhouetted by the full moon.]&lt;br /&gt;
:Narrating person: Ere dawn, I will go forth to the Sorting Depot.&lt;br /&gt;
&lt;br /&gt;
:(The montage ends and normal panels resume.)&lt;br /&gt;
:[The Elf knocks at the door, sword in scabbard held under arm.]&lt;br /&gt;
:''Knock knock knock knock''&lt;br /&gt;
&lt;br /&gt;
:[The person opens the door, to find a second InfoNotice® stuck on top of the first. The Elf is gone.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:LOTR]]&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1914:_Twitter_Verification&amp;diff=148898</id>
		<title>Talk:1914: Twitter Verification</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1914:_Twitter_Verification&amp;diff=148898"/>
				<updated>2017-12-07T19:59:56Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://twitter.com/jack/status/928658511311097856 Comic may relate to twitter's usage of the verification symbol. Randall might be mocking Twitter for not realizing how the verification symbol would be thought of as a symbol of importance. Character shown may be Jack Dorsey, Twitter CEO. --[[User:Videblu|Videblu]] ([[User talk:Videblu|talk]]) 05:54, 10 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Reminds me of when the checkmark emoji on Mastodon (https://joinmastodon.org) was similar to the Twitter &amp;quot;verified&amp;quot; mark and anyone who wanted was a verified user. Then, people moved on to pineapples for whatever reason. -- &amp;lt;sub&amp;gt;--[[User:Nialpxe|&amp;lt;span style=&amp;quot;color: #000; text-decoration: none;&amp;quot;&amp;gt;Nialpxe&amp;lt;/span&amp;gt;]], 2017. [[User_talk:Nialpxe|&amp;lt;span style=&amp;quot;color: #000; text-decoration: none;&amp;quot;&amp;gt;(Arguments welcome)&amp;lt;/span&amp;gt;]]&amp;lt;/sub&amp;gt;&lt;br /&gt;
&lt;br /&gt;
How can a bot write this text? Does it automatically scan the text in the comic, somehow find a news page about the topic and copy its text? If that's the case, that's some pretty advanced AI and it should be applied to more things than this wiki. [[User:Fabian42|Fabian42]] ([[User talk:Fabian42|talk]]) 08:42, 10 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Nope, the bot only creates a new page with an image and a title text when a new comic goes online. See [http://www.explainxkcd.com/wiki/index.php?title=1914:_Twitter_Verification&amp;amp;action=history edit history] and [http://www.explainxkcd.com/wiki/index.php/User:DgbrtBOT bot's profile] ;) The incomplete tag is kept even after people start editing the page, until it looks complete. [[Special:Contributions/141.101.96.218|141.101.96.218]] 11:28, 10 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
::As an aside, I tip my hat to Fvalves for [http://www.explainxkcd.com/wiki/index.php?title=1914:_Twitter_Verification&amp;amp;diff=prev&amp;amp;oldid=147658 this edit] to the incomplete template! [[Special:Contributions/162.158.92.82|162.158.92.82]] 12:24, 10 November 2017 (UTC)&lt;br /&gt;
:::For posterity (and so future visitors don't have to wade through the edit history), the page was created by a bot and then edited by a non-bot, a Cylon, and a Verified Twitter User. It was later &amp;quot;verified by a creationist twit.&amp;quot; [[Special:Contributions/172.68.54.34|172.68.54.34]] 18:08, 10 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
So how do I get verified on twitter? I'm real I tell you! I'm a real boy! I am Iam! [[Special:Contributions/162.158.69.71|162.158.69.71]] 14:58, 10 November 2017 (UTC) Sam&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Twitter should just change the standard for who gets the checkmark to be the same as the Wikipedia notability standard: getting &amp;quot;significant coverage in reliable sources that are independent of the subject&amp;quot;. That seems to create few quarrels. An even easier solution for them is to make the requirement be having a personal Wikipedia page – that way, now it's Wikipedia's problem. [[Special:Contributions/172.68.26.41|172.68.26.41]] 16:36, 10 November 2017 (UTC)&lt;br /&gt;
:I'll add that maybe the badge would look less like an &amp;quot;endorsement&amp;quot; if it were just, say, a rectangle with an &amp;quot;R&amp;quot; for &amp;quot;real account&amp;quot;, rather than something with such positive implications as a check mark (which you get on your good grades at school for example) [[Special:Contributions/172.68.26.41|172.68.26.41]] 16:40, 10 November 2017 (UTC)&lt;br /&gt;
::DOES CAPS ALSO FEEL NATURAL? [[User:Fabian42|Fabian42]] ([[User talk:Fabian42|talk]]) 16:50, 10 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I think I saw the end of this story on [https://www.fox.com/watch/4e9ac96523b454de771f95a4f775facb/ The Orville].  [[User:Seebert|Seebert]] ([[User talk:Seebert|talk]]) 16:56, 10 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
For some reason, I have always assumed this &amp;quot;verified account&amp;quot; thingy is available to anyone who applies for it and supplies an ID scan or something to prove their identity (not a twitter user, obviously). They just randomly give it to people as they see fit? WTF were they thinking? [[User:Jaalenja|Jaalenja]] ([[User talk:Jaalenja|talk]]) 17:12, 10 November 2017 (UTC)&lt;br /&gt;
:As someone who has literally never been on Twitter, this doesn't seem hard. Why doesn't Twitter just give verified status to people who can verify who they are? User sends Twitter proof of their identity, if Twitter finds the proof satisfactory they make that account verified.[[User:HisHighestMinion|HisHighestMinion]] ([[User talk:HisHighestMinion|talk]]) 17:53, 10 November 2017 (UTC)&lt;br /&gt;
::Because a lot of actual people do have the same names. There are numerous people with the name William Gibson on Twitter, but when you search William Gibson, the handle @GreatDismal comes up, with his name listed as William Gibson, &amp;amp; a check-mark to indicate that the account belongs to the (most) famous William Gibson, not some random guy with that name.&lt;br /&gt;
:::'Some random guy' named William Gibson is no more random than the (most) famous William Gibson. It's certainly no guarantee that it's the person you want to follow. [[Special:Contributions/141.101.105.18|141.101.105.18]] 12:15, 14 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Since there are so often multiple people with the same name, &amp;amp; even people who (gasp!) don't use their name as their Twitter handle, I think the verification should be relative to a particular association; People could even attain multiple verifications, such as &amp;quot;Verified author of Neuromancer&amp;quot;, &amp;quot;Verified Ford certified mechanic&amp;quot;, &amp;quot;Verified resident of Zyzzyx&amp;quot;, &amp;quot;Verified president of the United States&amp;quot;, etc. (Not that someone as important as the US president would have time to waste writing Tweets.) Just make a list of anything you can verify about them, &amp;amp; let people see that on their profile. Just because she wasn't in Terminator doesn't mean Sarah O'Connor is insignificant; often it can be difficult to tell which profile belongs to someone you know, versus a stranger with that name. They should just verify stated facts about the person, avoiding any judgement of the notability of those facts.&lt;br /&gt;
(By the way, &amp;quot;Marina Appaloosa&amp;quot; may potentially be the coolest fictional name I've seen generated by these captchas so far.)&lt;br /&gt;
[[Special:Contributions/108.162.216.4|108.162.216.4]] 22:56, 10 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;quot;As the internet is populated by various large and strongly opinionated groups [citation not needed]&amp;quot; I strongly disagree with the &amp;quot;citation not needed&amp;quot; tag.  Please cite a source! [[Special:Contributions/162.158.63.202|162.158.63.202]] 14:30, 15 November 2017 (UTC)&lt;br /&gt;
:I'm honestly having a bit of difficulty figuring out whether that edit was made by someone who didn't understand the inherent sarcasm in {{Citation needed}}, or by someone who ''did'' understand and was trying to make a point.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 19:59, 7 December 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Twitter also provides additional behind-the-scenes functionality to users with blue ticks which isn't available to regular users. It's not just about marking their profiles with a signifier. It's about allowing them to use the service in a way which hides the contributions of anybody without a tick.&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1866:_Russell%27s_Teapot&amp;diff=148702</id>
		<title>Talk:1866: Russell's Teapot</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1866:_Russell%27s_Teapot&amp;diff=148702"/>
				<updated>2017-12-04T18:56:13Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: Checked the page history and, sure enough, the point of my previous comment is invalid.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and not delete this comment.--&amp;gt;&lt;br /&gt;
In this case, nesting the teapot in a catapult/cannon which is launched by another catapult/cannon might perhaps be sufficient to get past NASA regulations. (Catapults/cannons only launching the payload and not themselves...) &amp;lt;sub&amp;gt;--[[User:Nialpxe|&amp;lt;span style=&amp;quot;color: #000; text-decoration: none;&amp;quot;&amp;gt;Nialpxe&amp;lt;/span&amp;gt;]], 2017. [[User_talk:Nialpxe|&amp;lt;span style=&amp;quot;color: #000; text-decoration: none;&amp;quot;&amp;gt;(Arguments welcome)&amp;lt;/span&amp;gt;]]&amp;lt;/sub&amp;gt;&lt;br /&gt;
:Though there's still the matter of an equal and opposite force pushing the satellite away from its gravitational bonds of the catapult.  Even if the 2nd catapult is no longer associated with the Earth or Earth's gravity, the catapult will continue to be a launcher.  That's just changing what it is launching *from*.  [[Special:Contributions/172.68.58.125|172.68.58.125]] 18:31, 24 July 2017 (UTC)ColinHeico&lt;br /&gt;
:But make sure it is a mobile cannon, otherwise it would not qualify as a launch '''vehicle'''. [[Special:Contributions/162.158.89.19|162.158.89.19]] 11:32, 21 July 2017 (UTC)&lt;br /&gt;
::I immediately thought &amp;quot;railgun&amp;quot;. And the payload can still be a rocket; once it's not touching the ground it's accelerating, not launching. (Also Russell failed to account for female barbers. Honestly, people!) [[Special:Contributions/108.162.241.4|108.162.241.4]] 09:42, 22 July 2017 (UTC)&lt;br /&gt;
::: One such company did exist, Quicklaunch had the idea of launching via a space gun. https://en.m.wikipedia.org/wiki/Quicklaunch {{unsigned ip|172.68.141.142}}&lt;br /&gt;
&lt;br /&gt;
::: He didn't need to account for female barbers (or anybody who isn't a man) because the barber in the paradox shaves precisely those men who don't shave themselves. He ''only'' shaves men, and all men in the town are ''only'' shaved by him or themselves. Everyone else is a completely different story, so they can be shaved by whoever they want (except the barber, who only shaves men). [[Special:Contributions/108.162.241.88|108.162.241.88]] 00:14, 23 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Only if you assume that females who are barbers don't shave their legs, armpits, or their various lady parts. This only further confuses the paradox. {{unsigned|Mjm87}}&lt;br /&gt;
::::For much of Bertrand Russell's life, they didn't. http://mentalfloss.com/article/22511/when-did-women-start-shaving-their-pits [[Special:Contributions/108.162.241.4|108.162.241.4]] 09:42, 22 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Why are we even bringing up the argument of female barbers when the description of the paradox, at least as phrased within this article, specifically states that the barber is a man?  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:30, 4 December 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Never mind, I just checked the page history, and it appears there was no description of the barber paradox in this article at the time the majority of the preceding comments were written.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:56, 4 December 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You wouldn't even need a cannon/catapult.  If you put the satellite on a small rocket, and put that on a much larger rocket, you can have the big one launch itself, the smaller one, and the satellite.  The regulation only says the satellite must be in a non-self-launching launch vehicle.  It doesn't say it can't *also* be in a self-launching launch vehicle.  -- [[Special:Contributions/108.162.246.113|108.162.246.113]] 20:06, 24 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When I first saw this comic I immediately thought of the Utah Teapot, it's a model used in computer graphics because it's simple and has both convex and concave surfaces. Both teapots, I would assume, (I've only just heard of Russel's Teapot so I could be wrong) are well known to different parts of the nerd community? {{unsigned ip|162.158.255.22}}&lt;br /&gt;
&lt;br /&gt;
Hopefully it will support HTCPCP-TEA. [[Special:Contributions/108.162.241.34|108.162.241.34]] 17:48, 21 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
i think people just really like teapot examples {{unsigned ip|108.162.246.23}}&lt;br /&gt;
&lt;br /&gt;
:The major problem here is that CubeSats are currently only launched into Low Earth Orbit (LEO) and are expected to re-enter the atmosphere within days to weeks.  Russell's teapot is (allegedly) in orbit between Earth and Mars and Cueball's device is not likely to have enough delta-v to leave Earth orbit. [[User:SteveBaker|SteveBaker]] ([[User talk:SteveBaker|talk]]) 18:18, 21 July 2017 (UTC)&lt;br /&gt;
&amp;quot;A teapot orbits the Sun somewhere in space between the Earth and Mars&amp;quot; This implies that the teapot is physically located between Mars and Earth at all times. Which if true would be a highly irregular orbit requiring constant velocity changes, which is an impossible feat to achieve with current teapot technology. {{unsigned|Mjm87}}&lt;br /&gt;
:Nonsense. It would be a ''highly regular orbit'' and many asteroids are already there, despite the most of them are between Mars and Jupiter (Asteroid-Belt):--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:22, 21 July 2017 (UTC)&lt;br /&gt;
::Since we're nitpicking.  Having velocity changes does not preclude being in orbit: objects in orbit are always accelerating.  Having a constant velocity change does preclude being in orbit, but it also precludes remaining between Earth and Mars, since it would result in eventually leaving the solar system.--[[Special:Contributions/172.68.54.112|172.68.54.112]] 19:45, 24 July 2017 (UTC)&lt;br /&gt;
:::Still nonsense. The mean velocity of an (elliptic) orbit is constant, only the direction is changing. And there are many asteroids in stable orbits between Earth and Mars. Leaving the solar system would require many energy at those orbits, all human build probes (Pioneer, Voyager and New Horizons) had to use gravity assist at Jupiter to reach this target.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:12, 26 July 2017 (UTC)&lt;br /&gt;
::::It sounds to me like you're missing the interpretation Mjm87 is trying to share. Yes, the way Russell meant it was that Russell's Teapot is between Mars and Earth in the same way that Earth is between Mars and the Sun, that this teapot is in a larger orbit than Earth and smaller than Mars. Mjm87's interpretation adds the idea that not only is it in such an orbit, but also in a direct line in between, always. In other words, that someone looking at Mars through a powerful telescope would always be able to see Russell's Teapot &amp;quot;in the way&amp;quot;, like a little Mars eclipse. :) Staying in that spot would indeed take strange acceleration. I'm no astrophysicist or anything, but I imagine if I think of our galaxy as a clock face, with Earth always at the 12 o'clock position, that Mars would at some point be at 3 o'clock, at another time be at 9 o'clock, etc. (of course this is a 2D intepretation of a 3D situation, but I hope you get my point. Actually the third dimension would make this orbit even stranger) [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 05:16, 28 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can see both of your points.  As mjm87 says, &amp;quot;between the Earth and Mars&amp;quot;, taken literally, would mean &amp;quot;on a line between the two planets&amp;quot;, which would be a very unusual orbit.  And, I agree, it would be impossible without constant velocity changes, so wouldn't be an &amp;quot;orbit&amp;quot; in the usual sense.&lt;br /&gt;
On the other hand, I took Russell's words the way Dgbrt seems to have, as meaning &amp;quot;between the orbits of Earth and Mars&amp;quot;, as this is the way most astronomers would interpret it.  A don't know that there are &amp;quot;many&amp;quot; asteroids that remain between Earth and Mars, but there are quite a few crossing the space, and at least a few with average distances in that range. - N Kalanaga {{unsigned ip|162.158.74.159}}&lt;br /&gt;
:There is also quantifier scope ambiguity there. I believe that there is a large constellation of teapot statites, and at any given moment at least one of them is directly between Earth and Mars. --[[Special:Contributions/172.68.54.58|172.68.54.58]] 06:29, 22 July 2017 (UTC)&lt;br /&gt;
Since Russell was going for absurdity, I favour the more absurd interpretation namely Mjm87's. [[User:Capncanuck|Capncanuck]] ([[User talk:Capncanuck|talk]]) 08:21, 22 July 2017 (UTC)&lt;br /&gt;
:Taking &amp;quot;on a line between the two planets&amp;quot; literally would simply reduce to &amp;quot;inside the orbit of Mars&amp;quot;. The Earth moves faster than Mars and right now the Sun is exactly between them on that line. NASA, ESA, and ISRO can not communicate with their orbiters and rovers until the beginning of August (see {{w|Solar conjunction}}). So the meaning &amp;quot;between the orbits of Earth and Mars&amp;quot; is still much more plausible.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 16:11, 22 July 2017 (UTC)&lt;br /&gt;
:What if it's in the Earth-Mars L1 point? Then it's always on a line between the two planets. [[User:Promethean|Promethean]] ([[User talk:Promethean|talk]]) 06:02, 26 July 2017 (UTC)&lt;br /&gt;
::{{w|Lagrangian point}}s exist for Earth-Sun, Mars-Sun, or Moon-Earth (small object orbits a larger one). There is nothing similar for Earth-Mars. Earth moves faster around the sun and the closest approach happens every 26 months at a distance not less than 55 Mio. km. 13 months later the maximum distance is approx. 400 Mio. km and the sun is in the middle as it happens right now!--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 13:46, 26 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Don't worry we have been working on it. Launching the project in a few months.&lt;br /&gt;
https://www.instagram.com/p/BSmdiMSFBSb/?taken-by=hate_plow&lt;br /&gt;
https://www.instagram.com/p/BSwW4MIlE0b/?taken-by=hate_plow&lt;br /&gt;
[[User:Zackdougherty|Zackdougherty]] ([[User talk:Zackdougherty|talk]]) 03:10, 22 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Actually, it couldn't be on a direct line between Earth and Mars because then it would be tremendously easier to find (or disprove)!   If the teapot can be anywhere between the orbits, then that is a vastly larger space to look for a teapot and therefore more difficult to disprove.   Similarly, it is unlikely there are a whole constellation because then it would be more likely to find at least one. [[Special:Contributions/172.68.34.94|172.68.34.94]] 03:19, 25 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could some people (smarter than myself) make an attempt at labeling the items on the cube sat that Randall left at squiggles? Maybe starting from the top, clockwise? I'll start a table, but I'm sure someone will need to fix it. [[User:DanB|DanB]] ([[User talk:DanB|talk]]) 03:24, 25 July 2017 (UTC)&lt;br /&gt;
:Personally, I suspect such a diagram wouldn't have the top labelled as &amp;quot;Teapot&amp;quot;, but as &amp;quot;Payload&amp;quot;. :) To me it looks even longer, so perhaps &amp;quot;Top Secret Specialty Payload&amp;quot; or something? [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 05:05, 1 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
The title text refers to Russell's paradox, and it is funny that Russell came to it thinking about teaspoons : &amp;quot;The class of teaspoons, for example, is not another teaspoon, but the class of things that are not teaspoons, is one of the things that are not teaspoons.&amp;quot; See https://math.stackexchange.com/questions/1046863/how-can-a-set-contain-itself for the exact source.&lt;br /&gt;
[[Special:Contributions/198.41.242.47|198.41.242.47]] 08:29, 28 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Amusingly Russell's original words, atleast as far as I've seen them quoted, literally described the teapot as being a planet. They stated something like &amp;quot;what if I said that orbiting the sun between Earth and Mars was a small planet the shape and size of a teapot...&amp;quot;. The &amp;quot;thought experiment&amp;quot; dies a pretty quick death when you consider the current IAU definition of a planet, that it must be large enough to pull itself into a sphere from self-gravity(no marks for the teapot) and it needs to be gravitatonally dominant in it's orbital regions (no chance for something so low in mass), although that latter point tends to provoke the Pluto debate. Either way , by the strict definition, there isn't a teapot shaped &amp;quot;planet&amp;quot;.Also if you don't call the teapot a planet, but do stick to Russell's words about an elliptical orbit you can probably calculate that something so small waving about between the orbits of Earth and Mars will end up being ejected due to a gravitational tug or resonance somewhere, probably from Jupiter (given Jupiter's mass it perturbs just about anything even when things are inside the orbit of Mars), once again profound philosophy gets an unfortunate surprise from orbital dynamics.[[Special:Contributions/162.158.154.91|162.158.154.91]] 23:39, 2 August 2017 (UTC)&lt;br /&gt;
:Nope. Russell said: &amp;quot;...a teapot orbits the Sun somewhere in space between the Earth and Mars.&amp;quot; He didn't say the teapot is a planet. And in 1952 the {{w|IAU definition of planet|IAU definition from 2006}} didn't exist and Pluto was still a planet. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:55, 3 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
How come that noone mentioned **418**? [[Special:Contributions/172.68.226.16|172.68.226.16]] 18:43, 7 August 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1866:_Russell%27s_Teapot&amp;diff=148701</id>
		<title>Talk:1866: Russell's Teapot</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1866:_Russell%27s_Teapot&amp;diff=148701"/>
				<updated>2017-12-04T18:33:06Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: Getting rid of the excess em dash in my signature; I had forgotten that I had set my signature to automatically include an em dash.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and not delete this comment.--&amp;gt;&lt;br /&gt;
In this case, nesting the teapot in a catapult/cannon which is launched by another catapult/cannon might perhaps be sufficient to get past NASA regulations. (Catapults/cannons only launching the payload and not themselves...) &amp;lt;sub&amp;gt;--[[User:Nialpxe|&amp;lt;span style=&amp;quot;color: #000; text-decoration: none;&amp;quot;&amp;gt;Nialpxe&amp;lt;/span&amp;gt;]], 2017. [[User_talk:Nialpxe|&amp;lt;span style=&amp;quot;color: #000; text-decoration: none;&amp;quot;&amp;gt;(Arguments welcome)&amp;lt;/span&amp;gt;]]&amp;lt;/sub&amp;gt;&lt;br /&gt;
:Though there's still the matter of an equal and opposite force pushing the satellite away from its gravitational bonds of the catapult.  Even if the 2nd catapult is no longer associated with the Earth or Earth's gravity, the catapult will continue to be a launcher.  That's just changing what it is launching *from*.  [[Special:Contributions/172.68.58.125|172.68.58.125]] 18:31, 24 July 2017 (UTC)ColinHeico&lt;br /&gt;
:But make sure it is a mobile cannon, otherwise it would not qualify as a launch '''vehicle'''. [[Special:Contributions/162.158.89.19|162.158.89.19]] 11:32, 21 July 2017 (UTC)&lt;br /&gt;
::I immediately thought &amp;quot;railgun&amp;quot;. And the payload can still be a rocket; once it's not touching the ground it's accelerating, not launching. (Also Russell failed to account for female barbers. Honestly, people!) [[Special:Contributions/108.162.241.4|108.162.241.4]] 09:42, 22 July 2017 (UTC)&lt;br /&gt;
::: One such company did exist, Quicklaunch had the idea of launching via a space gun. https://en.m.wikipedia.org/wiki/Quicklaunch {{unsigned ip|172.68.141.142}}&lt;br /&gt;
&lt;br /&gt;
::: He didn't need to account for female barbers (or anybody who isn't a man) because the barber in the paradox shaves precisely those men who don't shave themselves. He ''only'' shaves men, and all men in the town are ''only'' shaved by him or themselves. Everyone else is a completely different story, so they can be shaved by whoever they want (except the barber, who only shaves men). [[Special:Contributions/108.162.241.88|108.162.241.88]] 00:14, 23 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Only if you assume that females who are barbers don't shave their legs, armpits, or their various lady parts. This only further confuses the paradox. {{unsigned|Mjm87}}&lt;br /&gt;
::::For much of Bertrand Russell's life, they didn't. http://mentalfloss.com/article/22511/when-did-women-start-shaving-their-pits [[Special:Contributions/108.162.241.4|108.162.241.4]] 09:42, 22 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Why are we even bringing up the argument of female barbers when the description of the paradox, at least as phrased within this article, specifically states that the barber is a man?  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:30, 4 December 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You wouldn't even need a cannon/catapult.  If you put the satellite on a small rocket, and put that on a much larger rocket, you can have the big one launch itself, the smaller one, and the satellite.  The regulation only says the satellite must be in a non-self-launching launch vehicle.  It doesn't say it can't *also* be in a self-launching launch vehicle.  -- [[Special:Contributions/108.162.246.113|108.162.246.113]] 20:06, 24 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When I first saw this comic I immediately thought of the Utah Teapot, it's a model used in computer graphics because it's simple and has both convex and concave surfaces. Both teapots, I would assume, (I've only just heard of Russel's Teapot so I could be wrong) are well known to different parts of the nerd community? {{unsigned ip|162.158.255.22}}&lt;br /&gt;
&lt;br /&gt;
Hopefully it will support HTCPCP-TEA. [[Special:Contributions/108.162.241.34|108.162.241.34]] 17:48, 21 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
i think people just really like teapot examples {{unsigned ip|108.162.246.23}}&lt;br /&gt;
&lt;br /&gt;
:The major problem here is that CubeSats are currently only launched into Low Earth Orbit (LEO) and are expected to re-enter the atmosphere within days to weeks.  Russell's teapot is (allegedly) in orbit between Earth and Mars and Cueball's device is not likely to have enough delta-v to leave Earth orbit. [[User:SteveBaker|SteveBaker]] ([[User talk:SteveBaker|talk]]) 18:18, 21 July 2017 (UTC)&lt;br /&gt;
&amp;quot;A teapot orbits the Sun somewhere in space between the Earth and Mars&amp;quot; This implies that the teapot is physically located between Mars and Earth at all times. Which if true would be a highly irregular orbit requiring constant velocity changes, which is an impossible feat to achieve with current teapot technology. {{unsigned|Mjm87}}&lt;br /&gt;
:Nonsense. It would be a ''highly regular orbit'' and many asteroids are already there, despite the most of them are between Mars and Jupiter (Asteroid-Belt):--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:22, 21 July 2017 (UTC)&lt;br /&gt;
::Since we're nitpicking.  Having velocity changes does not preclude being in orbit: objects in orbit are always accelerating.  Having a constant velocity change does preclude being in orbit, but it also precludes remaining between Earth and Mars, since it would result in eventually leaving the solar system.--[[Special:Contributions/172.68.54.112|172.68.54.112]] 19:45, 24 July 2017 (UTC)&lt;br /&gt;
:::Still nonsense. The mean velocity of an (elliptic) orbit is constant, only the direction is changing. And there are many asteroids in stable orbits between Earth and Mars. Leaving the solar system would require many energy at those orbits, all human build probes (Pioneer, Voyager and New Horizons) had to use gravity assist at Jupiter to reach this target.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:12, 26 July 2017 (UTC)&lt;br /&gt;
::::It sounds to me like you're missing the interpretation Mjm87 is trying to share. Yes, the way Russell meant it was that Russell's Teapot is between Mars and Earth in the same way that Earth is between Mars and the Sun, that this teapot is in a larger orbit than Earth and smaller than Mars. Mjm87's interpretation adds the idea that not only is it in such an orbit, but also in a direct line in between, always. In other words, that someone looking at Mars through a powerful telescope would always be able to see Russell's Teapot &amp;quot;in the way&amp;quot;, like a little Mars eclipse. :) Staying in that spot would indeed take strange acceleration. I'm no astrophysicist or anything, but I imagine if I think of our galaxy as a clock face, with Earth always at the 12 o'clock position, that Mars would at some point be at 3 o'clock, at another time be at 9 o'clock, etc. (of course this is a 2D intepretation of a 3D situation, but I hope you get my point. Actually the third dimension would make this orbit even stranger) [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 05:16, 28 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can see both of your points.  As mjm87 says, &amp;quot;between the Earth and Mars&amp;quot;, taken literally, would mean &amp;quot;on a line between the two planets&amp;quot;, which would be a very unusual orbit.  And, I agree, it would be impossible without constant velocity changes, so wouldn't be an &amp;quot;orbit&amp;quot; in the usual sense.&lt;br /&gt;
On the other hand, I took Russell's words the way Dgbrt seems to have, as meaning &amp;quot;between the orbits of Earth and Mars&amp;quot;, as this is the way most astronomers would interpret it.  A don't know that there are &amp;quot;many&amp;quot; asteroids that remain between Earth and Mars, but there are quite a few crossing the space, and at least a few with average distances in that range. - N Kalanaga {{unsigned ip|162.158.74.159}}&lt;br /&gt;
:There is also quantifier scope ambiguity there. I believe that there is a large constellation of teapot statites, and at any given moment at least one of them is directly between Earth and Mars. --[[Special:Contributions/172.68.54.58|172.68.54.58]] 06:29, 22 July 2017 (UTC)&lt;br /&gt;
Since Russell was going for absurdity, I favour the more absurd interpretation namely Mjm87's. [[User:Capncanuck|Capncanuck]] ([[User talk:Capncanuck|talk]]) 08:21, 22 July 2017 (UTC)&lt;br /&gt;
:Taking &amp;quot;on a line between the two planets&amp;quot; literally would simply reduce to &amp;quot;inside the orbit of Mars&amp;quot;. The Earth moves faster than Mars and right now the Sun is exactly between them on that line. NASA, ESA, and ISRO can not communicate with their orbiters and rovers until the beginning of August (see {{w|Solar conjunction}}). So the meaning &amp;quot;between the orbits of Earth and Mars&amp;quot; is still much more plausible.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 16:11, 22 July 2017 (UTC)&lt;br /&gt;
:What if it's in the Earth-Mars L1 point? Then it's always on a line between the two planets. [[User:Promethean|Promethean]] ([[User talk:Promethean|talk]]) 06:02, 26 July 2017 (UTC)&lt;br /&gt;
::{{w|Lagrangian point}}s exist for Earth-Sun, Mars-Sun, or Moon-Earth (small object orbits a larger one). There is nothing similar for Earth-Mars. Earth moves faster around the sun and the closest approach happens every 26 months at a distance not less than 55 Mio. km. 13 months later the maximum distance is approx. 400 Mio. km and the sun is in the middle as it happens right now!--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 13:46, 26 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Don't worry we have been working on it. Launching the project in a few months.&lt;br /&gt;
https://www.instagram.com/p/BSmdiMSFBSb/?taken-by=hate_plow&lt;br /&gt;
https://www.instagram.com/p/BSwW4MIlE0b/?taken-by=hate_plow&lt;br /&gt;
[[User:Zackdougherty|Zackdougherty]] ([[User talk:Zackdougherty|talk]]) 03:10, 22 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Actually, it couldn't be on a direct line between Earth and Mars because then it would be tremendously easier to find (or disprove)!   If the teapot can be anywhere between the orbits, then that is a vastly larger space to look for a teapot and therefore more difficult to disprove.   Similarly, it is unlikely there are a whole constellation because then it would be more likely to find at least one. [[Special:Contributions/172.68.34.94|172.68.34.94]] 03:19, 25 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could some people (smarter than myself) make an attempt at labeling the items on the cube sat that Randall left at squiggles? Maybe starting from the top, clockwise? I'll start a table, but I'm sure someone will need to fix it. [[User:DanB|DanB]] ([[User talk:DanB|talk]]) 03:24, 25 July 2017 (UTC)&lt;br /&gt;
:Personally, I suspect such a diagram wouldn't have the top labelled as &amp;quot;Teapot&amp;quot;, but as &amp;quot;Payload&amp;quot;. :) To me it looks even longer, so perhaps &amp;quot;Top Secret Specialty Payload&amp;quot; or something? [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 05:05, 1 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
The title text refers to Russell's paradox, and it is funny that Russell came to it thinking about teaspoons : &amp;quot;The class of teaspoons, for example, is not another teaspoon, but the class of things that are not teaspoons, is one of the things that are not teaspoons.&amp;quot; See https://math.stackexchange.com/questions/1046863/how-can-a-set-contain-itself for the exact source.&lt;br /&gt;
[[Special:Contributions/198.41.242.47|198.41.242.47]] 08:29, 28 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Amusingly Russell's original words, atleast as far as I've seen them quoted, literally described the teapot as being a planet. They stated something like &amp;quot;what if I said that orbiting the sun between Earth and Mars was a small planet the shape and size of a teapot...&amp;quot;. The &amp;quot;thought experiment&amp;quot; dies a pretty quick death when you consider the current IAU definition of a planet, that it must be large enough to pull itself into a sphere from self-gravity(no marks for the teapot) and it needs to be gravitatonally dominant in it's orbital regions (no chance for something so low in mass), although that latter point tends to provoke the Pluto debate. Either way , by the strict definition, there isn't a teapot shaped &amp;quot;planet&amp;quot;.Also if you don't call the teapot a planet, but do stick to Russell's words about an elliptical orbit you can probably calculate that something so small waving about between the orbits of Earth and Mars will end up being ejected due to a gravitational tug or resonance somewhere, probably from Jupiter (given Jupiter's mass it perturbs just about anything even when things are inside the orbit of Mars), once again profound philosophy gets an unfortunate surprise from orbital dynamics.[[Special:Contributions/162.158.154.91|162.158.154.91]] 23:39, 2 August 2017 (UTC)&lt;br /&gt;
:Nope. Russell said: &amp;quot;...a teapot orbits the Sun somewhere in space between the Earth and Mars.&amp;quot; He didn't say the teapot is a planet. And in 1952 the {{w|IAU definition of planet|IAU definition from 2006}} didn't exist and Pluto was still a planet. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:55, 3 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
How come that noone mentioned **418**? [[Special:Contributions/172.68.226.16|172.68.226.16]] 18:43, 7 August 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1866:_Russell%27s_Teapot&amp;diff=148700</id>
		<title>Talk:1866: Russell's Teapot</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1866:_Russell%27s_Teapot&amp;diff=148700"/>
				<updated>2017-12-04T18:30:49Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: Added comment that might need revisiting depending on the history of the article.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and not delete this comment.--&amp;gt;&lt;br /&gt;
In this case, nesting the teapot in a catapult/cannon which is launched by another catapult/cannon might perhaps be sufficient to get past NASA regulations. (Catapults/cannons only launching the payload and not themselves...) &amp;lt;sub&amp;gt;--[[User:Nialpxe|&amp;lt;span style=&amp;quot;color: #000; text-decoration: none;&amp;quot;&amp;gt;Nialpxe&amp;lt;/span&amp;gt;]], 2017. [[User_talk:Nialpxe|&amp;lt;span style=&amp;quot;color: #000; text-decoration: none;&amp;quot;&amp;gt;(Arguments welcome)&amp;lt;/span&amp;gt;]]&amp;lt;/sub&amp;gt;&lt;br /&gt;
:Though there's still the matter of an equal and opposite force pushing the satellite away from its gravitational bonds of the catapult.  Even if the 2nd catapult is no longer associated with the Earth or Earth's gravity, the catapult will continue to be a launcher.  That's just changing what it is launching *from*.  [[Special:Contributions/172.68.58.125|172.68.58.125]] 18:31, 24 July 2017 (UTC)ColinHeico&lt;br /&gt;
:But make sure it is a mobile cannon, otherwise it would not qualify as a launch '''vehicle'''. [[Special:Contributions/162.158.89.19|162.158.89.19]] 11:32, 21 July 2017 (UTC)&lt;br /&gt;
::I immediately thought &amp;quot;railgun&amp;quot;. And the payload can still be a rocket; once it's not touching the ground it's accelerating, not launching. (Also Russell failed to account for female barbers. Honestly, people!) [[Special:Contributions/108.162.241.4|108.162.241.4]] 09:42, 22 July 2017 (UTC)&lt;br /&gt;
::: One such company did exist, Quicklaunch had the idea of launching via a space gun. https://en.m.wikipedia.org/wiki/Quicklaunch {{unsigned ip|172.68.141.142}}&lt;br /&gt;
&lt;br /&gt;
::: He didn't need to account for female barbers (or anybody who isn't a man) because the barber in the paradox shaves precisely those men who don't shave themselves. He ''only'' shaves men, and all men in the town are ''only'' shaved by him or themselves. Everyone else is a completely different story, so they can be shaved by whoever they want (except the barber, who only shaves men). [[Special:Contributions/108.162.241.88|108.162.241.88]] 00:14, 23 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Only if you assume that females who are barbers don't shave their legs, armpits, or their various lady parts. This only further confuses the paradox. {{unsigned|Mjm87}}&lt;br /&gt;
::::For much of Bertrand Russell's life, they didn't. http://mentalfloss.com/article/22511/when-did-women-start-shaving-their-pits [[Special:Contributions/108.162.241.4|108.162.241.4]] 09:42, 22 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Why are we even bringing up the argument of female barbers when the description of the paradox, at least as phrased within this article, specifically states that the barber is a man?  ——[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:30, 4 December 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You wouldn't even need a cannon/catapult.  If you put the satellite on a small rocket, and put that on a much larger rocket, you can have the big one launch itself, the smaller one, and the satellite.  The regulation only says the satellite must be in a non-self-launching launch vehicle.  It doesn't say it can't *also* be in a self-launching launch vehicle.  -- [[Special:Contributions/108.162.246.113|108.162.246.113]] 20:06, 24 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When I first saw this comic I immediately thought of the Utah Teapot, it's a model used in computer graphics because it's simple and has both convex and concave surfaces. Both teapots, I would assume, (I've only just heard of Russel's Teapot so I could be wrong) are well known to different parts of the nerd community? {{unsigned ip|162.158.255.22}}&lt;br /&gt;
&lt;br /&gt;
Hopefully it will support HTCPCP-TEA. [[Special:Contributions/108.162.241.34|108.162.241.34]] 17:48, 21 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
i think people just really like teapot examples {{unsigned ip|108.162.246.23}}&lt;br /&gt;
&lt;br /&gt;
:The major problem here is that CubeSats are currently only launched into Low Earth Orbit (LEO) and are expected to re-enter the atmosphere within days to weeks.  Russell's teapot is (allegedly) in orbit between Earth and Mars and Cueball's device is not likely to have enough delta-v to leave Earth orbit. [[User:SteveBaker|SteveBaker]] ([[User talk:SteveBaker|talk]]) 18:18, 21 July 2017 (UTC)&lt;br /&gt;
&amp;quot;A teapot orbits the Sun somewhere in space between the Earth and Mars&amp;quot; This implies that the teapot is physically located between Mars and Earth at all times. Which if true would be a highly irregular orbit requiring constant velocity changes, which is an impossible feat to achieve with current teapot technology. {{unsigned|Mjm87}}&lt;br /&gt;
:Nonsense. It would be a ''highly regular orbit'' and many asteroids are already there, despite the most of them are between Mars and Jupiter (Asteroid-Belt):--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:22, 21 July 2017 (UTC)&lt;br /&gt;
::Since we're nitpicking.  Having velocity changes does not preclude being in orbit: objects in orbit are always accelerating.  Having a constant velocity change does preclude being in orbit, but it also precludes remaining between Earth and Mars, since it would result in eventually leaving the solar system.--[[Special:Contributions/172.68.54.112|172.68.54.112]] 19:45, 24 July 2017 (UTC)&lt;br /&gt;
:::Still nonsense. The mean velocity of an (elliptic) orbit is constant, only the direction is changing. And there are many asteroids in stable orbits between Earth and Mars. Leaving the solar system would require many energy at those orbits, all human build probes (Pioneer, Voyager and New Horizons) had to use gravity assist at Jupiter to reach this target.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:12, 26 July 2017 (UTC)&lt;br /&gt;
::::It sounds to me like you're missing the interpretation Mjm87 is trying to share. Yes, the way Russell meant it was that Russell's Teapot is between Mars and Earth in the same way that Earth is between Mars and the Sun, that this teapot is in a larger orbit than Earth and smaller than Mars. Mjm87's interpretation adds the idea that not only is it in such an orbit, but also in a direct line in between, always. In other words, that someone looking at Mars through a powerful telescope would always be able to see Russell's Teapot &amp;quot;in the way&amp;quot;, like a little Mars eclipse. :) Staying in that spot would indeed take strange acceleration. I'm no astrophysicist or anything, but I imagine if I think of our galaxy as a clock face, with Earth always at the 12 o'clock position, that Mars would at some point be at 3 o'clock, at another time be at 9 o'clock, etc. (of course this is a 2D intepretation of a 3D situation, but I hope you get my point. Actually the third dimension would make this orbit even stranger) [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 05:16, 28 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can see both of your points.  As mjm87 says, &amp;quot;between the Earth and Mars&amp;quot;, taken literally, would mean &amp;quot;on a line between the two planets&amp;quot;, which would be a very unusual orbit.  And, I agree, it would be impossible without constant velocity changes, so wouldn't be an &amp;quot;orbit&amp;quot; in the usual sense.&lt;br /&gt;
On the other hand, I took Russell's words the way Dgbrt seems to have, as meaning &amp;quot;between the orbits of Earth and Mars&amp;quot;, as this is the way most astronomers would interpret it.  A don't know that there are &amp;quot;many&amp;quot; asteroids that remain between Earth and Mars, but there are quite a few crossing the space, and at least a few with average distances in that range. - N Kalanaga {{unsigned ip|162.158.74.159}}&lt;br /&gt;
:There is also quantifier scope ambiguity there. I believe that there is a large constellation of teapot statites, and at any given moment at least one of them is directly between Earth and Mars. --[[Special:Contributions/172.68.54.58|172.68.54.58]] 06:29, 22 July 2017 (UTC)&lt;br /&gt;
Since Russell was going for absurdity, I favour the more absurd interpretation namely Mjm87's. [[User:Capncanuck|Capncanuck]] ([[User talk:Capncanuck|talk]]) 08:21, 22 July 2017 (UTC)&lt;br /&gt;
:Taking &amp;quot;on a line between the two planets&amp;quot; literally would simply reduce to &amp;quot;inside the orbit of Mars&amp;quot;. The Earth moves faster than Mars and right now the Sun is exactly between them on that line. NASA, ESA, and ISRO can not communicate with their orbiters and rovers until the beginning of August (see {{w|Solar conjunction}}). So the meaning &amp;quot;between the orbits of Earth and Mars&amp;quot; is still much more plausible.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 16:11, 22 July 2017 (UTC)&lt;br /&gt;
:What if it's in the Earth-Mars L1 point? Then it's always on a line between the two planets. [[User:Promethean|Promethean]] ([[User talk:Promethean|talk]]) 06:02, 26 July 2017 (UTC)&lt;br /&gt;
::{{w|Lagrangian point}}s exist for Earth-Sun, Mars-Sun, or Moon-Earth (small object orbits a larger one). There is nothing similar for Earth-Mars. Earth moves faster around the sun and the closest approach happens every 26 months at a distance not less than 55 Mio. km. 13 months later the maximum distance is approx. 400 Mio. km and the sun is in the middle as it happens right now!--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 13:46, 26 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Don't worry we have been working on it. Launching the project in a few months.&lt;br /&gt;
https://www.instagram.com/p/BSmdiMSFBSb/?taken-by=hate_plow&lt;br /&gt;
https://www.instagram.com/p/BSwW4MIlE0b/?taken-by=hate_plow&lt;br /&gt;
[[User:Zackdougherty|Zackdougherty]] ([[User talk:Zackdougherty|talk]]) 03:10, 22 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Actually, it couldn't be on a direct line between Earth and Mars because then it would be tremendously easier to find (or disprove)!   If the teapot can be anywhere between the orbits, then that is a vastly larger space to look for a teapot and therefore more difficult to disprove.   Similarly, it is unlikely there are a whole constellation because then it would be more likely to find at least one. [[Special:Contributions/172.68.34.94|172.68.34.94]] 03:19, 25 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could some people (smarter than myself) make an attempt at labeling the items on the cube sat that Randall left at squiggles? Maybe starting from the top, clockwise? I'll start a table, but I'm sure someone will need to fix it. [[User:DanB|DanB]] ([[User talk:DanB|talk]]) 03:24, 25 July 2017 (UTC)&lt;br /&gt;
:Personally, I suspect such a diagram wouldn't have the top labelled as &amp;quot;Teapot&amp;quot;, but as &amp;quot;Payload&amp;quot;. :) To me it looks even longer, so perhaps &amp;quot;Top Secret Specialty Payload&amp;quot; or something? [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 05:05, 1 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
The title text refers to Russell's paradox, and it is funny that Russell came to it thinking about teaspoons : &amp;quot;The class of teaspoons, for example, is not another teaspoon, but the class of things that are not teaspoons, is one of the things that are not teaspoons.&amp;quot; See https://math.stackexchange.com/questions/1046863/how-can-a-set-contain-itself for the exact source.&lt;br /&gt;
[[Special:Contributions/198.41.242.47|198.41.242.47]] 08:29, 28 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Amusingly Russell's original words, atleast as far as I've seen them quoted, literally described the teapot as being a planet. They stated something like &amp;quot;what if I said that orbiting the sun between Earth and Mars was a small planet the shape and size of a teapot...&amp;quot;. The &amp;quot;thought experiment&amp;quot; dies a pretty quick death when you consider the current IAU definition of a planet, that it must be large enough to pull itself into a sphere from self-gravity(no marks for the teapot) and it needs to be gravitatonally dominant in it's orbital regions (no chance for something so low in mass), although that latter point tends to provoke the Pluto debate. Either way , by the strict definition, there isn't a teapot shaped &amp;quot;planet&amp;quot;.Also if you don't call the teapot a planet, but do stick to Russell's words about an elliptical orbit you can probably calculate that something so small waving about between the orbits of Earth and Mars will end up being ejected due to a gravitational tug or resonance somewhere, probably from Jupiter (given Jupiter's mass it perturbs just about anything even when things are inside the orbit of Mars), once again profound philosophy gets an unfortunate surprise from orbital dynamics.[[Special:Contributions/162.158.154.91|162.158.154.91]] 23:39, 2 August 2017 (UTC)&lt;br /&gt;
:Nope. Russell said: &amp;quot;...a teapot orbits the Sun somewhere in space between the Earth and Mars.&amp;quot; He didn't say the teapot is a planet. And in 1952 the {{w|IAU definition of planet|IAU definition from 2006}} didn't exist and Pluto was still a planet. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:55, 3 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
How come that noone mentioned **418**? [[Special:Contributions/172.68.226.16|172.68.226.16]] 18:43, 7 August 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1827:_Survivorship_Bias&amp;diff=139116</id>
		<title>1827: Survivorship Bias</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1827:_Survivorship_Bias&amp;diff=139116"/>
				<updated>2017-04-21T15:10:43Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Trivia */ Oops, that actually looks weird with a space between the comma and [citation needed].  I took it out.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1827&lt;br /&gt;
| date      = April 21, 2017&lt;br /&gt;
| title     = Survivorship Bias&lt;br /&gt;
| image     = survivorship_bias.png&lt;br /&gt;
| titletext = They say you can't argue with results, but what kind of defeatest attitude is that? If you stick with it, you can argue with ANYTHING.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|More on SsB. Title text not explained.}}&lt;br /&gt;
This comic is a parody of entrepreneurial speeches. Entrepreneurial speeches are talks, delivered by successful entrepreneurs to students during an important event, like graduation. The idea behind these talks is that the entrepreneur, having accumulated wisdom and experience in the process of becoming successful, will share his insights and experience to the students, in the hope that they learn lessons that will help them achieve success as well.&lt;br /&gt;
&lt;br /&gt;
A common theme in these talks is that the entrepreneur succeeded by persisting through hardship, sometimes despite other people telling them they would be better off giving up. They advise students to do the same, and to keep pursuing their dreams even through subsequent failure. While this isn't necessarily bad business advice, this can give students a biased vision of reality, and lead them to imagine that they will succeed as long as they keep trying.&lt;br /&gt;
&lt;br /&gt;
This comic makes a joke about survivorship bias, hence the title. {{w|Survivorship bias}}, or survival bias, is the logical error of concentrating on the people or things that &amp;quot;survived&amp;quot; some process and inadvertently [[#Trivia|overlooking those]] that did not because of their lack of visibility. This can lead to false conclusions in several different ways. The survivors may be actual people, as in a medical study, or could be companies or research subjects or applicants for a job, or anything that must make it past some selection process to be considered further.&lt;br /&gt;
&lt;br /&gt;
In this comic [[Hairy]] is giving a talk encouraging people to &amp;quot;never stop buying {{w|lottery}} tickets&amp;quot;. This is an unwise investment plan, because the chances of winning the lottery are mathematically very low and the total payout is usually less than the total ticket sales, meaning the expected return from buying a lottery ticket is ([[#Trivia|almost]]) always negative. Survivorship bias applies in this situation since people who eventually win (and, presumably, win more than they've spent on lottery tickets in the time that it took them to win) are much more likely to give inspirational speeches than someone who never won or didn't win enough to make the &amp;quot;investment&amp;quot; worthwhile.&lt;br /&gt;
&lt;br /&gt;
The obvious bad strategy (keep buying lottery tickets) is a metaphor for strategies that successful entrepreneurs recommend (keep persisting and putting money into your start-up); these strategies may be bad on average, but people who pursued them and succeeded are much more likely to be invited and give speeches than people who pursued them and went bankrupt (or people who pursued safer strategies and kept their money), making it appear to students that taking high risks and persisting in the face of expensive failure is the optimal strategy.&lt;br /&gt;
&lt;br /&gt;
[[Randall]] says in the caption below the panel that people should be informed about survivorship bias before hearing inspirational talks from successful people.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Hairy, holding an arm out towards an unseen crowd, is standing on a podium with five large bags around him, each having a dollar sign on it.]&lt;br /&gt;
:Hairy: Never stop buying lottery tickets, no matter what anyone tells you.&lt;br /&gt;
:Hairy: I failed again and again, but I never gave up. I took extra jobs and poured the money into tickets.&lt;br /&gt;
:Hairy: And here I am, proof that if you put in the time, it pays off!&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:Every inspirational speech by someone successful should have to start with a disclaimer about survivorship bias.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Lottery with '''positive return''':&lt;br /&gt;
**When item prices are donated to a lottery (for charity or advertising purposes), sometimes the value of those items may actually be larger than the total price for all of the lottery tickets, if you otherwise would be willing to pay full prize for all the prizes.&lt;br /&gt;
*'''Examples''' of survivorship bias:&lt;br /&gt;
**Almost {{w|Public Health Cigarette Smoking Act|everyone was smoking}} back in the 1930-70s,{{Citation needed}} thus everyone above 80 probably smoked cigarettes or was at least subjected to passive smoking. Thus anyone above that age could be claimed to prove that you can live a long life while smoking. But they consist of the small group of people that survived in spite of all the smoke, where large sections of those that would have been 80 today, died from cancer or heart disease caused by smoking, long ago, maybe even before they retired. But since these people are dead and gone many years ago, they do not speak up, and are thus the silent majority that is not heard, which is the problem with survivorship bias.&lt;br /&gt;
**During World War II there was a study of the damage done to aircraft, and the recommendation was to add armor to the areas that showed the most damage. The statistician {{w|Abraham Wald}} noticed that the study didn't take into account aircraft that ''didn't'' return: the holes in the returning aircraft thus represented areas where a bomber could take damage and still return home safely.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Science]]&lt;br /&gt;
[[Category:Public speaking]]&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1827:_Survivorship_Bias&amp;diff=139115</id>
		<title>1827: Survivorship Bias</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1827:_Survivorship_Bias&amp;diff=139115"/>
				<updated>2017-04-21T15:08:50Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Trivia */ The right way to put in [citation needed], 108.162.216.94, is using the {{Citation needed}} template.  Also, are you using it jokingly the way Randall does in &amp;quot;What If?&amp;quot;, or are you actually looking for a citation?  I can't exactly tell.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1827&lt;br /&gt;
| date      = April 21, 2017&lt;br /&gt;
| title     = Survivorship Bias&lt;br /&gt;
| image     = survivorship_bias.png&lt;br /&gt;
| titletext = They say you can't argue with results, but what kind of defeatest attitude is that? If you stick with it, you can argue with ANYTHING.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|More on SsB. Title text not explained.}}&lt;br /&gt;
This comic is a parody of entrepreneurial speeches. Entrepreneurial speeches are talks, delivered by successful entrepreneurs to students during an important event, like graduation. The idea behind these talks is that the entrepreneur, having accumulated wisdom and experience in the process of becoming successful, will share his insights and experience to the students, in the hope that they learn lessons that will help them achieve success as well.&lt;br /&gt;
&lt;br /&gt;
A common theme in these talks is that the entrepreneur succeeded by persisting through hardship, sometimes despite other people telling them they would be better off giving up. They advise students to do the same, and to keep pursuing their dreams even through subsequent failure. While this isn't necessarily bad business advice, this can give students a biased vision of reality, and lead them to imagine that they will succeed as long as they keep trying.&lt;br /&gt;
&lt;br /&gt;
This comic makes a joke about survivorship bias, hence the title. {{w|Survivorship bias}}, or survival bias, is the logical error of concentrating on the people or things that &amp;quot;survived&amp;quot; some process and inadvertently [[#Trivia|overlooking those]] that did not because of their lack of visibility. This can lead to false conclusions in several different ways. The survivors may be actual people, as in a medical study, or could be companies or research subjects or applicants for a job, or anything that must make it past some selection process to be considered further.&lt;br /&gt;
&lt;br /&gt;
In this comic [[Hairy]] is giving a talk encouraging people to &amp;quot;never stop buying {{w|lottery}} tickets&amp;quot;. This is an unwise investment plan, because the chances of winning the lottery are mathematically very low and the total payout is usually less than the total ticket sales, meaning the expected return from buying a lottery ticket is ([[#Trivia|almost]]) always negative. Survivorship bias applies in this situation since people who eventually win (and, presumably, win more than they've spent on lottery tickets in the time that it took them to win) are much more likely to give inspirational speeches than someone who never won or didn't win enough to make the &amp;quot;investment&amp;quot; worthwhile.&lt;br /&gt;
&lt;br /&gt;
The obvious bad strategy (keep buying lottery tickets) is a metaphor for strategies that successful entrepreneurs recommend (keep persisting and putting money into your start-up); these strategies may be bad on average, but people who pursued them and succeeded are much more likely to be invited and give speeches than people who pursued them and went bankrupt (or people who pursued safer strategies and kept their money), making it appear to students that taking high risks and persisting in the face of expensive failure is the optimal strategy.&lt;br /&gt;
&lt;br /&gt;
[[Randall]] says in the caption below the panel that people should be informed about survivorship bias before hearing inspirational talks from successful people.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Hairy, holding an arm out towards an unseen crowd, is standing on a podium with five large bags around him, each having a dollar sign on it.]&lt;br /&gt;
:Hairy: Never stop buying lottery tickets, no matter what anyone tells you.&lt;br /&gt;
:Hairy: I failed again and again, but I never gave up. I took extra jobs and poured the money into tickets.&lt;br /&gt;
:Hairy: And here I am, proof that if you put in the time, it pays off!&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:Every inspirational speech by someone successful should have to start with a disclaimer about survivorship bias.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Lottery with '''positive return''':&lt;br /&gt;
**When item prices are donated to a lottery (for charity or advertising purposes), sometimes the value of those items may actually be larger than the total price for all of the lottery tickets, if you otherwise would be willing to pay full prize for all the prizes.&lt;br /&gt;
*'''Examples''' of survivorship bias:&lt;br /&gt;
**Almost {{w|Public Health Cigarette Smoking Act|everyone was smoking}} back in the 1930-70s, {{Citation needed}} thus everyone above 80 probably smoked cigarettes or was at least subjected to passive smoking. Thus anyone above that age could be claimed to prove that you can live a long life while smoking. But they consist of the small group of people that survived in spite of all the smoke, where large sections of those that would have been 80 today, died from cancer or heart disease caused by smoking, long ago, maybe even before they retired. But since these people are dead and gone many years ago, they do not speak up, and are thus the silent majority that is not heard, which is the problem with survivorship bias.&lt;br /&gt;
**During World War II there was a study of the damage done to aircraft, and the recommendation was to add armor to the areas that showed the most damage. The statistician {{w|Abraham Wald}} noticed that the study didn't take into account aircraft that ''didn't'' return: the holes in the returning aircraft thus represented areas where a bomber could take damage and still return home safely.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Science]]&lt;br /&gt;
[[Category:Public speaking]]&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138997</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138997"/>
				<updated>2017-04-19T16:24:30Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Comic Might Now be Broken? */ More minor edits on my post, even though I said I'd stop: in the second sentence, changed the beginning to make a little more sense, the middle to be a little more specific, and the end to be a little less repetitive.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;&amp;lt;nowiki&amp;gt;[[two people...]]&amp;lt;/nowiki&amp;gt; &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;br /&gt;
&lt;br /&gt;
== Comic Might Now be Broken? ==&lt;br /&gt;
&lt;br /&gt;
For some reason, this comic does not seem to be working now.  It doesn't work on Chrome version 57.0.2987.133 on Windows 8 in Massachusetts, even though it worked a year ago on the very same computer with version 49.0.2623.112 of Chrome in the same location (showing &amp;quot;Snake&amp;quot; then); I tried it on Internet Explorer on the same computer (only because it's the only other browser I have on it), and it didn't work there either; my brother grudgingly agreed to try it on Firefox on his Ubuntu 14.04 machine (in the same room), and we got the same result.&lt;br /&gt;
&lt;br /&gt;
No, I'm not talking about the void; here, there is absolutely no image at all.  It seems to be the same as the experience that an anonymous user posted above about two and a half years ago:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ [[Special:Contributions/173.245.53.215|173.245.53.215]] 18:41, 13 November 2014 (UTC)&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;''(Comment was actually unsigned; contributor and timestamp are implied by &amp;lt;nowiki&amp;gt;{{unsigned ip}}&amp;lt;/nowiki&amp;gt; template and edit history, respectively)''&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Now, every time I tried on my computer, the browser said that the page was trying to load unsafe scripts.  Maybe this is somehow linked to the fact that within the past few months, Randall (or more likely Davean) made all xkcd links secure (&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;), and the now secure nature of the page could be blocking the location- and browser-sensing scripts in the comic itself.  However, the comic still didn't work when I opted to &amp;quot;Load Unsafe Scripts&amp;quot;, so maybe it isn't that simple.&lt;br /&gt;
&lt;br /&gt;
Also, it might be helpful to note that [[User:Seipas|Seipas]] posted on here that he was having an issue that is probably quite similar to this one:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Anyway, with all that said, is there anyone else who is having this issue and/or knows what might be causing it?&lt;br /&gt;
&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 23:48, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
when using chromium on ubuntu 16.04 32 bit (yeah yeah yeah) I get no comic loaded, there is no element present. --&amp;gt; http://i.imgur.com/KZwpN8y.png have fun all. -[anon]&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138677</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138677"/>
				<updated>2017-04-13T00:24:20Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: Okay, I said I was done, but I realized immediately afterwards that there was a way to improve the unsigned comment's implied signature.  Now I'm done for real.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;&amp;lt;nowiki&amp;gt;[[two people...]]&amp;lt;/nowiki&amp;gt; &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;br /&gt;
&lt;br /&gt;
== Comic Might Now be Broken? ==&lt;br /&gt;
&lt;br /&gt;
For some reason, this comic does not seem to be working now.  It doesn't work on Chrome version 57.0.2987.133 on Windows 8 in Massachusetts, even though it worked a year ago on this very same computer with version 49.0.2623.112 of Chrome in the same location; I tried it on Internet Explorer on the same computer (only because it's the only other browser I have on it), and it didn't work there either; my brother grudgingly agreed to try it on Firefox on his Ubuntu 14.04 machine (in the same room), and it didn't work on that either.&lt;br /&gt;
&lt;br /&gt;
No, I'm not talking about the void; here, there is absolutely no image at all.  It seems to be the same as the experience that an anonymous user posted above about two and a half years ago:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ [[Special:Contributions/173.245.53.215|173.245.53.215]] 18:41, 13 November 2014 (UTC)&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;''(Comment was actually unsigned; contributor and timestamp are implied by &amp;lt;nowiki&amp;gt;{{unsigned ip}}&amp;lt;/nowiki&amp;gt; template and edit history, respectively)''&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Now, every time I tried on my computer, the browser said that the page was trying to load unsafe scripts.  Maybe this is somehow linked to the fact that within the past few months, Randall (or more likely Davean) made all xkcd links secure (&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;), and the now secure nature of the page could be blocking the location- and browser-sensing scripts in the comic itself.  However, the comic still didn't work when I opted to &amp;quot;Load Unsafe Scripts&amp;quot;, so maybe it isn't that simple.&lt;br /&gt;
&lt;br /&gt;
Also, it might be helpful to note that [[User:Seipas|Seipas]] posted on here that he was having an issue that is probably quite similar to this one:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Anyway, with all that said, is there anyone else who is having this issue and/or knows what might be causing it?&lt;br /&gt;
&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 23:48, 12 April 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138676</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138676"/>
				<updated>2017-04-13T00:12:40Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Comic Might Now be Broken? */ Another wording fix in the same spot.  Okay, I'm stopping for real now.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;&amp;lt;nowiki&amp;gt;[[two people...]]&amp;lt;/nowiki&amp;gt; &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;br /&gt;
&lt;br /&gt;
== Comic Might Now be Broken? ==&lt;br /&gt;
&lt;br /&gt;
For some reason, this comic does not seem to be working now.  It doesn't work on Chrome version 57.0.2987.133 on Windows 8 in Massachusetts, even though it worked a year ago on this very same computer with version 49.0.2623.112 of Chrome in the same location; I tried it on Internet Explorer on the same computer (only because it's the only other browser I have on it), and it didn't work there either; my brother grudgingly agreed to try it on Firefox on his Ubuntu 14.04 machine (in the same room), and it didn't work on that either.&lt;br /&gt;
&lt;br /&gt;
No, I'm not talking about the void; here, there is absolutely no image at all.  It seems to be the same as the experience that an anonymous user posted above 2 or 3 years ago:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ &amp;lt;code&amp;gt;''(Comment was unsigned; &amp;lt;nowiki&amp;gt;{{unsigned ip}}&amp;lt;/nowiki&amp;gt; template identifies poster as [[Special:Contributions/173.245.53.215|173.245.53.215]])''&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Now, every time I tried on my computer, the browser said that the page was trying to load unsafe scripts.  Maybe this is somehow linked to the fact that within the past few months, Randall (or more likely Davean) made all xkcd links secure (&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;), and the now secure nature of the page could be blocking the location- and browser-sensing scripts in the comic itself.  However, the comic still didn't work when I opted to &amp;quot;Load Unsafe Scripts&amp;quot;, so maybe it isn't that simple.&lt;br /&gt;
&lt;br /&gt;
Also, it might be helpful to note that [[User:Seipas|Seipas]] posted on here that he was having an issue that is probably quite similar to this one:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Anyway, with all that said, is there anyone else who is having this issue and/or knows what might be causing it?&lt;br /&gt;
&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 23:48, 12 April 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138675</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138675"/>
				<updated>2017-04-13T00:10:20Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Comic Might Now be Broken? */ That wording is a little better.  …I should probably stop editing incessantly now.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;&amp;lt;nowiki&amp;gt;[[two people...]]&amp;lt;/nowiki&amp;gt; &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;br /&gt;
&lt;br /&gt;
== Comic Might Now be Broken? ==&lt;br /&gt;
&lt;br /&gt;
For some reason, this comic does not seem to be working now.  It doesn't work on Chrome version 57.0.2987.133 on Windows 8 in Massachusetts, even though it worked a year ago on this very same computer with version 49.0.2623.112 of Chrome in the same location; I tried it on Internet Explorer on the same computer (only because it's the only other browser I have on it), and it didn't work there either; my brother grudgingly agreed to try it on Firefox on his Ubuntu 14.04 machine (in the same room), and it didn't work on that either.&lt;br /&gt;
&lt;br /&gt;
No, I'm not talking about the void; here, there is absolutely no image at all.  It seems to be the same as the experience that an anonymous user posted above 2 or 3 years ago:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ &amp;lt;code&amp;gt;''(Comment was unsigned; &amp;lt;nowiki&amp;gt;{{unsigned ip}}&amp;lt;/nowiki&amp;gt; template identifies poster as [[Special:Contributions/173.245.53.215|173.245.53.215]])''&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Now, every time I tried on my computer, the browser said that the page was trying to load unsafe scripts.  Maybe this is somehow linked to the fact that within the past few months, Randall (or more likely Davean) made all xkcd links secure (&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;) — the secure nature of the page could be blocking the location- and browser-sensing scripts in the comic itself.  However, the comic still didn't work when I opted to &amp;quot;Load Unsafe Scripts&amp;quot;, so maybe it isn't that simple.&lt;br /&gt;
&lt;br /&gt;
Also, it might be helpful to note that [[User:Seipas|Seipas]] posted on here that he was having an issue that is probably quite similar to this one:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Anyway, with all that said, is there anyone else who is having this issue and/or knows what might be causing it?&lt;br /&gt;
&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 23:48, 12 April 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138674</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138674"/>
				<updated>2017-04-13T00:06:39Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: That's what the template is actually called.  I couldn't see it when I was adding a new section.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;&amp;lt;nowiki&amp;gt;[[two people...]]&amp;lt;/nowiki&amp;gt; &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;br /&gt;
&lt;br /&gt;
== Comic Might Now be Broken? ==&lt;br /&gt;
&lt;br /&gt;
For some reason, this comic does not seem to be working now.  It doesn't work on Chrome version 57.0.2987.133 on Windows 8 in Massachusetts, even though it worked a year ago on this very same computer with version 49.0.2623.112 of Chrome in the same location; I tried it on Internet Explorer on the same computer (only because it's the only other browser I have on it), and it didn't work there either; my brother grudgingly agreed to try it on Firefox on his Ubuntu 14.04 machine (in the same room), and it didn't work on that either.&lt;br /&gt;
&lt;br /&gt;
No, I'm not talking about the void; here, there is absolutely no image at all.  It seems to be the same as the experience that an anonymous user posted above 2 or 3 years ago:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ &amp;lt;code&amp;gt;''(Comment was unsigned; &amp;lt;nowiki&amp;gt;{{unsigned ip}}&amp;lt;/nowiki&amp;gt; template identifies poster as [[Special:Contributions/173.245.53.215|173.245.53.215]])''&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Now, every time I tried on my computer, the browser said that the page was trying to load unsafe scripts.  Maybe this is somehow linked to the fact that within the past few months, Randall (or more likely Davean) made all xkcd links secure (&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;), and the secure nature of the page is blocking the location- and browser-sensing scripts in the comic itself.  However, the comic still didn't work when I opted to &amp;quot;Load Unsafe Scripts&amp;quot;, so maybe it isn't that simple.&lt;br /&gt;
&lt;br /&gt;
Also, it might be helpful to note that [[User:Seipas|Seipas]] posted on here that he was having an issue that is probably quite similar to this one:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Anyway, with all that said, is there anyone else who is having this issue and/or knows what might be causing it?&lt;br /&gt;
&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 23:48, 12 April 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138673</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138673"/>
				<updated>2017-04-13T00:05:17Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: I'm pretty sure this is what you actually meant to do here, Maplestrip.  Also, I hope you've learned by now that the correct way to sign posts is with four tildes (~~~~).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;&amp;lt;nowiki&amp;gt;[[two people...]]&amp;lt;/nowiki&amp;gt; &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;br /&gt;
&lt;br /&gt;
== Comic Might Now be Broken? ==&lt;br /&gt;
&lt;br /&gt;
For some reason, this comic does not seem to be working now.  It doesn't work on Chrome version 57.0.2987.133 on Windows 8 in Massachusetts, even though it worked a year ago on this very same computer with version 49.0.2623.112 of Chrome in the same location; I tried it on Internet Explorer on the same computer (only because it's the only other browser I have on it), and it didn't work there either; my brother grudgingly agreed to try it on Firefox on his Ubuntu 14.04 machine (in the same room), and it didn't work on that either.&lt;br /&gt;
&lt;br /&gt;
No, I'm not talking about the void; here, there is absolutely no image at all.  It seems to be the same as the experience that an anonymous user posted above 2 or 3 years ago:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ &amp;lt;code&amp;gt;''(Comment was unsigned; &amp;lt;nowiki&amp;gt;{{unsigned}}&amp;lt;/nowiki&amp;gt; template identifies poster as [[Special:Contributions/173.245.53.215|173.245.53.215]])''&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Now, every time I tried on my computer, the browser said that the page was trying to load unsafe scripts.  Maybe this is somehow linked to the fact that within the past few months, Randall (or more likely Davean) made all xkcd links secure (&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;), and the secure nature of the page is blocking the location- and browser-sensing scripts in the comic itself.  However, the comic still didn't work when I opted to &amp;quot;Load Unsafe Scripts&amp;quot;, so maybe it isn't that simple.&lt;br /&gt;
&lt;br /&gt;
Also, it might be helpful to note that [[User:Seipas|Seipas]] posted on here that he was having an issue that is probably quite similar to this one:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Anyway, with all that said, is there anyone else who is having this issue and/or knows what might be causing it?&lt;br /&gt;
&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 23:48, 12 April 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=138672</id>
		<title>1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=138672"/>
				<updated>2017-04-13T00:00:39Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Trivia */ Here's an easier way to prevent the double brackets around &amp;quot;Two people...&amp;quot; from turning into wiki links.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1037&lt;br /&gt;
| date      = April 1, 2012&lt;br /&gt;
| title     = Umwelt&lt;br /&gt;
| image     = umwelt_the_void.jpg&lt;br /&gt;
| titletext = Umwelt is the idea that because their senses pick up on different things, different animals in the same ecosystem actually live in very different worlds. Everything about you shapes the world you inhabit--from your ideology to your glasses prescription to your web browser.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;toclimit-3&amp;quot; style=&amp;quot;float:right; margin-left: 10px;&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
{{incomplete|Some missing explanations. Maybe add titletexts?}}&lt;br /&gt;
An {{w|Umwelt}}, as the title text explains, is the idea that one's entire way of thinking is dependent on their surroundings. Thus, this {{w|April Fools}} comic changes based on the browser, location, or referrer. Thus, what the viewer is viewing the comic on, where they live, or where they came from determines which comic they actually see. As a result, there are actually multiple comics that went up on April Fools' Day, although only one is seen.&lt;br /&gt;
(Fun Fact: the German word &amp;quot;Umwelt&amp;quot; does not mean anything vaguely similar; it translates in all contexts almost exactly as &amp;quot;environment&amp;quot;.)&lt;br /&gt;
&lt;br /&gt;
Information about how the wide variety of data was collected and credit for the viewers who contributed can be found [http://www.reddit.com/r/xkcd/comments/rnst4/april_fools_xkcd_changing_comic/ here].&lt;br /&gt;
&lt;br /&gt;
This comic was released on April 1 even though that was [[:Category:Sunday comics|a Sunday]] (only the third comic to be released on a Sunday). But it was only due to the April Fool joke, as it did replace the comic that would have been scheduled for Monday, April 2. The next comic was first released on Wednesday, April 4.&lt;br /&gt;
&lt;br /&gt;
===The Void===&lt;br /&gt;
[[File:umwelt the void.jpg]]&lt;br /&gt;
&lt;br /&gt;
If the device or browser you are using does not support Javascript, you will simply see a static image of a white swirl on a dark background.&lt;br /&gt;
&lt;br /&gt;
Possible reference to The Ring (http://imgur.com/wlGmm), as though to suggest that using an alternative browser is dismal and horrific.&lt;br /&gt;
&lt;br /&gt;
Davean (xkcd's sysadmin): &amp;quot;[This] comic isn't available everywhere and it can come up i[n] some situation[s] only for recognized browsers.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Browser: Alternative Browser&lt;br /&gt;
&lt;br /&gt;
===Aurora===&lt;br /&gt;
[[File:umwelt aurora.png]]&lt;br /&gt;
&lt;br /&gt;
One could interpret that since Megan didn't go out and therefore missed seeing the {{w|Aurora}} (norther lights), Cueball in his [[1350:_Lorenz#Knit_Cap_Girl|knit cap]] lied about it. That way, she wouldn't have felt sad that she missed out. Another interpretation could be that he decides that since she did not even bother to go outside to see such a spectacular sight he will not tell her about it. And yet another could be that he did not think it was interesting.&lt;br /&gt;
&lt;br /&gt;
Cueball could possibly also be red-green colorblind, seeing the green aurorae as grey &amp;quot;clouds&amp;quot;, serving as an example for the theme of the comic, as a non-colorblind person and a colorblind person seeing the same color would perceive it differently, one seeing it as its true color, and the other seeing it without the shade of color they cannot see.&lt;br /&gt;
&lt;br /&gt;
This image changed based on the size of the browser window including different panels at different sizes.&lt;br /&gt;
&lt;br /&gt;
Locations: Canada, Boston, Maine, New York, Ohio, Oregon, Texas, Minnesota, Norway, Denmark, France, Rhode Island (not sure if mobile only or not.) (also in virginia, but using ohio in the first panel)&lt;br /&gt;
&lt;br /&gt;
In [[1302: Year in Review]] another Megan (for sure) has a completely different approach to the chance of seeing northern lights, as that was the only event she was looking forward to in 2013, and it failed.&lt;br /&gt;
&lt;br /&gt;
===Snake===&lt;br /&gt;
[[File:umwelt snake composite 1024.png]]&lt;br /&gt;
[[:File:umwelt snake composite.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
The joke here is the extreme length of snakes. The world's longest snake is the python, the longest ever being 33 feet or approx. 10 meters. The blue and orange circles refer to the hit game {{w|Portal}}.&lt;br /&gt;
There is also a reference to the book &amp;quot;The Little Prince&amp;quot; in the second panel.&lt;br /&gt;
&lt;br /&gt;
Also, the number and content of the panels changes depending on the size of your browser window.&lt;br /&gt;
&lt;br /&gt;
This image changed based on the size of the browser window including different panels at different sizes.&lt;br /&gt;
&lt;br /&gt;
Specific AltText for this image: Umwelt is the idea that because their senses pick up on different things, different animals in the same ecosystem actually live in very different worlds. Everything about you shapes the world you inhabit -from your ideology to your glasses prescription to your browser window size.&lt;br /&gt;
&lt;br /&gt;
Location: Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS, Chrome version 49.0.2623.112), Connecticut (Safari for iOS), Virginia (on Chrome), Michigan (Firefox v46.0.1).&lt;br /&gt;
&lt;br /&gt;
===Black Hat===&lt;br /&gt;
[[File:umwelt tortoise 1024.png]]&lt;br /&gt;
[[:File:umwelt tortoise.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
Cueball as an analyst attempts to psychoanalyze [[Black Hat|Black Hat's]] [[72: Classhole|classhole]] tendencies. Cueball's quote and the whole setup is a direct reference to the movie {{w|Blade Runner}} (1982) and Black Hat is taking the Voight-Kampff test which is used to identify replicants from real humans.&lt;br /&gt;
&lt;br /&gt;
Black Hat's reason for not helping the tortoise is that ''it ''''knows''' what it did'' and thus in Black Hat's world view it deserves being turned over. The final part of the joke is that when zooming out it turns out that there is a tortoise behind Black Hat and he has actually already turned it over for what it did.&lt;br /&gt;
&lt;br /&gt;
Location: Seems to appear mostly in &amp;quot;other countries&amp;quot; — those without location-specific comics.&lt;br /&gt;
&lt;br /&gt;
===Too Quiet===&lt;br /&gt;
[[File:umwelt too quiet 1024.png]]&lt;br /&gt;
[[:File:umwelt too quiet.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
A reference to {{w|Jurassic Park (film)|Jurassic Park}} which has been [[87: Velociraptors|constantly]] [[135: Substitute|referred]] [[1110: Click and Drag|to]] [[155: Search History|before]] [[758: Raptor Fences|in]] this comic.&lt;br /&gt;
&lt;br /&gt;
Also referencing the film {{w|2 Fast 2 Furious|2 Fast 2 Furious}}, an entertaining, yet intellectually unprovoking sequel in a popular film franchise, which is aimed at teenagers and young adults, prompting the blunt response from the stickman. The fact that Steve would use such a cliché {{w|2000s (decade)|noughties}} movie term in such an intense moment, and the subsequent curse, is the joke in this comic.&lt;br /&gt;
&lt;br /&gt;
Location: short version — iPhone 5c Safari browser in Texas, iPhone 5 Chrome Browser in Minnesota, long version - Google Chrome browser in Indiana, Windows 8 Laptop&lt;br /&gt;
&lt;br /&gt;
===Pond===&lt;br /&gt;
[[File:umwelt pond mobile.png]][[File:umwelt pond wide.png]]&lt;br /&gt;
&lt;br /&gt;
Two different versions showed, the narrower version for mobile devices.&lt;br /&gt;
&lt;br /&gt;
Location: The Netherlands and various other countries.&lt;br /&gt;
&lt;br /&gt;
===Galaxies===&lt;br /&gt;
[[File:umwelt galaxies 1024.jpg]]&lt;br /&gt;
[[:File:umwelt galaxies.jpg|Full size]]&lt;br /&gt;
&lt;br /&gt;
Megan is distracted from her conversation with [[Cueball]] by realizing that the space behind his head, from her vantage point, contains millions of galaxies. This is similar to an [http://nssdc.gsfc.nasa.gov/image/astro/hst_deep_field.jpg incredible photograph] taken by the Hubble Telescope, in which a tiny dark area of space in fact contained numerous galaxies.&lt;br /&gt;
&lt;br /&gt;
The title text is an imaginative leap from this scenario: that the galaxies would be up to no good once Cueball is turned away from them.  This is presumably a reference to [http://www.mariowiki.com/boo Boo], an enemy from certain Mario games who moves toward Mario only when Mario is facing away from Boo.&lt;br /&gt;
&lt;br /&gt;
This comic was only reported once... the intended environmental context is a mystery.&lt;br /&gt;
&lt;br /&gt;
Location: unknown&lt;br /&gt;
&lt;br /&gt;
===xkcd Gold===&lt;br /&gt;
[[File:umwelt xkcd gold.png]]&lt;br /&gt;
&lt;br /&gt;
This is probably a reference to the 4chan Gold Account, an implementation on 4chan that does not actually exist, and is usually used to trick newcomers into revealing their credit card numbers. The joke is that &amp;quot;Gold Account&amp;quot; users can supposedly block other users from viewing images they have posted. The fifth panel is probably a reference to Beecock, a notorious set of shocker images. 4chan's moderators have been known to give out &amp;quot;beecock bans&amp;quot; or &amp;quot;/z/ bans&amp;quot; to particularly annoying users, which redirect the user to a page containing beecock and the text &amp;quot;OH NO THE BOARD IS GONE&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Referrer: 4chan&lt;br /&gt;
&lt;br /&gt;
===Yo Mama===&lt;br /&gt;
[[File:umwelt dog ballast.png]]&lt;br /&gt;
&lt;br /&gt;
Possible reference to Kurt Vonnegut Jr.'s &amp;quot;{{w|Harrison Bergeron}}.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Possibly a veiled criticism of Facebook. This could be slightly rewritten as: &amp;quot;This comic takes place in a dystopian future where the government is afraid of dissent, so it tracks everyone at all times, and some people privately doubt the government, but not enough to stop submitting information to Facebook. But that dystopian future is now.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Referrer: Facebook&lt;br /&gt;
&lt;br /&gt;
===Reddit===&lt;br /&gt;
[[File:umwelt reddit.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to referencing, because Reddit, as a referring site, likes references to its referencing in its references.&lt;br /&gt;
&lt;br /&gt;
This comic also features recursive imagery similar to [[688: Self-Description|Self Description]] where the second panel embeds the entire comic within itself.&lt;br /&gt;
&lt;br /&gt;
Referrer: Reddit&lt;br /&gt;
&lt;br /&gt;
===Buns and Hot dogs===&lt;br /&gt;
[[File:umwelt somethingawful.jpg]]&lt;br /&gt;
&lt;br /&gt;
This is a reference to the question &amp;quot;Why do hot dogs come in packages of 6 while buns come in packages of 8?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Referrer: SomethingAwful, Questionable Content, &amp;amp; MetaFilter&lt;br /&gt;
&lt;br /&gt;
===Twitter===&lt;br /&gt;
[[File:umwelt twitter.jpg]]&lt;br /&gt;
&lt;br /&gt;
A summary of the content &amp;quot;typically&amp;quot; found on Twitter.&lt;br /&gt;
&lt;br /&gt;
In the tweet feed, there are three tweets about some podcast on the top, followed by the tweet containing link they clicked on to get to the comic, tweets about Rob Delaney, unspecified passive-aggressive tweets, and a tweet from [http://en.wikipedia.org/wiki/Horse_ebooks Horse Ebooks] retweeted by one of the users the reader follows.&lt;br /&gt;
&lt;br /&gt;
On the left, the topmost dialog, with profile information, shows that the user has posted 1,302 tweets, but only follows 171 people and has even fewer followers, at a measly 48. This is marked with a sad face, implying that the user wants more followers.&lt;br /&gt;
&lt;br /&gt;
Below that is the &amp;quot;who to follow&amp;quot; dialog, which is written up as consisting of &amp;quot;assholes&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Below that is the &amp;quot;trending tags&amp;quot; dialog for the United States. It is full of tags about word games, tags about misogyny, and tags about Justin Bieber.&lt;br /&gt;
&lt;br /&gt;
Below that is an unidentified dialog full of &amp;quot;stuff your eyes automatically ignore&amp;quot;. And finally, on the bottom is the background colour, which is &amp;quot;a really pleasant blue&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Referrer: Twitter&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
[[File:umwelt wikipedia wide.jpg]]&lt;br /&gt;
[[File:umwelt wikipedia mobile.png]]&lt;br /&gt;
&lt;br /&gt;
The term {{w|Mile High Club}} (or MHC) is a slang term applied collectively to individuals who have had sexual intercourse while on board of an aircraft. Randall says that reading the news articles on it has distracted him from making that comic.&lt;br /&gt;
&lt;br /&gt;
Two different versions shown, the narrower version (the single panel with all the text) for mobile devices.&lt;br /&gt;
&lt;br /&gt;
Referrer: Wikipedia&lt;br /&gt;
&lt;br /&gt;
===Google Chrome===&lt;br /&gt;
[[File:umwelt chrome1.jpg]]&lt;br /&gt;
&lt;br /&gt;
{{w|Sergey Brin}} (born August 21, 1973) is an American computer scientist and Internet entrepreneur who, with Larry Page, co-founded Google, one of the most profitable Internet companies. As of 2013, his personal wealth was estimated to be $24.4 billion. Randall makes the joke that as the founder of Google, Brin's permission would be needed to use Google Chrome. Because there are millions of people who use Google, it is likely that at least some of the time Brin would be asleep, thus he would need to be woken.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome&lt;br /&gt;
&lt;br /&gt;
===Chrome/Firefox===&lt;br /&gt;
[[File:umwelt chrome2.png]]&lt;br /&gt;
&lt;br /&gt;
Mozilla {{w|Firefox}} is a free and open-source web browser developed for Windows, OS X, and Linux, with a mobile version for Android and iOS, by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Cueball is complaining about {{w|Google Chrome}}, to which [[Ponytail]] replies that there is an {{w|add-on}} that fixes what he is complaining about. When questioned, she replies that the add-on is Firefox, which isn't an add-on at all and is instead a different browser.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome&lt;br /&gt;
&lt;br /&gt;
===Google Chrome-2===&lt;br /&gt;
[[File:umwelt chrome3.png]]&lt;br /&gt;
&lt;br /&gt;
This panel references Google Chrome's error screen, which shows a puzzle piece. The comic humorously implies that Chrome is looking for that piece. When completing jigsaw puzzles, a common strategy is to figure out where the pieces must be from their geometry rather than from the picture they create. In this case, the text suggests that Chrome believes the puzzle piece connects to the pieces which form one of the corners of the puzzle, which may seem impossible because any piece that links up to a corner would usually have at least one flat edge, which this piece has none. However, more complicated puzzles have complex shapes and are not always simply approximate squares with tabs and blanks.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome or silk on desktop view&lt;br /&gt;
&lt;br /&gt;
===Mozilla Firefox Private Browsing===&lt;br /&gt;
[[File:umwelt firefox incognito.png]]&lt;br /&gt;
&lt;br /&gt;
Another reference to crashing web browsers.&lt;br /&gt;
&lt;br /&gt;
Browser: Firefox (Incognito only?)&lt;br /&gt;
&lt;br /&gt;
===Internet Explorer===&lt;br /&gt;
[[File:umwelt ie.png]]&lt;br /&gt;
&lt;br /&gt;
Yet another reference to crashing web browsers&lt;br /&gt;
&lt;br /&gt;
Browser: Internet Explorer&lt;br /&gt;
&lt;br /&gt;
===Maxthon===&lt;br /&gt;
[[File:umwelt maxthon.png]]&lt;br /&gt;
&lt;br /&gt;
Browser: Maxthon&lt;br /&gt;
&lt;br /&gt;
===Netscape Navigator===&lt;br /&gt;
[[File:umwelt netscape womanoctopus.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt netscape man.png]]&lt;br /&gt;
&lt;br /&gt;
{{w|Netscape Navigator}} was a web browser popular in the 1990s.&lt;br /&gt;
&lt;br /&gt;
Browser: Netscape&lt;br /&gt;
&lt;br /&gt;
===Rockmelt===&lt;br /&gt;
[[File:umwelt rockmelt.png]]&lt;br /&gt;
&lt;br /&gt;
{{w|Rockmelt}} is a social-media-based browser.&lt;br /&gt;
&lt;br /&gt;
Reference to the gospel song {{w|Longing for Old Virginia: Their Complete Victor Recordings (1934)|&amp;quot;There's no hiding place down here&amp;quot; by The Carter Family}}, later covered by Stephen Stills.&lt;br /&gt;
&lt;br /&gt;
:I run to the rock just to hide my face&lt;br /&gt;
:And the rocks cried out, no hiding place&lt;br /&gt;
:There's no hiding place down here&lt;br /&gt;
&lt;br /&gt;
It may additionally be a reference to the ''Babylon 5'' episode &amp;quot;And the Rock Cried Out, No Hiding Place,&amp;quot; which featured the song.&lt;br /&gt;
&lt;br /&gt;
Browser: Rockmelt&lt;br /&gt;
&lt;br /&gt;
===Plugin Disabled===&lt;br /&gt;
[[File:umwelt plugin disabled.png]]&lt;br /&gt;
&lt;br /&gt;
When the Google Chrome web browser does not have the required software (called a plug-in) to display a web page's content, it displays a puzzle piece icon and an error message. In this case, Chrome informs the user that the content is impossible to display. &lt;br /&gt;
&lt;br /&gt;
Browser: Plugin (?) Disabled, Safari Desktop&lt;br /&gt;
&lt;br /&gt;
===Corporate Networks===&lt;br /&gt;
[[File:umwelt corporate general.png]]&lt;br /&gt;
[[File:umwelt corporate amazon chrome.png]]&lt;br /&gt;
[[File:umwelt corporate amazon firefox.png]]&lt;br /&gt;
[[File:umwelt corporate amazon other.png]]&lt;br /&gt;
[[File:umwelt corporate google chrome.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft chrome.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft firefox.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft other.png]]&lt;br /&gt;
[[File:umwelt corporate nytimes chrome.png]]&lt;br /&gt;
[[File:umwelt corporate nytimes other.png]]&lt;br /&gt;
&lt;br /&gt;
These error messages appear if the user is on a network owned by one of the corporations noted. The error message includes a warning against speaking on the company's behalf.&lt;br /&gt;
&lt;br /&gt;
ISP: Corporate networks of Amazon, Google, Microsoft, NY Times&lt;br /&gt;
&lt;br /&gt;
===Military===&lt;br /&gt;
[[File:umwelt military.png]]&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] assumes that anyone using a military network has an important job like watching for incoming missiles. He includes a thank-you to the user for their military service.&lt;br /&gt;
&lt;br /&gt;
ISP: Military networks&lt;br /&gt;
&lt;br /&gt;
===T-Mobile===&lt;br /&gt;
[[File:umwelt tmobile.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to T-Mobile's distinguishing feature (at the time it was written) of weaker coverage, in relation to other major providers.&lt;br /&gt;
&lt;br /&gt;
ISP: T-Mobile&lt;br /&gt;
&lt;br /&gt;
===Verizon and AT&amp;amp;T===&lt;br /&gt;
[[File:umwelt verizon.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt att.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to Verizon and AT&amp;amp;T's scandals/controversy regarding implementation of bandwidth caps.&lt;br /&gt;
&lt;br /&gt;
ISP: Verizon and AT&amp;amp;T&lt;br /&gt;
&lt;br /&gt;
===France===&lt;br /&gt;
[[File:umwelt france.jpg]]&lt;br /&gt;
&lt;br /&gt;
A common joke about France is that the nation does not win wars. This originated from France's annexation by Germany during World War II, and America's late entry into the war, which is sometimes portrayed humorously as a case of America 'saving' Europe, in this joke particularly France (the role of the French resistance is usually not mentioned), leading to a common American joke at the expense of France's military prowess [http://www.albinoblacksheep.com/text/victories.html][http://politicalhumor.about.com/library/images/blpic-frenchmilitaryvictories.htm][http://politicalhumor.about.com/library/jokes/bljokefrenchmilitaryhistory.htm]. When France did not form part of the coalition that invaded Iraq in 2003, aligning with the many countries that condemned U.S. action, the joke was revived. &lt;br /&gt;
&lt;br /&gt;
A Google search of &amp;quot;French Military Victories&amp;quot; + 'I'm feeling lucky' used to direct to &amp;quot;did you mean: french military defeats&amp;quot; (due to a {{w|Google bomb}}). Cueball is trying to show this to his friend, who is French. However, his joke backfires, as his friends immediately points out that the stereotype of France not having military victories is undercut by the fact that one of the most innovative military commanders in history, Napoleon, was French, and in fact conquered much of Europe.&lt;br /&gt;
&lt;br /&gt;
The last line of the comic further implies that Cueball is not as smart as he thinks he is in regards to anything French, as he mispronounces the French loan word &amp;quot;touche&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Locations: France &amp;amp; Quebec&lt;br /&gt;
&lt;br /&gt;
===Germany===&lt;br /&gt;
[[File:umwelt germany.png]]&lt;br /&gt;
&lt;br /&gt;
This comic references the {{w|Berlin airlift#The start of the Berlin Airlift|Berlin Airlift}}, a relief measure for citizens in West Berlin (surrounded by East Germany) instituted by the Western Allies after World War II. In reality, the Western Allies flew a grand total of 500,000 tons of food over the Soviet blockade in planes. Randall puts a twist on this event by making it more fun: dropping supplies from a grand chairlift. The play on words is that &amp;quot;chairlift&amp;quot; rhymes with &amp;quot;airlift&amp;quot; and thus makes an easy substitution. The chair force is also a name that other service branches use to make fun of the air force.&lt;br /&gt;
&lt;br /&gt;
Location: Germany&lt;br /&gt;
&lt;br /&gt;
===Israel===&lt;br /&gt;
[[File:umwelt israel.png]]&lt;br /&gt;
&lt;br /&gt;
Transcript:&lt;br /&gt;
&lt;br /&gt;
בחורה: אמא, פגשתי בחור נהדר! אבל הוא לא יהודי.‏&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
רגע, מה את אומרת, &amp;quot;גם אנחנו לא&amp;quot;?‏&lt;br /&gt;
&lt;br /&gt;
אני לגמרי מבולבלת.‏&lt;br /&gt;
&lt;br /&gt;
(Translation from Hebrew)&lt;br /&gt;
&lt;br /&gt;
Person: Mom, I met a great guy! But he's not Jewish. ...Wait, what do you mean &amp;quot;neither are we&amp;quot;? I'm completely confused.&lt;br /&gt;
&lt;br /&gt;
A reference to the multiple use of the word Jewish to denote both a religious group and a nationality/ethnicity.&lt;br /&gt;
&lt;br /&gt;
Location: Israel&lt;br /&gt;
&lt;br /&gt;
===Carnot Cycle===&lt;br /&gt;
[[File:umwelt japan.png]]&lt;br /&gt;
&lt;br /&gt;
A pun on &amp;quot;cycle&amp;quot;; a &amp;quot;{{w|Carnot cycle}}&amp;quot; is a thermodynamic cycle (e.g. refrigeration). Its efficiency depends on the temperature of the hot and cold 'reservoirs' in which it is operating.  The icon on the side of the motorcycle resembles a [http://en.wikipedia.org/wiki/File:Carnot_cycle_p-V_diagram.svg graph of the Carnot cycle.]&lt;br /&gt;
&lt;br /&gt;
Location: Japan&lt;br /&gt;
&lt;br /&gt;
===UK===&lt;br /&gt;
[[File:umwelt uk.jpg]]&lt;br /&gt;
&lt;br /&gt;
He worded this as though to imply that the UK is a state of the U.S., and an unimportant one at that, which pokes fun at the UK, creating a paradox (sort of).&lt;br /&gt;
&lt;br /&gt;
Location: UK&lt;br /&gt;
&lt;br /&gt;
===Blizzard===&lt;br /&gt;
[[File:umwelt disasters blizzard.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or blizzards are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in, the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: Alabama, Boston, Chicago, Dallas, Georgia, Halifax, Illinois, Michigan, Minnesota, Missouri, the Northeast, Ohio, Oklahoma, Ottawa, Pennsylvania, Philadelphia, Texas, Toronto, Tennessee, New York, Wisconsin&lt;br /&gt;
&lt;br /&gt;
===Tornado===&lt;br /&gt;
[[File:umwelt disasters tornado.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or tornadoes are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: Alabama, Dallas, Illinois, Georgia, The Midwest, Missouri, Ohio, Oklahoma, Ottawa, Tennessee, Texas (and Virginia, but it used Ohio in the third panel)&lt;br /&gt;
&lt;br /&gt;
Tornadoes are a [[:Category:Tornadoes|recurring subject]] on xkcd. The picture used in [[1754: Tornado Safety Tips]] reminds a lot of the one from this version of Umvelt. [[Category:Tornadoes]]&lt;br /&gt;
&lt;br /&gt;
===Hurricane===&lt;br /&gt;
[[File:umwelt disasters hurricane.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or hurricanes are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: D.C, Florida, Georgia, Houston, Miami, New Jersey, North Carolina, South Carolina, Virginia&lt;br /&gt;
&lt;br /&gt;
===Lake Diver Killer===&lt;br /&gt;
[[File:umwelt lake diver.png]]&lt;br /&gt;
&lt;br /&gt;
This comic shows a news reporter standing in front of a lake. She is reporting on a serial killer who targets divers. As more divers are sent in to investigate and/or search for bodies, more divers go missing and are presumably murdered. &lt;br /&gt;
&lt;br /&gt;
Location: Bay Areas, Metro Detroit, Vermont showed an image specifically referencing Lake Champlain&lt;br /&gt;
&lt;br /&gt;
===Lincoln Memorial===&lt;br /&gt;
[[File:umwelt lincoln memorial.png]]&lt;br /&gt;
&lt;br /&gt;
Locations: Illinois &amp;amp; Washington D.C.&lt;br /&gt;
&lt;br /&gt;
===Helicopter Hunting===&lt;br /&gt;
[[File:umwelt helicoptor.png]]&lt;br /&gt;
&lt;br /&gt;
In Alaska, governments and individuals have {{w|Wolf hunting#North America 2|shot wolves en masse from helicopters}} in an attempt to artificially inflate populations of game, such as moose and caribou, to make hunting them easier. This is opposed by many, as the game populations are not endangered (thus, this threatens ecological balance); wolves are a small threat to livestock in North America; most of the wolf body —including meat and bones— goes wasted as they are sought mainly for their pelts.&lt;br /&gt;
&lt;br /&gt;
Location: Alaska&lt;br /&gt;
&lt;br /&gt;
===Newspaper===&lt;br /&gt;
[[File:umwelt life scientists.png]][[File:umwelt life rit.png]][[File:umwelt life umass.png]]&lt;br /&gt;
&lt;br /&gt;
Creating new life has long been a well understood process, in a lab or otherwise.&lt;br /&gt;
&lt;br /&gt;
Location: Various&lt;br /&gt;
&lt;br /&gt;
Specific versions appeared for RIT and UMass Amherst&lt;br /&gt;
&lt;br /&gt;
===Robot Paul Revere===&lt;br /&gt;
[[File:umwelt paul revere.png]]&lt;br /&gt;
&lt;br /&gt;
Combination of the legend of {{w|Paul Revere#&amp;quot;Midnight Ride&amp;quot;|Paul Revere}} and computer binary.&lt;br /&gt;
&lt;br /&gt;
Location: Boston&lt;br /&gt;
&lt;br /&gt;
===Counting Cards===&lt;br /&gt;
&amp;lt;!-- card counting explanation needed. --&amp;gt;&lt;br /&gt;
All four colleges in this series are in Massachusetts and, being similar, in pairs, rival each other to some extent (Harvard-MIT, and Smith-Wellesley). The comic contains a reference to the {{w|MIT Blackjack Team}}, which entered popular culture via the {{w|21 (2008 film)|film 21}}, and a possible reference to Orwell's book '1984' and/or {{w|Chain of Command (Star Trek: The Next Generation)|popular homage to it via Star Trek}}: &amp;quot;There are four lights.&amp;quot;[http://www.youtube.com/watch?v=ChYIm6MW39k]&lt;br /&gt;
&lt;br /&gt;
Bonus: The thought-gears in panel 3 are spinning against each other.&lt;br /&gt;
&lt;br /&gt;
Location: Harvard&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards harvard.png]]&lt;br /&gt;
&lt;br /&gt;
Location: MIT&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards mit.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Course 15s&amp;quot; at MIT are the business major students, often mocked for taking a less-rigorous program.&lt;br /&gt;
&lt;br /&gt;
Location: Smith&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards smith.png]]&lt;br /&gt;
&lt;br /&gt;
Location: Wellesley&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards wellesley.png]]&lt;br /&gt;
&lt;br /&gt;
Both Wellesley and Smith are all-women colleges in Massachusetts.&lt;br /&gt;
&lt;br /&gt;
===Giant Box Trap===&lt;br /&gt;
[[File:umwelt box trap.png]]&lt;br /&gt;
&lt;br /&gt;
Randall got his undergrad in Physics at the {{w|Christopher Newport University}}, and was scheduled to return shortly to give a talk.&lt;br /&gt;
&lt;br /&gt;
Location: Christopher Newport University&lt;br /&gt;
&lt;br /&gt;
===Chemo Support===&lt;br /&gt;
[[File:umwelt chemo.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] has shaved his head in support of people going through {{w|chemotherapy}} but, as he is always depicted as a stick figure with no hair, no one can tell.&lt;br /&gt;
&lt;br /&gt;
Randall's now-wife was diagnosed with breast cancer, and apparently DFCI is where they've been spending much of their time.&lt;br /&gt;
&lt;br /&gt;
Location: Dana-Farber Cancer Institute&lt;br /&gt;
&lt;br /&gt;
===Reviews===&lt;br /&gt;
[[File:reviews.png]]&lt;br /&gt;
&lt;br /&gt;
The previous strip appears twice when using [[wikipedia:Tor (anonymity network)|Tor]].&lt;br /&gt;
&lt;br /&gt;
Browser: Any using Tor, xkcd API (JSON, RSS, Atom), w3m, and reports of seeing it on a Kindle Fire HD&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Note to courageous readers- The transcript has been reordered in the order in which the comics appear in the picture and appropriate names have been given.]&lt;br /&gt;
&lt;br /&gt;
:'''The Void'''&lt;br /&gt;
:[An epic void with a bright light shining right on you.]&lt;br /&gt;
&lt;br /&gt;
:'''Aurora'''&lt;br /&gt;
:[Cueball heading out past Megan comfortably sitting in front of a desk.]&lt;br /&gt;
:Cueball: Apparently there's a solar flare that's causing some Great Aurorae. CBC says they may even be visible here! Wanna drive out to see?&lt;br /&gt;
:Megan: Hockey's on.&lt;br /&gt;
:Cueball: Ok. Later.&lt;br /&gt;
&lt;br /&gt;
:[An expansive, marvelous image of emerald green northern lights, floating down through the sky.]&lt;br /&gt;
&lt;br /&gt;
:Megan: See anything?&lt;br /&gt;
:Cueball: No, just clouds.&lt;br /&gt;
:Megan: Not surprised.&lt;br /&gt;
&lt;br /&gt;
:'''Aurora-US'''&lt;br /&gt;
:[Cueball heading out past Megan comfortably sitting in front of a desk.]&lt;br /&gt;
:Cueball: Apparently there's a solar storm causing northern lights over Canada. CNN say they might even be visible {Options: &amp;quot;As Far South As Us&amp;quot;, &amp;quot;Here in Boston&amp;quot;, &amp;quot;Maine&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oregon&amp;quot;, &amp;quot;New York&amp;quot;}! Wanna drive out to see?&lt;br /&gt;
:Megan: It's cold out.&lt;br /&gt;
:Cueball: Ok. Later.&lt;br /&gt;
&lt;br /&gt;
:[An expansive, marvelous image of emerald green northern lights, floating down through the sky.]&lt;br /&gt;
&lt;br /&gt;
:Megan: See anything?&lt;br /&gt;
:Cueball: No, just clouds.&lt;br /&gt;
:Megan: Not surprised.&lt;br /&gt;
&lt;br /&gt;
:'''Snake'''&lt;br /&gt;
:[Two people standing next to each other. Megan is holding the head end of a snake. Depending on the width of your browser, the snake is: three frames, the third of which  has a little bit of a bump; the first frame has a human-size bump, the second has a third person looking at the snake, and the third has the snake going though two Portals; a squirrel and the human-size bump in the first frame, a ring next to the third person in the second frame, and Beret Guy riding the snake in front of the portal; or The squirrel, a fourth person within the snake being coiled, and the human bump in the first frame, the ring, a fifth person in love, and the third person in the second frame, Beret Guy and the portal in the third frame, and the same two people in the fourth frame.]&lt;br /&gt;
&lt;br /&gt;
:Megan: I found a snake, but then I forgot to stop.&lt;br /&gt;
&lt;br /&gt;
:'''Black hat'''&lt;br /&gt;
:[Two people sitting at a desk. One is Black Hat. The other is an analyst. Black Hat has a number of terminals attached to his head.]&lt;br /&gt;
:Analyst: You come across a tortoise in the desert. You flip it over. It struggles to right itself. You watch. You're not helping. Why is that?&lt;br /&gt;
&lt;br /&gt;
:Black Hat: It '''knows''' what it did.&lt;br /&gt;
&lt;br /&gt;
:[View of the entire scene, with said turtle off in the distance on its back and trying to right itself.]&lt;br /&gt;
&lt;br /&gt;
:'''Too quiet'''&lt;br /&gt;
:[A group of four scale down a wall into a field in the middle of the night. They walk off single-file.]&lt;br /&gt;
:Person 1: It's quiet.&lt;br /&gt;
&lt;br /&gt;
:Person 3: Yeah - *Too* quiet.&lt;br /&gt;
&lt;br /&gt;
:[A Velociraptor is off in the distance, following the group.]&lt;br /&gt;
:Person 4: Yeah - too *too* quiet.&lt;br /&gt;
&lt;br /&gt;
:Person 2: Yeah - 2quiet2furious.&lt;br /&gt;
:Person 1: Fuck off, Steve.&lt;br /&gt;
&lt;br /&gt;
:'''Pond'''&lt;br /&gt;
:[A landscape showing a pond, some reeds, and a set of mountains off in the distance.]&lt;br /&gt;
&lt;br /&gt;
:'''Galaxies'''&lt;br /&gt;
:[A trio of galaxies.]&lt;br /&gt;
:Galaxy 1: He's not looking!&lt;br /&gt;
:Galaxy 3: Let's get him!&lt;br /&gt;
:[Lines draw in illustrating the eye-line of one of a pair of people.]&lt;br /&gt;
:Cueball: So he said he didn't get the text, but c'mon, he *never* misses texts. Right? ..hello?&lt;br /&gt;
:Megan: I'm just staring at your head freaked out by the fact that there are millions of galaxies *directly behind it*.&lt;br /&gt;
&lt;br /&gt;
:'''xkcd Gold'''&lt;br /&gt;
:[Cueball holding bat.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: Sorry, but this comic&lt;br /&gt;
&lt;br /&gt;
:[Cueball starts to wind up.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: requires&lt;br /&gt;
&lt;br /&gt;
:[Cueball prepares to strike with bat.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: XKCD&lt;br /&gt;
&lt;br /&gt;
:[Cueball swings at a beehive.]&lt;br /&gt;
:GOLD&lt;br /&gt;
&lt;br /&gt;
:[Penis Bees fly out of the beehive.]&lt;br /&gt;
&lt;br /&gt;
:'''Yo mamma'''&lt;br /&gt;
:[Cueball yells at a friend.]&lt;br /&gt;
:Cueball: Oh yeah? Well you mama's so ''cynical'', her only dog ballast is a ''leash''!&lt;br /&gt;
:(This comic takes place in a dystopian future where the government is afraid dogs can hover, so it requires them to wear weights at all times, and some people privately doubt the government, but not enough to stop buying dog weights.)&lt;br /&gt;
&lt;br /&gt;
:'''Reddit'''&lt;br /&gt;
:Five seconds ago:&lt;br /&gt;
:[You sitting in front of a desk, reading a reddit thread.]&lt;br /&gt;
:You: Oh, hey, reddit has a link to some XKCD april fools comic.&lt;br /&gt;
&lt;br /&gt;
:Now: [An image of the xkcd comic page.]&lt;br /&gt;
:Five seconds from now:&lt;br /&gt;
&lt;br /&gt;
:You: ..hey&lt;br /&gt;
&lt;br /&gt;
:30 seconds from now:&lt;br /&gt;
:[DANCE PARTY!]&lt;br /&gt;
&lt;br /&gt;
:'''Buns and Hot dogs'''&lt;br /&gt;
:Cueball: What I wanna know is why do hot dogs come in packages of six while buns come in these huge sacks of ash and blood from which &amp;quot;Ave Maria&amp;quot; is faintly audible?&lt;br /&gt;
:[Chanting sacks of gore in the background.]&lt;br /&gt;
&lt;br /&gt;
:'''Twitter'''&lt;br /&gt;
:[A Twitter account page with the following: Many tweets, fewer following, even fewer followers, A bunch of assholes in the suggested follow box, trending topics partitioned into: Word Games, Misogyny, and Bieber, stuff your eyes automatically ignore, A really pleasant blue. and the timeline: Something about a podcast, Someone confused because the description doesn't match the link, The link you clicked on to get to this comic, Rob Delaney, Passive Aggression, and horse ebooks.]&lt;br /&gt;
&lt;br /&gt;
:'''Wikipedia'''&lt;br /&gt;
:[There's no comic here because instead of drawing one, I spent the last hour reading every news story cited in the Wikipedia article on The Mile High Club.]&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome'''&lt;br /&gt;
:[A Chrome plugin error page.]&lt;br /&gt;
:Chrome: This plugin requires Sergey Brin's permission to run. Please wait while he is woken.&lt;br /&gt;
&lt;br /&gt;
:'''Chrome/Firefox'''&lt;br /&gt;
:[Two people; Cueball is sitting at a desk in front of a laptop.]&lt;br /&gt;
:Cueball: Man, chrome's hardware acceleration really sucks.&lt;br /&gt;
:Ponytail: Oh - Theres' a great add-on that fixes it.&lt;br /&gt;
:Cueball: Oh? What's it called?&lt;br /&gt;
:Ponytail: &amp;quot;Firefox&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome-2'''&lt;br /&gt;
:[A Chrome plugin error page with the characteristic jigsaw piece.]&lt;br /&gt;
:Chrome: Chrome is looking for this piece. Have you seen it? Chrome thinks it links up with a corner.&lt;br /&gt;
&lt;br /&gt;
:'''Mozilla Firefox Private Browsing'''&lt;br /&gt;
:[Firefox error page.]&lt;br /&gt;
:Firefox: Well, this is embarrassing. You know how I'm not supposed to peek at your browsing in private mode? Firefox.. is sorry. Firefox will not blame you if you&lt;br /&gt;
:[Button with text.]&lt;br /&gt;
:Click here to report this incident.&lt;br /&gt;
&lt;br /&gt;
:'''Internet Explorer'''&lt;br /&gt;
:[IE error page.]&lt;br /&gt;
:IE: Error: Internet Explorer has given up.&lt;br /&gt;
&lt;br /&gt;
:'''Maxthon'''&lt;br /&gt;
:Cueball: Maxthon? Hey, 2005 called. Didn't say anything. All I could hear was sobbing. This is getting harder. Anyway, yeah, Maxthon's still cool! Didn't know it was still around!&lt;br /&gt;
&lt;br /&gt;
:'''Netscape Navigator'''&lt;br /&gt;
:[Two different versions exist: one with Cueball talking and one with Megan with tentacle arms talking.]&lt;br /&gt;
:Person: Netscape Navigator? Hey, the nineties called - drunk as usual. I hung up without saying anything. This is getting harder. Anyway - it's cool that you'e got netscape running.&lt;br /&gt;
&lt;br /&gt;
:'''Rockmelt'''&lt;br /&gt;
:[Cueball running to laptop.]&lt;br /&gt;
:I ran to Rockmelt to hide my face&lt;br /&gt;
&lt;br /&gt;
:[Cueball sitting at laptop.]&lt;br /&gt;
:But Rockmelt cried out -&lt;br /&gt;
&lt;br /&gt;
:[Laptop shouting.]&lt;br /&gt;
:NO HIDING PLACE&lt;br /&gt;
&lt;br /&gt;
:[zoom out.]&lt;br /&gt;
:NO HIDING PLACE DOWN HERE&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome-3'''&lt;br /&gt;
:[A chrome plugin error page.]&lt;br /&gt;
:Chrome: There does not exist --nor could there '''ever''' exist-- a plugin capable of displaying this content.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/Amazon/The Times/Google - Chrome'''&lt;br /&gt;
:[Chrome error page.]&lt;br /&gt;
:Chrome: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/Amazon/The Times/Google is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/Amazon - Firefox'''&lt;br /&gt;
:[Firefox error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/Amazon is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/The Times'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/The Times is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Corporate - Generic'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, we work as a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Military'''&lt;br /&gt;
:[Person looking at two browser windows.]&lt;br /&gt;
:Cueball: I know y'all know what you're doing. But if you're on a military machine and you're supposed to be watching for missiles or something, I hope you're keeping an eye on that in the background while you're reading comics. Also: Thanks.&lt;br /&gt;
&lt;br /&gt;
:'''T-Mobile'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Data Error: T-Mobile was unable to establish a connection&lt;br /&gt;
&lt;br /&gt;
:'''Verizon'''&lt;br /&gt;
:[Error page]&lt;br /&gt;
:Error: You have exceeded your Verizon monthly bandwidth cap. Mobile web browsing has been disabled.&lt;br /&gt;
&lt;br /&gt;
:'''France'''&lt;br /&gt;
:[Two people; one of which is browsing using a laptop.]&lt;br /&gt;
:Cueball: Hey, you're French, right? Ever see what happens when you type &amp;quot;French Military Victories&amp;quot; into Google?&lt;br /&gt;
:French person: Does it take you to an article on Napoleon?&lt;br /&gt;
&lt;br /&gt;
:French person: ..no? Strange, given how he kicked everyone's asses up and down Europe for over a decade.&lt;br /&gt;
&lt;br /&gt;
:[Beat frame.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: Touche.&lt;br /&gt;
:French person: You know, that'd sound smarter if you didn't pronounce it like it rhymes with &amp;quot;douche&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:'''Germany'''&lt;br /&gt;
:[Cueball dropping food from an unorthodox high perch.]&lt;br /&gt;
:June 1948: In response to the Soviet blockade of East Germany, the western allies construct the Berlin Chairlift.&lt;br /&gt;
:Cueball on chairlift: Food!&lt;br /&gt;
&lt;br /&gt;
:'''Israel'''&lt;br /&gt;
:[Person on phone.]&lt;br /&gt;
:Person (Translation from Hebrew): Mom, I met a great guy! But he's not Jewish. ...Wait, what do you mean &amp;quot;neither are we&amp;quot;? I'm completely confused.&lt;br /&gt;
&lt;br /&gt;
:'''Carnot Cycle'''&lt;br /&gt;
:[Ponytail on a motorcycle with a heat-entropy graph on the side.]&lt;br /&gt;
:Ponytail: Check out my new Carnot Cycle!&lt;br /&gt;
:Cueball: Neat - how fast does it go?&lt;br /&gt;
:Ponytail: Depends how cold it is outside.&lt;br /&gt;
&lt;br /&gt;
:'''Great Britain'''&lt;br /&gt;
:[Illustration of the Atlantic ocean.]&lt;br /&gt;
:American person: Sorry I don't have a comic poking fun at the UK here. I only had time to get to the most ''important'' US states.&lt;br /&gt;
:British person: Hey - At least we have free health care and real ale.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Blizzard'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;Alabama&amp;quot;, &amp;quot;Boston&amp;quot;, &amp;quot;Chicago&amp;quot;, &amp;quot;Dallas&amp;quot;, &amp;quot;Georgia&amp;quot;, &amp;quot;Halifax&amp;quot;, &amp;quot;Illinois&amp;quot;, &amp;quot;Michigan&amp;quot;, &amp;quot;Minnesota&amp;quot;, &amp;quot;Missouri&amp;quot;, &amp;quot;the Northeast&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oklahoma&amp;quot;, &amp;quot;Ottawa&amp;quot;, 'Pennsylvania&amp;quot;, &amp;quot;Philadelphia&amp;quot;, &amp;quot;Texas&amp;quot;, &amp;quot;Toronto&amp;quot;, &amp;quot;Tennessee&amp;quot;, &amp;quot;New York&amp;quot;, &amp;quot;Wisconsin&amp;quot;}! That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
:[Both people are trudging through a massive blizzard.]&lt;br /&gt;
:Danish: In pictures, snow always looked so nice and sof - ''AAAA! MY NECK! How do people live here?!''&lt;br /&gt;
:Cueball: Come on - it's only three more miles.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Tornado'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;Alabama&amp;quot;, &amp;quot;Dallas&amp;quot;, &amp;quot;Illinois&amp;quot;, &amp;quot;The Midwest&amp;quot;, &amp;quot;Missouri&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oklahoma&amp;quot;, &amp;quot;Ottawa&amp;quot;, &amp;quot;Tennessee&amp;quot;, &amp;quot;Texas&amp;quot;}!&lt;br /&gt;
:Cueball: That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
:[Both people are in a shelter in a prairie with a rapidly-approaching tornado.]&lt;br /&gt;
:Danish: AAAA CLOSE THE SHELTER DOOR!&lt;br /&gt;
:Cueball: Say the magic words...&lt;br /&gt;
:Danish: THIS PLACE IS THE WORST!&lt;br /&gt;
:Cueball: Thank you.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Hurricane'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;D.C&amp;quot;, &amp;quot;Florida&amp;quot;, &amp;quot;Houston&amp;quot;, &amp;quot;Miami&amp;quot;, &amp;quot;New Jersey&amp;quot;, &amp;quot;North Carolina&amp;quot;, &amp;quot;South Carolina&amp;quot;, &amp;quot;Virgina&amp;quot;}! That was huge!&lt;br /&gt;
:Cueball: That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
&lt;br /&gt;
:[Both are in the middle of a hurricane. Danish is grabbing onto a signpost to avoid being swept away.]&lt;br /&gt;
:Danish: AAAAA WHAT THE SHIIIIT!&lt;br /&gt;
:Cueball: Calm down - this is barely a category 2.&lt;br /&gt;
&lt;br /&gt;
:'''Lake Diver Killer'''&lt;br /&gt;
:[TV Field Reporter in front of a cordoned-off lake.]&lt;br /&gt;
:Reporter: Police divers searching the bay say they have recovered the body of another victim of the &amp;quot;Lake Diver Killer.&amp;quot;&lt;br /&gt;
:Reporter: During the search, three more divers were reported missing.&lt;br /&gt;
&lt;br /&gt;
:'''Washington'''&lt;br /&gt;
:[The statue of Abraham Lincoln in the Lincoln Memorial.]&lt;br /&gt;
:In this Marble Prison As in the nightmares of the nation they tried to devour&lt;br /&gt;
:The nanobots that constituted Abraham Lincoln&lt;br /&gt;
:Are entombed forever.&lt;br /&gt;
&lt;br /&gt;
:'''Alaska'''&lt;br /&gt;
:[A person with a gun chasing a helicopter on the back of a wolf in a snowy Alaskan field.]&lt;br /&gt;
:Some people hunt wolves from helicopters. I hunt helicopters from a wolf.&lt;br /&gt;
&lt;br /&gt;
:'''Life in lab'''&lt;br /&gt;
:[Newspaper headline.]&lt;br /&gt;
:Scientists/UMass Amherst students/RIT students create life in lab&lt;br /&gt;
:[Caption under picture of scientists.]&lt;br /&gt;
:&amp;quot;The trick was fuckin'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:'''American Revolution'''&lt;br /&gt;
:Robot Paul Revere: Remember: Zero if by land, One if by sea.&lt;br /&gt;
&lt;br /&gt;
:'''MIT'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of MIT students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: I see their admission standards have been slipping.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''MIT Course 15c'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of MIT students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: I *knew* we shouldn't have picked course 15s.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''Smith/Wellesley'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of Smith/Wellesley students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: We should've gone with Wellesley/Smith.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''CNU'''&lt;br /&gt;
:[Person unsuspectingly strolls under a giant box trap controlled by a Trible.]&lt;br /&gt;
:I worry that CNU only invited me back as a ruse because they realized I never turned in my final paper and want my diploma back. But if it turns out it's for real, I'll see you Wednesday at the Ferguson!&lt;br /&gt;
&lt;br /&gt;
:'''Dana Farber'''&lt;br /&gt;
:[Cueball, pointing towards head.]&lt;br /&gt;
:Cueball: Check it out - In support of people going through chemo, I shaved my head.&lt;br /&gt;
:Lots of love to everyone reading this at Dana Farber. Cancer sucks. If you are new to DCFI, there's a great little garden on the third floor of the yawkey if you need somewhere quiet to just sit for a little bit and breathe.&lt;br /&gt;
&lt;br /&gt;
:'''Reviews'''&lt;br /&gt;
:Shopping before online reviews:&lt;br /&gt;
:[Cueball and Megan stand in a store. Cueball points at a lamp on the table in front of him. There is another lamp on the table behind them.]&lt;br /&gt;
:Cueball: This lamp is pretty.&lt;br /&gt;
:Megan: And affordable.&lt;br /&gt;
:Cueball: Let's get it.&lt;br /&gt;
:Megan Ok! &lt;br /&gt;
&lt;br /&gt;
:Shopping now:&lt;br /&gt;
:[Cueball points at a lamp on the table in front of him. Megan looks at her phone.]&lt;br /&gt;
:Cueball: This lamp is pretty.&lt;br /&gt;
:Megan: It's got 1 1/2 stars on Amazon. Reviews all say to avoid that brand.&lt;br /&gt;
&lt;br /&gt;
:[Cueball and Megan are now both looking at their phones.]&lt;br /&gt;
:Cueball: This one has good reviews.&lt;br /&gt;
:Megan: Wait, one guy says when he plugged it in, he got a metallic taste in his mouth and his cats went deaf.&lt;br /&gt;
:Cueball: Eek. What about- ...no, review points out it resembles a uterus.&lt;br /&gt;
&lt;br /&gt;
:[Cueball is still looking at his phone, Megan has hers at her side.]&lt;br /&gt;
:Cueball: Ok, I found a Swiss lampmaker with perfect reviews. Her lamps start at 1,300 Francs and she's only reachable by ski lift.&lt;br /&gt;
:Megan: You know, our room looks fine in the dark.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Reddit user [http://www.reddit.com/user/SomePostMan SomePostMan] created a [http://www.reddit.com/r/xkcd/comments/t6wmh/all_umwelt_1037_comics_in_two_imgur_albums/ post] that collected all of the Umwelt comics and added explanations. Much of his information is now included in this wiki.&lt;br /&gt;
&lt;br /&gt;
*The transcript section for this comic also included a note alluding to its extreme length:&lt;br /&gt;
: &amp;lt;nowiki&amp;gt;[[Two people...]]&amp;lt;/nowiki&amp;gt;  ((..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all this))  &lt;br /&gt;
: [Two people standing next to each other.  One is holding the head end of a snake...&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;br /&gt;
[[Category:Comics featuring Danish]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Dynamic comics]]&lt;br /&gt;
[[Category:Philosophy]]&lt;br /&gt;
[[Category:Penis]]&lt;br /&gt;
[[Category:Video games]]&lt;br /&gt;
[[Category:Velociraptors]]&lt;br /&gt;
[[Category:April fools' comics]]&lt;br /&gt;
[[Category:Your Mom]]&lt;br /&gt;
[[Category:Puns]]&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138671</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138671"/>
				<updated>2017-04-12T23:51:11Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Comic Might Now be Broken? */ Oops, forgot to put &amp;lt;nowiki&amp;gt; tags around the &amp;quot;https://&amp;quot; in there.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;[[two people...]] &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;br /&gt;
&lt;br /&gt;
== Comic Might Now be Broken? ==&lt;br /&gt;
&lt;br /&gt;
For some reason, this comic does not seem to be working now.  It doesn't work on Chrome version 57.0.2987.133 on Windows 8 in Massachusetts, even though it worked a year ago on this very same computer with version 49.0.2623.112 of Chrome in the same location; I tried it on Internet Explorer on the same computer (only because it's the only other browser I have on it), and it didn't work there either; my brother grudgingly agreed to try it on Firefox on his Ubuntu 14.04 machine (in the same room), and it didn't work on that either.&lt;br /&gt;
&lt;br /&gt;
No, I'm not talking about the void; here, there is absolutely no image at all.  It seems to be the same as the experience that an anonymous user posted above 2 or 3 years ago:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ &amp;lt;code&amp;gt;''(Comment was unsigned; &amp;lt;nowiki&amp;gt;{{unsigned}}&amp;lt;/nowiki&amp;gt; template identifies poster as [[Special:Contributions/173.245.53.215|173.245.53.215]])''&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Now, every time I tried on my computer, the browser said that the page was trying to load unsafe scripts.  Maybe this is somehow linked to the fact that within the past few months, Randall (or more likely Davean) made all xkcd links secure (&amp;lt;nowiki&amp;gt;https://&amp;lt;/nowiki&amp;gt;), and the secure nature of the page is blocking the location- and browser-sensing scripts in the comic itself.  However, the comic still didn't work when I opted to &amp;quot;Load Unsafe Scripts&amp;quot;, so maybe it isn't that simple.&lt;br /&gt;
&lt;br /&gt;
Also, it might be helpful to note that [[User:Seipas|Seipas]] posted on here that he was having an issue that is probably quite similar to this one:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Anyway, with all that said, is there anyone else who is having this issue and/or knows what might be causing it?&lt;br /&gt;
&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 23:48, 12 April 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138670</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138670"/>
				<updated>2017-04-12T23:48:49Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Comic Might Now be Broken? */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;[[two people...]] &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;br /&gt;
&lt;br /&gt;
== Comic Might Now be Broken? ==&lt;br /&gt;
&lt;br /&gt;
For some reason, this comic does not seem to be working now.  It doesn't work on Chrome version 57.0.2987.133 on Windows 8 in Massachusetts, even though it worked a year ago on this very same computer with version 49.0.2623.112 of Chrome in the same location; I tried it on Internet Explorer on the same computer (only because it's the only other browser I have on it), and it didn't work there either; my brother grudgingly agreed to try it on Firefox on his Ubuntu 14.04 machine (in the same room), and it didn't work on that either.&lt;br /&gt;
&lt;br /&gt;
No, I'm not talking about the void; here, there is absolutely no image at all.  It seems to be the same as the experience that an anonymous user posted above 2 or 3 years ago:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ &amp;lt;code&amp;gt;''(Comment was unsigned; &amp;lt;nowiki&amp;gt;{{unsigned}}&amp;lt;/nowiki&amp;gt; template identifies poster as [[Special:Contributions/173.245.53.215|173.245.53.215]])''&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Now, every time I tried on my computer, the browser said that the page was trying to load unsafe scripts.  Maybe this is somehow linked to the fact that within the past few months, Randall (or more likely Davean) made all xkcd links secure (https://), and the secure nature of the page is blocking the location- and browser-sensing scripts in the comic itself.  However, the comic still didn't work when I opted to &amp;quot;Load Unsafe Scripts&amp;quot;, so maybe it isn't that simple.&lt;br /&gt;
&lt;br /&gt;
Also, it might be helpful to note that [[User:Seipas|Seipas]] posted on here that he was having an issue that is probably quite similar to this one:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Anyway, with all that said, is there anyone else who is having this issue and/or knows what might be causing it?&lt;br /&gt;
&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 23:48, 12 April 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138663</id>
		<title>Talk:1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=138663"/>
				<updated>2017-04-12T22:28:47Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Normally I understand xkcd. But this one hurts my head. [[User:Lcarsos|lcarsos]] ([[User talk:Lcarsos|talk]]) 20:35, 15 August 2012 (UTC)&lt;br /&gt;
: I sorted all of them out. Phew!!! That was some work. The ones at the end have no appropriate picture in the image part. Atleast the hurricane one should be added. Please do so. [[User:TheOriginalSoni|TheOriginalSoni]] ([[User talk:TheOriginalSoni|talk]]) 11:09, 8 September 2012 (UTC)&lt;br /&gt;
:: I live in one of Umwelt's &amp;quot;hurricane areas&amp;quot;, and that's the one I see.  How do we add it?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 06:06, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a fixed image used if your browser does not support javascript, which is missing.  Additionally, the alt text varies at times.  [[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 20:16, 4 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can't see any of them neither in Firefox nor in IE :( --[[User:Kronf|Kronf]] ([[User talk:Kronf|talk]]) 11:32, 13 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
This has got to be one of my favourite xkcd's! That amount of ingenuity in one edition! [[User:D3KN0W|Dean]] ([[User talk:D3KN0W|talk]]) 22:33, 01 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is now also a category page for Jurassic Park, but I'm not sure how to work that into the explanation. [[User:Kaa-ching|Kaa-ching]] ([[User talk:Kaa-ching|talk]]) 09:04, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I can't resist noting that Chrome is sadly mistaken in thinking that its puzzle piece links up to a corner piece - it would have to be an edge piece to do that. Firefox would never have that kind of issue... [[User:Natf|Natf]] ([[User talk:Natf|talk]])&lt;br /&gt;
: Supposedly, if there were a puzzle with inner corners, such as one with a plus cut out of it, this could link up as shown. ... I wanna make a puzzle like that now. [[Special:Contributions/99.44.200.140|99.44.200.140]] 08:00, 1 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be difficult to compile, but I think this page would benefit from having the conditions along with the image (for instance, &amp;quot;Displays when running Netscape:&amp;quot;)  [[Special:Contributions/24.41.66.114|24.41.66.114]] 03:27, 6 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey, um, I think there is an AniMega Mega Mega Mega Maniacs reference. Namely, the question about hot dogs resembles Yakko's question to the Wally Llama except it dealt with packages of eight and packages of ten. (I forget which is which) {{unsigned ip|71.166.47.84}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I came here to seek informartion about how each strip was seen. Disappointed... Especially after seeing there is a hebrew one!?!?!?!? (number 29) Is it real? Because I assume it should be visible from Israel and I can't see it [[Special:Contributions/141.101.99.228|141.101.99.228]] 22:26, 30 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added two location references to the 2Fast2Furious and Snake comics, with browser references. Anyone know why I got those results? {{unsigned ip|173.245.50.77}}&lt;br /&gt;
: I don't, especially since I live in the UK (not Texas) and yet I see the Snake comic? [[User:Enchantedsleeper|Enchantedsleeper]] ([[User talk:Enchantedsleeper|talk]]) 14:14, 7 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a new one, it seems to display when using TOR. Should I add it? [[Special:Contributions/173.245.49.60|173.245.49.60]] 02:22, 7 May 2014 (UTC)&lt;br /&gt;
:Yes definitely. [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 16:07, 7 May 2014 (UTC)&lt;br /&gt;
::The Reviews comic just as appearing under TOR is actually comic #1036. Can you confirm that it is actually showing up under Umwelt? [[User:Chriswampler|Chriswampler]] ([[User talk:Chriswampler|talk]]) 20:34, 7 May 2014 (UTC)&lt;br /&gt;
:::Yes. I checked like ten times. I just did it again.[[Special:Contributions/173.245.53.153|173.245.53.153]] 20:40, 7 May 2014 (UTC)&lt;br /&gt;
:Honestly I can't do much explaining. Does anyone get it? [[Special:Contributions/108.162.219.61|108.162.219.61]] 20:54, 7 May 2014 (UTC)&lt;br /&gt;
:For me, using TOR, it displayed the full Aurora comic. [[User:Zorlax the Mighty|Zorlax the Mighty&amp;amp;#39;); DROP TABLE users;--]] ([[User talk:Zorlax the Mighty|talk]]) 17:50, 5 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone tested the Steam browser, whatever it is, with this comic? [[Special:Contributions/108.162.219.66|108.162.219.66]] 18:50, 26 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I tested the Steam browser and got the &amp;quot;This plugin requires Sergey Brin's permission to run&amp;quot; comic, same as when I use Chrome.[[User:RobotSnake|RobotSnake]] ([[User talk:RobotSnake|talk]]) 18:16, 5 July 2014 (UTC)&lt;br /&gt;
:That is because the Steam browser is WebKit/Chromium-based. (Now you know something!)[[Special:Contributions/173.245.50.88|173.245.50.88]] 03:34, 2 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
For the Yahoo Chrome one with Sergey Brin, it reminds me a bit like how GerMega Mega Mega Mega Man tanks were unable to be moved on D-Day because Hitler, whose order was needed to move them, slept through the first five hours of the batter. It's the same theme of failure due to having only one person able to give permission, and that person being asleep.[[Special:Contributions/173.245.54.188|173.245.54.188]] 14:53, 19 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get Pond on both my laptop (Firefox) and iPhone 3. I live in North Holland. Hope it helps, ask some other Dutch people about it for affirmation. On Opera, I get the turtle one. I should also note that if I make my browser window smaller, the right part of it is cut off. This page is clearly incomplete... -Maplestrip&lt;br /&gt;
&lt;br /&gt;
...Uhm, have you guys ever tried looking at this page in Lynx? Because, seriously, this is amazing. It's basically this entire page. The start in particular is hilarious: &amp;quot;[[two people...]] &amp;lt;&amp;lt;..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all of this&amp;gt;&amp;gt; [[Two people standing next to eachother...&amp;quot; Reading some of this, is this where you got all the transcripts for these comics from? -Maplestrip&lt;br /&gt;
&lt;br /&gt;
In Ireland I get no comic strip loading at all! Just nothing in between the direction buttons, on Chrome or Safari! :/ {{unsigned ip|173.245.53.215}}&lt;br /&gt;
&lt;br /&gt;
Just something I feel should be added to the &amp;quot;Blizzard&amp;quot; comic: it seems to also change the distance measurement (magnitude and system), in the last panel, depending on your location; for instance, the final panel refers to them only having [https://dl.dropboxusercontent.com/u/22279334/Screen%20Shot%202015-03-25%20at%2010.03.06%20PM.png six more kilometres to travel] for me: fitting given that I'm located in central Ontario. [[Special:Contributions/108.162.216.17|108.162.216.17]] 02:23, 26 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Georgia but I still got the Hurricane image. [[Special:Contributions/108.162.238.187|108.162.238.187]] 14:12, 29 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have the &amp;quot;Reviews&amp;quot; one. With Firefox/Linux without referer and without javascript, from France. With javascript I don't have any comic. Edit : I checked, it's because I have the &amp;quot;Reviews&amp;quot; one but inside a &amp;lt;noscript&amp;gt; tag, so it doesn't display when javascript is activated. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 14:20, 9 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And now we need Randall to make an Umwelt page for Microsoft Edge.&lt;br /&gt;
[[Special:Contributions/108.162.221.61|108.162.221.61]] 02:06, 26 January 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note of interest: Windows 10, Georgia Tech campus in Atlanta, GA. Currently receiving &amp;quot;The Void&amp;quot; on both Chrome and Microsoft Edge unless Javascript is disabled. When disabled, &amp;quot;Reviews&amp;quot; is shown instead. Also: Chrome on HTC One M8 shows &amp;quot;Corporate Networks&amp;quot; with yellow triangle and Google - a combination which incidentally does not seem to be on this page. [[User:Castriff|Jimmy C]] ([[User talk:Castriff|talk]]) 05:11, 9 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm on Windows 10 in NJ and I'm getting &amp;quot;Snake&amp;quot; instead of &amp;quot;Hurricane&amp;quot; on Opera, Chrome, Edge and Maxthon. Has this happened to other NJ users, or is &amp;quot;Hurricane&amp;quot; in only some parts on New Jersey? Maybe it's because it's on Windows 10. {{unsigned ip|69.123.50.168}}&lt;br /&gt;
&lt;br /&gt;
I'm in Idaho using Firefox, and I get Reviews whenever I go to this comic. [[Special:Contributions/108.162.246.74|108.162.246.74]] 18:41, 17 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should I add to the article that I'm seeing &amp;quot;Snake&amp;quot; on Chrome version 49.0.2623.112 on Windows 8 in Massachusetts? --[[Special:Contributions/108.162.219.72|108.162.219.72]] 00:13, 29 April 2016 (UTC)&lt;br /&gt;
:I posted that comment before I had an account.  Now that I'm looking back at this article a year later, I've gone ahead and done it.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 22:28, 12 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
I got a variant of the snake one in Ohio using Windows 7 and Google Chrome Version 49.0.2623.112 m. As of now, it should only be visible in &amp;quot;Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS), Connecticut (Safari for iOS).&amp;quot;[[User:Bbrk24|Bbrk24]] ([[User talk:Bbrk24|talk]]) 16:35, 3 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm getting Plugin Disabled in Safari, Firefox, Safari mobile, Chrome mobile, and the Google app. The only anomaly is Chrome desktop, where I'm getting Tornado (located in &amp;quot;the Midwest&amp;quot;), and I'm all out of browsers. [[Special:Contributions/162.158.72.113|162.158.72.113]] 21:37, 18 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I get the review strip when sharing http://xkcd.com/1037/ on FB, and the full aurora strip using chrome on my android t-mobile phone [[Special:Contributions/173.245.48.89|173.245.48.89]] 17:55, 26 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm in Virginia, but when i look at umwelt in firefox, it gives me the tornado, whith ohio in the third panel, and on chrome, it does aurora, still saying ohio. {{unsigned ip|172.68.78.127}}&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=138662</id>
		<title>1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=138662"/>
				<updated>2017-04-12T22:25:24Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: /* Snake */ A year ago, when I didn't have an account yet, I asked in the discussion section if I should add that I was seeing &amp;quot;Snake&amp;quot; on a version of Chrome on Windows 8 in Massachusetts.  Now that I've returned to this, I went ahead and did it.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1037&lt;br /&gt;
| date      = April 1, 2012&lt;br /&gt;
| title     = Umwelt&lt;br /&gt;
| image     = umwelt_the_void.jpg&lt;br /&gt;
| titletext = Umwelt is the idea that because their senses pick up on different things, different animals in the same ecosystem actually live in very different worlds. Everything about you shapes the world you inhabit--from your ideology to your glasses prescription to your web browser.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;toclimit-3&amp;quot; style=&amp;quot;float:right; margin-left: 10px;&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
{{incomplete|Some missing explanations. Maybe add titletexts?}}&lt;br /&gt;
An {{w|Umwelt}}, as the title text explains, is the idea that one's entire way of thinking is dependent on their surroundings. Thus, this {{w|April Fools}} comic changes based on the browser, location, or referrer. Thus, what the viewer is viewing the comic on, where they live, or where they came from determines which comic they actually see. As a result, there are actually multiple comics that went up on April Fools' Day, although only one is seen.&lt;br /&gt;
(Fun Fact: the German word &amp;quot;Umwelt&amp;quot; does not mean anything vaguely similar; it translates in all contexts almost exactly as &amp;quot;environment&amp;quot;.)&lt;br /&gt;
&lt;br /&gt;
Information about how the wide variety of data was collected and credit for the viewers who contributed can be found [http://www.reddit.com/r/xkcd/comments/rnst4/april_fools_xkcd_changing_comic/ here].&lt;br /&gt;
&lt;br /&gt;
This comic was released on April 1 even though that was [[:Category:Sunday comics|a Sunday]] (only the third comic to be released on a Sunday). But it was only due to the April Fool joke, as it did replace the comic that would have been scheduled for Monday, April 2. The next comic was first released on Wednesday, April 4.&lt;br /&gt;
&lt;br /&gt;
===The Void===&lt;br /&gt;
[[File:umwelt the void.jpg]]&lt;br /&gt;
&lt;br /&gt;
If the device or browser you are using does not support Javascript, you will simply see a static image of a white swirl on a dark background.&lt;br /&gt;
&lt;br /&gt;
Possible reference to The Ring (http://imgur.com/wlGmm), as though to suggest that using an alternative browser is dismal and horrific.&lt;br /&gt;
&lt;br /&gt;
Davean (xkcd's sysadmin): &amp;quot;[This] comic isn't available everywhere and it can come up i[n] some situation[s] only for recognized browsers.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Browser: Alternative Browser&lt;br /&gt;
&lt;br /&gt;
===Aurora===&lt;br /&gt;
[[File:umwelt aurora.png]]&lt;br /&gt;
&lt;br /&gt;
One could interpret that since Megan didn't go out and therefore missed seeing the {{w|Aurora}} (norther lights), Cueball in his [[1350:_Lorenz#Knit_Cap_Girl|knit cap]] lied about it. That way, she wouldn't have felt sad that she missed out. Another interpretation could be that he decides that since she did not even bother to go outside to see such a spectacular sight he will not tell her about it. And yet another could be that he did not think it was interesting.&lt;br /&gt;
&lt;br /&gt;
Cueball could possibly also be red-green colorblind, seeing the green aurorae as grey &amp;quot;clouds&amp;quot;, serving as an example for the theme of the comic, as a non-colorblind person and a colorblind person seeing the same color would perceive it differently, one seeing it as its true color, and the other seeing it without the shade of color they cannot see.&lt;br /&gt;
&lt;br /&gt;
This image changed based on the size of the browser window including different panels at different sizes.&lt;br /&gt;
&lt;br /&gt;
Locations: Canada, Boston, Maine, New York, Ohio, Oregon, Texas, Minnesota, Norway, Denmark, France, Rhode Island (not sure if mobile only or not.) (also in virginia, but using ohio in the first panel)&lt;br /&gt;
&lt;br /&gt;
In [[1302: Year in Review]] another Megan (for sure) has a completely different approach to the chance of seeing northern lights, as that was the only event she was looking forward to in 2013, and it failed.&lt;br /&gt;
&lt;br /&gt;
===Snake===&lt;br /&gt;
[[File:umwelt snake composite 1024.png]]&lt;br /&gt;
[[:File:umwelt snake composite.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
The joke here is the extreme length of snakes. The world's longest snake is the python, the longest ever being 33 feet or approx. 10 meters. The blue and orange circles refer to the hit game {{w|Portal}}.&lt;br /&gt;
There is also a reference to the book &amp;quot;The Little Prince&amp;quot; in the second panel.&lt;br /&gt;
&lt;br /&gt;
Also, the number and content of the panels changes depending on the size of your browser window.&lt;br /&gt;
&lt;br /&gt;
This image changed based on the size of the browser window including different panels at different sizes.&lt;br /&gt;
&lt;br /&gt;
Specific AltText for this image: Umwelt is the idea that because their senses pick up on different things, different animals in the same ecosystem actually live in very different worlds. Everything about you shapes the world you inhabit -from your ideology to your glasses prescription to your browser window size.&lt;br /&gt;
&lt;br /&gt;
Location: Texas (on Chrome Version 33.0.1750.154 m), New Jersey, California (on Chrome Version 39.0.2171.95), Maryland, Massachusetts (Safari for iOS, Chrome version 49.0.2623.112), Connecticut (Safari for iOS), Virginia (on Chrome), Michigan (Firefox v46.0.1).&lt;br /&gt;
&lt;br /&gt;
===Black Hat===&lt;br /&gt;
[[File:umwelt tortoise 1024.png]]&lt;br /&gt;
[[:File:umwelt tortoise.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
Cueball as an analyst attempts to psychoanalyze [[Black Hat|Black Hat's]] [[72: Classhole|classhole]] tendencies. Cueball's quote and the whole setup is a direct reference to the movie {{w|Blade Runner}} (1982) and Black Hat is taking the Voight-Kampff test which is used to identify replicants from real humans.&lt;br /&gt;
&lt;br /&gt;
Black Hat's reason for not helping the tortoise is that ''it ''''knows''' what it did'' and thus in Black Hat's world view it deserves being turned over. The final part of the joke is that when zooming out it turns out that there is a tortoise behind Black Hat and he has actually already turned it over for what it did.&lt;br /&gt;
&lt;br /&gt;
Location: Seems to appear mostly in &amp;quot;other countries&amp;quot; — those without location-specific comics.&lt;br /&gt;
&lt;br /&gt;
===Too Quiet===&lt;br /&gt;
[[File:umwelt too quiet 1024.png]]&lt;br /&gt;
[[:File:umwelt too quiet.png|Full size]]&lt;br /&gt;
&lt;br /&gt;
A reference to {{w|Jurassic Park (film)|Jurassic Park}} which has been [[87: Velociraptors|constantly]] [[135: Substitute|referred]] [[1110: Click and Drag|to]] [[155: Search History|before]] [[758: Raptor Fences|in]] this comic.&lt;br /&gt;
&lt;br /&gt;
Also referencing the film {{w|2 Fast 2 Furious|2 Fast 2 Furious}}, an entertaining, yet intellectually unprovoking sequel in a popular film franchise, which is aimed at teenagers and young adults, prompting the blunt response from the stickman. The fact that Steve would use such a cliché {{w|2000s (decade)|noughties}} movie term in such an intense moment, and the subsequent curse, is the joke in this comic.&lt;br /&gt;
&lt;br /&gt;
Location: short version — iPhone 5c Safari browser in Texas, iPhone 5 Chrome Browser in Minnesota, long version - Google Chrome browser in Indiana, Windows 8 Laptop&lt;br /&gt;
&lt;br /&gt;
===Pond===&lt;br /&gt;
[[File:umwelt pond mobile.png]][[File:umwelt pond wide.png]]&lt;br /&gt;
&lt;br /&gt;
Two different versions showed, the narrower version for mobile devices.&lt;br /&gt;
&lt;br /&gt;
Location: The Netherlands and various other countries.&lt;br /&gt;
&lt;br /&gt;
===Galaxies===&lt;br /&gt;
[[File:umwelt galaxies 1024.jpg]]&lt;br /&gt;
[[:File:umwelt galaxies.jpg|Full size]]&lt;br /&gt;
&lt;br /&gt;
Megan is distracted from her conversation with [[Cueball]] by realizing that the space behind his head, from her vantage point, contains millions of galaxies. This is similar to an [http://nssdc.gsfc.nasa.gov/image/astro/hst_deep_field.jpg incredible photograph] taken by the Hubble Telescope, in which a tiny dark area of space in fact contained numerous galaxies.&lt;br /&gt;
&lt;br /&gt;
The title text is an imaginative leap from this scenario: that the galaxies would be up to no good once Cueball is turned away from them.  This is presumably a reference to [http://www.mariowiki.com/boo Boo], an enemy from certain Mario games who moves toward Mario only when Mario is facing away from Boo.&lt;br /&gt;
&lt;br /&gt;
This comic was only reported once... the intended environmental context is a mystery.&lt;br /&gt;
&lt;br /&gt;
Location: unknown&lt;br /&gt;
&lt;br /&gt;
===xkcd Gold===&lt;br /&gt;
[[File:umwelt xkcd gold.png]]&lt;br /&gt;
&lt;br /&gt;
This is probably a reference to the 4chan Gold Account, an implementation on 4chan that does not actually exist, and is usually used to trick newcomers into revealing their credit card numbers. The joke is that &amp;quot;Gold Account&amp;quot; users can supposedly block other users from viewing images they have posted. The fifth panel is probably a reference to Beecock, a notorious set of shocker images. 4chan's moderators have been known to give out &amp;quot;beecock bans&amp;quot; or &amp;quot;/z/ bans&amp;quot; to particularly annoying users, which redirect the user to a page containing beecock and the text &amp;quot;OH NO THE BOARD IS GONE&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Referrer: 4chan&lt;br /&gt;
&lt;br /&gt;
===Yo Mama===&lt;br /&gt;
[[File:umwelt dog ballast.png]]&lt;br /&gt;
&lt;br /&gt;
Possible reference to Kurt Vonnegut Jr.'s &amp;quot;{{w|Harrison Bergeron}}.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Possibly a veiled criticism of Facebook. This could be slightly rewritten as: &amp;quot;This comic takes place in a dystopian future where the government is afraid of dissent, so it tracks everyone at all times, and some people privately doubt the government, but not enough to stop submitting information to Facebook. But that dystopian future is now.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Referrer: Facebook&lt;br /&gt;
&lt;br /&gt;
===Reddit===&lt;br /&gt;
[[File:umwelt reddit.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to referencing, because Reddit, as a referring site, likes references to its referencing in its references.&lt;br /&gt;
&lt;br /&gt;
This comic also features recursive imagery similar to [[688: Self-Description|Self Description]] where the second panel embeds the entire comic within itself.&lt;br /&gt;
&lt;br /&gt;
Referrer: Reddit&lt;br /&gt;
&lt;br /&gt;
===Buns and Hot dogs===&lt;br /&gt;
[[File:umwelt somethingawful.jpg]]&lt;br /&gt;
&lt;br /&gt;
This is a reference to the question &amp;quot;Why do hot dogs come in packages of 6 while buns come in packages of 8?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Referrer: SomethingAwful, Questionable Content, &amp;amp; MetaFilter&lt;br /&gt;
&lt;br /&gt;
===Twitter===&lt;br /&gt;
[[File:umwelt twitter.jpg]]&lt;br /&gt;
&lt;br /&gt;
A summary of the content &amp;quot;typically&amp;quot; found on Twitter.&lt;br /&gt;
&lt;br /&gt;
In the tweet feed, there are three tweets about some podcast on the top, followed by the tweet containing link they clicked on to get to the comic, tweets about Rob Delaney, unspecified passive-aggressive tweets, and a tweet from [http://en.wikipedia.org/wiki/Horse_ebooks Horse Ebooks] retweeted by one of the users the reader follows.&lt;br /&gt;
&lt;br /&gt;
On the left, the topmost dialog, with profile information, shows that the user has posted 1,302 tweets, but only follows 171 people and has even fewer followers, at a measly 48. This is marked with a sad face, implying that the user wants more followers.&lt;br /&gt;
&lt;br /&gt;
Below that is the &amp;quot;who to follow&amp;quot; dialog, which is written up as consisting of &amp;quot;assholes&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Below that is the &amp;quot;trending tags&amp;quot; dialog for the United States. It is full of tags about word games, tags about misogyny, and tags about Justin Bieber.&lt;br /&gt;
&lt;br /&gt;
Below that is an unidentified dialog full of &amp;quot;stuff your eyes automatically ignore&amp;quot;. And finally, on the bottom is the background colour, which is &amp;quot;a really pleasant blue&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Referrer: Twitter&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
[[File:umwelt wikipedia wide.jpg]]&lt;br /&gt;
[[File:umwelt wikipedia mobile.png]]&lt;br /&gt;
&lt;br /&gt;
The term {{w|Mile High Club}} (or MHC) is a slang term applied collectively to individuals who have had sexual intercourse while on board of an aircraft. Randall says that reading the news articles on it has distracted him from making that comic.&lt;br /&gt;
&lt;br /&gt;
Two different versions shown, the narrower version (the single panel with all the text) for mobile devices.&lt;br /&gt;
&lt;br /&gt;
Referrer: Wikipedia&lt;br /&gt;
&lt;br /&gt;
===Google Chrome===&lt;br /&gt;
[[File:umwelt chrome1.jpg]]&lt;br /&gt;
&lt;br /&gt;
{{w|Sergey Brin}} (born August 21, 1973) is an American computer scientist and Internet entrepreneur who, with Larry Page, co-founded Google, one of the most profitable Internet companies. As of 2013, his personal wealth was estimated to be $24.4 billion. Randall makes the joke that as the founder of Google, Brin's permission would be needed to use Google Chrome. Because there are millions of people who use Google, it is likely that at least some of the time Brin would be asleep, thus he would need to be woken.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome&lt;br /&gt;
&lt;br /&gt;
===Chrome/Firefox===&lt;br /&gt;
[[File:umwelt chrome2.png]]&lt;br /&gt;
&lt;br /&gt;
Mozilla {{w|Firefox}} is a free and open-source web browser developed for Windows, OS X, and Linux, with a mobile version for Android and iOS, by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Cueball is complaining about {{w|Google Chrome}}, to which [[Ponytail]] replies that there is an {{w|add-on}} that fixes what he is complaining about. When questioned, she replies that the add-on is Firefox, which isn't an add-on at all and is instead a different browser.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome&lt;br /&gt;
&lt;br /&gt;
===Google Chrome-2===&lt;br /&gt;
[[File:umwelt chrome3.png]]&lt;br /&gt;
&lt;br /&gt;
This panel references Google Chrome's error screen, which shows a puzzle piece. The comic humorously implies that Chrome is looking for that piece. When completing jigsaw puzzles, a common strategy is to figure out where the pieces must be from their geometry rather than from the picture they create. In this case, the text suggests that Chrome believes the puzzle piece connects to the pieces which form one of the corners of the puzzle, which may seem impossible because any piece that links up to a corner would usually have at least one flat edge, which this piece has none. However, more complicated puzzles have complex shapes and are not always simply approximate squares with tabs and blanks.&lt;br /&gt;
&lt;br /&gt;
Browser: Chrome or silk on desktop view&lt;br /&gt;
&lt;br /&gt;
===Mozilla Firefox Private Browsing===&lt;br /&gt;
[[File:umwelt firefox incognito.png]]&lt;br /&gt;
&lt;br /&gt;
Another reference to crashing web browsers.&lt;br /&gt;
&lt;br /&gt;
Browser: Firefox (Incognito only?)&lt;br /&gt;
&lt;br /&gt;
===Internet Explorer===&lt;br /&gt;
[[File:umwelt ie.png]]&lt;br /&gt;
&lt;br /&gt;
Yet another reference to crashing web browsers&lt;br /&gt;
&lt;br /&gt;
Browser: Internet Explorer&lt;br /&gt;
&lt;br /&gt;
===Maxthon===&lt;br /&gt;
[[File:umwelt maxthon.png]]&lt;br /&gt;
&lt;br /&gt;
Browser: Maxthon&lt;br /&gt;
&lt;br /&gt;
===Netscape Navigator===&lt;br /&gt;
[[File:umwelt netscape womanoctopus.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt netscape man.png]]&lt;br /&gt;
&lt;br /&gt;
{{w|Netscape Navigator}} was a web browser popular in the 1990s.&lt;br /&gt;
&lt;br /&gt;
Browser: Netscape&lt;br /&gt;
&lt;br /&gt;
===Rockmelt===&lt;br /&gt;
[[File:umwelt rockmelt.png]]&lt;br /&gt;
&lt;br /&gt;
{{w|Rockmelt}} is a social-media-based browser.&lt;br /&gt;
&lt;br /&gt;
Reference to the gospel song {{w|Longing for Old Virginia: Their Complete Victor Recordings (1934)|&amp;quot;There's no hiding place down here&amp;quot; by The Carter Family}}, later covered by Stephen Stills.&lt;br /&gt;
&lt;br /&gt;
:I run to the rock just to hide my face&lt;br /&gt;
:And the rocks cried out, no hiding place&lt;br /&gt;
:There's no hiding place down here&lt;br /&gt;
&lt;br /&gt;
It may additionally be a reference to the ''Babylon 5'' episode &amp;quot;And the Rock Cried Out, No Hiding Place,&amp;quot; which featured the song.&lt;br /&gt;
&lt;br /&gt;
Browser: Rockmelt&lt;br /&gt;
&lt;br /&gt;
===Plugin Disabled===&lt;br /&gt;
[[File:umwelt plugin disabled.png]]&lt;br /&gt;
&lt;br /&gt;
When the Google Chrome web browser does not have the required software (called a plug-in) to display a web page's content, it displays a puzzle piece icon and an error message. In this case, Chrome informs the user that the content is impossible to display. &lt;br /&gt;
&lt;br /&gt;
Browser: Plugin (?) Disabled, Safari Desktop&lt;br /&gt;
&lt;br /&gt;
===Corporate Networks===&lt;br /&gt;
[[File:umwelt corporate general.png]]&lt;br /&gt;
[[File:umwelt corporate amazon chrome.png]]&lt;br /&gt;
[[File:umwelt corporate amazon firefox.png]]&lt;br /&gt;
[[File:umwelt corporate amazon other.png]]&lt;br /&gt;
[[File:umwelt corporate google chrome.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft chrome.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft firefox.png]]&lt;br /&gt;
[[File:umwelt corporate microsoft other.png]]&lt;br /&gt;
[[File:umwelt corporate nytimes chrome.png]]&lt;br /&gt;
[[File:umwelt corporate nytimes other.png]]&lt;br /&gt;
&lt;br /&gt;
These error messages appear if the user is on a network owned by one of the corporations noted. The error message includes a warning against speaking on the company's behalf.&lt;br /&gt;
&lt;br /&gt;
ISP: Corporate networks of Amazon, Google, Microsoft, NY Times&lt;br /&gt;
&lt;br /&gt;
===Military===&lt;br /&gt;
[[File:umwelt military.png]]&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] assumes that anyone using a military network has an important job like watching for incoming missiles. He includes a thank-you to the user for their military service.&lt;br /&gt;
&lt;br /&gt;
ISP: Military networks&lt;br /&gt;
&lt;br /&gt;
===T-Mobile===&lt;br /&gt;
[[File:umwelt tmobile.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to T-Mobile's distinguishing feature (at the time it was written) of weaker coverage, in relation to other major providers.&lt;br /&gt;
&lt;br /&gt;
ISP: T-Mobile&lt;br /&gt;
&lt;br /&gt;
===Verizon and AT&amp;amp;T===&lt;br /&gt;
[[File:umwelt verizon.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt att.png]]&lt;br /&gt;
&lt;br /&gt;
Reference to Verizon and AT&amp;amp;T's scandals/controversy regarding implementation of bandwidth caps.&lt;br /&gt;
&lt;br /&gt;
ISP: Verizon and AT&amp;amp;T&lt;br /&gt;
&lt;br /&gt;
===France===&lt;br /&gt;
[[File:umwelt france.jpg]]&lt;br /&gt;
&lt;br /&gt;
A common joke about France is that the nation does not win wars. This originated from France's annexation by Germany during World War II, and America's late entry into the war, which is sometimes portrayed humorously as a case of America 'saving' Europe, in this joke particularly France (the role of the French resistance is usually not mentioned), leading to a common American joke at the expense of France's military prowess [http://www.albinoblacksheep.com/text/victories.html][http://politicalhumor.about.com/library/images/blpic-frenchmilitaryvictories.htm][http://politicalhumor.about.com/library/jokes/bljokefrenchmilitaryhistory.htm]. When France did not form part of the coalition that invaded Iraq in 2003, aligning with the many countries that condemned U.S. action, the joke was revived. &lt;br /&gt;
&lt;br /&gt;
A Google search of &amp;quot;French Military Victories&amp;quot; + 'I'm feeling lucky' used to direct to &amp;quot;did you mean: french military defeats&amp;quot; (due to a {{w|Google bomb}}). Cueball is trying to show this to his friend, who is French. However, his joke backfires, as his friends immediately points out that the stereotype of France not having military victories is undercut by the fact that one of the most innovative military commanders in history, Napoleon, was French, and in fact conquered much of Europe.&lt;br /&gt;
&lt;br /&gt;
The last line of the comic further implies that Cueball is not as smart as he thinks he is in regards to anything French, as he mispronounces the French loan word &amp;quot;touche&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Locations: France &amp;amp; Quebec&lt;br /&gt;
&lt;br /&gt;
===Germany===&lt;br /&gt;
[[File:umwelt germany.png]]&lt;br /&gt;
&lt;br /&gt;
This comic references the {{w|Berlin airlift#The start of the Berlin Airlift|Berlin Airlift}}, a relief measure for citizens in West Berlin (surrounded by East Germany) instituted by the Western Allies after World War II. In reality, the Western Allies flew a grand total of 500,000 tons of food over the Soviet blockade in planes. Randall puts a twist on this event by making it more fun: dropping supplies from a grand chairlift. The play on words is that &amp;quot;chairlift&amp;quot; rhymes with &amp;quot;airlift&amp;quot; and thus makes an easy substitution. The chair force is also a name that other service branches use to make fun of the air force.&lt;br /&gt;
&lt;br /&gt;
Location: Germany&lt;br /&gt;
&lt;br /&gt;
===Israel===&lt;br /&gt;
[[File:umwelt israel.png]]&lt;br /&gt;
&lt;br /&gt;
Transcript:&lt;br /&gt;
&lt;br /&gt;
בחורה: אמא, פגשתי בחור נהדר! אבל הוא לא יהודי.‏&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
רגע, מה את אומרת, &amp;quot;גם אנחנו לא&amp;quot;?‏&lt;br /&gt;
&lt;br /&gt;
אני לגמרי מבולבלת.‏&lt;br /&gt;
&lt;br /&gt;
(Translation from Hebrew)&lt;br /&gt;
&lt;br /&gt;
Person: Mom, I met a great guy! But he's not Jewish. ...Wait, what do you mean &amp;quot;neither are we&amp;quot;? I'm completely confused.&lt;br /&gt;
&lt;br /&gt;
A reference to the multiple use of the word Jewish to denote both a religious group and a nationality/ethnicity.&lt;br /&gt;
&lt;br /&gt;
Location: Israel&lt;br /&gt;
&lt;br /&gt;
===Carnot Cycle===&lt;br /&gt;
[[File:umwelt japan.png]]&lt;br /&gt;
&lt;br /&gt;
A pun on &amp;quot;cycle&amp;quot;; a &amp;quot;{{w|Carnot cycle}}&amp;quot; is a thermodynamic cycle (e.g. refrigeration). Its efficiency depends on the temperature of the hot and cold 'reservoirs' in which it is operating.  The icon on the side of the motorcycle resembles a [http://en.wikipedia.org/wiki/File:Carnot_cycle_p-V_diagram.svg graph of the Carnot cycle.]&lt;br /&gt;
&lt;br /&gt;
Location: Japan&lt;br /&gt;
&lt;br /&gt;
===UK===&lt;br /&gt;
[[File:umwelt uk.jpg]]&lt;br /&gt;
&lt;br /&gt;
He worded this as though to imply that the UK is a state of the U.S., and an unimportant one at that, which pokes fun at the UK, creating a paradox (sort of).&lt;br /&gt;
&lt;br /&gt;
Location: UK&lt;br /&gt;
&lt;br /&gt;
===Blizzard===&lt;br /&gt;
[[File:umwelt disasters blizzard.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or blizzards are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in, the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: Alabama, Boston, Chicago, Dallas, Georgia, Halifax, Illinois, Michigan, Minnesota, Missouri, the Northeast, Ohio, Oklahoma, Ottawa, Pennsylvania, Philadelphia, Texas, Toronto, Tennessee, New York, Wisconsin&lt;br /&gt;
&lt;br /&gt;
===Tornado===&lt;br /&gt;
[[File:umwelt disasters tornado.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or tornadoes are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: Alabama, Dallas, Illinois, Georgia, The Midwest, Missouri, Ohio, Oklahoma, Ottawa, Tennessee, Texas (and Virginia, but it used Ohio in the third panel)&lt;br /&gt;
&lt;br /&gt;
Tornadoes are a [[:Category:Tornadoes|recurring subject]] on xkcd. The picture used in [[1754: Tornado Safety Tips]] reminds a lot of the one from this version of Umvelt. [[Category:Tornadoes]]&lt;br /&gt;
&lt;br /&gt;
===Hurricane===&lt;br /&gt;
[[File:umwelt disasters hurricane.png]]&lt;br /&gt;
&lt;br /&gt;
This comic is aimed at the debate over whether earthquakes or hurricanes are harsher conditions to live under.&lt;br /&gt;
&lt;br /&gt;
For each location this displayed in the state name was substituted in the third panel.&lt;br /&gt;
&lt;br /&gt;
Locations: D.C, Florida, Georgia, Houston, Miami, New Jersey, North Carolina, South Carolina, Virginia&lt;br /&gt;
&lt;br /&gt;
===Lake Diver Killer===&lt;br /&gt;
[[File:umwelt lake diver.png]]&lt;br /&gt;
&lt;br /&gt;
This comic shows a news reporter standing in front of a lake. She is reporting on a serial killer who targets divers. As more divers are sent in to investigate and/or search for bodies, more divers go missing and are presumably murdered. &lt;br /&gt;
&lt;br /&gt;
Location: Bay Areas, Metro Detroit, Vermont showed an image specifically referencing Lake Champlain&lt;br /&gt;
&lt;br /&gt;
===Lincoln Memorial===&lt;br /&gt;
[[File:umwelt lincoln memorial.png]]&lt;br /&gt;
&lt;br /&gt;
Locations: Illinois &amp;amp; Washington D.C.&lt;br /&gt;
&lt;br /&gt;
===Helicopter Hunting===&lt;br /&gt;
[[File:umwelt helicoptor.png]]&lt;br /&gt;
&lt;br /&gt;
In Alaska, governments and individuals have {{w|Wolf hunting#North America 2|shot wolves en masse from helicopters}} in an attempt to artificially inflate populations of game, such as moose and caribou, to make hunting them easier. This is opposed by many, as the game populations are not endangered (thus, this threatens ecological balance); wolves are a small threat to livestock in North America; most of the wolf body —including meat and bones— goes wasted as they are sought mainly for their pelts.&lt;br /&gt;
&lt;br /&gt;
Location: Alaska&lt;br /&gt;
&lt;br /&gt;
===Newspaper===&lt;br /&gt;
[[File:umwelt life scientists.png]][[File:umwelt life rit.png]][[File:umwelt life umass.png]]&lt;br /&gt;
&lt;br /&gt;
Creating new life has long been a well understood process, in a lab or otherwise.&lt;br /&gt;
&lt;br /&gt;
Location: Various&lt;br /&gt;
&lt;br /&gt;
Specific versions appeared for RIT and UMass Amherst&lt;br /&gt;
&lt;br /&gt;
===Robot Paul Revere===&lt;br /&gt;
[[File:umwelt paul revere.png]]&lt;br /&gt;
&lt;br /&gt;
Combination of the legend of {{w|Paul Revere#&amp;quot;Midnight Ride&amp;quot;|Paul Revere}} and computer binary.&lt;br /&gt;
&lt;br /&gt;
Location: Boston&lt;br /&gt;
&lt;br /&gt;
===Counting Cards===&lt;br /&gt;
&amp;lt;!-- card counting explanation needed. --&amp;gt;&lt;br /&gt;
All four colleges in this series are in Massachusetts and, being similar, in pairs, rival each other to some extent (Harvard-MIT, and Smith-Wellesley). The comic contains a reference to the {{w|MIT Blackjack Team}}, which entered popular culture via the {{w|21 (2008 film)|film 21}}, and a possible reference to Orwell's book '1984' and/or {{w|Chain of Command (Star Trek: The Next Generation)|popular homage to it via Star Trek}}: &amp;quot;There are four lights.&amp;quot;[http://www.youtube.com/watch?v=ChYIm6MW39k]&lt;br /&gt;
&lt;br /&gt;
Bonus: The thought-gears in panel 3 are spinning against each other.&lt;br /&gt;
&lt;br /&gt;
Location: Harvard&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards harvard.png]]&lt;br /&gt;
&lt;br /&gt;
Location: MIT&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards mit.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Course 15s&amp;quot; at MIT are the business major students, often mocked for taking a less-rigorous program.&lt;br /&gt;
&lt;br /&gt;
Location: Smith&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards smith.png]]&lt;br /&gt;
&lt;br /&gt;
Location: Wellesley&lt;br /&gt;
&lt;br /&gt;
[[File:umwelt counting cards wellesley.png]]&lt;br /&gt;
&lt;br /&gt;
Both Wellesley and Smith are all-women colleges in Massachusetts.&lt;br /&gt;
&lt;br /&gt;
===Giant Box Trap===&lt;br /&gt;
[[File:umwelt box trap.png]]&lt;br /&gt;
&lt;br /&gt;
Randall got his undergrad in Physics at the {{w|Christopher Newport University}}, and was scheduled to return shortly to give a talk.&lt;br /&gt;
&lt;br /&gt;
Location: Christopher Newport University&lt;br /&gt;
&lt;br /&gt;
===Chemo Support===&lt;br /&gt;
[[File:umwelt chemo.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] has shaved his head in support of people going through {{w|chemotherapy}} but, as he is always depicted as a stick figure with no hair, no one can tell.&lt;br /&gt;
&lt;br /&gt;
Randall's now-wife was diagnosed with breast cancer, and apparently DFCI is where they've been spending much of their time.&lt;br /&gt;
&lt;br /&gt;
Location: Dana-Farber Cancer Institute&lt;br /&gt;
&lt;br /&gt;
===Reviews===&lt;br /&gt;
[[File:reviews.png]]&lt;br /&gt;
&lt;br /&gt;
The previous strip appears twice when using [[wikipedia:Tor (anonymity network)|Tor]].&lt;br /&gt;
&lt;br /&gt;
Browser: Any using Tor, xkcd API (JSON, RSS, Atom), w3m, and reports of seeing it on a Kindle Fire HD&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Note to courageous readers- The transcript has been reordered in the order in which the comics appear in the picture and appropriate names have been given.]&lt;br /&gt;
&lt;br /&gt;
:'''The Void'''&lt;br /&gt;
:[An epic void with a bright light shining right on you.]&lt;br /&gt;
&lt;br /&gt;
:'''Aurora'''&lt;br /&gt;
:[Cueball heading out past Megan comfortably sitting in front of a desk.]&lt;br /&gt;
:Cueball: Apparently there's a solar flare that's causing some Great Aurorae. CBC says they may even be visible here! Wanna drive out to see?&lt;br /&gt;
:Megan: Hockey's on.&lt;br /&gt;
:Cueball: Ok. Later.&lt;br /&gt;
&lt;br /&gt;
:[An expansive, marvelous image of emerald green northern lights, floating down through the sky.]&lt;br /&gt;
&lt;br /&gt;
:Megan: See anything?&lt;br /&gt;
:Cueball: No, just clouds.&lt;br /&gt;
:Megan: Not surprised.&lt;br /&gt;
&lt;br /&gt;
:'''Aurora-US'''&lt;br /&gt;
:[Cueball heading out past Megan comfortably sitting in front of a desk.]&lt;br /&gt;
:Cueball: Apparently there's a solar storm causing northern lights over Canada. CNN say they might even be visible {Options: &amp;quot;As Far South As Us&amp;quot;, &amp;quot;Here in Boston&amp;quot;, &amp;quot;Maine&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oregon&amp;quot;, &amp;quot;New York&amp;quot;}! Wanna drive out to see?&lt;br /&gt;
:Megan: It's cold out.&lt;br /&gt;
:Cueball: Ok. Later.&lt;br /&gt;
&lt;br /&gt;
:[An expansive, marvelous image of emerald green northern lights, floating down through the sky.]&lt;br /&gt;
&lt;br /&gt;
:Megan: See anything?&lt;br /&gt;
:Cueball: No, just clouds.&lt;br /&gt;
:Megan: Not surprised.&lt;br /&gt;
&lt;br /&gt;
:'''Snake'''&lt;br /&gt;
:[Two people standing next to each other. Megan is holding the head end of a snake. Depending on the width of your browser, the snake is: three frames, the third of which  has a little bit of a bump; the first frame has a human-size bump, the second has a third person looking at the snake, and the third has the snake going though two Portals; a squirrel and the human-size bump in the first frame, a ring next to the third person in the second frame, and Beret Guy riding the snake in front of the portal; or The squirrel, a fourth person within the snake being coiled, and the human bump in the first frame, the ring, a fifth person in love, and the third person in the second frame, Beret Guy and the portal in the third frame, and the same two people in the fourth frame.]&lt;br /&gt;
&lt;br /&gt;
:Megan: I found a snake, but then I forgot to stop.&lt;br /&gt;
&lt;br /&gt;
:'''Black hat'''&lt;br /&gt;
:[Two people sitting at a desk. One is Black Hat. The other is an analyst. Black Hat has a number of terminals attached to his head.]&lt;br /&gt;
:Analyst: You come across a tortoise in the desert. You flip it over. It struggles to right itself. You watch. You're not helping. Why is that?&lt;br /&gt;
&lt;br /&gt;
:Black Hat: It '''knows''' what it did.&lt;br /&gt;
&lt;br /&gt;
:[View of the entire scene, with said turtle off in the distance on its back and trying to right itself.]&lt;br /&gt;
&lt;br /&gt;
:'''Too quiet'''&lt;br /&gt;
:[A group of four scale down a wall into a field in the middle of the night. They walk off single-file.]&lt;br /&gt;
:Person 1: It's quiet.&lt;br /&gt;
&lt;br /&gt;
:Person 3: Yeah - *Too* quiet.&lt;br /&gt;
&lt;br /&gt;
:[A Velociraptor is off in the distance, following the group.]&lt;br /&gt;
:Person 4: Yeah - too *too* quiet.&lt;br /&gt;
&lt;br /&gt;
:Person 2: Yeah - 2quiet2furious.&lt;br /&gt;
:Person 1: Fuck off, Steve.&lt;br /&gt;
&lt;br /&gt;
:'''Pond'''&lt;br /&gt;
:[A landscape showing a pond, some reeds, and a set of mountains off in the distance.]&lt;br /&gt;
&lt;br /&gt;
:'''Galaxies'''&lt;br /&gt;
:[A trio of galaxies.]&lt;br /&gt;
:Galaxy 1: He's not looking!&lt;br /&gt;
:Galaxy 3: Let's get him!&lt;br /&gt;
:[Lines draw in illustrating the eye-line of one of a pair of people.]&lt;br /&gt;
:Cueball: So he said he didn't get the text, but c'mon, he *never* misses texts. Right? ..hello?&lt;br /&gt;
:Megan: I'm just staring at your head freaked out by the fact that there are millions of galaxies *directly behind it*.&lt;br /&gt;
&lt;br /&gt;
:'''xkcd Gold'''&lt;br /&gt;
:[Cueball holding bat.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: Sorry, but this comic&lt;br /&gt;
&lt;br /&gt;
:[Cueball starts to wind up.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: requires&lt;br /&gt;
&lt;br /&gt;
:[Cueball prepares to strike with bat.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: XKCD&lt;br /&gt;
&lt;br /&gt;
:[Cueball swings at a beehive.]&lt;br /&gt;
:GOLD&lt;br /&gt;
&lt;br /&gt;
:[Penis Bees fly out of the beehive.]&lt;br /&gt;
&lt;br /&gt;
:'''Yo mamma'''&lt;br /&gt;
:[Cueball yells at a friend.]&lt;br /&gt;
:Cueball: Oh yeah? Well you mama's so ''cynical'', her only dog ballast is a ''leash''!&lt;br /&gt;
:(This comic takes place in a dystopian future where the government is afraid dogs can hover, so it requires them to wear weights at all times, and some people privately doubt the government, but not enough to stop buying dog weights.)&lt;br /&gt;
&lt;br /&gt;
:'''Reddit'''&lt;br /&gt;
:Five seconds ago:&lt;br /&gt;
:[You sitting in front of a desk, reading a reddit thread.]&lt;br /&gt;
:You: Oh, hey, reddit has a link to some XKCD april fools comic.&lt;br /&gt;
&lt;br /&gt;
:Now: [An image of the xkcd comic page.]&lt;br /&gt;
:Five seconds from now:&lt;br /&gt;
&lt;br /&gt;
:You: ..hey&lt;br /&gt;
&lt;br /&gt;
:30 seconds from now:&lt;br /&gt;
:[DANCE PARTY!]&lt;br /&gt;
&lt;br /&gt;
:'''Buns and Hot dogs'''&lt;br /&gt;
:Cueball: What I wanna know is why do hot dogs come in packages of six while buns come in these huge sacks of ash and blood from which &amp;quot;Ave Maria&amp;quot; is faintly audible?&lt;br /&gt;
:[Chanting sacks of gore in the background.]&lt;br /&gt;
&lt;br /&gt;
:'''Twitter'''&lt;br /&gt;
:[A Twitter account page with the following: Many tweets, fewer following, even fewer followers, A bunch of assholes in the suggested follow box, trending topics partitioned into: Word Games, Misogyny, and Bieber, stuff your eyes automatically ignore, A really pleasant blue. and the timeline: Something about a podcast, Someone confused because the description doesn't match the link, The link you clicked on to get to this comic, Rob Delaney, Passive Aggression, and horse ebooks.]&lt;br /&gt;
&lt;br /&gt;
:'''Wikipedia'''&lt;br /&gt;
:[There's no comic here because instead of drawing one, I spent the last hour reading every news story cited in the Wikipedia article on The Mile High Club.]&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome'''&lt;br /&gt;
:[A Chrome plugin error page.]&lt;br /&gt;
:Chrome: This plugin requires Sergey Brin's permission to run. Please wait while he is woken.&lt;br /&gt;
&lt;br /&gt;
:'''Chrome/Firefox'''&lt;br /&gt;
:[Two people; Cueball is sitting at a desk in front of a laptop.]&lt;br /&gt;
:Cueball: Man, chrome's hardware acceleration really sucks.&lt;br /&gt;
:Ponytail: Oh - Theres' a great add-on that fixes it.&lt;br /&gt;
:Cueball: Oh? What's it called?&lt;br /&gt;
:Ponytail: &amp;quot;Firefox&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome-2'''&lt;br /&gt;
:[A Chrome plugin error page with the characteristic jigsaw piece.]&lt;br /&gt;
:Chrome: Chrome is looking for this piece. Have you seen it? Chrome thinks it links up with a corner.&lt;br /&gt;
&lt;br /&gt;
:'''Mozilla Firefox Private Browsing'''&lt;br /&gt;
:[Firefox error page.]&lt;br /&gt;
:Firefox: Well, this is embarrassing. You know how I'm not supposed to peek at your browsing in private mode? Firefox.. is sorry. Firefox will not blame you if you&lt;br /&gt;
:[Button with text.]&lt;br /&gt;
:Click here to report this incident.&lt;br /&gt;
&lt;br /&gt;
:'''Internet Explorer'''&lt;br /&gt;
:[IE error page.]&lt;br /&gt;
:IE: Error: Internet Explorer has given up.&lt;br /&gt;
&lt;br /&gt;
:'''Maxthon'''&lt;br /&gt;
:Cueball: Maxthon? Hey, 2005 called. Didn't say anything. All I could hear was sobbing. This is getting harder. Anyway, yeah, Maxthon's still cool! Didn't know it was still around!&lt;br /&gt;
&lt;br /&gt;
:'''Netscape Navigator'''&lt;br /&gt;
:[Two different versions exist: one with Cueball talking and one with Megan with tentacle arms talking.]&lt;br /&gt;
:Person: Netscape Navigator? Hey, the nineties called - drunk as usual. I hung up without saying anything. This is getting harder. Anyway - it's cool that you'e got netscape running.&lt;br /&gt;
&lt;br /&gt;
:'''Rockmelt'''&lt;br /&gt;
:[Cueball running to laptop.]&lt;br /&gt;
:I ran to Rockmelt to hide my face&lt;br /&gt;
&lt;br /&gt;
:[Cueball sitting at laptop.]&lt;br /&gt;
:But Rockmelt cried out -&lt;br /&gt;
&lt;br /&gt;
:[Laptop shouting.]&lt;br /&gt;
:NO HIDING PLACE&lt;br /&gt;
&lt;br /&gt;
:[zoom out.]&lt;br /&gt;
:NO HIDING PLACE DOWN HERE&lt;br /&gt;
&lt;br /&gt;
:'''Google Chrome-3'''&lt;br /&gt;
:[A chrome plugin error page.]&lt;br /&gt;
:Chrome: There does not exist --nor could there '''ever''' exist-- a plugin capable of displaying this content.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/Amazon/The Times/Google - Chrome'''&lt;br /&gt;
:[Chrome error page.]&lt;br /&gt;
:Chrome: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/Amazon/The Times/Google is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/Amazon - Firefox'''&lt;br /&gt;
:[Firefox error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/Amazon is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Microsoft/The Times'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, Microsoft/The Times is a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Corporate - Generic'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Error: This plugin requires clearance from the corporate press office in order to run. Remember, we work as a team; individual employees should ''never'' speak for the company without authorization.&lt;br /&gt;
&lt;br /&gt;
:'''Military'''&lt;br /&gt;
:[Person looking at two browser windows.]&lt;br /&gt;
:Cueball: I know y'all know what you're doing. But if you're on a military machine and you're supposed to be watching for missiles or something, I hope you're keeping an eye on that in the background while you're reading comics. Also: Thanks.&lt;br /&gt;
&lt;br /&gt;
:'''T-Mobile'''&lt;br /&gt;
:[Error page.]&lt;br /&gt;
:Data Error: T-Mobile was unable to establish a connection&lt;br /&gt;
&lt;br /&gt;
:'''Verizon'''&lt;br /&gt;
:[Error page]&lt;br /&gt;
:Error: You have exceeded your Verizon monthly bandwidth cap. Mobile web browsing has been disabled.&lt;br /&gt;
&lt;br /&gt;
:'''France'''&lt;br /&gt;
:[Two people; one of which is browsing using a laptop.]&lt;br /&gt;
:Cueball: Hey, you're French, right? Ever see what happens when you type &amp;quot;French Military Victories&amp;quot; into Google?&lt;br /&gt;
:French person: Does it take you to an article on Napoleon?&lt;br /&gt;
&lt;br /&gt;
:French person: ..no? Strange, given how he kicked everyone's asses up and down Europe for over a decade.&lt;br /&gt;
&lt;br /&gt;
:[Beat frame.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: Touche.&lt;br /&gt;
:French person: You know, that'd sound smarter if you didn't pronounce it like it rhymes with &amp;quot;douche&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:'''Germany'''&lt;br /&gt;
:[Cueball dropping food from an unorthodox high perch.]&lt;br /&gt;
:June 1948: In response to the Soviet blockade of East Germany, the western allies construct the Berlin Chairlift.&lt;br /&gt;
:Cueball on chairlift: Food!&lt;br /&gt;
&lt;br /&gt;
:'''Israel'''&lt;br /&gt;
:[Person on phone.]&lt;br /&gt;
:Person (Translation from Hebrew): Mom, I met a great guy! But he's not Jewish. ...Wait, what do you mean &amp;quot;neither are we&amp;quot;? I'm completely confused.&lt;br /&gt;
&lt;br /&gt;
:'''Carnot Cycle'''&lt;br /&gt;
:[Ponytail on a motorcycle with a heat-entropy graph on the side.]&lt;br /&gt;
:Ponytail: Check out my new Carnot Cycle!&lt;br /&gt;
:Cueball: Neat - how fast does it go?&lt;br /&gt;
:Ponytail: Depends how cold it is outside.&lt;br /&gt;
&lt;br /&gt;
:'''Great Britain'''&lt;br /&gt;
:[Illustration of the Atlantic ocean.]&lt;br /&gt;
:American person: Sorry I don't have a comic poking fun at the UK here. I only had time to get to the most ''important'' US states.&lt;br /&gt;
:British person: Hey - At least we have free health care and real ale.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Blizzard'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;Alabama&amp;quot;, &amp;quot;Boston&amp;quot;, &amp;quot;Chicago&amp;quot;, &amp;quot;Dallas&amp;quot;, &amp;quot;Georgia&amp;quot;, &amp;quot;Halifax&amp;quot;, &amp;quot;Illinois&amp;quot;, &amp;quot;Michigan&amp;quot;, &amp;quot;Minnesota&amp;quot;, &amp;quot;Missouri&amp;quot;, &amp;quot;the Northeast&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oklahoma&amp;quot;, &amp;quot;Ottawa&amp;quot;, 'Pennsylvania&amp;quot;, &amp;quot;Philadelphia&amp;quot;, &amp;quot;Texas&amp;quot;, &amp;quot;Toronto&amp;quot;, &amp;quot;Tennessee&amp;quot;, &amp;quot;New York&amp;quot;, &amp;quot;Wisconsin&amp;quot;}! That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
:[Both people are trudging through a massive blizzard.]&lt;br /&gt;
:Danish: In pictures, snow always looked so nice and sof - ''AAAA! MY NECK! How do people live here?!''&lt;br /&gt;
:Cueball: Come on - it's only three more miles.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Tornado'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;Alabama&amp;quot;, &amp;quot;Dallas&amp;quot;, &amp;quot;Illinois&amp;quot;, &amp;quot;The Midwest&amp;quot;, &amp;quot;Missouri&amp;quot;, &amp;quot;Ohio&amp;quot;, &amp;quot;Oklahoma&amp;quot;, &amp;quot;Ottawa&amp;quot;, &amp;quot;Tennessee&amp;quot;, &amp;quot;Texas&amp;quot;}!&lt;br /&gt;
:Cueball: That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
:[Both people are in a shelter in a prairie with a rapidly-approaching tornado.]&lt;br /&gt;
:Danish: AAAA CLOSE THE SHELTER DOOR!&lt;br /&gt;
:Cueball: Say the magic words...&lt;br /&gt;
:Danish: THIS PLACE IS THE WORST!&lt;br /&gt;
:Cueball: Thank you.&lt;br /&gt;
&lt;br /&gt;
:'''Earthquake-Hurricane'''&lt;br /&gt;
:[Two people sitting at a desk, facing each other. The desk rattles.]&lt;br /&gt;
:Cueball: Stop jiggling your leg.&lt;br /&gt;
:Danish: I'm not ji-.. oh!&lt;br /&gt;
:Cueball: What!&lt;br /&gt;
:Danish: You'll get it..&lt;br /&gt;
&lt;br /&gt;
:[EVERYTHING RUMBLES.]&lt;br /&gt;
:Cueball: ..HOLY CRAP IT'S AN EARTHQUAKE!&lt;br /&gt;
:Danish: Just a little one. Happens all the time back in San Francisco.&lt;br /&gt;
&lt;br /&gt;
:Cueball: But this is {Options: &amp;quot;D.C&amp;quot;, &amp;quot;Florida&amp;quot;, &amp;quot;Houston&amp;quot;, &amp;quot;Miami&amp;quot;, &amp;quot;New Jersey&amp;quot;, &amp;quot;North Carolina&amp;quot;, &amp;quot;South Carolina&amp;quot;, &amp;quot;Virgina&amp;quot;}! That was huge!&lt;br /&gt;
:Cueball: That was huge!&lt;br /&gt;
:Danish: Seriously? That's the worst this place can do? Wow. I guess we grow up tougher in California.&lt;br /&gt;
:Cueball: Oh ''really''...&lt;br /&gt;
&lt;br /&gt;
:Six Months Later..&lt;br /&gt;
&lt;br /&gt;
:[Both are in the middle of a hurricane. Danish is grabbing onto a signpost to avoid being swept away.]&lt;br /&gt;
:Danish: AAAAA WHAT THE SHIIIIT!&lt;br /&gt;
:Cueball: Calm down - this is barely a category 2.&lt;br /&gt;
&lt;br /&gt;
:'''Lake Diver Killer'''&lt;br /&gt;
:[TV Field Reporter in front of a cordoned-off lake.]&lt;br /&gt;
:Reporter: Police divers searching the bay say they have recovered the body of another victim of the &amp;quot;Lake Diver Killer.&amp;quot;&lt;br /&gt;
:Reporter: During the search, three more divers were reported missing.&lt;br /&gt;
&lt;br /&gt;
:'''Washington'''&lt;br /&gt;
:[The statue of Abraham Lincoln in the Lincoln Memorial.]&lt;br /&gt;
:In this Marble Prison As in the nightmares of the nation they tried to devour&lt;br /&gt;
:The nanobots that constituted Abraham Lincoln&lt;br /&gt;
:Are entombed forever.&lt;br /&gt;
&lt;br /&gt;
:'''Alaska'''&lt;br /&gt;
:[A person with a gun chasing a helicopter on the back of a wolf in a snowy Alaskan field.]&lt;br /&gt;
:Some people hunt wolves from helicopters. I hunt helicopters from a wolf.&lt;br /&gt;
&lt;br /&gt;
:'''Life in lab'''&lt;br /&gt;
:[Newspaper headline.]&lt;br /&gt;
:Scientists/UMass Amherst students/RIT students create life in lab&lt;br /&gt;
:[Caption under picture of scientists.]&lt;br /&gt;
:&amp;quot;The trick was fuckin'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:'''American Revolution'''&lt;br /&gt;
:Robot Paul Revere: Remember: Zero if by land, One if by sea.&lt;br /&gt;
&lt;br /&gt;
:'''MIT'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of MIT students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: I see their admission standards have been slipping.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''MIT Course 15c'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of MIT students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: I *knew* we shouldn't have picked course 15s.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''Smith/Wellesley'''&lt;br /&gt;
:[Two people in front of a group of students.]&lt;br /&gt;
:Cueball: I've hired a team of Smith/Wellesley students to count cards for us.&lt;br /&gt;
:Hairy: We'll be rich!&lt;br /&gt;
&lt;br /&gt;
:[Hairy deals some cards while the students watch.]&lt;br /&gt;
&lt;br /&gt;
:[The gears turn..]&lt;br /&gt;
&lt;br /&gt;
:Student: Five. There are five cards.&lt;br /&gt;
:Cueball: We should've gone with Wellesley/Smith.&lt;br /&gt;
:Hairy: Yeah - there are actually four.&lt;br /&gt;
&lt;br /&gt;
:'''CNU'''&lt;br /&gt;
:[Person unsuspectingly strolls under a giant box trap controlled by a Trible.]&lt;br /&gt;
:I worry that CNU only invited me back as a ruse because they realized I never turned in my final paper and want my diploma back. But if it turns out it's for real, I'll see you Wednesday at the Ferguson!&lt;br /&gt;
&lt;br /&gt;
:'''Dana Farber'''&lt;br /&gt;
:[Cueball, pointing towards head.]&lt;br /&gt;
:Cueball: Check it out - In support of people going through chemo, I shaved my head.&lt;br /&gt;
:Lots of love to everyone reading this at Dana Farber. Cancer sucks. If you are new to DCFI, there's a great little garden on the third floor of the yawkey if you need somewhere quiet to just sit for a little bit and breathe.&lt;br /&gt;
&lt;br /&gt;
:'''Reviews'''&lt;br /&gt;
:Shopping before online reviews:&lt;br /&gt;
:[Cueball and Megan stand in a store. Cueball points at a lamp on the table in front of him. There is another lamp on the table behind them.]&lt;br /&gt;
:Cueball: This lamp is pretty.&lt;br /&gt;
:Megan: And affordable.&lt;br /&gt;
:Cueball: Let's get it.&lt;br /&gt;
:Megan Ok! &lt;br /&gt;
&lt;br /&gt;
:Shopping now:&lt;br /&gt;
:[Cueball points at a lamp on the table in front of him. Megan looks at her phone.]&lt;br /&gt;
:Cueball: This lamp is pretty.&lt;br /&gt;
:Megan: It's got 1 1/2 stars on Amazon. Reviews all say to avoid that brand.&lt;br /&gt;
&lt;br /&gt;
:[Cueball and Megan are now both looking at their phones.]&lt;br /&gt;
:Cueball: This one has good reviews.&lt;br /&gt;
:Megan: Wait, one guy says when he plugged it in, he got a metallic taste in his mouth and his cats went deaf.&lt;br /&gt;
:Cueball: Eek. What about- ...no, review points out it resembles a uterus.&lt;br /&gt;
&lt;br /&gt;
:[Cueball is still looking at his phone, Megan has hers at her side.]&lt;br /&gt;
:Cueball: Ok, I found a Swiss lampmaker with perfect reviews. Her lamps start at 1,300 Francs and she's only reachable by ski lift.&lt;br /&gt;
:Megan: You know, our room looks fine in the dark.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*Reddit user [http://www.reddit.com/user/SomePostMan SomePostMan] created a [http://www.reddit.com/r/xkcd/comments/t6wmh/all_umwelt_1037_comics_in_two_imgur_albums/ post] that collected all of the Umwelt comics and added explanations. Much of his information is now included in this wiki.&lt;br /&gt;
&lt;br /&gt;
*The transcript section for this comic also included a note alluding to its extreme length:&lt;br /&gt;
: [ [Two people...] ]  ((..wait.. &amp;lt;scrolls through a listing of everything&amp;gt; oh goddammit Randall. Thanks a bunch, dude. I better get a raise for typing out all this))  &lt;br /&gt;
: [Two people standing next to each other.  One is holding the head end of a snake...&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;br /&gt;
[[Category:Comics featuring Danish]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Dynamic comics]]&lt;br /&gt;
[[Category:Philosophy]]&lt;br /&gt;
[[Category:Penis]]&lt;br /&gt;
[[Category:Video games]]&lt;br /&gt;
[[Category:Velociraptors]]&lt;br /&gt;
[[Category:April fools' comics]]&lt;br /&gt;
[[Category:Your Mom]]&lt;br /&gt;
[[Category:Puns]]&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:183:_Snacktime_Rules&amp;diff=134030</id>
		<title>Talk:183: Snacktime Rules</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:183:_Snacktime_Rules&amp;diff=134030"/>
				<updated>2017-01-22T18:28:01Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: A theroy&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hm, how can we know, really, if it's Randall or Cueball speaking? –[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 20:19, 5 March 2013 (UTC)&lt;br /&gt;
 &lt;br /&gt;
It's Randall. I was there.  [[User:Spotlouise|Spotlouise]] ([[User talk:Spotlouise|talk]]) 16:13, 21 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'm pretty sure that Cueball is basically just an abstraction of Randall.  Black Hat, too, at times.  Odd that no one seems to notice. [[User:Daddy|Daddy]] ([[User talk:Daddy|talk]]) 15:43, 28 April 2013 (UTC)&lt;br /&gt;
:: Everyone knows it; it'd be impossible for Randall to not put himself in the comic. However, the ''title text'' is '''always''' Randall, so that implies that the stick figure is definitely Randall. [[Special:Contributions/75.185.176.214|75.185.176.214]] 00:07, 16 August 2013 (UTC) I should probably join... I'd be able to stop displaying my IP&lt;br /&gt;
::: The title text is not always Randall.{{unsigned|Flewk}}&lt;br /&gt;
&lt;br /&gt;
:: I feel like most of the characters are at least sometimes abstractions of Randall. I mean almost always Cueball is. But I think the other characters can be aspects of him sometimes. Black Hat, Beret Guy, he'll sometimes even White Hat and Megan. Although they usually represent other things, if anything at all. But sometimes. {{unsigned ip|108.162.245.64}}&lt;br /&gt;
&lt;br /&gt;
Based on the title text Randall had probably just turned 6, so there would be two years until he next could have a snack - and the mother probably believed that he would have forgotten such a rule by then (alas that was clearly not the case... :-) [[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 20:27, 12 December 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
As I read it, it isn't that he gets no snacks, it is that he gets no snacks in his room. {{unsigned ip|162.158.252.185}}&lt;br /&gt;
&lt;br /&gt;
Just a thought, but maybe this rule is based on a measurement of Randall's age in terms of some unit other than years, which would be ''really'' nerdy.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:28, 22 January 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:115:_Meerkat&amp;diff=132559</id>
		<title>Talk:115: Meerkat</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:115:_Meerkat&amp;diff=132559"/>
				<updated>2016-12-15T18:50:38Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: What's with the gorilla?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;quot;Quuuuiiiiet!!  ...  Theres NOTHing IN the RULEbook that SAYS an ELephant CAN'T. PLAY!  Plllay ball!!!&amp;quot;  &lt;br /&gt;
- Umpire regarding Bobo playing baseball, &amp;quot;Gone Batty&amp;quot; (1954) Looney Tunes [[Special:Contributions/152.119.255.250|152.119.255.250]] 16:40, 18 September 2013 (UTC)  &lt;br /&gt;
&lt;br /&gt;
But - rugby players don't wear helmets! Unlike a certain country's so-called &amp;quot;football&amp;quot; players ;) {{unsigned ip|108.162.237.130}}&lt;br /&gt;
:Some wear protective padding on their heads.  Try a google image search for &amp;quot;rugby headgear&amp;quot;.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:38, 15 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I came to this page not really for the explanation, but in search of an answer to this question: Is there any particular reason why the title-text mentions a gorilla?  I was thinking it might be a reference to something, either a story involving a gorilla playing a sport (possibly rugby), or a real-life rule against gorillas playing rugby (crazy, but plausible; there are U.S. state laws that are arguably weirder).  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:50, 15 December 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:115:_Meerkat&amp;diff=132558</id>
		<title>Talk:115: Meerkat</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:115:_Meerkat&amp;diff=132558"/>
				<updated>2016-12-15T18:38:33Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: A reply to 108.162.237.130's comment about helmets.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;quot;Quuuuiiiiet!!  ...  Theres NOTHing IN the RULEbook that SAYS an ELephant CAN'T. PLAY!  Plllay ball!!!&amp;quot;  &lt;br /&gt;
- Umpire regarding Bobo playing baseball, &amp;quot;Gone Batty&amp;quot; (1954) Looney Tunes [[Special:Contributions/152.119.255.250|152.119.255.250]] 16:40, 18 September 2013 (UTC)  &lt;br /&gt;
&lt;br /&gt;
But - rugby players don't wear helmets! Unlike a certain country's so-called &amp;quot;football&amp;quot; players ;) {{unsigned ip|108.162.237.130}}&lt;br /&gt;
:Some wear protective padding on their heads.  Try a google image search for &amp;quot;rugby headgear&amp;quot;.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:38, 15 December 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:490:_Morning_Routine&amp;diff=132358</id>
		<title>Talk:490: Morning Routine</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:490:_Morning_Routine&amp;diff=132358"/>
				<updated>2016-12-11T18:20:48Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;And by dint of being being far more convent to use in bed, tablets are weirder still.  [[User:Compro01|Compro01]] ([[User talk:Compro01|talk]]) 20:58, 13 August 2014 (UTC)&lt;br /&gt;
: Or smartphones... [[User:Elektrizikekswerk|Elektrizikekswerk]] ([[User talk:Elektrizikekswerk|talk]]) 10:28, 11 December 2014 (UTC)&lt;br /&gt;
::Guys, consider that this was posted in 2008... [[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 18:20, 11 December 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1143:_Location&amp;diff=132105</id>
		<title>Talk:1143: Location</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1143:_Location&amp;diff=132105"/>
				<updated>2016-12-05T15:37:07Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: Overlooked a tiny bit of that last tiny edit.  I will stop now.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I thought the words &amp;quot;like&amp;quot; and &amp;quot;hang out&amp;quot; were references to facebook's &amp;quot;like&amp;quot; and google's &amp;quot;hang out&amp;quot;. What do the native speakers think? {{unsigned|213.252.171.254|07:56, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
: Not in this case- here they're just being used as the everyday terms that facebook and google co-opted. {{unsigned|140.247.0.10|08:12, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:: I agree. {{unsigned|122.60.40.91|09:28, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
: Native speaker here: there doesn't seem to be anything distinctive about the use of 'like' and 'hang out' in this comic to indicate they might be references. {{unsigned|170.194.32.42|10:33, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:: The words aren't out of place otherwise, so it just might be a (big) coincidence. I still find it likely to be true. [[Special:Contributions/207.237.164.241|207.237.164.241]] 11:18, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: It's really not a &amp;quot;big&amp;quot; coincidence at all. 'Like' and 'hang out' are ''the'' most obvious word choices in their context in the comic. The same words are used in social network apps ''because'' they are common social phrases. It doesn't even warrant the word &amp;quot;coincidence&amp;quot;, let alone a &amp;quot;big&amp;quot; coincidence. [[Special:Contributions/46.65.14.73|46.65.14.73]] 22:55, 16 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Another native speaker here. You typically would not &amp;quot;hang out&amp;quot; – in real life – with people you don't &amp;quot;like&amp;quot; – as in you like your friends. There's nothing in the comic to make me think there's any connection with Facebook or Google+. [[Special:Contributions/24.41.5.167|24.41.5.167]] 11:44, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: This native speaker agrees.  The dialog is ordinary informal American English.  That's why facebook and Google hijacked the words.  Facebook and Google want to be seen as informal and idiomatic institutions. {{unsigned|174.125.142.147|15:25, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
::They'll be very disappointed when they discover that he just decorated the bushes around his house with green LED lights for Christmas.  --Geoff [[Special:Contributions/128.156.10.80|128.156.10.80]] 19:22, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
No explanation for the space noises? [[User:Max Nanasy|Max Nanasy]] ([[User talk:Max Nanasy|talk]]) 21:28, 5 December 2012 (UTC) &lt;br /&gt;
&lt;br /&gt;
: The game literally makes space noises. Like... ''whooosshhshhhssshhoooooshhh.'' Things like that. [[Special:Contributions/138.110.225.187|138.110.225.187]] 22:30, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Thank you for that. I had no idea what was being referenced, serves me right for not reading the title text. (This is not sarcasm, it sounded like it was when I read it to myself, so I'm adding this disclaimer) [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]])  22:33, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: But &amp;quot;space noises&amp;quot; is an oxymoron.  In space, you can't hear noise.  (Oh... you mean bad-sci-fi-movie noises...) [[Special:Contributions/207.225.239.130|207.225.239.130]] 19:16, 6 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Another Google closed beta – you get to play by invite only. Meh [[Special:Contributions/24.41.5.167|24.41.5.167]] 23:53, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm trying to find a game that I played on the computer about 2 years ago. I remember that you could see the entire play area the entire time. It was timed. The object was to get to a hole (maybe blue in color) to end the level. There were blocks that often blocked your path, which you needed to push out of your way or more often use them to make bridges to cross water. Some of the levels were very much a timing game where you needed to quickly move a block through a winding path(up, down, left, right only)to avoid being caught by, I believe, moving blocks.The closest screen shot that I've found is Chips Challenge, which is not the game that I played previously.  I remember there were many levels, probably between 50 and 100. Ideas?[[User:Shine|Shine]] ([[User talk:Shine|talk]]) 15:33, 6 December 2012 (UTC) RESOLVED : game was called Silversphere[[User:Shine|Shine]] ([[User talk:Shine|talk]]) 21:24, 7 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: RE: Shine. The game was called Rodent's Revenge. Phenomenal Times, Shine, Phenomenal Times. Glad you reminded me about it!&lt;br /&gt;
:::Not the game I was thinking of, but fun game too. No animals of any kind in the game that I'm trying to find [[User:Shine|Shine]] ([[User talk:Shine|talk]]) 17:13, 7 December 2012 (UTC)&lt;br /&gt;
:OK got it. It was called Silversphere. [[User:Shine|Shine]] ([[User talk:Shine|talk]]) 21:24, 7 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was absolutely certain that the bright green &amp;quot;fountains&amp;quot; were supposed to illustrate some radioactive material and them being &amp;quot;excited&amp;quot; was somehow a particle physics joke I couldnt nail down.&lt;br /&gt;
&lt;br /&gt;
:My assumption was that his house was just in a good location to watch some space phenomenon. The Aurora, or a meteor shower.[[Special:Contributions/141.101.104.156|141.101.104.156]] 12:27, 17 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
You should really try Ingress now. It's great. However, I don't understand what he lives beside that's so portal-worthy. --[[Special:Contributions/108.162.218.185|108.162.218.185]] 00:54, 20 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
By my house, across the Mississippi from St,l there is a Catholic Church with a portal on two idols and a bell tower. Unfortunately it is just out of reach from my bedroom.  [[Special:Contributions/173.245.50.61|173.245.50.61]] 20:00, 24 December 2015 (UTC)&lt;br /&gt;
:Please do some research before the next time you associate the Catholic Church with idolatry.  If you would like, I may be able to refer you to some sources at some later time.&lt;br /&gt;
:—[[User:CsBlastoise|CsBlastoise]], a Catholic ([[User talk:CsBlastoise|talk]]) 15:29, 5 December 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1143:_Location&amp;diff=132102</id>
		<title>Talk:1143: Location</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1143:_Location&amp;diff=132102"/>
				<updated>2016-12-05T15:33:57Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: Tiny formatting edit.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I thought the words &amp;quot;like&amp;quot; and &amp;quot;hang out&amp;quot; were references to facebook's &amp;quot;like&amp;quot; and google's &amp;quot;hang out&amp;quot;. What do the native speakers think? {{unsigned|213.252.171.254|07:56, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
: Not in this case- here they're just being used as the everyday terms that facebook and google co-opted. {{unsigned|140.247.0.10|08:12, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:: I agree. {{unsigned|122.60.40.91|09:28, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
: Native speaker here: there doesn't seem to be anything distinctive about the use of 'like' and 'hang out' in this comic to indicate they might be references. {{unsigned|170.194.32.42|10:33, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:: The words aren't out of place otherwise, so it just might be a (big) coincidence. I still find it likely to be true. [[Special:Contributions/207.237.164.241|207.237.164.241]] 11:18, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: It's really not a &amp;quot;big&amp;quot; coincidence at all. 'Like' and 'hang out' are ''the'' most obvious word choices in their context in the comic. The same words are used in social network apps ''because'' they are common social phrases. It doesn't even warrant the word &amp;quot;coincidence&amp;quot;, let alone a &amp;quot;big&amp;quot; coincidence. [[Special:Contributions/46.65.14.73|46.65.14.73]] 22:55, 16 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Another native speaker here. You typically would not &amp;quot;hang out&amp;quot; – in real life – with people you don't &amp;quot;like&amp;quot; – as in you like your friends. There's nothing in the comic to make me think there's any connection with Facebook or Google+. [[Special:Contributions/24.41.5.167|24.41.5.167]] 11:44, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: This native speaker agrees.  The dialog is ordinary informal American English.  That's why facebook and Google hijacked the words.  Facebook and Google want to be seen as informal and idiomatic institutions. {{unsigned|174.125.142.147|15:25, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
::They'll be very disappointed when they discover that he just decorated the bushes around his house with green LED lights for Christmas.  --Geoff [[Special:Contributions/128.156.10.80|128.156.10.80]] 19:22, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
No explanation for the space noises? [[User:Max Nanasy|Max Nanasy]] ([[User talk:Max Nanasy|talk]]) 21:28, 5 December 2012 (UTC) &lt;br /&gt;
&lt;br /&gt;
: The game literally makes space noises. Like... ''whooosshhshhhssshhoooooshhh.'' Things like that. [[Special:Contributions/138.110.225.187|138.110.225.187]] 22:30, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Thank you for that. I had no idea what was being referenced, serves me right for not reading the title text. (This is not sarcasm, it sounded like it was when I read it to myself, so I'm adding this disclaimer) [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]])  22:33, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: But &amp;quot;space noises&amp;quot; is an oxymoron.  In space, you can't hear noise.  (Oh... you mean bad-sci-fi-movie noises...) [[Special:Contributions/207.225.239.130|207.225.239.130]] 19:16, 6 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Another Google closed beta – you get to play by invite only. Meh [[Special:Contributions/24.41.5.167|24.41.5.167]] 23:53, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm trying to find a game that I played on the computer about 2 years ago. I remember that you could see the entire play area the entire time. It was timed. The object was to get to a hole (maybe blue in color) to end the level. There were blocks that often blocked your path, which you needed to push out of your way or more often use them to make bridges to cross water. Some of the levels were very much a timing game where you needed to quickly move a block through a winding path(up, down, left, right only)to avoid being caught by, I believe, moving blocks.The closest screen shot that I've found is Chips Challenge, which is not the game that I played previously.  I remember there were many levels, probably between 50 and 100. Ideas?[[User:Shine|Shine]] ([[User talk:Shine|talk]]) 15:33, 6 December 2012 (UTC) RESOLVED : game was called Silversphere[[User:Shine|Shine]] ([[User talk:Shine|talk]]) 21:24, 7 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: RE: Shine. The game was called Rodent's Revenge. Phenomenal Times, Shine, Phenomenal Times. Glad you reminded me about it!&lt;br /&gt;
:::Not the game I was thinking of, but fun game too. No animals of any kind in the game that I'm trying to find [[User:Shine|Shine]] ([[User talk:Shine|talk]]) 17:13, 7 December 2012 (UTC)&lt;br /&gt;
:OK got it. It was called Silversphere. [[User:Shine|Shine]] ([[User talk:Shine|talk]]) 21:24, 7 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was absolutely certain that the bright green &amp;quot;fountains&amp;quot; were supposed to illustrate some radioactive material and them being &amp;quot;excited&amp;quot; was somehow a particle physics joke I couldnt nail down.&lt;br /&gt;
&lt;br /&gt;
:My assumption was that his house was just in a good location to watch some space phenomenon. The Aurora, or a meteor shower.[[Special:Contributions/141.101.104.156|141.101.104.156]] 12:27, 17 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
You should really try Ingress now. It's great. However, I don't understand what he lives beside that's so portal-worthy. --[[Special:Contributions/108.162.218.185|108.162.218.185]] 00:54, 20 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
By my house, across the Mississippi from St,l there is a Catholic Church with a portal on two idols and a bell tower. Unfortunately it is just out of reach from my bedroom.  [[Special:Contributions/173.245.50.61|173.245.50.61]] 20:00, 24 December 2015 (UTC)&lt;br /&gt;
:Please do some research before the next time you associate the Catholic Church with idolatry.  If you would like, I may be able to refer you to some sources at some later time.&lt;br /&gt;
—[[User:CsBlastoise|CsBlastoise]], a Catholic ([[User talk:CsBlastoise|talk]]) 15:29, 5 December 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1143:_Location&amp;diff=132101</id>
		<title>Talk:1143: Location</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1143:_Location&amp;diff=132101"/>
				<updated>2016-12-05T15:32:22Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: There's a specific way I want my signature to show up on only this page, and this is how I can do it.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I thought the words &amp;quot;like&amp;quot; and &amp;quot;hang out&amp;quot; were references to facebook's &amp;quot;like&amp;quot; and google's &amp;quot;hang out&amp;quot;. What do the native speakers think? {{unsigned|213.252.171.254|07:56, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
: Not in this case- here they're just being used as the everyday terms that facebook and google co-opted. {{unsigned|140.247.0.10|08:12, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:: I agree. {{unsigned|122.60.40.91|09:28, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
: Native speaker here: there doesn't seem to be anything distinctive about the use of 'like' and 'hang out' in this comic to indicate they might be references. {{unsigned|170.194.32.42|10:33, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:: The words aren't out of place otherwise, so it just might be a (big) coincidence. I still find it likely to be true. [[Special:Contributions/207.237.164.241|207.237.164.241]] 11:18, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: It's really not a &amp;quot;big&amp;quot; coincidence at all. 'Like' and 'hang out' are ''the'' most obvious word choices in their context in the comic. The same words are used in social network apps ''because'' they are common social phrases. It doesn't even warrant the word &amp;quot;coincidence&amp;quot;, let alone a &amp;quot;big&amp;quot; coincidence. [[Special:Contributions/46.65.14.73|46.65.14.73]] 22:55, 16 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Another native speaker here. You typically would not &amp;quot;hang out&amp;quot; – in real life – with people you don't &amp;quot;like&amp;quot; – as in you like your friends. There's nothing in the comic to make me think there's any connection with Facebook or Google+. [[Special:Contributions/24.41.5.167|24.41.5.167]] 11:44, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: This native speaker agrees.  The dialog is ordinary informal American English.  That's why facebook and Google hijacked the words.  Facebook and Google want to be seen as informal and idiomatic institutions. {{unsigned|174.125.142.147|15:25, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
::They'll be very disappointed when they discover that he just decorated the bushes around his house with green LED lights for Christmas.  --Geoff [[Special:Contributions/128.156.10.80|128.156.10.80]] 19:22, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
No explanation for the space noises? [[User:Max Nanasy|Max Nanasy]] ([[User talk:Max Nanasy|talk]]) 21:28, 5 December 2012 (UTC) &lt;br /&gt;
&lt;br /&gt;
: The game literally makes space noises. Like... ''whooosshhshhhssshhoooooshhh.'' Things like that. [[Special:Contributions/138.110.225.187|138.110.225.187]] 22:30, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Thank you for that. I had no idea what was being referenced, serves me right for not reading the title text. (This is not sarcasm, it sounded like it was when I read it to myself, so I'm adding this disclaimer) [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]])  22:33, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: But &amp;quot;space noises&amp;quot; is an oxymoron.  In space, you can't hear noise.  (Oh... you mean bad-sci-fi-movie noises...) [[Special:Contributions/207.225.239.130|207.225.239.130]] 19:16, 6 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Another Google closed beta – you get to play by invite only. Meh [[Special:Contributions/24.41.5.167|24.41.5.167]] 23:53, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm trying to find a game that I played on the computer about 2 years ago. I remember that you could see the entire play area the entire time. It was timed. The object was to get to a hole (maybe blue in color) to end the level. There were blocks that often blocked your path, which you needed to push out of your way or more often use them to make bridges to cross water. Some of the levels were very much a timing game where you needed to quickly move a block through a winding path(up, down, left, right only)to avoid being caught by, I believe, moving blocks.The closest screen shot that I've found is Chips Challenge, which is not the game that I played previously.  I remember there were many levels, probably between 50 and 100. Ideas?[[User:Shine|Shine]] ([[User talk:Shine|talk]]) 15:33, 6 December 2012 (UTC) RESOLVED : game was called Silversphere[[User:Shine|Shine]] ([[User talk:Shine|talk]]) 21:24, 7 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: RE: Shine. The game was called Rodent's Revenge. Phenomenal Times, Shine, Phenomenal Times. Glad you reminded me about it!&lt;br /&gt;
:::Not the game I was thinking of, but fun game too. No animals of any kind in the game that I'm trying to find [[User:Shine|Shine]] ([[User talk:Shine|talk]]) 17:13, 7 December 2012 (UTC)&lt;br /&gt;
:OK got it. It was called Silversphere. [[User:Shine|Shine]] ([[User talk:Shine|talk]]) 21:24, 7 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was absolutely certain that the bright green &amp;quot;fountains&amp;quot; were supposed to illustrate some radioactive material and them being &amp;quot;excited&amp;quot; was somehow a particle physics joke I couldnt nail down.&lt;br /&gt;
&lt;br /&gt;
:My assumption was that his house was just in a good location to watch some space phenomenon. The Aurora, or a meteor shower.[[Special:Contributions/141.101.104.156|141.101.104.156]] 12:27, 17 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
You should really try Ingress now. It's great. However, I don't understand what he lives beside that's so portal-worthy. --[[Special:Contributions/108.162.218.185|108.162.218.185]] 00:54, 20 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
By my house, across the Mississippi from St,l there is a Catholic Church with a portal on two idols and a bell tower. Unfortunately it is just out of reach from my bedroom.  [[Special:Contributions/173.245.50.61|173.245.50.61]] 20:00, 24 December 2015 (UTC)&lt;br /&gt;
:Please do some research before the next time you associate the Catholic Church with idolatry.  If you would like, I may be able to refer you to some sources at some later time.  —[[User:CsBlastoise|CsBlastoise]], a Catholic ([[User talk:CsBlastoise|talk]]) 15:29, 5 December 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1143:_Location&amp;diff=132100</id>
		<title>Talk:1143: Location</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1143:_Location&amp;diff=132100"/>
				<updated>2016-12-05T15:29:22Z</updated>
		
		<summary type="html">&lt;p&gt;CsBlastoise: We are to instruct the ignorant.  &amp;lt;strikethrough&amp;gt;Otherwise, they'll keep being wrong!&amp;lt;/strikethrough&amp;gt;  (Yes, I know that those tags won't actually work, but I have to convey the idea somehow.)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I thought the words &amp;quot;like&amp;quot; and &amp;quot;hang out&amp;quot; were references to facebook's &amp;quot;like&amp;quot; and google's &amp;quot;hang out&amp;quot;. What do the native speakers think? {{unsigned|213.252.171.254|07:56, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
: Not in this case- here they're just being used as the everyday terms that facebook and google co-opted. {{unsigned|140.247.0.10|08:12, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:: I agree. {{unsigned|122.60.40.91|09:28, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
: Native speaker here: there doesn't seem to be anything distinctive about the use of 'like' and 'hang out' in this comic to indicate they might be references. {{unsigned|170.194.32.42|10:33, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:: The words aren't out of place otherwise, so it just might be a (big) coincidence. I still find it likely to be true. [[Special:Contributions/207.237.164.241|207.237.164.241]] 11:18, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: It's really not a &amp;quot;big&amp;quot; coincidence at all. 'Like' and 'hang out' are ''the'' most obvious word choices in their context in the comic. The same words are used in social network apps ''because'' they are common social phrases. It doesn't even warrant the word &amp;quot;coincidence&amp;quot;, let alone a &amp;quot;big&amp;quot; coincidence. [[Special:Contributions/46.65.14.73|46.65.14.73]] 22:55, 16 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Another native speaker here. You typically would not &amp;quot;hang out&amp;quot; – in real life – with people you don't &amp;quot;like&amp;quot; – as in you like your friends. There's nothing in the comic to make me think there's any connection with Facebook or Google+. [[Special:Contributions/24.41.5.167|24.41.5.167]] 11:44, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: This native speaker agrees.  The dialog is ordinary informal American English.  That's why facebook and Google hijacked the words.  Facebook and Google want to be seen as informal and idiomatic institutions. {{unsigned|174.125.142.147|15:25, 5 December 2012 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
::They'll be very disappointed when they discover that he just decorated the bushes around his house with green LED lights for Christmas.  --Geoff [[Special:Contributions/128.156.10.80|128.156.10.80]] 19:22, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
No explanation for the space noises? [[User:Max Nanasy|Max Nanasy]] ([[User talk:Max Nanasy|talk]]) 21:28, 5 December 2012 (UTC) &lt;br /&gt;
&lt;br /&gt;
: The game literally makes space noises. Like... ''whooosshhshhhssshhoooooshhh.'' Things like that. [[Special:Contributions/138.110.225.187|138.110.225.187]] 22:30, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Thank you for that. I had no idea what was being referenced, serves me right for not reading the title text. (This is not sarcasm, it sounded like it was when I read it to myself, so I'm adding this disclaimer) [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]])  22:33, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: But &amp;quot;space noises&amp;quot; is an oxymoron.  In space, you can't hear noise.  (Oh... you mean bad-sci-fi-movie noises...) [[Special:Contributions/207.225.239.130|207.225.239.130]] 19:16, 6 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Another Google closed beta – you get to play by invite only. Meh [[Special:Contributions/24.41.5.167|24.41.5.167]] 23:53, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm trying to find a game that I played on the computer about 2 years ago. I remember that you could see the entire play area the entire time. It was timed. The object was to get to a hole (maybe blue in color) to end the level. There were blocks that often blocked your path, which you needed to push out of your way or more often use them to make bridges to cross water. Some of the levels were very much a timing game where you needed to quickly move a block through a winding path(up, down, left, right only)to avoid being caught by, I believe, moving blocks.The closest screen shot that I've found is Chips Challenge, which is not the game that I played previously.  I remember there were many levels, probably between 50 and 100. Ideas?[[User:Shine|Shine]] ([[User talk:Shine|talk]]) 15:33, 6 December 2012 (UTC) RESOLVED : game was called Silversphere[[User:Shine|Shine]] ([[User talk:Shine|talk]]) 21:24, 7 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
: RE: Shine. The game was called Rodent's Revenge. Phenomenal Times, Shine, Phenomenal Times. Glad you reminded me about it!&lt;br /&gt;
:::Not the game I was thinking of, but fun game too. No animals of any kind in the game that I'm trying to find [[User:Shine|Shine]] ([[User talk:Shine|talk]]) 17:13, 7 December 2012 (UTC)&lt;br /&gt;
:OK got it. It was called Silversphere. [[User:Shine|Shine]] ([[User talk:Shine|talk]]) 21:24, 7 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was absolutely certain that the bright green &amp;quot;fountains&amp;quot; were supposed to illustrate some radioactive material and them being &amp;quot;excited&amp;quot; was somehow a particle physics joke I couldnt nail down.&lt;br /&gt;
&lt;br /&gt;
:My assumption was that his house was just in a good location to watch some space phenomenon. The Aurora, or a meteor shower.[[Special:Contributions/141.101.104.156|141.101.104.156]] 12:27, 17 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
You should really try Ingress now. It's great. However, I don't understand what he lives beside that's so portal-worthy. --[[Special:Contributions/108.162.218.185|108.162.218.185]] 00:54, 20 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
By my house, across the Mississippi from St,l there is a Catholic Church with a portal on two idols and a bell tower. Unfortunately it is just out of reach from my bedroom.  [[Special:Contributions/173.245.50.61|173.245.50.61]] 20:00, 24 December 2015 (UTC)&lt;br /&gt;
:Please do some research before the next time you associate the Catholic Church with idolatry.  If you would like, I may be able to refer you to some sources at some later time.  —[[User:CsBlastoise|CsBlastoise]] ([[User talk:CsBlastoise|talk]]) 15:29, 5 December 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>CsBlastoise</name></author>	</entry>

	</feed>