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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1467:_Email&amp;diff=81985</id>
		<title>1467: Email</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1467:_Email&amp;diff=81985"/>
				<updated>2015-01-05T01:13:38Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.250.231: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1467&lt;br /&gt;
| date      = December 31, 2014&lt;br /&gt;
| title     = Email&lt;br /&gt;
| image     = email.png&lt;br /&gt;
| titletext = My New Year's resolution for 2014-54-12/30/14 Dec:12:1420001642 is to learn these stupid time formatting strings.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Despite being in popular use since 1998 when free email providers appeared and having existed since before 1982 when {{w|SMTP}} was established, [[Beret Guy]] apparently doesn't understand what {{w|email}} is, even though he maintains a web page that includes his email address. [[Megan]] wonders how else he expects electronic messages to be sent. She explains that one must check email regularly, making a slight at {{w|voicemail}}, which she implies is not worth ever checking.&lt;br /&gt;
&lt;br /&gt;
Beret Guy offers two alternatives: {{w|Fax}} and {{w|Snapchat}}. Megan refers to Snapchat as &amp;quot;the naked pic thing&amp;quot;, calling to mind how many of its users send naked pictures of themselves over the Internet. Beret Guy replies that people use fax machines for more than just &amp;quot;faxting&amp;quot; (a made-up term similar to {{w|sexting}}), implying that many people send sexual content via fax, a technology that predates SMTP by more than a decade.&lt;br /&gt;
&lt;br /&gt;
The title text, which could be [[Randall]]'s New Year's resolution for 2015, refers to various date/time formats. In programming, a point in time (eg. the current system time) is usually stored and processed as a single number that represents the count of seconds that have elapsed since a given starting time known as &amp;quot;epoch&amp;quot; (the Unix standard epoch is January 1, 1970 at midnight, {{w|UTC}}). In order to make sense to people, this number must be converted to a human-readable format, but programmers must choose a format that best meets the needs of their users. This can be a complicated problem to solve, given that there are many different standard formats for different regions, different levels of precision for different applications, and differences between &amp;quot;universal time&amp;quot; and a user's local time zone. Randall has previously advocated for widespread adoption of the [[1179: ISO 8601|ISO 8601]] format as a universal standard.&lt;br /&gt;
&lt;br /&gt;
The title text also probably references a twitter outage that took place on December 29th, which was blamed on an [http://www.theguardian.com/technology/2014/dec/29/twitter-2015-date-bug error in a date format string].&lt;br /&gt;
&lt;br /&gt;
Most programming languages provide functions to create a custom date-format string using &amp;quot;tokens&amp;quot; that represent different parts of the date/time. Here, Randall appears to have used one of these functions with the string &amp;quot;%Y-%M-%D %h:%m:%s&amp;quot;, which looks like it should produce a date and time as &amp;quot;Year-Month-Day Hour:Minute:Second&amp;quot;. However, he used the wrong tokens for this:&lt;br /&gt;
&lt;br /&gt;
*%Y = 4-digit year (2014)&lt;br /&gt;
*%M = minute (54)&lt;br /&gt;
*%D expands to %m/%d/%y, which is &amp;quot;month/day/2-digit year&amp;quot; in the user's local time zone rather than UTC. (&amp;quot;12/30/14&amp;quot; - see below)&lt;br /&gt;
*%h = abbreviated month name (&amp;quot;Dec&amp;quot;)&lt;br /&gt;
*%m = 2-digit month (12)&lt;br /&gt;
*%s = Unix timestamp (1420001642 seconds since epoch)&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;%s&amp;quot; token shows us the actual {{w|Unix time|Unix timestamp}} used (1420001642), which corresponds to 2014-12-31 at 04:54:02 UTC. The format string shown above thus yields &amp;quot;2014-54-12/30/14 Dec:12:1420001642&amp;quot;. Note that the middle portion of this string shows &amp;quot;12/30&amp;quot; instead of &amp;quot;12/31&amp;quot; - this is due to the %D token expressing the date in Randall's local time zone, which is evidently at least 5 hours off from UTC. In Pacific Standard Time, for example, the time was 20:54:02, or just before 9:00 PM, on the previous day.&lt;br /&gt;
&lt;br /&gt;
The correct format string for Randall's apparent desired result is &amp;quot;%Y-%m-%d %H:%M:%S&amp;quot;, which gives the string &amp;quot;2014-12-31 04:54:02&amp;quot; (UTC) or &amp;quot;2014-12-30 21:54:02&amp;quot; (Pacific Time). Given the similarity between Randall's string and the correct one, it is easy to see how this type of formatting is confusing and often frustrating for programmers - particularly those not intimately familiar with these functions.&lt;br /&gt;
&lt;br /&gt;
Randall previously addressed date/time formatting in [[1179: ISO 8601]] and [[1340: Unique Date]] (the latter of which uses a formatting string correctly).&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan approaches Beret Guy.]&lt;br /&gt;
:Megan: Any New Year's resolutions?&lt;br /&gt;
:Beret Guy: Gonna figure out what email is.&lt;br /&gt;
:Megan: ''...Email?''&lt;br /&gt;
&lt;br /&gt;
:[Megan points to her phone.]&lt;br /&gt;
:Beret Guy: People always say they're sending them. They sound really into it, so I always nod, but I have no idea what it is.&lt;br /&gt;
:Megan: You have an address on your website!&lt;br /&gt;
&lt;br /&gt;
:[Megan and Beret Guy walking.]&lt;br /&gt;
:Beret Guy: Oh, ''that's'' what that thing is.&lt;br /&gt;
:Megan: Email is important! You can't just ''never'' check it. It's not like voicemail.&lt;br /&gt;
&lt;br /&gt;
:Beret Guy: Can't they just send messages ''normally?''&lt;br /&gt;
:Megan: How?&lt;br /&gt;
:Beret Guy: Fax! Or Snapchat.&lt;br /&gt;
:Megan: ...The naked pic thing?&lt;br /&gt;
:Beret Guy: Fax machines aren't ''just'' for faxting!&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
The Unix timestamp is a standard method of describing the absolute number of seconds that have elapsed since &amp;quot;epoch&amp;quot;, defined as midnight on January 1, 1970, Coordinated Universal Time (UTC). Epoch, in {{w|ISO-8601}} format, is &amp;quot;1970-01-01T00:00:00Z&amp;quot;, where Z indicates UTC.&lt;br /&gt;
&lt;br /&gt;
The timestamp in this comic's title text (1420001642) is 1,420,001,642 seconds since epoch. To convert that into a human-readable time:&lt;br /&gt;
&lt;br /&gt;
*Years since 1970 = 1,420,001,642 seconds / 60 seconds per minute / 60 minutes per hour / 24 hours per day / 365.25 days per year&lt;br /&gt;
**This yields 44 years plus 31,467,242 seconds.&lt;br /&gt;
**The year for the timestamp is 1970 + 44 years = '''2014'''.&lt;br /&gt;
***Note: The year calculation specifies 365.25 days per year to account for {{w|leap year|leap years}} (every fourth year adds an extra day).&lt;br /&gt;
*Days since start of year = 31,467,242 seconds / 60 seconds per minute / 60 minutes per hour / 24 hours per day&lt;br /&gt;
**This yields 364 days plus 17,642 seconds.&lt;br /&gt;
**The 365th day of a non-leap year is '''December 31'''. December is the '''12th month''' in the Gregorian calendar.&lt;br /&gt;
*The remaining seconds can be converted into a time:&lt;br /&gt;
**Hours since start of day = 17,642 seconds / 60 seconds per minute / 60 minutes per hour = '''4 hours''' plus 3,242 seconds&lt;br /&gt;
**Minutes since start of hour = 3,242 seconds / 60 seconds per minute = '''54 minutes''' plus '''2 seconds'''&lt;br /&gt;
&lt;br /&gt;
Thus, Randall's timestamp represents the time &amp;quot;'''2014-12-31'''T'''04:54:02'''Z&amp;quot; (again in ISO-8601 format).&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>108.162.250.231</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1411:_Loop&amp;diff=74116</id>
		<title>1411: Loop</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1411:_Loop&amp;diff=74116"/>
				<updated>2014-08-22T05:44:58Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.250.231: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1411&lt;br /&gt;
| date      = August 22, 2014&lt;br /&gt;
| title     = Loop&lt;br /&gt;
| image     = loop.png&lt;br /&gt;
| titletext = Ugh, today's kids are forgetting the old-fashioned art of absentmindedly reading the same half-page of a book over and over and then letting your attention wander and picking up another book.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Early-Bird Draft. Temporary synopsis. Reorganization and details reccommended.}}&lt;br /&gt;
&lt;br /&gt;
Cueball is seen at his desk in front of four devices. He has clearly run out of things to do, or is looking for an excuse to procrastinate. A flowchart describes the process by which he scans the whole environment for something to do, which everyone can relate to. &lt;br /&gt;
The comic uses electronics likely because they are the common timekiller these days, and are most likely to contain fresh, tantalising entertainment. &lt;br /&gt;
News sites can be viewed as a good source of yet-to-be-seen content. Yet the search yields no interesting content, or the results don't garner enough attention, thus the blank stares and moving on to next device in line. &lt;br /&gt;
&lt;br /&gt;
The title text notes that this probably still happened before there were electronics and the internet, when most entertainment came from books.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball sits at a desk, accompanied by numerous electronics - a desktop computer, a laptop, a tablet, and a smartphone.]&lt;br /&gt;
Diagram Text: &amp;quot;Stare blankly at screen -&amp;gt; open news site -&amp;gt; start reading -&amp;gt; get bored -&amp;gt; absentmindedly check smaller device&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.250.231</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1407:_Worst_Hurricane&amp;diff=73587</id>
		<title>Talk:1407: Worst Hurricane</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1407:_Worst_Hurricane&amp;diff=73587"/>
				<updated>2014-08-13T08:03:59Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.250.231: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I tried to list all the unnamed hurricanes, but I gave up after 1938. Anybody feel like finishing it? [[Special:Contributions/108.162.219.195|108.162.219.195]] 05:37, 13 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The current explanation seems to interpret the title text completely wrongly; it isn't about finding a person that lived in *all* of the states, but finding people that lived in *each*. The point is that the entire data is estimated based on rainfall, not based on actually asking people the question.&lt;/div&gt;</summary>
		<author><name>108.162.250.231</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1143:_Location&amp;diff=68191</id>
		<title>1143: Location</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1143:_Location&amp;diff=68191"/>
				<updated>2014-05-28T07:48:05Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.250.231: /* Transcript */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1143&lt;br /&gt;
| date      = December 5, 2012&lt;br /&gt;
| title     = Location&lt;br /&gt;
| image     = location.png&lt;br /&gt;
| titletext = Ingress: Foursquare With Space Noises.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Ingress (game)|Ingress}} is an {{w|augmented reality}} location-based service game in which players have to visit certain real-world places marked by the game as containing in-game objectives, called portals. The friend in the comic owns a home surrounded by an abundance of portals, which makes it an attractive destination for [[Cueball]] and co.&lt;br /&gt;
&lt;br /&gt;
{{w|Foursquare}} is another service that lets users check into places they visit for discounts in a similar way to how Ingress players visit portals for points. &amp;quot;Space noises&amp;quot; refers to the ambient sounds when playing Ingress.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A group of people around a computer. Cueball is typing.]&lt;br /&gt;
:Cueball: Hey, party tonight?&lt;br /&gt;
:Cueball: We'd all like to come see your new place!&lt;br /&gt;
:Friend (through monitor): Wait, what?&lt;br /&gt;
&lt;br /&gt;
:[Cut to friend sitting at a laptop.]&lt;br /&gt;
:Cueball: We want to hang out!&lt;br /&gt;
:Friend: We're not, like, good friends.&lt;br /&gt;
:Cueball: I know, but we were thinking about it and we really like you!&lt;br /&gt;
&lt;br /&gt;
:[Cut back to Cueball and friends.]&lt;br /&gt;
:Cueball: You should have us over tonight!&lt;br /&gt;
:Cueball: For, like, an hour.&lt;br /&gt;
:Cueball: It'll be fun!&lt;br /&gt;
:Friend: Well, uh, sure.&lt;br /&gt;
&lt;br /&gt;
:[Cut to colour-inverted image of friend's house. Enlightened-controlled Ingress portals are surrounding the house.]&lt;br /&gt;
:Cueball: ''YESSSS!''&lt;br /&gt;
:Friend: I still don't get why you're suddenly so excited to hang out.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Video games]]&lt;/div&gt;</summary>
		<author><name>108.162.250.231</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1363:_xkcd_Phone&amp;diff=66534</id>
		<title>1363: xkcd Phone</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1363:_xkcd_Phone&amp;diff=66534"/>
				<updated>2014-05-02T05:45:46Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.250.231: speed of light is not 3m/s&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1363&lt;br /&gt;
| date      = May 2, 2014&lt;br /&gt;
| title     = xkcd Phone&lt;br /&gt;
| image     = xkcd_phone.png&lt;br /&gt;
| titletext = Presented in partnership with Qualcomm, Craigslist, Whirlpool, Hostess, LifeStyles, and the US Chamber of Commerce. Manufactured on equipment which also processes peanuts. Price includes 2-year Knicks contract. Phone may extinguish nearby birthday candles. If phone ships with Siri, return immediately; do not speak to her and ignore any instructions she gives. Do not remove lead casing. Phone may attract/trap insects; this is normal. Volume adjustable (requires root). If you experience sudden tingling, nausea, or vomiting, perform a factory reset immediately. Do not submerge in water; phone will drown. Exterior may be frictionless. Prolonged use can cause mood swings, short-term memory loss, and seizures. Avert eyes while replacing battery. Under certain circumstances, wireless transmitter may control God.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a BOT - Please change this comment when editing this page.}}&lt;br /&gt;
&lt;br /&gt;
This comic is a parody of a multitude of mobile-technology related issues that, when brought together, create a general satire of smartphone advertising. The advertised features here either make previously useful capabilities useless or add features nobody wants.  &lt;br /&gt;
&lt;br /&gt;
From bottom left, going clockwise: &lt;br /&gt;
&lt;br /&gt;
Flightaware partnership - This is a parody of flight mode, a capability most smart phones have. When activated, flight mode disables all transmission and receiving capabilities, making the phone suitable for use while on commercial flights. Flightaware partnership, by contrast, is an intrusive presumably airline-sponsored capability that no one wants. &lt;br /&gt;
&lt;br /&gt;
Realistic case– possibly a joke on various audiovisual devices like gaming consoles that advertise realistic sound, graphics, etc. Of course, applying &amp;quot;realistic&amp;quot; to an actual physical case is ridiculous. Either the case is actually real, or it doesn't actually function as a case. &lt;br /&gt;
&lt;br /&gt;
Clear screen– This is a pointless descriptor from the perspective of the consumer. Of course the screen is clear. This joke works in tandem with the previous joke, as a play on &amp;quot;clear case, realistic screen,&amp;quot; which are both hypothetically viable selling points.    &lt;br /&gt;
&lt;br /&gt;
Side Facing Camera – There was a recent controversy surrounding a kickstarter for a surreptitious, side-mounted camera device for smartphones due to the advertisement of the device as a good way to take creep shots, which are illegal in many places. Widespread dissemination of these devices as a built in would likely result in a sharp increase in delinquency of this nature. &lt;br /&gt;
&lt;br /&gt;
Custom blend OS – iOS and Android are offered by different conglomerates and run on different kernels. A &amp;quot;custom blend&amp;quot; would probably be a nightmare to work with. &lt;br /&gt;
&lt;br /&gt;
Simulates alternate speeds of light - This renders the clock useless. The speed of light is roughly 2.99x10^8 meters per second, far greater than 100 miles an hour. The adjustment for phone acceleration is also useless. While very high speeds can affect how time is perceived, normal daily use of a cellphone does not entail anything that would have a significant relativistic effect on the accuracy of clock time. &lt;br /&gt;
&lt;br /&gt;
Wireless - as in cordless phone. This is the bare minimum a phone has to have in order to be a mobile phone, so advertising it as a feature feels dated by decades. Or, perhaps Munroe is implying the entire phone is without wires, in which case it wouldn't function. &lt;br /&gt;
&lt;br /&gt;
Accelerometer screams in free fall– Another useless function. Rather than having some sort of feature to prevent breakage or cracking when a drop is detected, the phone just makes you more aware of its potential imminent doom. &lt;br /&gt;
&lt;br /&gt;
When exposed to light, phone says &amp;quot;hi&amp;quot; - Bait and switch, and also a build from the previous joke. The implied feature is that the screen or camera will automatically adjust, but instead the phone is weirdly anthropomorphized. &lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.250.231</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1353:_Heartbleed&amp;diff=64938</id>
		<title>1353: Heartbleed</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1353:_Heartbleed&amp;diff=64938"/>
				<updated>2014-04-09T06:30:53Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.250.231: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1353&lt;br /&gt;
| date      = April 9, 2014&lt;br /&gt;
| title     = Heartbleed&lt;br /&gt;
| image     = heartbleed.png&lt;br /&gt;
| titletext = I looked at some of the data dumps from vulnerable sites, and it was ... bad. I saw emails, passwords, password hints. SSL keys and session cookies. Important servers brimming with visitor IPs. Attack ships on fire off the shoulder of Orion, c-beams glittering in the dark near the Tannhäuser Gate. I should probably patch OpenSSL.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
In refrence to the &amp;quot;Heartbleed&amp;quot; vunerubilty in Open SSL see http://heartbleed.com/&lt;br /&gt;
&lt;br /&gt;
The mouseover text cites the [http://en.wikipedia.org/wiki/Tears_in_rain_soliloquy Tears in rain soliloquy], the dying words of the replicant and main antagonist Roy Batty (played by Rutger Hauer) in [http://en.wikipedia.org/wiki/Blade_Runner Blade Runner].&lt;br /&gt;
&lt;br /&gt;
{{incomplete|Created by a BOT - Please change this comment when editing this page.}}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Megan: Heartbleed must be the worst web security lapse ever.&lt;br /&gt;
:Cueball: Worst so far. Give us time.&lt;br /&gt;
:Megan: I mean, this bug isn't just broken encryption.&lt;br /&gt;
:Megan: It lets website visitors make a server dispense random memory contents.&lt;br /&gt;
:Megan: It's not just keys. It's traffic data. Emails. Passwords. Erotic faniction.&lt;br /&gt;
:Cueball: Is '''everything''' compromised?&lt;br /&gt;
:Megan: Well, the attack is limited to data stored in computer memory.&lt;br /&gt;
:Cueball: So paper is safe. And clay tablets.&lt;br /&gt;
:Megan: Our imaginations too.&lt;br /&gt;
:Cueball: See, we'll be fine.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.250.231</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:8:_Red_spiders&amp;diff=63205</id>
		<title>Talk:8: Red spiders</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:8:_Red_spiders&amp;diff=63205"/>
				<updated>2014-03-23T02:00:41Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.250.231: comment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In addition to [[8]] - [[Red spiders]], Red spiders also appear in comic [[42]] - [[Red Spiders 2]] and [[126]] - [[Red Spiders Cometh]] and are referenced in [[77]] - [[Counter-Red Spiders]] [[User:J-beda|J-beda]] ([[User talk:J-beda|talk]]) 01:51, 14 August 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;cuboids&amp;quot; always reminded me of how I picture the &amp;quot;stars&amp;quot; in the Battle Room in ''Ender's Game'' -- mwburden [[Special:Contributions/70.91.188.49|70.91.188.49]] 22:45, 13 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
The drawing is reminiscent of M.C.Escher style, isn't it ? [[Special:Contributions/37.160.7.233|37.160.7.233]] 19:58, 8 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
But why *RED* spiders, or is there some reference that I am just too dense to fathom? [[Special:Contributions/68.115.52.179|68.115.52.179]] 06:33, 25 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I came to this page to say there is an actual insect known colloquially as red spiders. Dad was telling me about how his azalea plants got something powdery on them which he took to the nursery for identification. The nursery guy freaked out and said it was a highly contagious mite infestation ('get that stuff away from here!'). Even though they are a mite they are sometimes known as red spiders. So I guess these 6-legged &amp;quot;spiders&amp;quot; are a thing. - loudwhitenoise [[Special:Contributions/108.162.250.231|108.162.250.231]] 02:00, 23 March 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>108.162.250.231</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=24:_Godel,_Escher,_Kurt_Halsey&amp;diff=62683</id>
		<title>24: Godel, Escher, Kurt Halsey</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=24:_Godel,_Escher,_Kurt_Halsey&amp;diff=62683"/>
				<updated>2014-03-14T05:15:43Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.250.231: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 24&lt;br /&gt;
| date      = September 30, 2005&lt;br /&gt;
| title     = Godel, Escher, Kurt Halsey&lt;br /&gt;
| image     = godel_escher_kurthalsey.jpg&lt;br /&gt;
| titletext = I love the idea here, though of course it's not a great-quality drawing or scan.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{Incomplete|Lack of information}}&lt;br /&gt;
The name of the comic is a take on the book {{w|Gödel, Escher, Bach}}. The book is about &amp;quot;strange loops&amp;quot;, self-reference, and recurring patterns, partially shown through the works of the three people in its title.&lt;br /&gt;
&lt;br /&gt;
{{w|Kurt Gödel}} was a 20th century mathematician most famous for mathematically proving that there are some mathematical truths that can't be proven (or some falsehood that can be proven to be true).&lt;br /&gt;
&lt;br /&gt;
{{w|M. C. Escher}} was a 20th century artist most famous for mathematically-inspired engravings of tessellated animals, impossible scenes, distorted images that contained themselves, and so on.&lt;br /&gt;
&lt;br /&gt;
{{w|Johann Sebastian Bach}} was a German composer and musician during the Baroque Period.&lt;br /&gt;
&lt;br /&gt;
[http://www.kurthalsey.com Kurt Halsey] is a comic artist from Oregon.&lt;br /&gt;
&lt;br /&gt;
It looks unclear whether the hatted guy is [[Black Hat]]. The character design wasn't yet standardized. The sarcastic comment suggests that it is.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*This is the sixth comic originally posted on livejournal. The previous was [[1: Barrel - Part 1]]. The next was [[13: Canyon]]. View archive [http://liveweb.archive.org/web/20070927001941/http://xkcd-drawings.livejournal.com/?skip=40 here].&lt;br /&gt;
*[Original title]: &amp;quot;Strip series&amp;quot;&lt;br /&gt;
*[Original [[Randall]] quote]: &amp;quot;One of a series of strips I drew during a long and boring NASA lecture. It careens wildly from intellectual to chaotic to Godel, Escher, Bach to Kurt Halsey to chaotic and sappy.&amp;quot; This might suggest that the image on LiveJournal was only part of this strip. Unfortunately, the image link on LiveJournal is broken.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Drawn during an unending NASA lecture.&lt;br /&gt;
:[Two people are talking, one in a hat.]&lt;br /&gt;
:Cueball: it's just so hard to compare kids now with kids in the past. you can't help but to belong to one group or the other.&lt;br /&gt;
&lt;br /&gt;
:Cueball: and of course every generation seems awful to the one before it. look at quotes from throughout history.&lt;br /&gt;
&lt;br /&gt;
:Hatted: yeah, and it sure would be nice to have some perspective on some of this stuff. I just don't know what to make of it.&lt;br /&gt;
:[Circles are appearing--maybe snow?]&lt;br /&gt;
&lt;br /&gt;
:Cueball: i guess you do what you can to help the people around you and hope it turns out okay.&lt;br /&gt;
&lt;br /&gt;
:Cueball: in the end, what else can you do?&lt;br /&gt;
&lt;br /&gt;
:Hatted: lead a crusade?&lt;br /&gt;
&lt;br /&gt;
:[We can no longer see the people, just the circles.]&lt;br /&gt;
:it's presentism, man. the idea that historical context is irrelevant, that we understand it&lt;br /&gt;
&lt;br /&gt;
:all that we need take no warnings from the follies of the past. that we're facing something new.&lt;br /&gt;
&lt;br /&gt;
:socrates couldn't imagine the internet. but people don't change.&lt;br /&gt;
:[We can start to see the corner of a darker circle in the lower right.]&lt;br /&gt;
&lt;br /&gt;
:(The borders between the three panels on this line are cracking.)&lt;br /&gt;
:have you seen those collections of historical pornography? talk about historical context.&lt;br /&gt;
&lt;br /&gt;
:did you know the first porn photo was bestial in.&lt;br /&gt;
:[inside a circle:] nature?&lt;br /&gt;
&lt;br /&gt;
:at least that stuff was out of the mainstream&lt;br /&gt;
:[each word in one circle:]&lt;br /&gt;
:no&lt;br /&gt;
:just&lt;br /&gt;
:in&lt;br /&gt;
:history&lt;br /&gt;
&lt;br /&gt;
:(the three panels have merged into one on each row.)&lt;br /&gt;
&lt;br /&gt;
:i don't know about you, but&lt;br /&gt;
:[circled] I&lt;br /&gt;
:[uncircled] never&lt;br /&gt;
&lt;br /&gt;
:even once seen&lt;br /&gt;
&lt;br /&gt;
:[The circles are highly variable in size now, and pressed up against a larger one on the right side.]&lt;br /&gt;
&lt;br /&gt;
:[There is mass of circles of different sizes, with some dark fissures in between, against the side of a large circle which we can see part of in the right half of the panel. They look like cells. There's a tiny square in the center of the giant cell.]&lt;br /&gt;
&lt;br /&gt;
:[We see only the tiny square, centered. It has a few marks inside it.]&lt;br /&gt;
&lt;br /&gt;
:[Closer, the square is divided into rectangles of different sizes, each of which has text in it.]&lt;br /&gt;
&lt;br /&gt;
:[Much closer, we can see fragments of the text. Some are sideways, some are cut off, some are too small to read.]&lt;br /&gt;
:machine language translated by principles of isomorphism it is a consequence of the Church-Turing thesis that ...&lt;br /&gt;
:but how do you select the channel you wish to se-&lt;br /&gt;
:thou ... shou ... palin ... stri ... it is a ... crab ...&lt;br /&gt;
&lt;br /&gt;
:[Closer still, we can just see a huge sideways s and h.]&lt;br /&gt;
&lt;br /&gt;
:[Those letters are faded and mixed with a faded version of the next panel.]&lt;br /&gt;
&lt;br /&gt;
:girls take boys away ...&lt;br /&gt;
:never be further than a phone call and a goosebumped shiver away ...&lt;br /&gt;
:drove all night listening to mix tapes ...&lt;br /&gt;
:the past is just practice&lt;br /&gt;
:[There is a heart at the bottom and, in the lower left, the name Kurt.]&lt;br /&gt;
&lt;br /&gt;
:[The same as the previous panel, but with the words blurred out to scribbles.]&lt;br /&gt;
&lt;br /&gt;
:[Jagged, shaded shapes and strands start to fall. Faint panel borders appear again. There is a person on the far right.]&lt;br /&gt;
&lt;br /&gt;
:(Back to three panels per row.)&lt;br /&gt;
:[Cueball and Megan are standing amid the fragments.]&lt;br /&gt;
&lt;br /&gt;
:Man: There's too much. And so little feels important.&lt;br /&gt;
&lt;br /&gt;
:[The jagged edge of the shaded area is encroaching on the sides of the panel.]&lt;br /&gt;
&lt;br /&gt;
:What do you do?&lt;br /&gt;
&lt;br /&gt;
:[We see them from farther away through a rough hole in the shaded area. Bits continue to fall around them.]&lt;br /&gt;
&lt;br /&gt;
:[She takes his hand.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics posted on livejournal]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Romance]]&lt;br /&gt;
[[Category:Philosophy]]&lt;/div&gt;</summary>
		<author><name>108.162.250.231</name></author>	</entry>

	</feed>