<?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=173.245.48.89</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=173.245.48.89"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/173.245.48.89"/>
		<updated>2026-06-24T14:51:56Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1755:_Old_Days&amp;diff=130045</id>
		<title>1755: Old Days</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1755:_Old_Days&amp;diff=130045"/>
				<updated>2016-11-05T02:09:15Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: /* Table of statements */ typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1755&lt;br /&gt;
| date      = November 4, 2016&lt;br /&gt;
| title     = Old Days&lt;br /&gt;
| image     = old_days.png&lt;br /&gt;
| titletext = Lot of drama in those days, including constant efforts to force the &amp;quot;Reflections on Trusting Trust&amp;quot; guy into retirement so we could stop being so paranoid about compilers.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|More explanation required on computer programming. Fill out the explanation column in the [[#Table of statements|table]] that lists all the statements.}}&lt;br /&gt;
This comic is showing a conversation between (young) [[Cueball]] and (old) [[Hairbun]] about computer programming in the past, specifically the {{w|compilers}}. Cueball, having a faint idea of just how difficult and byzantine programming was &amp;quot;in the old days&amp;quot;, asks Hairbun to enlighten him on the specifics. Hairbun promptly seizes the opportunity to screw with his head.&lt;br /&gt;
&lt;br /&gt;
While her initial agreement that code needed to be compiled for multiple architectures is correct, Hairbun's claims rapidly grow ridiculous to the point where the improvement from {{w|C (programming language)|C}} to {{w|C++}} was that C++ finally supported {{w|floppy disks}} but just punched holes in them rather than using {{w|punch cards}} &amp;quot;like C used&amp;quot;. (A notch in the side of 5.25&amp;quot; floppy disks indicates when the disk could be written. Though many floppy disks were intended to have only a single side with data, many people used a hole punch to notch the opposite side of the disk, allowing a drive to write data to the other side of the disk in a single sided drive. 5.25&amp;quot; floppies also featured a tiny &amp;quot;index hole&amp;quot; near the central hole of the disk)&lt;br /&gt;
&lt;br /&gt;
Hairbun tells Cueball a tall tale about how hard it was back in the '''old days''', making it sound like some of the programming languages used today (C, C++) were written on punch cards and that you had to ship your code in the mail to a computer company ({{w|IBM}} in this case) to compile your code, which would take from four to six weeks. If there was a simple error, you would have to ship it again for another compilation. &lt;br /&gt;
&lt;br /&gt;
Nothing of what she tells Cueball makes any sense, but it is clear from Cueball's final ''Wow'' that he falls for it, ready to believe anything the old Hairbun tells him about how horrible it was to program in the olden days. It is true that it was tough and slow to program on punch cards, which were actually used for an extended period of time, but there is nothing in the rest of Hairbun's story that accurate, except that it was a big deal when the floppy disk was invented.&lt;br /&gt;
&lt;br /&gt;
In the title text, Hairbun continues her musings on the old compiler days, stating that there was ''a lot of drama in those days''. Specifically the references ''[http://www.win.tue.nl/~aeb/linux/hh/thompson/trust.html Reflections on Trusting Trust]'' a famous 1984 paper by {{w|UNIX}} co-creator {{w|Ken Thompson}} in which he described a way to hide a virtually undetectable backdoor in the UNIX login code via a second backdoor in the C compiler. Using the technique in his paper, it would be impossible to discover the hacked login by examining the official source code for either the login or the compiler itself.  Ken Thompson may have actually included this backdoor in early versions of UNIX, undiscovered. Ken Thompson's paper demonstrated that it was functionally impossible to prove that any piece of software was fully trustworthy.  &lt;br /&gt;
&lt;br /&gt;
Hairbun claims that one of the dramas she refers to was that people tried to force Ken Thompson to retire, so everyone could stop being so paranoid about compilers.  In reality, any coder who created the first version of a compiler (or a similar critical component) could inject a similar backdoor into software, so it would be false safety. Even if no one else had thought of this, then Thompson's paper was there for any future hacker to see. Though the problem was (claimed to be) solved in {{w|David A. Wheeler}} Ph.D dissertation &amp;quot;[http://www.dwheeler.com/trusting-trust/ Fully Countering Trusting Trust through Diverse Double-Compiling (DDC)]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Table of statements==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Statements&lt;br /&gt;
!Concepts used&lt;br /&gt;
!Explanation&lt;br /&gt;
|-&lt;br /&gt;
|Compile things for different processors&lt;br /&gt;
|Compilers convert code from a human-readable programming language into a binary code that can be directly executed by computer processors.&lt;br /&gt;
|Many popular modern programming languages are either interpreted - meaning that they run directly from source code - or compile to an intermediate bytecode, like Java or common Python implementations. Programs written in such languages are portable across processor architectures - x86 to ARM, for example. Lower-level languages must take into account the features available on a given processor architecture and operating system. Before that, programs needed to compile directly into the native machine language for each processor they were intended to run on.&lt;br /&gt;
Native machine language is dependent on processor architecture. Therefore different processors designed around different architectures will not run the same compiled code (unless the architectures are compatible; AMD64 processors will run i386 code natively, for example.) If the same code needs to be run on multiple architectures, it must be compiled separately for each supported architecture.&lt;br /&gt;
|-&lt;br /&gt;
|To compile your code, you had to mail it to IBM. It took 4-6 weeks.&lt;br /&gt;
|Similar to sending Kodachrome slide film to Kodak to be developed.&lt;br /&gt;
|While IBM has released multiple compilers, they sent the compiler to you, you did not send the code to them. There is some kind of truth in the statement, though: When programming on mainframes, programmers submitted their source code in the evening for compilation over night. When there was an error in the code, they did not get a compiled version of it back, and had to resubmit their code. Sometimes there were time slots available for compilation, and in universities, students will have to wait for their next time slot for another try.&lt;br /&gt;
|-&lt;br /&gt;
|Before garbage collection, data would pile up until the computer got full and you had to throw it away. &lt;br /&gt;
|A {{w|Garbage collection (computer science)|garbage collector}} is a piece of the software that cleans the {{w|RAM}} of data that is no longer being used in the execution of a program. &lt;br /&gt;
|Hairbun's comment is grounded in reality. Garbage collection is a form of memory management that generally destroys objects or frees up memory once a program no longer needs it. In languages without automatic memory management, like C, the program itself must keep track of what memory has been allocated, and free it once it is no longer needed. If the program does not, it can end up trying to use more memory than the computer has, and may crash. This was, however, a ''temporary'' condition. In the worst case, a simple reboot will clear the computer's memory. &lt;br /&gt;
|-&lt;br /&gt;
|Early compilers could handle code fine, but comments had to be written in assembly.&lt;br /&gt;
|A {{w|Comment (computer programming)|comment}} in programming is a text written in natural language that is meant to explain some feature of the source code; it is tagged such that the compiler will discard it to save space. {{w|Assembly language|Assembly}} is a low-level programming language.&lt;br /&gt;
|Comments, in code, are portions of one or more lines that are ignored by the compiler. They are commonly used to explain or comment on the code itself. But sometimes the comments are written in a certain way to compile documentation automatically from it. Also, when examining the output of compilers it's a common practice to use assembly code annotated with comments containing the source code of the program from which the assembly code was generated.&lt;br /&gt;
&lt;br /&gt;
Hairbun's comment is thus very strange, implying the compilers of the day could only distinguish between comments and code if assembly was used to insert the separating tags. &lt;br /&gt;
|-&lt;br /&gt;
|C could only be written on punch cards. You had to pick a compact font, or you'd only fit a few characters per card.&lt;br /&gt;
|{{w|C (programming language)|C}} is a programming language. A {{w|punch card}} is a primitive form of storing data; it stored data in {{w|binary language}} with holes in a paper or cardboard card where a hole meant a 1 and the absence of a hole meant a 0. &lt;br /&gt;
|While punch cards were used through the late 1970s and early 1980s to enter programs and data in COBOL, FORTRAN and other early languages, the use of punch cards and punch card machines had been replaced by a {{w|text editor}} long before C (or C++) was developed as a language.  This site demonstrates a card punch and cards http://www.masswerk.at/keypunch/&lt;br /&gt;
&lt;br /&gt;
Hairbun claims that code was not written using keyboards, but by punching out letter and character shapes in the punch cards, and the computer would load read keystrokes that way. Simply put, this was never true. Punch cards store characters in binary; there is no font involved and they store up to fixed limit of characters per card (80 characters in the most common format.)&lt;br /&gt;
|-&lt;br /&gt;
|C++ was big because it supported floppy disks. It still punched holes in them, but it was a start.&lt;br /&gt;
|{{w|C++ (programming language)|C++}} is a programming language. A {{w|floppy disk}} is a form of storing data magnetically. It's way more advanced than punch cards (by several orders of magnitude; a card can store about 80 bytes, vs 1,474,560 bytes of a floppy disk), but it's still obsolete compared to modern storage.&lt;br /&gt;
|Hairbun says that the improvement from C to C++ was that C++ finally &amp;quot;supported floppy disks&amp;quot;, but then it turns out that in C++ the floppy disks were just used instead of punch cards. So the programing was to make holes in floppy disks rather than punch cards. This would of course not be an improvement as floppy disks store information magnetically, as opposed to physically, as punch cards do. This is likely a play on the concept of punching holes in 5.25&amp;quot; floppy disks to double their storage (Source: https://en.wikipedia.org/w/index.php?title=Double-sided_disk&amp;amp;oldid=713168494), or it can also be a reference to the &amp;quot;index hole&amp;quot; of 5.25&amp;quot; floppy disks (see https://en.wikipedia.org/wiki/Floppy_disk#Design -- the tiny hole at the right of the big central hole here: https://www.staff.ncl.ac.uk/roger.broughton/museum/floppys/images/201041b.jpg)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Hairbun are standing together and Cueball is talking to her.]&lt;br /&gt;
:Cueball: What were things like in the old days?&lt;br /&gt;
:Cueball: I hear that you had to ... compile things for different processors?&lt;br /&gt;
:Hairbun: Yeah&lt;br /&gt;
&lt;br /&gt;
:[Same setting in a slimmer panel, now Hairbun is replying.]&lt;br /&gt;
:Hairbun: To compile your code, you had to mail it to IBM.&lt;br /&gt;
:Hairbun: It took 4-6 weeks.&lt;br /&gt;
&lt;br /&gt;
:[Close-up of Hairbun from the waist up.]&lt;br /&gt;
:Hairbun: Before garbage collection, data would pile up until the computer got full and you had to throw it away.&lt;br /&gt;
&lt;br /&gt;
:[Same setting as in the first panel with Hairbun gesturing toward Cueball raising one hand  palm up.]&lt;br /&gt;
:Hairbun: Early compilers could handle code fine, but comments had to be written in assembly.&lt;br /&gt;
&lt;br /&gt;
:[In a frame-less panel Hairbun is seen from the front, with both arms out to the side with both hands held palm up.]&lt;br /&gt;
:Hairbun: '''C''' could only be written on punch cards.You had to pick a compact font, or you'd only fit a few characters per card.&lt;br /&gt;
&lt;br /&gt;
:[Exactly the same setting as the first panel, but with Hairbun doing the talking.]&lt;br /&gt;
:Hairbun: '''C++''' was big because it supported floppy disks.&lt;br /&gt;
:Hairbun: It still punched holes in them, but it was a start.&lt;br /&gt;
:Cueball: Wow.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Hairbun]]&lt;br /&gt;
[[Category:Programming]]&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1755:_Old_Days&amp;diff=130044</id>
		<title>1755: Old Days</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1755:_Old_Days&amp;diff=130044"/>
				<updated>2016-11-05T02:00:49Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: /* Table of statements */ more details about punch card vs floppy&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1755&lt;br /&gt;
| date      = November 4, 2016&lt;br /&gt;
| title     = Old Days&lt;br /&gt;
| image     = old_days.png&lt;br /&gt;
| titletext = Lot of drama in those days, including constant efforts to force the &amp;quot;Reflections on Trusting Trust&amp;quot; guy into retirement so we could stop being so paranoid about compilers.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|More explanation required on computer programming. Fill out the explanation column in the [[#Table of statements|table]] that lists all the statements.}}&lt;br /&gt;
This comic is showing a conversation between (young) [[Cueball]] and (old) [[Hairbun]] about computer programming in the past, specifically the {{w|compilers}}. Cueball, having a faint idea of just how difficult and byzantine programming was &amp;quot;in the old days&amp;quot;, asks Hairbun to enlighten him on the specifics. Hairbun promptly seizes the opportunity to screw with his head.&lt;br /&gt;
&lt;br /&gt;
While her initial agreement that code needed to be compiled for multiple architectures is correct, Hairbun's claims rapidly grow ridiculous to the point where the improvement from {{w|C (programming language)|C}} to {{w|C++}} was that C++ finally supported {{w|floppy disks}} but just punched holes in them rather than using {{w|punch cards}} &amp;quot;like C used&amp;quot;. (A notch in the side of 5.25&amp;quot; floppy disks indicates when the disk could be written. Though many floppy disks were intended to have only a single side with data, many people used a hole punch to notch the opposite side of the disk, allowing a drive to write data to the other side of the disk in a single sided drive. 5.25&amp;quot; floppies also featured a tiny &amp;quot;index hole&amp;quot; near the central hole of the disk)&lt;br /&gt;
&lt;br /&gt;
Hairbun tells Cueball a tall tale about how hard it was back in the '''old days''', making it sound like some of the programming languages used today (C, C++) were written on punch cards and that you had to ship your code in the mail to a computer company ({{w|IBM}} in this case) to compile your code, which would take from four to six weeks. If there was a simple error, you would have to ship it again for another compilation. &lt;br /&gt;
&lt;br /&gt;
Nothing of what she tells Cueball makes any sense, but it is clear from Cueball's final ''Wow'' that he falls for it, ready to believe anything the old Hairbun tells him about how horrible it was to program in the olden days. It is true that it was tough and slow to program on punch cards, which were actually used for an extended period of time, but there is nothing in the rest of Hairbun's story that accurate, except that it was a big deal when the floppy disk was invented.&lt;br /&gt;
&lt;br /&gt;
In the title text, Hairbun continues her musings on the old compiler days, stating that there was ''a lot of drama in those days''. Specifically the references ''[http://www.win.tue.nl/~aeb/linux/hh/thompson/trust.html Reflections on Trusting Trust]'' a famous 1984 paper by {{w|UNIX}} co-creator {{w|Ken Thompson}} in which he described a way to hide a virtually undetectable backdoor in the UNIX login code via a second backdoor in the C compiler. Using the technique in his paper, it would be impossible to discover the hacked login by examining the official source code for either the login or the compiler itself.  Ken Thompson may have actually included this backdoor in early versions of UNIX, undiscovered. Ken Thompson's paper demonstrated that it was functionally impossible to prove that any piece of software was fully trustworthy.  &lt;br /&gt;
&lt;br /&gt;
Hairbun claims that one of the dramas she refers to was that people tried to force Ken Thompson to retire, so everyone could stop being so paranoid about compilers.  In reality, any coder who created the first version of a compiler (or a similar critical component) could inject a similar backdoor into software, so it would be false safety. Even if no one else had thought of this, then Thompson's paper was there for any future hacker to see. Though the problem was (claimed to be) solved in {{w|David A. Wheeler}} Ph.D dissertation &amp;quot;[http://www.dwheeler.com/trusting-trust/ Fully Countering Trusting Trust through Diverse Double-Compiling (DDC)]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Table of statements==&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Statements&lt;br /&gt;
!Concepts used&lt;br /&gt;
!Explanation&lt;br /&gt;
|-&lt;br /&gt;
|Compile things for different processors&lt;br /&gt;
|Compilers convert code from a human-readable programming language into a binary code that can be directly executed by computer processors.&lt;br /&gt;
|Many popular modern programming languages are either interpreted - meaning that they run directly from source code - or compile to an intermediate bytecode, like Java or common Python implementations. Programs written in such languages are portable across processor architectures - x86 to ARM, for example. Lower-level languages must take into account the features available on a given processor architecture and operating system. Before that, programs needed to compile directly into the native machine language for each processor they were intended to run on.&lt;br /&gt;
Native machine language is dependent on processor architecture. Therefore different processors designed around different architectures will not run the same compiled code (unless the architectures are compatible; AMD64 processors will run i386 code natively, for example.) If the same code needs to be run on multiple architectures, it must be compiled separately for each supported architecture.&lt;br /&gt;
|-&lt;br /&gt;
|To compile your code, you had to mail it to IBM. It took 4-6 weeks.&lt;br /&gt;
|Similar to sending Kodachrome slide film to Kodak to be developed.&lt;br /&gt;
|While IBM has released multiple compilers, they sent the compiler to you, you did not send the code to them. There is some kind of truth in the statement, though: When programming on mainframes, programmers submitted their source code in the evening for compilation over night. When there was an error in the code, they did not get a compiled version of it back, and had to resubmit their code. Sometimes there were time slots available for compilation, and in universities, students will have to wait for their next time slot for another try.&lt;br /&gt;
|-&lt;br /&gt;
|Before garbage collection, data would pile up until the computer got full and you had to throw it away. &lt;br /&gt;
|A {{w|Garbage collection (computer science)|garbage collector}} is a piece of the software that cleans the {{w|RAM}} of data that is no longer being used in the execution of a program. &lt;br /&gt;
|Hairbun's comment is grounded in reality. Garbage collection is a form of memory management that generally destroys objects or frees up memory once a program no longer needs it. In languages without automatic memory management, like C, the program itself must keep track of what memory has been allocated, and free it once it is no longer needed. If the program does not, it can end up trying to use more memory than the computer has, and may crash. This was, however, a ''temporary'' condition. In the worst case, a simple reboot will clear the computer's memory. &lt;br /&gt;
|-&lt;br /&gt;
|Early compilers could handle code fine, but comments had to be written in assembly.&lt;br /&gt;
|A {{w|Comment (computer programming)|comment}} in programming is a text written in natural language that is meant to explain some feature of the source code; it is tagged such that the compiler will discard it to save space. {{w|Assembly language|Assembly}} is a low-level programming language.&lt;br /&gt;
|Comments, in code, are portions of one or more lines that are ignored by the compiler. They are commonly used to explain or comment on the code itself. But sometimes the comments are written in a certain way to compile documentation automatically from it. Also, when examining the output of compilers it's a common practice to use assembly code annotated with comments containing the source code of the program from which the assembly code was generated.&lt;br /&gt;
&lt;br /&gt;
Hairbun's comment is thus very strange, implying the compilers of the day could only distinguish between comments and code if assembly was used to insert the separating tags. &lt;br /&gt;
|-&lt;br /&gt;
|C could only be written on punch cards. You had to pick a compact font, or you'd only fit a few characters per card.&lt;br /&gt;
|{{w|C (programming language)|C}} is a programming language. A {{w|punch card}} is a primitive form of storing data; it stored data in {{w|binary language}} with holes in a paper or cardboard card where a hole meant a 1 and the absence of a hole meant a 0. &lt;br /&gt;
|While punch cards were used through the late 1970s and early 1980s to enter programs and data in COBOL, FORTRAN and other early languages, the use of punch cards and punch card machines had been replaced by a {{w|text editor}} long before C (or C++) was developed as a language.  This site demonstrates a card punch and cards http://www.masswerk.at/keypunch/&lt;br /&gt;
&lt;br /&gt;
Hairbun claims that code was not written using keyboards, but by punching out letter and character shapes in the punch cards, and the computer would load read keystrokes that way. Simply put, this was never true. Punch cards store characters in binary; there is no font involved and they store up to fixed limit of characters per card (80 characters in the most common format.)&lt;br /&gt;
|-&lt;br /&gt;
|C++ was big because it supported floppy disks. It still punched holes in them, but it was a start.&lt;br /&gt;
|{{w|C++ (programming language)|C++}} is a programming language. A {{w|floppy disk}} is a form of storing data magnetically. It's more way more advanced than punch cards (by several orders of magnitude; a card can store about 80 bytes, vs 1,474,560 bytes of a floppy disk), but it's still obsolete compared to modern storage.&lt;br /&gt;
|Hairbun says that the improvement from C to C++ was that C++ finally &amp;quot;supported floppy disks&amp;quot;, but then it turns out that in C++ the floppy disks were just used instead of punch cards. So the programing was to make holes in floppy disks rather than punch cards. This would of course not be an improvement as floppy disks store information magnetically, as opposed to physically, as punch cards do. This is likely a play on the concept of punching holes in 5.25&amp;quot; floppy disks to double their storage (Source: https://en.wikipedia.org/w/index.php?title=Double-sided_disk&amp;amp;oldid=713168494), or it can also be a reference to the &amp;quot;index hole&amp;quot; of 5.25&amp;quot; floppy disks (see https://en.wikipedia.org/wiki/Floppy_disk#Design -- the tiny hole at the right of the big central hole here: https://www.staff.ncl.ac.uk/roger.broughton/museum/floppys/images/201041b.jpg)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Hairbun are standing together and Cueball is talking to her.]&lt;br /&gt;
:Cueball: What were things like in the old days?&lt;br /&gt;
:Cueball: I hear that you had to ... compile things for different processors?&lt;br /&gt;
:Hairbun: Yeah&lt;br /&gt;
&lt;br /&gt;
:[Same setting in a slimmer panel, now Hairbun is replying.]&lt;br /&gt;
:Hairbun: To compile your code, you had to mail it to IBM.&lt;br /&gt;
:Hairbun: It took 4-6 weeks.&lt;br /&gt;
&lt;br /&gt;
:[Close-up of Hairbun from the waist up.]&lt;br /&gt;
:Hairbun: Before garbage collection, data would pile up until the computer got full and you had to throw it away.&lt;br /&gt;
&lt;br /&gt;
:[Same setting as in the first panel with Hairbun gesturing toward Cueball raising one hand  palm up.]&lt;br /&gt;
:Hairbun: Early compilers could handle code fine, but comments had to be written in assembly.&lt;br /&gt;
&lt;br /&gt;
:[In a frame-less panel Hairbun is seen from the front, with both arms out to the side with both hands held palm up.]&lt;br /&gt;
:Hairbun: '''C''' could only be written on punch cards.You had to pick a compact font, or you'd only fit a few characters per card.&lt;br /&gt;
&lt;br /&gt;
:[Exactly the same setting as the first panel, but with Hairbun doing the talking.]&lt;br /&gt;
:Hairbun: '''C++''' was big because it supported floppy disks.&lt;br /&gt;
:Hairbun: It still punched holes in them, but it was a start.&lt;br /&gt;
:Cueball: Wow.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Hairbun]]&lt;br /&gt;
[[Category:Programming]]&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:388:_Fuck_Grapefruit&amp;diff=128481</id>
		<title>Talk:388: Fuck Grapefruit</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:388:_Fuck_Grapefruit&amp;diff=128481"/>
				<updated>2016-10-11T03:48:40Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why are seeded grapes deemed more tasty than seedless grapes? Them seeds taste awful and bitter when you accidentally bite into them. [[User:Davidy22|Davidy22]] ([[User talk:Davidy22|talk]]) 12:22, 14 October 2012 (UTC)&lt;br /&gt;
*Yeah! And red apples are clearly more tasty than green (unless you're using them for cooking), and bananas are the tastiest fruit ever! In other words, it's all subjective. (You might argue that the seeds add to the flavour, much like a small amout of fat in meat; obviously the fact that they're less easy implies pulling all the seeds out first to make sure you don't bite one.) [[Special:Contributions/94.0.161.247|94.0.161.247]] 10:34, 28 November 2012 (UTC)&lt;br /&gt;
*Seedless grapes (and seedless versions of other fruits) are often considered to be slightly less tasty than their seeded counterparts because a compromise was made: putting all efforts toward being tasty and easy to grow, versus dividing the effort between those and making them seedless. Additionally, some seedless fruits (including certain brands or breeds) are simply less mature versions of their seedless equivalent (this is part of why some bunches of seedless grapes have seeds in many of the fruits, albeit smaller and/or fewer seeds than the seeded equivalent). It's also possible that the y-axis difference between the two was unintentional, but there's enough of a difference that I'm strongly in favor of interpreting it as intentional. [[User:JET73L|JET73L]] ([[User talk:JET73L|talk]]) 17:34, 8 February 2013 (UTC)&lt;br /&gt;
I disagree with the placement of bananas and pears. They are both really easy and reasonably tasty (although taste is a matter of personal preference).[[Special:Contributions/75.69.96.225|75.69.96.225]] 21:54, 11 March 2013 (UTC)&lt;br /&gt;
*Problem is, pomegranates burn calories instead of adding to them. Unless you get pre-picked. There should be a third axis, but alas, with a webcomic, it is not possible. {{unsigned ip|108.162.216.45}}&lt;br /&gt;
Fyi to open a coconut, do not smash a rock against the coconut, smash the coconut against the rock! [[Special:Contributions/193.188.240.138|193.188.240.138]] 14:30, 26 July 2013 (UTC)&lt;br /&gt;
:A rock? Is this a deserted island scenario you're describing? Most households have something called a hammer. [[User:Tharkon|Tharkon]] ([[User talk:Tharkon|talk]]) 03:24, 23 November 2013 (UTC)&lt;br /&gt;
::A hammer? Is this a woodwork shed scenario? ;) A professional coconut opener uses one or two strokes from the blunt side of a machete on the equator of the coconut. I still agree with Randall on the difficulty, though. More specialized equipment is neeeded to separate the copra. And it's not tasty either.[[User:Mumiemonstret|Mumiemonstret]] ([[User talk:Mumiemonstret|talk]]) 09:05, 17 June 2014 (UTC)&lt;br /&gt;
:::Not unless you eat an Almond Joy! ...Unless you're allergic to nuts that is. In that case, you might never get to try an Almond Joy. (Dang it... now I want one. xD) --[[User:JayRulesXKCD|JayRulesXKCD]] ([[User talk:JayRulesXKCD|talk]]) 15:04, 15 September 2016 (UTC)&lt;br /&gt;
::::Mounds bar--[[Special:Contributions/173.245.48.89|173.245.48.89]] 03:48, 11 October 2016 (UTC)&lt;br /&gt;
Is there a program do make charts looking like these? With the little pictures in the chart. [[User:RecentlyChanged|RecentlyChanged]] ([[User talk:RecentlyChanged|talk]]) 13:26, 26 November 2013 (UTC)&lt;br /&gt;
:Yes. The program is called &amp;quot;Paper and Pencil; and something to color them.&amp;quot;[[User:SarcasticMoe|SarcasticMoe]] ([[User talk:SarcasticMoe|talk]]) 25:61, 26 November 2013 (UTC)&lt;br /&gt;
The transcript needs fixing. It is currently inaccurate in places, like, for example, strawberries in the comic are placed below seeded grapes on the tastiness axis, but the transcript says that strawberries are tastier than seeded grapes. Also, the transcript is missing seedless grapes. [[Special:Contributions/108.162.216.45|108.162.216.45]] 03:48, 23 December 2013 (UTC)&lt;br /&gt;
:I have changed the transcrip so that the explanation part is removed. And this part I have now added as a table and in this corrected the numbers so strawberries and grapes are in the correct order etc. At the same time I made many other corrections and improvements for the entire explanation. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:22, 12 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
While I disagree with the rating in tastyness... Then it is true that bananas is more difficult to start eating than fruit without peel - like pears. However, bananas are very easy to peel! And you do not get sticky as with a fresh pear. I thus think it is easier to eat bananas than pears because of that.[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 07:30, 29 March 2014 (UTC)&lt;br /&gt;
:It's all subjective anyway. I, for example consider bananas to be more tasty than pears. [[User:Tharkon|Tharkon]] ([[User talk:Tharkon|talk]]) 20:09, 8 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The problem with bananas which adds to their difficulty is that you have a rather large peel. You can't get away with just tossing your peel anywhere, too. Someone might slip on them. [[Special:Contributions/173.245.48.181|173.245.48.181]] 19:58, 7 January 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1743:_Coffee&amp;diff=128372</id>
		<title>Talk:1743: Coffee</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1743:_Coffee&amp;diff=128372"/>
				<updated>2016-10-07T19:04:44Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: encouraging further extrapolation on the topic of Battlestar Galactica &amp;quot;Starbuck&amp;quot; reference.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~--&amp;gt;&lt;br /&gt;
For me as a non-native speaker this XKCD looks like the guests ordered Ground Coffee and Cueball didn't realize that ground might come von &amp;quot;grind&amp;quot;. [[User:Gunterkoenigsmann|Gunterkoenigsmann]] ([[User talk:Gunterkoenigsmann|talk]])--&lt;br /&gt;
: I hadn't even noticed that pun, thanks! [[Special:Contributions/108.162.221.87|108.162.221.87]] 10:16, 7 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
With &amp;quot;I'm a regular Starbuck&amp;quot; Megan says, she is a regular visitor of Starbuck and has learned her skills there watching. Sebastian --[[Special:Contributions/162.158.83.168|162.158.83.168]] 08:10, 7 October 2016 (UTC)&lt;br /&gt;
: Since the Starbucks coffee chain writes their name as a plural, I just assumed it was a cross-referential joke about the Starbuck character on Battlestar Galactica. [[Special:Contributions/108.162.221.87|108.162.221.87]] 10:16, 7 October 2016 (UTC)&lt;br /&gt;
: I also like to think &amp;quot;Starbuck&amp;quot; here refers as much to the Battlestar Galactica character here as to the coffee shop.  I'm pretty sure he is the one who explained how things worked in the show.  Being from another time &amp;amp; planet, his explanations were usually a crude interpretation of actuality and were funnier for being mostly right but decidedly odd. [[Special:Contributions/173.245.48.89|173.245.48.89]] 19:04, 7 October 2016 (UTC) &lt;br /&gt;
&lt;br /&gt;
The expensive coffee filter comment might be a reference to the ridiculously high prices for vacuum cleaner bags. --[[Special:Contributions/162.158.85.249|162.158.85.249]] 08:12, 7 October 2016 (UTC)&lt;br /&gt;
: Ironic, since Dyson vacuums are &amp;quot;bagless&amp;quot; &amp;amp; use a canister instead. (Which is disgusting, by the way.) [[Special:Contributions/108.162.221.87|108.162.221.87]] 10:16, 7 October 2016 (UTC)&lt;br /&gt;
:: Actually even Dyson vacuums have at least two filters in them. --[[Special:Contributions/141.101.98.127|141.101.98.127]] 10:21, 7 October 2016 (UTC)&lt;br /&gt;
::: Filters, but not bags. Emptying &amp;amp; subsequently cleaning the removable canister on a bagless vacuum can be hazardous for anyone with allergies (or just anyone, if the canister contains toxic or noxious materials); Not that most vacuum-cleaners aren't basically big dust blowers anyway. Inboard HEPA filters mitigate the dust issue during use, but emptying the canister itself can be a delicate &amp;amp; irritatingly messy task. Aside from the bag material wasted during disposal, bag-vacuums are in some respects very much preferable to bagless. Personally, I recommend eschewing vacuum-cleaners entirely, avoiding wall-to-wall carpeting like the plague, &amp;amp; using area rugs which can be removed for a thorough cleaning (on BOTH sides). [[Special:Contributions/108.162.221.87|108.162.221.87]] 11:17, 7 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Can you actually &amp;quot;hoover&amp;quot; something up with a Dyson? ;-) [[Special:Contributions/162.158.22.72|162.158.22.72]] 08:37, 7 October 2016 (UTC)&lt;br /&gt;
: Decidedly not! That's like saying you are &amp;quot;rollerblading&amp;quot; when you are actually just inline-skating, or calling any cola a &amp;quot;Coke&amp;quot;. You don't go toyotaing in your Chevrolet &amp;amp; you don't Colgate your teeth; such branding idioms really annoy me. Now if you'll excuse me, I need to gutenberg some compuserve post-its before my redenbachers are done kenmoring. [[Special:Contributions/108.162.221.87|108.162.221.87]] 10:16, 7 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
megan explicitly calls them &amp;quot;grounds,&amp;quot; probably because that's what they're called on the packet. no one mentioned beans. what made you think of beans? also, she's heard of &amp;quot;starbucks&amp;quot; and thinks it's a collection, and, since she is just one person she calls herself a starbuck. oh well. --[[Special:Contributions/141.101.98.84|141.101.98.84]] 11:54, 7 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
''are made of plastic and would melt or ignite if placed over direct heat from a stove'' – no, they wouldn’t; not as long as there is liquid water in it. You can even use a paper-cup to boil water. --[[User:DaB.|DaB.]] ([[User talk:DaB.|talk]]) 17:03, 7 October 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=403:_Convincing_Pickup_Line&amp;diff=126824</id>
		<title>403: Convincing Pickup Line</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=403:_Convincing_Pickup_Line&amp;diff=126824"/>
				<updated>2016-09-12T22:42:12Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 403&lt;br /&gt;
| date      = March 31, 2008&lt;br /&gt;
| title     = Convincing Pickup Line&lt;br /&gt;
| image     = convincing pickup line.png&lt;br /&gt;
| titletext = Check it out; I've had sex with someone who's had sex with someone who's written a paper with Paul Erdős!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
A {{w|graph (mathematics)|graph}} is a mathematical object consisting of '''nodes''' connected by lines called '''edges'''. The nodes could represent for example people, and the edges could represent a connection from having slept together. Now, Megan has such a graph. Arguably, a {{w|symmetric graph|graph that is symmetric}} is nicer than a regular one, which is why Megan suggests that they should sleep together.&lt;br /&gt;
&lt;br /&gt;
The title text is a small-world joke on the concept of {{w|Erdős number}}. {{w|Paul Erdős}} was a Hungarian mathematician renowned for his eccentricity and productivity. He holds the world record for the number of published math papers, as well as for the number of collaborative papers. A person's Erdős number is the &amp;quot;collaborative distance&amp;quot; between the person and Erdős. Paul Erdős's Erdős number is 0 by definition. All of his 511 collaborators have the Erdős number 1; anyone (excluding Erdős) who has collaborated on a mathematical or scientific paper with any of those collaborators has an Erdős number of 2, and so on. Thus, if you have written a paper with someone who's written a paper with someone who's written a paper with Paul Erdős, your Erdős number is 3. If you know a mathematician or are a mathematician you can calculate his/her/your Erdős number [http://www.ams.org/mathscinet/collaborationDistance.html here].&lt;br /&gt;
&lt;br /&gt;
The Collaboration Graph is the graph where each edge represents two people collaborated on a mathematical paper together, and the people represented are those with an Erdős number. Some of Erdős's colleagues have published papers about the properties of the Collaboration Graph, treating it as if it were a real mathematical object. One of these papers made the observation that the graph would have a certain very interesting property if two particular points had an edge between them. To make the Collaboration Graph have that property, the two disconnected mathematicians immediately got together, proved something trivial, and wrote up a joint paper. Explained [http://www.nytimes.com/books/first/h/hoffman-man.html here].&lt;br /&gt;
&lt;br /&gt;
In [[599: Apocalypse]] Cueball actually manages to write a paper with zombie Erdős, thus making his Erdős numbers one.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Megan sit at a small table in a cafe. Megan holds up a graph.]&lt;br /&gt;
:Megan: We're a terrible match. But if we sleep together, it'll make the local hookup network a symmetric graph.&lt;br /&gt;
:Cueball: I can't argue with that.&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:Math]]&lt;br /&gt;
[[Category:Romance]]&lt;br /&gt;
[[Category:Sex]]&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1037:_Umwelt&amp;diff=125809</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=125809"/>
				<updated>2016-08-26T17:55:46Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: &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;
&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;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1015:_Kerning&amp;diff=125623</id>
		<title>Talk:1015: Kerning</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1015:_Kerning&amp;diff=125623"/>
				<updated>2016-08-22T22:14:02Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Did this to my &amp;quot;friend,&amp;quot; and I must say it really hasn't had the intended effect. He's still ''happy'' and ''normal''. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 13:08, 18 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The originial transcript in the html is:&lt;br /&gt;
&lt;br /&gt;
[[Some IDIOT used a font with TERRIBLE kerning on the side of a building for a sign labeled &amp;amp;quot;CITY OFFICES&amp;amp;quot;.  Only.. you aren&amp;amp;#39;t even frickin&amp;amp;#39; sure because of this terrible kerning, as the &amp;amp;quot;C&amp;amp;quot; and the &amp;amp;quot;I&amp;amp;quot; in &amp;amp;quot;CITY&amp;amp;quot; have waaay too strong kerning. And so do the &amp;amp;quot;C&amp;amp;quot; and the &amp;amp;quot;E&amp;amp;quot; in &amp;amp;quot;OFFICES&amp;amp;quot;, to the point that it actually looks like TWO words.  And the I and the C are so close together, they almost look like a freakish K!  Two people stand in front of this sign. One notices all these obvious flaws, while the other exists in peaceful ignorance.]]&lt;br /&gt;
Person 1: *Argh*!&lt;br /&gt;
Person 2: what?&lt;br /&gt;
If you really hate someone, teach them to recognize bad kerning.&lt;br /&gt;
&lt;br /&gt;
Title text: I have never been as self-conscious about my handwriting as when I was inking in the caption for this comic.&lt;br /&gt;
&lt;br /&gt;
Why isnt that used here? {{unsigned ip|108.162.254.4}}&lt;br /&gt;
&lt;br /&gt;
Firefox fails to display overlapped kerning. [[Special:Contributions/141.101.92.24|141.101.92.24]] 15:56, 20 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The guy on the left might be so angry he'd try to punch the building -- but you can't fight City Hall. [[Special:Contributions/108.162.219.107|108.162.219.107]] 15:51, 28 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The&amp;lt;font size=&amp;quot;8px&amp;quot;&amp;gt;  &amp;lt;/font&amp;gt;pen&amp;lt;font size=&amp;quot;1px&amp;quot;&amp;gt; &amp;lt;/font&amp;gt;is&amp;lt;font size=&amp;quot;8px&amp;quot;&amp;gt;  &amp;lt;/font&amp;gt;broken,&amp;lt;font size=&amp;quot;8px&amp;quot;&amp;gt;  &amp;lt;/font&amp;gt;use&amp;lt;font size=&amp;quot;8px&amp;quot;&amp;gt;  &amp;lt;/font&amp;gt;finger. --[[Special:Contributions/173.245.48.89|173.245.48.89]] 22:06, 22 August 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1015:_Kerning&amp;diff=125622</id>
		<title>Talk:1015: Kerning</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1015:_Kerning&amp;diff=125622"/>
				<updated>2016-08-22T22:06:43Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Did this to my &amp;quot;friend,&amp;quot; and I must say it really hasn't had the intended effect. He's still ''happy'' and ''normal''. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 13:08, 18 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The originial transcript in the html is:&lt;br /&gt;
&lt;br /&gt;
[[Some IDIOT used a font with TERRIBLE kerning on the side of a building for a sign labeled &amp;amp;quot;CITY OFFICES&amp;amp;quot;.  Only.. you aren&amp;amp;#39;t even frickin&amp;amp;#39; sure because of this terrible kerning, as the &amp;amp;quot;C&amp;amp;quot; and the &amp;amp;quot;I&amp;amp;quot; in &amp;amp;quot;CITY&amp;amp;quot; have waaay too strong kerning. And so do the &amp;amp;quot;C&amp;amp;quot; and the &amp;amp;quot;E&amp;amp;quot; in &amp;amp;quot;OFFICES&amp;amp;quot;, to the point that it actually looks like TWO words.  And the I and the C are so close together, they almost look like a freakish K!  Two people stand in front of this sign. One notices all these obvious flaws, while the other exists in peaceful ignorance.]]&lt;br /&gt;
Person 1: *Argh*!&lt;br /&gt;
Person 2: what?&lt;br /&gt;
If you really hate someone, teach them to recognize bad kerning.&lt;br /&gt;
&lt;br /&gt;
Title text: I have never been as self-conscious about my handwriting as when I was inking in the caption for this comic.&lt;br /&gt;
&lt;br /&gt;
Why isnt that used here? {{unsigned ip|108.162.254.4}}&lt;br /&gt;
&lt;br /&gt;
Firefox fails to display overlapped kerning. [[Special:Contributions/141.101.92.24|141.101.92.24]] 15:56, 20 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The guy on the left might be so angry he'd try to punch the building -- but you can't fight City Hall. [[Special:Contributions/108.162.219.107|108.162.219.107]] 15:51, 28 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The  pen is  broken,  use  finger. --[[Special:Contributions/173.245.48.89|173.245.48.89]] 22:06, 22 August 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=125538</id>
		<title>1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=125538"/>
				<updated>2016-08-20T20:19:22Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: /* Reviews */&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;
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;
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;
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.)&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 red and blue 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), 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&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&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>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1721:_Business_Idea&amp;diff=125353</id>
		<title>Talk:1721: Business Idea</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1721:_Business_Idea&amp;diff=125353"/>
				<updated>2016-08-17T04:59:13Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: /* Randall done goofed */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~--&amp;gt;&lt;br /&gt;
I'm pretty sure there's been a naming overlap or something because https://xkcd.com/827/ and http://xkcd.com/1721/ are showing the same image&lt;br /&gt;
[[Special:Contributions/108.162.250.157|108.162.250.157]] 04:13, 17 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Randall done goofed ==&lt;br /&gt;
&lt;br /&gt;
He accidentally named TWO comics &amp;quot;Business Idea&amp;quot;.  This one and comic 827 (https://xkcd.com/827/).  Because his comics are stored by name, not id, he has two &amp;quot;business_idea.png&amp;quot;s.  The newer replaced the older one, but explain-xkcd has the original, probably due to the way either one is stored.&lt;br /&gt;
&lt;br /&gt;
What should we do? Contact Randall?&lt;br /&gt;
&lt;br /&gt;
-Check the fora. Let him know he broke 827(http://i.imgur.com/0LTTpmJ.png) if he doesn't know already. I'm too lazy. [[Special:Contributions/108.162.245.110|108.162.245.110]] 04:35, 17 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Store it on the wiki as a jpeg and differentiate that way. --[[Special:Contributions/173.245.48.89|173.245.48.89]] 04:59, 17 August 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:970:_The_Important_Field&amp;diff=124825</id>
		<title>Talk:970: The Important Field</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:970:_The_Important_Field&amp;diff=124825"/>
				<updated>2016-08-06T04:09:25Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: fixed grammar errors staring me in the face&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In order to purchase a firearm in the United States from a Federal Firearms Licensee (FFL) you have to submit an official government photographic identification card (State ID or State Drivers license usually suffice), complete a Form 4473 Firearms Transaction Record to include such personal data as name, address, height, weight, ethnicity, age, birth date and Social Security Number or Tax Identification Number and submit the previous personal data from the Form 4473 to the National Instant Criminal Background Check System (NICS) which is administered by the US Federal Bureau of Investigation (FBI) and receive a &amp;quot;PROCEED WITH TRANSACTION&amp;quot; from the NICS in order to take possession of the firearm.&lt;br /&gt;
&lt;br /&gt;
To pay for your firearm with a check you only need show two forms of identification one of which may just be your Social Security Card. &lt;br /&gt;
&lt;br /&gt;
To take possession of the firearm actually requires more stringent checks on identity than to pay with one by check. &lt;br /&gt;
&lt;br /&gt;
But other than that you're right. {{unsigned|211.40.37.62}}&lt;br /&gt;
&lt;br /&gt;
Please enter your name and address, so we know who to blame when New York disappears. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 04:22, 4 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
How can a law-bound society write laws about guns when the all-embracing laws cannot first be rescinded?&lt;br /&gt;
&lt;br /&gt;
The USA has much the same life problems that Iran once had -which probably lead to Iran's defeat at Gaugamela (Mosul.) I doubt Darius III's officers had e-mail addresses to worry about, none the less if their aristocracy were bound by bureaucracy at the wrong time and place, that would have been it.&lt;br /&gt;
&lt;br /&gt;
Something else that is probably beyond emails:&lt;br /&gt;
&lt;br /&gt;
 &amp;quot;The Iraqi government is planning to retake the city with the help of the peshmerga, Sunni tribes, and US-led coalition air support.&amp;quot;&lt;br /&gt;
[[User:Weatherlawyer| I used Google News BEFORE it was clickbait]] ([[User talk:Weatherlawyer|talk]]) 19:29, 22 January 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1581:_Birthday&amp;diff=124816</id>
		<title>1581: Birthday</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1581:_Birthday&amp;diff=124816"/>
				<updated>2016-08-06T01:43:59Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: Undo revision 123618 by Kynde (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1581&lt;br /&gt;
| date      = September 23, 2015&lt;br /&gt;
| title     = Birthday&lt;br /&gt;
| image     = birthday.png&lt;br /&gt;
| titletext = I guess I need to apologize to my parents, friends, and the staff at Chuck E. Cheese's for all the times I called the cops on them.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[xkcd]] turns 10 years old on September 30, 2015 (a week after the release of this comic). In this comic [[Randall]] honors his webcomic by singing to it the classic &amp;quot;{{w|Happy Birthday to You}}&amp;quot; song.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;{{w|Happy Birthday to You}}&amp;quot; is one of the most commonly sung songs in the English language (and is common in many others). Because of its age, ubiquity and simplicity, it has long surprised people to learn that it was not in the public domain. {{w|Warner/Chappell Music}} claimed the copyright to the lyrics, and has demanded royalties for any recording, publication or public performance for commercial purposes. Total revenues for this song were estimated at $2 million annually.&lt;br /&gt;
&lt;br /&gt;
This strip refers to a ruling, from the day before the release of this comic, by a federal judge in California ({{w|George H. King|George King}}), stating that the song is not covered by a valid copyright (see [http://www.latimes.com/local/lanow/la-me-ln-happy-birthday-song-lawsuit-decision-20150922-story.html Warner's 'Happy Birthday' Copyright Not Valid, Judge Rules]). This ruling resulted from a lawsuit filed by Good Morning To You Productions (singer {{w|Rupa Marya}} and filmmaker {{w|Robert D. Siegel|Robert Siegel}}) against Warner/Chappel Music to declare Warner/Chappel's copyright claim in the song invalid (filing at [http://www.scribd.com/doc/147645129/Happybirthday]). With this ruling, the court declared that Warner/Chappell does not have a copyright claim to the song, and therefore the song can now be sung or published by anyone, in any context, without having to pay royalties to Warner/Chappell.&lt;br /&gt;
&lt;br /&gt;
The ruling does not go so far as to declare the song to be in the public domain, leaving it more correctly defined as an {{w|Orphan works|orphan work}}. Randall seems to be celebrating the fact that this strip, which would have put him at risk for a lawsuit the day before, is now unlikely to be challenged since the odds of a new party appearing and successfully claiming copyright on the lyrics and subsequently demanding license fees is approximately zero.&lt;br /&gt;
&lt;br /&gt;
The title text is a joke that refers to Randall calling the police against {{w|Chuck E. Cheese's}} as well as his own friends and parents when they sang &amp;quot;Happy Birthday&amp;quot; and did not pay royalties. The song is very commonly used in entertainment restaurants, such as Chuck E. Cheese's, and at both grown-ups' and children's birthdays. Because restaurants are commercial enterprises, public performances of the song, prior to this ruling, would potentially have exposed the restaurant to liability claims (though singing it at a private birthday party would not). In either case, calling the police would be an extreme overreaction.&lt;br /&gt;
&lt;br /&gt;
However, many restaurants (for example, [http://www.youtube.com/watch?v=OG9yZigKk0I Olive Garden]) actually have staff sing a special birthday song (not ''Happy Birthday To You'') to avoid having to pay royalties.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Caption above the frame:]&lt;br /&gt;
:xkcd turns 10 years old this month.&lt;br /&gt;
:In light of last night's court ruling in&lt;br /&gt;
:''Rupa Marya v. Warner/Chappell Music Inc.'',&lt;br /&gt;
:I would just like to say:&lt;br /&gt;
&lt;br /&gt;
:[The song text is written, with nine musical notes, three groups on each side of the text, above a birthday cake with 10 lit candles. The cake has two distinct layers. On each layer there are drawn 6 xkcd stick figures with small black bullets between them. The center bullet in the bottom layer is shaped like a heart. The figures at the edges can be difficult to recognize. The figures in the upper layer and from the left are: A man with a hat (hard to see if it is one of the recognized characters), White Hat, Megan, Pony Tail, Hairy and Cueball (hard to see him properly). Similar in the lower layer: Black Hat, Danish, Beret Guy, Rob, Cutie, and a girl (hard to see, but looks like girls hair, not a hat).]&lt;br /&gt;
:Happy birthday to you&lt;br /&gt;
:Happy birthday to you&lt;br /&gt;
:Happy birthday, dear xkcd&lt;br /&gt;
:Happy birthday to you&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring White Hat]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Danish]]&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=124815</id>
		<title>1037: Umwelt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1037:_Umwelt&amp;diff=124815"/>
				<updated>2016-08-06T01:34:58Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: /* T-Mobile */&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;
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;
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;
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.)&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 red and blue 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), 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&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&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), 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>173.245.48.89</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1547:_Solar_System_Questions&amp;diff=97043</id>
		<title>Talk:1547: Solar System Questions</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1547:_Solar_System_Questions&amp;diff=97043"/>
				<updated>2015-07-06T16:53:44Z</updated>
		
		<summary type="html">&lt;p&gt;173.245.48.89: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I wonder if &amp;quot;What's the deal with Miranda?&amp;quot; is talking about one of [https://en.wikipedia.org/wiki/Miranda_(moon) Uranus's satellites] or if it's a Firefly/Serenity reference? [[User:Keavon|Keavon]] ([[User talk:Keavon|talk]]) 15:31, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Many of the entries can be found at https://en.wikipedia.org/wiki/List_of_unsolved_problems_in_physics  [[User:Cschwenz|Cschwenz]] ([[User talk:Cschwenz|talk]]) 16:16, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The title text is a reference to the Futurama episode &amp;quot;Butterjunk effect&amp;quot; http://theinfosphere.org/The_Butterjunk_Effect. {{unsigned ip|188.114.98.29}}&lt;br /&gt;
&lt;br /&gt;
What's Titan like? Refernece to Gattaca (https://www.youtube.com/watch?v=lZa83dTf4JA)? [[User:Nk22|The Twenty-second. The Not So Only. The Nathan/Nk22]] ([[User talk:Nk22|talk]]) 16:23, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I wonder if Randal is using us as unpaid researchers to answer his questions for him?[[Special:Contributions/173.245.48.89|173.245.48.89]] 16:53, 6 July 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>173.245.48.89</name></author>	</entry>

	</feed>