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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1266:_Halting_Problem&amp;diff=49156</id>
		<title>1266: Halting Problem</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1266:_Halting_Problem&amp;diff=49156"/>
				<updated>2013-09-18T09:28:43Z</updated>
		
		<summary type="html">&lt;p&gt;74.125.57.36: /* Explanation */ Fix Wikipedia link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1266&lt;br /&gt;
| date      = September 18, 2013&lt;br /&gt;
| title     = Halting Problem&lt;br /&gt;
| image     = halting_problem.png&lt;br /&gt;
| titletext = I found a counterexample to the claim that all things must someday die, but I don't know how to show it to anyone.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete}}&lt;br /&gt;
In 1936 {{w|Alan Turing}} proved that it's not possible to decide whether an arbitrary program will eventually halt, or run forever. This was later called the {{w|Halting problem}} by {{w|Martin Davis}}. The official definition of the problem is to write a program (actually, a {{w|Turing Machine}}) that accepts as parameters a program and its parameters. That program needs to decide, in finite time, whether that program will ever halt running these parameters.&lt;br /&gt;
&lt;br /&gt;
The halting problem is a cornerstone problem in computer science. It is used mainly as a way to prove a given task is impossible, by showing that solving that task will allow one to solve the halting problem.&lt;br /&gt;
&lt;br /&gt;
[[Randall]], however, is providing a simpler solution. He implements his own code for the question ''&amp;quot;Does it halt?&amp;quot;'' which always returns a positive answer, directing us to look at the bigger picture.&lt;br /&gt;
&lt;br /&gt;
For all '''practical''' purposes, this is the correct solution. Given enough time, any program will halt. This is due to factors external to the actual program. Sooner or later, electricity will give out, or the memory containing the program will get corrupted by cosmic rays, or corrosion will eat away the silicon in the CPU. Nothing lasts forever, and this includes a running program.&lt;br /&gt;
&lt;br /&gt;
From the '''theoretical''' point of view, this is not true: Turing machine will never have a hardware failure because it's not real machine, it's theoretical construct, and it's '''defined''' to not have any. Similarly, 1/3 + 1/3 + 1/3 = 1 no matter what any real hardware you are computing it on claims.&lt;br /&gt;
&lt;br /&gt;
The title text further relates to this issue by claiming to have found a case where something need not die, but Randall does not know how to actually show it to anyone, because just the fact everyone will die sooner that this thing it doesn't prove it will not die. The wording of the title text might also be a reference to {{w|Fermat's Last Theorem}}.&lt;br /&gt;
&lt;br /&gt;
It should be noted that Randall's solution does not, in fact, solve the halting problem. The halting problem requires two parameters (a program and its parameters), while Randall's function only accepts one. His solution does not match the interface required by the problem.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
 '''Define''' DoesItHalt(program):&lt;br /&gt;
 {&lt;br /&gt;
  '''return''' true;&lt;br /&gt;
 }&lt;br /&gt;
:The big picture solution to the halting problem.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Computers‏‎]]&lt;/div&gt;</summary>
		<author><name>74.125.57.36</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1266:_Halting_Problem&amp;diff=49155</id>
		<title>1266: Halting Problem</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1266:_Halting_Problem&amp;diff=49155"/>
				<updated>2013-09-18T09:27:52Z</updated>
		
		<summary type="html">&lt;p&gt;74.125.57.36: /* Explanation */ Wording of title text sounds like Fermat's Last Theorem, so mention that.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1266&lt;br /&gt;
| date      = September 18, 2013&lt;br /&gt;
| title     = Halting Problem&lt;br /&gt;
| image     = halting_problem.png&lt;br /&gt;
| titletext = I found a counterexample to the claim that all things must someday die, but I don't know how to show it to anyone.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete}}&lt;br /&gt;
In 1936 {{w|Alan Turing}} proved that it's not possible to decide whether an arbitrary program will eventually halt, or run forever. This was later called the {{w|Halting problem}} by {{w|Martin Davis}}. The official definition of the problem is to write a program (actually, a {{w|Turing Machine}}) that accepts as parameters a program and its parameters. That program needs to decide, in finite time, whether that program will ever halt running these parameters.&lt;br /&gt;
&lt;br /&gt;
The halting problem is a cornerstone problem in computer science. It is used mainly as a way to prove a given task is impossible, by showing that solving that task will allow one to solve the halting problem.&lt;br /&gt;
&lt;br /&gt;
[[Randall]], however, is providing a simpler solution. He implements his own code for the question ''&amp;quot;Does it halt?&amp;quot;'' which always returns a positive answer, directing us to look at the bigger picture.&lt;br /&gt;
&lt;br /&gt;
For all '''practical''' purposes, this is the correct solution. Given enough time, any program will halt. This is due to factors external to the actual program. Sooner or later, electricity will give out, or the memory containing the program will get corrupted by cosmic rays, or corrosion will eat away the silicon in the CPU. Nothing lasts forever, and this includes a running program.&lt;br /&gt;
&lt;br /&gt;
From the '''theoretical''' point of view, this is not true: Turing machine will never have a hardware failure because it's not real machine, it's theoretical construct, and it's '''defined''' to not have any. Similarly, 1/3 + 1/3 + 1/3 = 1 no matter what any real hardware you are computing it on claims.&lt;br /&gt;
&lt;br /&gt;
The title text further relates to this issue by claiming to have found a case where something need not die, but Randall does not know how to actually show it to anyone, because just the fact everyone will die sooner that this thing it doesn't prove it will not die. The wording of the title text might also be a reference to {w|Fermat's Last Theorem}.&lt;br /&gt;
&lt;br /&gt;
It should be noted that Randall's solution does not, in fact, solve the halting problem. The halting problem requires two parameters (a program and its parameters), while Randall's function only accepts one. His solution does not match the interface required by the problem.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
 '''Define''' DoesItHalt(program):&lt;br /&gt;
 {&lt;br /&gt;
  '''return''' true;&lt;br /&gt;
 }&lt;br /&gt;
:The big picture solution to the halting problem.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Computers‏‎]]&lt;/div&gt;</summary>
		<author><name>74.125.57.36</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1249:_Meteor_Showers&amp;diff=46174</id>
		<title>1249: Meteor Showers</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1249:_Meteor_Showers&amp;diff=46174"/>
				<updated>2013-08-09T15:31:20Z</updated>
		
		<summary type="html">&lt;p&gt;74.125.57.36: Add note about leonids&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1249&lt;br /&gt;
| date      = August 9, 2013&lt;br /&gt;
| title     = Meteor Showers&lt;br /&gt;
| image     = meteor showers.png&lt;br /&gt;
| titletext = Remember, meteors always hit the tallest object around.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This comic spoofs the way that astronomical events are often reported in the mass media &amp;amp;mdash; events are often tagged with undeserved superlatives or described as being more dramatic than they actually are. In some cases, outright misinformation is spread. This phenomenon occurs in part the result of over-eager scientists, and in part because of journalists misunderstanding the subject.&lt;br /&gt;
&lt;br /&gt;
Meteor showers, for example, typically occur regularly each year. Sometimes meteor showers are in fact likely to be relatively spectacular - for example when the peak of the shower occurs when your part of the world is in darkness and there is little moonlight. However, even in these cases it must be understood that there is nothing unusual about the meteor shower itself.&lt;br /&gt;
&lt;br /&gt;
Most of the meteor showers listed in the comic are real. These are the {{w|Quadrantids}}, [http://meteorshowersonline.com/showers/alpha-beta_centaurids.html Centaurids], {{w|Lyrids}}, Daytime Zeta Perseids, {{w|June Bootids|June Boötids}}, {{w|Southern Delta Aquariids}}, {{w|Perseids}}, {{w|Draconids}}, {{w|Orionids}}, {{w|Leonids}}, and {{w|Geminids}}.&lt;br /&gt;
&lt;br /&gt;
Some of the showers are made up (see below).&lt;br /&gt;
&lt;br /&gt;
*Quadrantids - January 4&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Bring pets inside during peak activity&lt;br /&gt;
*Tricuspids - January 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Not viewable in region 2 countries&lt;br /&gt;
:Made up. Apparently a play on the {{w|tricuspid valve}} in mammalian hearts. The mention of &amp;quot;Region 2&amp;quot; is a reference to {{w|region locking}}, a DRM scheme intended to limit media to certain areas.  DRM of course does not apply to natural events.  But ironically, meteor showers are also geographically restricted, and the visible area might roughly coincide with a DRM region. Further irony is that &amp;quot;Region 2&amp;quot; is actually Europe, Middle East, Egypt, Japan, South Africa, Swaziland, Lesotho, Greenland, French Overseas departments and territories, meaning that it's not strictly geographical, much is the mess that is DRM.&lt;br /&gt;
*Centaurids - February 6&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Too faint to see without going outside&lt;br /&gt;
:Since most houses have opaque roofs, it would take a ''very'' bright meteor to be visible without going outside.&lt;br /&gt;
*Beta Aquariids - February 10&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Inverted shower converges toward Aquarius instead of radiating away&lt;br /&gt;
*Chelyabids - February 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Only one meteor per shower, but it's big.&lt;br /&gt;
:Made up. A reference to the February 15, 2013, {{w|Chelyabinsk meteor}} whose explosion shattered windows within a large radius.&lt;br /&gt;
*Lyrids - April 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; - Meteors sometimes scream&lt;br /&gt;
*Daytime Zeta Perseids - June 9&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Likely a NASA hoax&lt;br /&gt;
*June Boötids - June 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - 50/50 mix of meteors and shooting stars&lt;br /&gt;
:The &amp;quot;50/50 mix of meteors and shooting stars&amp;quot; is a joke, as &amp;quot;meteor&amp;quot; and &amp;quot;shooting star&amp;quot; are synonymous.&lt;br /&gt;
*Southern Delta Aquariids - July 19&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Meteors very bright, but stationary&lt;br /&gt;
*Dromaeosaurids - July 22&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Fast, highly intelligent, can open doors&lt;br /&gt;
:Made up. Dromaeosaurids are dinosaurs belonging to {{w|Dromaeosauridae}}, the family containing the genus ''Velociraptor'', well-known from the movie Jurassic Park, and a [[:Category:Velociraptors|popular xkcd-theme]]. When the comic was originally published, the date listed for this shower was June 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;. The main events of Jurassic Park take place on June 11&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; and 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;.&lt;br /&gt;
*Perseids - August 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Instead of falling from sky, meteors erupt from ground&lt;br /&gt;
*Tau Pyramids - August 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Visible even when eyes are closed&lt;br /&gt;
:Probably a reference to pyramidal cells, a type of neuron in the brain that is linked to cognition.&lt;br /&gt;
*Draconids - October 8&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Very slow, but follow you if you run&lt;br /&gt;
*Orionids - October 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Entire shower happens at once&lt;br /&gt;
*Leonids - November 17&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - In 1966, unusually active Leonid shower killed God&lt;br /&gt;
:There ''was'' a very active Leonid shower. However, it occurred several months after the article &amp;quot;Is God Dead?&amp;quot; published in ''Time Magazine'' that year.&lt;br /&gt;
*Geminids - December 13&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Can be deflected with tennis rackets&lt;br /&gt;
&lt;br /&gt;
The title text refers to the folk wisdom that ''lightning'' strikes the tallest thing around. [[Randall]] expressed frustration over how &amp;quot;maddeningly inexact&amp;quot; that statement is, and elaborated on the problem mathematically, on his [[what if?]]-blog, in the [http://what-if.xkcd.com/16/ post on lightning].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:The xkcd guide to meteor showers&lt;br /&gt;
[There is a three-column table]&lt;br /&gt;
:; Name - Peak - Notes&lt;br /&gt;
:Quadrantids - January 4&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Bring pets inside during peak activity&lt;br /&gt;
:Tricuspids - January 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Not viewable in region 2 countries&lt;br /&gt;
:Centaurids - February 6&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Too faint to see without going outside&lt;br /&gt;
:Beta Aquariids - February 10&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Inverted shower converges toward Aquarius instead of radiating away&lt;br /&gt;
:Chelyabids - February 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Only one meteor per shower, but it's big.&lt;br /&gt;
:Lyrids - April 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; - Meteors sometimes scream&lt;br /&gt;
:Daytime Zeta Perseids - June 9&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Likely a NASA hoax&lt;br /&gt;
:June Boötids - June 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - 50/50 mix of meteors and shooting stars&lt;br /&gt;
:Southern Delta Aquariids - July 19&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Meteors very bright, but stationary&lt;br /&gt;
:Dromaeosaurids - July 22&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Fast, highly intelligent, can open doors&lt;br /&gt;
:Perseids - August 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Instead of falling from sky, meteors erupt from ground&lt;br /&gt;
:Tau Pyramids - August 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Visible even when eyes are closed&lt;br /&gt;
:Draconids - October 8&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Very slow, but follow you if you run&lt;br /&gt;
:Orionids - October 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Entire shower happens at once&lt;br /&gt;
:Leonids - November 17&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - In 1966, unusually active Leonid shower killed God&lt;br /&gt;
:Geminids - December 13&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Can be deflected with tennis rackets&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Charts]]&lt;/div&gt;</summary>
		<author><name>74.125.57.36</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1249:_Meteor_Showers&amp;diff=46171</id>
		<title>Talk:1249: Meteor Showers</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1249:_Meteor_Showers&amp;diff=46171"/>
				<updated>2013-08-09T15:08:00Z</updated>
		
		<summary type="html">&lt;p&gt;74.125.57.36: Lyrids question&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The dates are not in order {{unsigned ip|‎99.108.140.97}}&lt;br /&gt;
&lt;br /&gt;
Maybe the tennis reference is to Bob and Mike Bryan, they are twins. [[Special:Contributions/83.227.33.35|83.227.33.35]] 09:36, 9 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
The date for Dromaeosaurids was originally June 12, but on the page displayed at 9:44 ET, is now July 22.&lt;br /&gt;
&lt;br /&gt;
Lyrids: Scream because of the similarity to &amp;quot;Lyrics&amp;quot;? [[Special:Contributions/74.125.57.36|74.125.57.36]] 15:08, 9 August 2013 (UTC)&lt;/div&gt;</summary>
		<author><name>74.125.57.36</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1249:_Meteor_Showers&amp;diff=46170</id>
		<title>1249: Meteor Showers</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1249:_Meteor_Showers&amp;diff=46170"/>
				<updated>2013-08-09T15:06:17Z</updated>
		
		<summary type="html">&lt;p&gt;74.125.57.36: Add note about Beta Aquariids&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1249&lt;br /&gt;
| date      = August 9, 2013&lt;br /&gt;
| title     = Meteor Showers&lt;br /&gt;
| image     = meteor showers.png&lt;br /&gt;
| titletext = Remember, meteors always hit the tallest object around.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This comic spoofs the way that astronomical events are often reported in the mass media &amp;amp;mdash; events are often tagged with undeserved superlatives or described as being more dramatic than they actually are. In some cases, outright misinformation is spread. This phenomenon occurs in part the result of over-eager scientists, and in part because of journalists misunderstanding the subject.&lt;br /&gt;
&lt;br /&gt;
Meteor showers, for example, typically occur regularly each year. Sometimes meteor showers are in fact likely to be relatively spectacular - for example when the peak of the shower occurs when your part of the world is in darkness and there is little moonlight. However, even in these cases it must be understood that there is nothing unusual about the meteor shower itself.&lt;br /&gt;
&lt;br /&gt;
Most of the meteor showers listed in the comic are real. These are the {{w|Quadrantids}}, [http://meteorshowersonline.com/showers/alpha-beta_centaurids.html Centaurids], {{w|Lyrids}}, Daytime Zeta Perseids, {{w|June Bootids|June Boötids}}, {{w|Southern Delta Aquariids}}, {{w|Perseids}}, {{w|Draconids}}, {{w|Orionids}}, {{w|Leonids}}, and {{w|Geminids}}.&lt;br /&gt;
&lt;br /&gt;
Some of the showers are made up (see below).&lt;br /&gt;
&lt;br /&gt;
*Quadrantids - January 4&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Bring pets inside during peak activity&lt;br /&gt;
*Tricuspids - January 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Not viewable in region 2 countries&lt;br /&gt;
:Made up. Apparently a play on the {{w|tricuspid valve}} in mammalian hearts. The mention of &amp;quot;Region 2&amp;quot; is a reference to {{w|region locking}}, a DRM scheme intended to limit media to certain areas.  DRM of course does not apply to natural events.  But ironically, meteor showers are also geographically restricted, and the visible area might roughly coincide with a DRM region. Further irony is that &amp;quot;Region 2&amp;quot; is actually Europe, Middle East, Egypt, Japan, South Africa, Swaziland, Lesotho, Greenland, French Overseas departments and territories, meaning that it's not strictly geographical, much is the mess that is DRM.&lt;br /&gt;
*Centaurids - February 6&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Too faint to see without going outside&lt;br /&gt;
:Since most houses have opaque roofs, it would take a ''very'' bright meteor to be visible without going outside.&lt;br /&gt;
*Beta Aquariids - February 10&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Inverted shower converges toward Aquarius instead of radiating away&lt;br /&gt;
*Chelyabids - February 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Only one meteor per shower, but it's big.&lt;br /&gt;
:Made up. A reference to the February 15, 2013, {{w|Chelyabinsk meteor}} whose explosion shattered windows within a large radius.&lt;br /&gt;
*Lyrids - April 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; - Meteors sometimes scream&lt;br /&gt;
*Daytime Zeta Perseids - June 9&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Likely a NASA hoax&lt;br /&gt;
*June Boötids - June 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - 50/50 mix of meteors and shooting stars&lt;br /&gt;
:The &amp;quot;50/50 mix of meteors and shooting stars&amp;quot; is a joke, as &amp;quot;meteor&amp;quot; and &amp;quot;shooting star&amp;quot; are synonymous.&lt;br /&gt;
*Southern Delta Aquariids - July 19&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Meteors very bright, but stationary&lt;br /&gt;
*Dromaeosaurids - July 22&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Fast, highly intelligent, can open doors&lt;br /&gt;
:Made up. Dromaeosaurids are dinosaurs belonging to {{w|Dromaeosauridae}}, the family containing the genus ''Velociraptor'', well-known from the movie Jurassic Park, and a [[:Category:Velociraptors|popular xkcd-theme]]. When the comic was originally published, the date listed for this shower was June 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;. The main events of Jurassic Park take place on June 11&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; and 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;.&lt;br /&gt;
*Perseids - August 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Instead of falling from sky, meteors erupt from ground&lt;br /&gt;
*Tau Pyramids - August 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Visible even when eyes are closed&lt;br /&gt;
:Probably a reference to pyramidal cells, a type of neuron in the brain that is linked to cognition.&lt;br /&gt;
*Draconids - October 8&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Very slow, but follow you if you run&lt;br /&gt;
*Orionids - October 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Entire shower happens at once&lt;br /&gt;
*Leonids - November 17&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - In 1966, unusually active Leonid shower killed God&lt;br /&gt;
*Geminids - December 13&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Can be deflected with tennis rackets&lt;br /&gt;
&lt;br /&gt;
The title text refers to the folk wisdom that ''lightning'' strikes the tallest thing around. [[Randall]] expressed frustration over how &amp;quot;maddeningly inexact&amp;quot; that statement is, and elaborated on the problem mathematically, on his [[what if?]]-blog, in the [http://what-if.xkcd.com/16/ post on lightning].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:The xkcd guide to meteor showers&lt;br /&gt;
[There is a three-column table]&lt;br /&gt;
:; Name - Peak - Notes&lt;br /&gt;
:Quadrantids - January 4&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Bring pets inside during peak activity&lt;br /&gt;
:Tricuspids - January 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Not viewable in region 2 countries&lt;br /&gt;
:Centaurids - February 6&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Too faint to see without going outside&lt;br /&gt;
:Beta Aquariids - February 10&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Inverted shower converges toward Aquarius instead of radiating away&lt;br /&gt;
:Chelyabids - February 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Only one meteor per shower, but it's big.&lt;br /&gt;
:Lyrids - April 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; - Meteors sometimes scream&lt;br /&gt;
:Daytime Zeta Perseids - June 9&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Likely a NASA hoax&lt;br /&gt;
:June Boötids - June 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - 50/50 mix of meteors and shooting stars&lt;br /&gt;
:Southern Delta Aquariids - July 19&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Meteors very bright, but stationary&lt;br /&gt;
:Dromaeosaurids - July 22&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Fast, highly intelligent, can open doors&lt;br /&gt;
:Perseids - August 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Instead of falling from sky, meteors erupt from ground&lt;br /&gt;
:Tau Pyramids - August 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Visible even when eyes are closed&lt;br /&gt;
:Draconids - October 8&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Very slow, but follow you if you run&lt;br /&gt;
:Orionids - October 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Entire shower happens at once&lt;br /&gt;
:Leonids - November 17&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - In 1966, unusually active Leonid shower killed God&lt;br /&gt;
:Geminids - December 13&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Can be deflected with tennis rackets&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Charts]]&lt;/div&gt;</summary>
		<author><name>74.125.57.36</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1249:_Meteor_Showers&amp;diff=46168</id>
		<title>1249: Meteor Showers</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1249:_Meteor_Showers&amp;diff=46168"/>
				<updated>2013-08-09T15:02:37Z</updated>
		
		<summary type="html">&lt;p&gt;74.125.57.36: Original date of Dromaeosaurids (according to the comments) is significant to the film.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1249&lt;br /&gt;
| date      = August 9, 2013&lt;br /&gt;
| title     = Meteor Showers&lt;br /&gt;
| image     = meteor showers.png&lt;br /&gt;
| titletext = Remember, meteors always hit the tallest object around.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This comic spoofs the way that astronomical events are often reported in the mass media &amp;amp;mdash; events are often tagged with undeserved superlatives or described as being more dramatic than they actually are. In some cases, outright misinformation is spread. This phenomenon occurs in part the result of over-eager scientists, and in part because of journalists misunderstanding the subject.&lt;br /&gt;
&lt;br /&gt;
Meteor showers, for example, typically occur regularly each year. Sometimes meteor showers are in fact likely to be relatively spectacular - for example when the peak of the shower occurs when your part of the world is in darkness and there is little moonlight. However, even in these cases it must be understood that there is nothing unusual about the meteor shower itself.&lt;br /&gt;
&lt;br /&gt;
Most of the meteor showers listed in the comic are real. These are the {{w|Quadrantids}}, [http://meteorshowersonline.com/showers/alpha-beta_centaurids.html Centaurids], {{w|Lyrids}}, Daytime Zeta Perseids, {{w|June Bootids|June Boötids}}, {{w|Southern Delta Aquariids}}, {{w|Perseids}}, {{w|Draconids}}, {{w|Orionids}}, {{w|Leonids}}, and {{w|Geminids}}.&lt;br /&gt;
&lt;br /&gt;
Some of the showers are made up (see below).&lt;br /&gt;
&lt;br /&gt;
*Quadrantids - January 4&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Bring pets inside during peak activity&lt;br /&gt;
*Tricuspids - January 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Not viewable in region 2 countries&lt;br /&gt;
:Made up. Apparently a play on the {{w|tricuspid valve}} in mammalian hearts. The mention of &amp;quot;Region 2&amp;quot; is a reference to {{w|region locking}}, a DRM scheme intended to limit media to certain areas.  DRM of course does not apply to natural events.  But ironically, meteor showers are also geographically restricted, and the visible area might roughly coincide with a DRM region. Further irony is that &amp;quot;Region 2&amp;quot; is actually Europe, Middle East, Egypt, Japan, South Africa, Swaziland, Lesotho, Greenland, French Overseas departments and territories, meaning that it's not strictly geographical, much is the mess that is DRM.&lt;br /&gt;
*Centaurids - February 6&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Too faint to see without going outside&lt;br /&gt;
*Beta Aquariids - February 10&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Inverted shower converges toward Aquarius instead of radiating away&lt;br /&gt;
*Chelyabids - February 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Only one meteor per shower, but it's big.&lt;br /&gt;
:Made up. A reference to the February 15, 2013, {{w|Chelyabinsk meteor}} whose explosion shattered windows within a large radius.&lt;br /&gt;
*Lyrids - April 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; - Meteors sometimes scream&lt;br /&gt;
*Daytime Zeta Perseids - June 9&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Likely a NASA hoax&lt;br /&gt;
*June Boötids - June 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - 50/50 mix of meteors and shooting stars&lt;br /&gt;
:The &amp;quot;50/50 mix of meteors and shooting stars&amp;quot; is a joke, as &amp;quot;meteor&amp;quot; and &amp;quot;shooting star&amp;quot; are synonymous.&lt;br /&gt;
*Southern Delta Aquariids - July 19&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Meteors very bright, but stationary&lt;br /&gt;
*Dromaeosaurids - July 22&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Fast, highly intelligent, can open doors&lt;br /&gt;
:Made up. Dromaeosaurids are dinosaurs belonging to {{w|Dromaeosauridae}}, the family containing the genus ''Velociraptor'', well-known from the movie Jurassic Park, and a [[:Category:Velociraptors|popular xkcd-theme]]. When the comic was originally published, the date listed for this shower was June 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;. The main events of Jurassic Park take place on June 11&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; and 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;.&lt;br /&gt;
*Perseids - August 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Instead of falling from sky, meteors erupt from ground&lt;br /&gt;
*Tau Pyramids - August 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Visible even when eyes are closed&lt;br /&gt;
:Probably a reference to pyramidal cells, a type of neuron in the brain that is linked to cognition.&lt;br /&gt;
*Draconids - October 8&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Very slow, but follow you if you run&lt;br /&gt;
*Orionids - October 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Entire shower happens at once&lt;br /&gt;
*Leonids - November 17&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - In 1966, unusually active Leonid shower killed God&lt;br /&gt;
*Geminids - December 13&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Can be deflected with tennis rackets&lt;br /&gt;
&lt;br /&gt;
The title text refers to the folk wisdom that ''lightning'' strikes the tallest thing around. [[Randall]] expressed frustration over how &amp;quot;maddeningly inexact&amp;quot; that statement is, and elaborated on the problem mathematically, on his [[what if?]]-blog, in the [http://what-if.xkcd.com/16/ post on lightning].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:The xkcd guide to meteor showers&lt;br /&gt;
[There is a three-column table]&lt;br /&gt;
:; Name - Peak - Notes&lt;br /&gt;
:Quadrantids - January 4&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Bring pets inside during peak activity&lt;br /&gt;
:Tricuspids - January 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Not viewable in region 2 countries&lt;br /&gt;
:Centaurids - February 6&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Too faint to see without going outside&lt;br /&gt;
:Beta Aquariids - February 10&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Inverted shower converges toward Aquarius instead of radiating away&lt;br /&gt;
:Chelyabids - February 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Only one meteor per shower, but it's big.&lt;br /&gt;
:Lyrids - April 22&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt; - Meteors sometimes scream&lt;br /&gt;
:Daytime Zeta Perseids - June 9&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Likely a NASA hoax&lt;br /&gt;
:June Boötids - June 27&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - 50/50 mix of meteors and shooting stars&lt;br /&gt;
:Southern Delta Aquariids - July 19&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Meteors very bright, but stationary&lt;br /&gt;
:Dromaeosaurids - July 22&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Fast, highly intelligent, can open doors&lt;br /&gt;
:Perseids - August 12&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Instead of falling from sky, meteors erupt from ground&lt;br /&gt;
:Tau Pyramids - August 15&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Visible even when eyes are closed&lt;br /&gt;
:Draconids - October 8&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Very slow, but follow you if you run&lt;br /&gt;
:Orionids - October 21&amp;lt;sup&amp;gt;st&amp;lt;/sup&amp;gt; - Entire shower happens at once&lt;br /&gt;
:Leonids - November 17&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - In 1966, unusually active Leonid shower killed God&lt;br /&gt;
:Geminids - December 13&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; - Can be deflected with tennis rackets&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Charts]]&lt;/div&gt;</summary>
		<author><name>74.125.57.36</name></author>	</entry>

	</feed>