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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1537:_Types&amp;diff=95358</id>
		<title>Talk:1537: Types</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1537:_Types&amp;diff=95358"/>
				<updated>2015-06-12T13:58:07Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: comment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Relevant: WAT talk https://www.destroyallsoftware.com/talks/wat&lt;br /&gt;
&lt;br /&gt;
Are (6) and (7) about completing sequences?&lt;br /&gt;
&lt;br /&gt;
If the sequence was [1, 2, 3, ?] we would expect the ? to be a placeholder for 4. So [1, 2, 3]+2 is wrong := FALSE. But [1, 2, 3]+4 is correct := TRUE.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;+2 appears to be applying a unary + to the number 2&amp;quot; : or it adds the number of the line, 10, to 2 =&amp;gt; 12. Also, the eleventh line, &amp;quot;2+2&amp;quot; may add 2 to all the following 2, explaining line 12. (that theory is from a friend of mine) [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 12:17, 12 June 2015 (UTC)&lt;br /&gt;
: Also, for the lines 6 and 7, the operation &amp;quot;[1,2,3]+x&amp;quot; may add x to the set [1,2,3] and return true if the operation succeeded or false if not. Adding 2 to the set [1,2,3] returns false because 2 is already in [1,2,3]. [[User:Seipas|Seipas]] ([[User talk:Seipas|talk]]) 12:23, 12 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Yellowish Blue: http://www.livescience.com/17948-red-green-blue-yellow-stunning-colors.html is NaN!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The ironic thing is that fractions with 2 in the nominator are not the kind of numbers that typically suffer from floating point impreciseness.&amp;quot;''&lt;br /&gt;
- This is not technically correct.  Should read &amp;quot;fractions with 'power of 2' in the '''de'''nominator.  However, the 3/2 would cause precision errors.&lt;br /&gt;
: I don't know proper English wording for things, but 3/2=3*2^-1, so it would be represented exactly under IEEE-754 too. [[Special:Contributions/141.101.89.217|141.101.89.217]] 13:58, 12 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Is there more to this comic, a fixed set of rules that can tie all the examples together, or does each line make its own joke independently? [[Special:Contributions/108.162.219.5|108.162.219.5]] 12:54, 12 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;normally&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This would make sense if it was &amp;lt;code&amp;gt;[] + 2&amp;lt;/code&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It really wouldn't. Javascript returns &amp;lt;code&amp;gt;&amp;quot;2&amp;quot;&amp;lt;/code&amp;gt; (god knows why) and Python gives an error. Don't really feel like testing many other languages, but I also think it's not really a logical assumption to make at all. Can't think of a reason for &amp;lt;code&amp;gt;[] + 2&amp;lt;/code&amp;gt; to return &amp;lt;code&amp;gt;[2]&amp;lt;/code&amp;gt;... ever. It ''might'' make a little bit of sense in Randall's oddly typed language, but not in any sane one. --[[User:TotempaaltJ|TotempaaltJ]] ([[User talk:TotempaaltJ|talk]]) 12:35, 12 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Javascript first converts &amp;lt;code&amp;gt;[]&amp;lt;/code&amp;gt; (the empty array) to the empty string (using the rule &amp;quot;stringify each element and join with a comma&amp;quot;), then treats the operation as &amp;lt;code&amp;gt;&amp;quot;&amp;quot; + 2&amp;lt;/code&amp;gt;, which results in conversion of the other operand to string and then concatenation. [[Special:Contributions/141.101.97.214|141.101.97.214]] 12:46, 12 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
line 4: asci code of N + 2 = asci code of P [[User:SirKitKat|sirKitKat]] ([[User talk:SirKitKat|talk]]) 13:07, 12 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
My favourite xkcd in a while. =8o) Of the list I got a good laugh out of numbers 8 and 13. [[User:Jarod997|Jarod997]] ([[User talk:Jarod997|talk]]) 13:11, 12 June 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think a lot of this is his joke about programming languages loving the number 4. 2 + &amp;quot;2&amp;quot; = &amp;quot;4&amp;quot;, [1,2,3] + 4 = true, 2+2 = DONE, and the range one all seem to support this. Also reminds me of this: http://xkcd.com/221/&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1516:_Win_by_Induction&amp;diff=90810</id>
		<title>Talk:1516: Win by Induction</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1516:_Win_by_Induction&amp;diff=90810"/>
				<updated>2015-04-24T09:46:55Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Is the alt text a reference to double-yolkers (eggs with two yolks)?  [http://www.bbc.co.uk/news/magazine-16118149 They're only about 1 in every 1000] but it seems like an obvious reference. --[[User:Fenn|Fenn]] ([[User talk:Fenn|talk]]) 08:32, 24 April 2015 (UTC)&lt;br /&gt;
:Makes sense to me. I didn't even think of double yolks until you mentioned it here. [[Special:Contributions/173.245.50.89|173.245.50.89]] 09:04, 24 April 2015 (UTC)BK201&lt;br /&gt;
&lt;br /&gt;
The explanation currently says that doubling makes it uncountably infinite. I'm pretty sure that doubling at each step (or every few steps) is still a countable infinite set. Proof here: http://practicaltypography.com/the-infinite-pixel-screen.html (see section &amp;quot;The internet demands a recount&amp;quot;, because the first attempt is wrong). We can also prove it using the same argument as when proving that N x N is countable infinite (making zig-zag), but in this case making a breadth-first search of the tree of Pikachus: map 1 to the first Pikachu, map 2 and 3 to the two Pikachus at the second level, map 4, 5, 6, 7 to the four Pikachus at the third level, map (2^(n-1))…((2^n) - 1) to the 2^(n-1) Pikachus at level n. {{unsigned ip|108.162.229.177}}&lt;br /&gt;
:Saw this too late. Yes, I agree, and I have fixed it accordingly. --[[User:Stephan Schulz|Stephan Schulz]] ([[User talk:Stephan Schulz|talk]]) 09:28, 24 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;infinite, but countable&amp;quot; {Cough.} Someone doesn't understand infinity. Perhaps they meant &amp;quot;enumerable&amp;quot;. [[Special:Contributions/108.162.250.155|108.162.250.155]] 09:29, 24 April 2015 (UTC)&lt;br /&gt;
:Someone doesn't understand countability. [[Special:Contributions/141.101.89.217|141.101.89.217]] 09:46, 24 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;The front most Pikachu speaks.&amp;quot; Hey, look, it has those little lines to show it's speaking, not the blank white space behind it. Duh. [[Special:Contributions/108.162.250.155|108.162.250.155]] 09:32, 24 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Looks like Megan is looking at her watch as well.  Mention in transcript/explanation? [[User:Fenn|Fenn]] ([[User talk:Fenn|talk]]) 09:34, 24 April 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=185:_Wikifriends&amp;diff=89220</id>
		<title>185: Wikifriends</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=185:_Wikifriends&amp;diff=89220"/>
				<updated>2015-04-09T12:07:46Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: typo fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 185&lt;br /&gt;
| date      = November 17, 2006 &lt;br /&gt;
| title     = Wikifriends&lt;br /&gt;
| image     = wikifriends.png&lt;br /&gt;
| titletext = It's crazy how much my gut opinion of a movie/song is swayed by what other people say, regardless of how I felt coming out of the theater.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The comic's title refers to the well-known online encyclopædia {{w|Wikipedia}}. Since it has been started, the project has become the de-facto authority for facts and opinions in all sorts of fields (at least for non-professionals). Many people tend to readily accept any statement as true just because it was mentioned in a Wikipedia article.&lt;br /&gt;
&lt;br /&gt;
In the comic, this phenomenon is linked to the habit of adapting one's own opinions to those professed by friends. The influence of social environment is called {{w|peer pressure}}, often with a negative connotation. The term &amp;quot;Wikifriends&amp;quot; is coined in the comic as a label for people who adjust their views in order to incorporate into a group. As an example, the comic shows a discussion about a movie in which one collocutor entirely veers in his opinion when he hears what his friend thinks.&lt;br /&gt;
&lt;br /&gt;
Wikipedia was often advertised as &amp;quot;the encyclopedia that anyone can edit&amp;quot;, thus wikifriends could be seen as &amp;quot;the friends that anyone can edit&amp;quot;, in other words: They will be influenced by your opinion rather than having one of their own.  &lt;br /&gt;
&lt;br /&gt;
The title text suggests that [[Randall]] also observes himself to be frequently influenced by others.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:WikiFriends:&lt;br /&gt;
:[Two people are talking to each other.]&lt;br /&gt;
:Cueball: I really liked that movie.&lt;br /&gt;
:Friend: I hated that movie.&lt;br /&gt;
:Cueball: Me too.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Wikipedia]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1460:_SMFW&amp;diff=80855</id>
		<title>Talk:1460: SMFW</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1460:_SMFW&amp;diff=80855"/>
				<updated>2014-12-16T10:03:51Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reading this is like listening to the video of that lady who imitates the sound patterns of different languages, but without actually saying any real words! --[[User:Elipongo|Elipongo]] ([[User talk:Elipongo|talk]]) 05:34, 15 December 2014 (UTC)&lt;br /&gt;
:link? -- [[User:Brettpeirce|Brettpeirce]] ([[User talk:Brettpeirce|talk]]) 15:41, 15 December 2014 (UTC)&lt;br /&gt;
::https://www.youtube.com/watch?v=ybcvlxivscw [[Special:Contributions/199.27.130.192|199.27.130.192]] 19:56, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would sound more natural if it were &amp;quot;''SMFW '''as''' an acronym almost makes sense''&amp;quot;.  Is the fact that &amp;quot;as&amp;quot; was omitted from that sentence supposed to give us a hint as to what &amp;quot;SMFW&amp;quot; might mean? [[User:Nicksh|Nicksh]] ([[User talk:Nicksh|talk]]) 07:16, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: As &amp;quot;the Internet is for porn&amp;quot;, in many contexts SFW, lit. Safe for Work, can be taken to mean sex-free content, while NSFW, Not Safe for Work, would mean sex-positive content, then SMFW might be interpreted to me SM For Work, where SM would be humorously interpreted as some graphically explicit sex-positive content, perhaps SadoMachoism, which outside of paperwork is generally classified NSFW. [[Special:Contributions/199.27.133.29|199.27.133.29]] 10:31, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: And &amp;quot;wtfw it's like smho tbfh, imdb.&amp;quot; might be a defensive reaction to those what would not find humour of SM For Work. &amp;quot;what the fooking wut? It's like stick my humble opinion, to be fooking honest, in my dead body. (or database).&amp;quot; [[Special:Contributions/199.27.133.29|199.27.133.29]] 10:38, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Additional evidence of SM For Work, would be the posture in the task chair with respect to the desk and laptop (hunched over, feet not resting on ground, etc) seems the opposite of ergonomic advice which might lead to muscle strain, pain and fatigue -- the type of unsexy, self-inflicted torments that workers do to themselves &amp;quot;for work&amp;quot; {{unsigned ip|199.27.133.29}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I thought it was simply 'Save Me From Work' - being unhappy at work is common, and using the internet as a distraction from work is common as well. - So sending a quick message to a friend &amp;quot;SMFW&amp;quot; is a request for them to send you a link or other internet distraction, or otherwise help you come up with an excuse to not be productive. {{unsigned ip|108.162.221.206}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I thought of So Much For Work as a possible meaning. {{unsigned ip|173.245.50.178}}&lt;br /&gt;
&lt;br /&gt;
SMFW: Single Mode Fiber Waveguide	* {{unsigned ip|108.162.216.39}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I think &amp;quot;SMFW&amp;quot; is a mixture of SMF and MFW: &amp;quot;So Much Fun When&amp;quot;. It fits the sentence. The only thing is that Cueball doesn't look like he's having fun.&lt;br /&gt;
&lt;br /&gt;
Smoke more fucking weed could be a replacement for something like &amp;quot;Bloody hell&amp;quot; or &amp;quot;Shit the bed&amp;quot;.&lt;br /&gt;
[[Special:Contributions/141.101.98.252|141.101.98.252]] 09:05, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
So why doesn't &amp;quot;xkcd&amp;quot; appear on the acronyms list? --[[User:Koveras|Koveras]] ([[User talk:Koveras|talk]]) 09:47, 15 December 2014 (UTC)&lt;br /&gt;
: Because xkcd isnt an acronym. [[Special:Contributions/108.162.216.61|108.162.216.61]] 09:56, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I would like to add STFW (&amp;quot;Search the fucking web&amp;quot;, [http://en.wiktionary.org/wiki/STFW]) as an acronym that SMFW is close to (same except for the second letter)...but there might be enough examples? [[User:Aquaplanet|Aquaplanet]] ([[User talk:Aquaplanet|talk]]) 11:07, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
SMFW makes perfect sense. Shaking my face when (SMH+MFW) an acronym almost makes sense. {{unsigned|Sederts}}&lt;br /&gt;
:Seconded, &amp;quot;Shaking my face when&amp;quot; seems to be the best decryption so far... [[Special:Contributions/108.162.219.249|108.162.219.249]] 23:12, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
See My Face When an acronym almost makes sense... makes perfect sense. [[Special:Contributions/141.101.99.4|141.101.99.4]] 13:26, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;quot;So Much Frustration When an acronym ''almost'' makes sense.&amp;quot;&lt;br /&gt;
: +1 --  [[User:Brettpeirce|Brettpeirce]] ([[User talk:Brettpeirce|talk]]) 15:44, 15 December 2014 (UTC)&lt;br /&gt;
: I'd also like to add in my +1 on this -- [[Special:Contributions/108.162.216.188|108.162.216.188]] 19:39, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;What to feel when it's like some message has only to be f...ing hashtags, is mostly deep bafflement.&amp;quot; [[User:Ackegard|Ackegard]] ([[User talk:Ackegard|talk]]) 14:35, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
None of these are acronyms. [[Special:Contributions/199.27.128.115|199.27.128.115]] 14:55, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
So Much F*cking Want. So, uh. Yeah. [[Special:Contributions/108.162.237.124|108.162.237.124]] 15:10, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Small Men Fear Women [[Special:Contributions/108.162.216.39|108.162.216.39]] 15:27, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
So Many Fucking Ways? {{unsigned ip|108.162.230.209}}&lt;br /&gt;
&lt;br /&gt;
Staring, Mildly Frustrated When...? [[User:Kirdneh|Kirdneh]] ([[User talk:Kirdneh|talk]]) 17:50, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;SMHO&amp;quot; could also be related to &amp;quot;LMHO,&amp;quot; or &amp;quot;Laughing My Head Off.&amp;quot; So, &amp;quot;Shaking My Head Off&amp;quot;? Something that makes you shake your head so hard it might fall off? [[User:Shanek|Shanek]] ([[User talk:Shanek|talk]]) 16:12, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
SMFW is an initialism. [[Special:Contributions/108.162.230.131|108.162.230.131]] 16:45, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pedantic&amp;gt;Initialisms are only acronyms when they can be pronounced &amp;lt;/pendantic&amp;gt;  [[User:Sideshowtanley|Sideshowtanley]] ([[User talk:Sideshowtanley|talk]]) 17:16, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: smif-whaa? (smfw) wha-ti-fuh? (wtf) zik-cid? (xkcd) Can be pronounced or intended to be pronounced? Two very different things. [[Special:Contributions/108.162.216.64|108.162.216.64]] 01:47, 16 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I was thinking &amp;quot;So M*therf*cking what?&amp;quot; as the meaning for the acronym, but Randall is more arcane than that :) [[Special:Contributions/173.245.49.148|173.245.49.148]] 17:49, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Social Media Forum Warrior&amp;quot; is what came to my mind. I may have been on the internets for too long. [[Special:Contributions/141.101.104.137|141.101.104.137]] 19:22, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could be an example of a stacked acronym with an acronym recursively nested in an acronym.  Or it could be a portmanteau of two acronyms.  Is there a term for a portmanteau of two acronyms?  Portmonym?  Acmanteau? --[[User:Gbleck|Gbleck]] ([[User talk:Gbleck|talk]]) 19:31, 15 December 2014 (UTC)gbleck&lt;br /&gt;
&lt;br /&gt;
It's not meant to make sense. It's a play on acronyms not making sense. It is a single statement in a single sentence, but the play is on the fact that the acronym doesn't make sense. {{unsigned ip|141.101.98.207}}&lt;br /&gt;
&lt;br /&gt;
Smacks My Face When an acronym almost makes sense. {{unsigned ip|108.162.238.160}}&lt;br /&gt;
&lt;br /&gt;
Two things - 1) these are all abbreviations, not acronyms - no-one goes around saying &amp;quot;Smfw&amp;quot; - they'd say &amp;quot;S.M.F.W.&amp;quot;; 2) WTFW is &amp;quot;whatever the fuck works&amp;quot; - used quite often on a couple of forums I've been on. [[User:Grutness|Grutness]] ([[User talk:Grutness|talk]]) 23:11, 15 December 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
TDEMSYR!!! [[Special:Contributions/141.101.89.217|141.101.89.217]] 10:03, 16 December 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1453:_fMRI&amp;diff=79918</id>
		<title>1453: fMRI</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1453:_fMRI&amp;diff=79918"/>
				<updated>2014-11-28T16:47:49Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: correcting misinformation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1453&lt;br /&gt;
| date      = November 28, 2014&lt;br /&gt;
| title     = fMRI&lt;br /&gt;
| image     = fmri.png&lt;br /&gt;
| titletext = They also showed activation in the parts of the brain associated with exposure to dubious study methodology, concern about unremoved piercings, and exasperation with fMRI techs who won't stop talking about Warped Tour.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Functional magnetic resonance imaging|fMRI}} (Functional Magnetic Resonance Imaging), as the name suggests, is an offshoot of the MRI procedure. It is a technique designed to show brain activity, typically while the subject is performing tasks or responding to stimuli. During the test, the subject is laid in a relatively small cylinder inside a big, very loud, machine producing extremely strong magnetic fields. To prevent damage or injury, the subject must remove all metal objects from their body, including piercings, jewelry, watches etc.&lt;br /&gt;
&lt;br /&gt;
In the tests shown, the brain activity detected is a direct results of the testing environment itself, and has nothing to do with the simple tasks being performed by the subject. During fMRI participants hear loud noises, are confined in a small space (thus the claustrophobia) and have removed their jewelry. The researcher has mistaken these associated brain activities as effects as being caused by ''performing simple tasks'' which the participants have been asked to do and not a direct result of the settings of the test. Thus, the memory areas described by Megan are those associated with taking a functional MRI scan, rather than those associated with the &amp;quot;test&amp;quot; supposedly being carried out.&lt;br /&gt;
&lt;br /&gt;
In real experiments, reported activity patterns are always a result of subtracting average brain activity from many samples gathered during task from so called ''resting-state'' activity - which is obtained while subjects are not engaged in any task, thus eliminating the effect the setting has on brain activity. Apparently, the researcher in the comic has failed to account for that in the analysis of the data.&lt;br /&gt;
&lt;br /&gt;
It appears that [[Randall]] makes fun of the overly confident, sweeping statements made by some fMRI researchers, often in the press. In reality the technique requires that the researcher account for several possible sources of errors by, among others, performing proper statistical analyses, multiple comparisons and using proper control groups. These are usually the reasons for {{w|Functional_magnetic_resonance_imaging#Criticism|fMRI criticism}}. See the link for further information as well as an anecdote involving a dead salmon showing brain activity.&lt;br /&gt;
&lt;br /&gt;
The title text continues directly with this theme by saying that the subjects ''also showed activation in the parts of the brain associated with exposure to dubious study methodology''. It then continues with the jewelry issue, now especially the ''concern about unremoved piercings''. In the worst case these could be ripped off by the strong magnetic field. So it could be of some concern - especially when you take into consideration some of the places people may have piercings that is not obvious to the MRI personnel! The final remark about activation regards ''exasperation with fMRI techs who won't stop talking about Warped Tour''. &amp;quot;{{w|Warped Tour}}&amp;quot; refers to a traveling music festival that has been going since 2009, originally as a punk rock festival, but now with a more diverse set of music..&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan talking to an unseen audience in front of an fMRI brain scan]&lt;br /&gt;
:Megan: Our fMRI study found that subjects performing simple memory tasks showed activity in the parts of the brain associated with loud noises, claustrophobia, and the removal of jewelry. &lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1446:_Landing&amp;diff=78839</id>
		<title>Talk:1446: Landing</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1446:_Landing&amp;diff=78839"/>
				<updated>2014-11-12T10:12:24Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I would bet money that this comic will have to do with the Rosetta Lander that will be landing on a comet for the first time in history this morning. Info about it at Rosetta.esa.int&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/108.162.237.173|108.162.237.173]] 05:37, 12 November 2014 (UTC)pH&lt;br /&gt;
&lt;br /&gt;
Almost definitely. The URL for the image (http://imgs.xkcd.com/comics/landing/r_00-40-00_wmf0bPtxDN.png) contains 'landing'.&lt;br /&gt;
&lt;br /&gt;
[[User:DeedleFake|DeedleFake]] ([[User talk:DeedleFake|talk]]) 05:44, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The image changes every five minutes. (http://imgs.xkcd.com/comics/landing/r_00-35-00_lVC98SMY1X.png) followed by (http://imgs.xkcd.com/comics/landing/r_00-40-00_wmf0bPtxDN.png) followed by (http://imgs.xkcd.com/comics/landing/r_00-45-00_MZprhbADHL.png) then (http://imgs.xkcd.com/comics/landing/r_00-50-00_Z63bWhoaxd.png) (http://imgs.xkcd.com/comics/landing/r_00-55-00_2wCeCFN0R1.png) (http://imgs.xkcd.com/comics/landing/r_01-00-00_FRnIhqA5IZ.png) (http://imgs.xkcd.com/comics/landing/r_01-05-00_Os6SVGalch.png) (http://imgs.xkcd.com/comics/landing/r_01-10-00_xn4nUL9lry.png) http://imgs.xkcd.com/comics/landing/r_01-15-00_soIuPGfUYh.png , also I'm sorry about deleting other people's comments - firefox decided to not show the &amp;quot;other people have edited this&amp;quot; page :(. If anyone's interested, here's the command I'm using to grab the urls:&lt;br /&gt;
 while :; do http --stream --body http://c0.xkcd.com/stream/comic/landing\?method\=EventSource | awk '/png/ { print $2 }' | perl -ne '/(r_.+png)/; print &amp;quot;$1\n&amp;quot;;' ; done&lt;br /&gt;
where the 'http' command is from http://httpie.org - not the neatest way to do it, but it works ;)&lt;br /&gt;
[[User:Forkbomb|Forkbomb]] ([[User talk:Forkbomb|talk]]) 05:47, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Forkbomb, you are not supposed to delete other's comments... &lt;br /&gt;
Yes. It is definitely about Rosetta. The image changed at 9.35 pm PST and it says &amp;quot;Three hours to separation&amp;quot;, i.e. 12.35am PST, which is exactly the time at which PHILAE is going to separate... &lt;br /&gt;
[http://imgur.com/fK9Ddrx image_seen]&lt;br /&gt;
[http://blogs.esa.int/rosetta/2014/11/07/rosetta-and-philae-landing-timeline/ rosetta timeline]&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/199.27.128.237|199.27.128.237]] 05:50, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Is anyone collecting URLs? I assume there's an easy automated way to do this that was used for Time. If not...&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! URLs&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_01-05-00_Os6SVGalch.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-10-00_fUWUYNkxwp.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-15-00_74eSd3x7BQ.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-20-00_UT4FKycrmC.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-25-00_FX6hlfSQHR.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-30-00_FjnXADopvO.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-35-00_lVC98SMY1X.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-40-00_wmf0bPtxDN.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-45-00_MZprhbADHL.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-50-00_Z63bWhoaxd.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_00-55-00_2wCeCFN0R1.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_01-00-00_FRnIhqA5IZ.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_01-05-00_Os6SVGalch.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_01-10-00_xn4nUL9lry.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_01-15-00_soIuPGfUYh.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_01-20-00_jwkPNMaOSf.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_01-25-00_ADajYkIBoR.png&lt;br /&gt;
|-&lt;br /&gt;
|http://imgs.xkcd.com/comics/landing/r_01-30-00_w819mZAIhE.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_01-35-00_LoEc4Q8fJF.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_01-40-00_YLKE5WV8Jw.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_01-45-00_QRP5ndlY4A.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_01-50-00_OAOxgR9UUR.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_01-55-00_KGFuQYeX1i.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_02-00-00_ov37tpe8BX.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_02-05-00_VwL8mLbfmW.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_02-10-00_GCNRyInxWI.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_02-15-00_CQwEg4oyk3.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_02-20-00_jkbJbYkLeP.png&lt;br /&gt;
|-&lt;br /&gt;
|https://sslimgs.xkcd.com/comics/landing/r_02-25-00_Pxh3HKgWnT.png&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Randall switched to SSL after 1:30 but you can of course use either server.&lt;br /&gt;
&lt;br /&gt;
- Marcustyphoon/[[Special:Contributions/108.162.219.244|108.162.219.244]] 07:37, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(http://imgs.xkcd.com/comics/landing/r_00-45-00_MZprhbADHL.png) &amp;quot;Has anyone ever tried this before?&amp;quot; &amp;quot;No but fetishes have to start somewhere, right?&amp;quot; [[User:Nexxuz|Nexxuz]] ([[User talk:Nexxuz|talk]])&lt;br /&gt;
&lt;br /&gt;
Probably just a mistake, but the transcript in the html source of 1446 is from 1445.  --[[User:Pascal|Pascal]] ([[User talk:Pascal|talk]]) 05:58, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
It fetches things using this javascript tag..&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;/s/c3b919.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
I've pasted it in pastebin, can we get zealous and fetch the images before they actually show up ? :P&lt;br /&gt;
[http://pastebin.com/MwsahkyE link_to_javascript]&lt;br /&gt;
[[Special:Contributions/199.27.128.237|199.27.128.237]] 06:04, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
By the way, the current explanation says it's pinging c4.xkcd for updates.&lt;br /&gt;
From the javascript source, it looks like there's more than one server for this:&lt;br /&gt;
var SERVERS = [&amp;quot;http://c0.xkcd.com&amp;quot;, &amp;quot;http://c1.xkcd.com&amp;quot;, &amp;quot;http://c2.xkcd.com&amp;quot;, &amp;quot;http://c3.xkcd.com&amp;quot;, &amp;quot;http://c4.xkcd.com&amp;quot;, &amp;quot;http://c5.xkcd.com&amp;quot;, &amp;quot;http://c6.xkcd.com&amp;quot;, &amp;quot;http://c7.xkcd.com&amp;quot;];&lt;br /&gt;
So that would be c0 to c7&lt;br /&gt;
&lt;br /&gt;
Unfortuantely, as I had suggested, it seems that we cannot grab all the images beforehand :(&lt;br /&gt;
The javascript only fetches a json, which actually gives image name. So there's a server side script running which generates the paths to actual images. The javascript just shows it..&lt;br /&gt;
You can see the json [http://c4.xkcd.com/stream/comic/landing?method=EventSource here].&lt;br /&gt;
[[Special:Contributions/199.27.128.237|199.27.128.237]] 06:23, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Attempting to load the URL directly in Firefox results in unreadable results, but it's something like&lt;br /&gt;
 id: acae0462-6a34-11e4-8001-002590720087&lt;br /&gt;
 event: comic/landing&lt;br /&gt;
 data: {&amp;quot;image&amp;quot;:&amp;quot;r_01-25-00_ADajYkIBoR.png&amp;quot;,&amp;quot;spread&amp;quot;:1}&lt;br /&gt;
There are several other events as well, such as 'reload' and 'heartbeat'.&lt;br /&gt;
[[User:DeedleFake|DeedleFake]] ([[User talk:DeedleFake|talk]]) 06:32, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
By the way, that UUID (i.e. acae0462-6a34-11e4-8001-002590720087) seems to encode the time the image was uploaded as a v1 UUID.&lt;br /&gt;
[[User:Maths22|Maths22]] ([[User talk:Maths22|talk]]) 06:58, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The best part of this is ninja-ing the image uploads.  The xkcd servers seem to be off atomic time by around 45 seconds. [[User:Skylarmt|Skylarmt]] ([[User talk:Skylarmt|talk]]) 06:45, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
What are people's thoughts on changing the image label to an image number? It seems redundant to use the timestamp twice, but I copied it over from time. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:06, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
A lovely explanation. Itaigreif (talk) 07:45, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why is the comic titled &amp;quot;???&amp;quot; and not &amp;quot;Rosetta&amp;quot; or something? [[User:Smperron|Smperron]] ([[User talk:Smperron|talk]]) 08:02, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;Rosetta&amp;quot; would have given the game away in the first few minutes before we could figure it out. &amp;quot;???&amp;quot; is a strange choice, though. [[Special:Contributions/103.22.201.157|103.22.201.157]] 09:20, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The page has changed name from &amp;quot;???&amp;quot; to &amp;quot;Landing&amp;quot; about 5AM, and title text changed from &amp;quot;...&amp;quot; to &amp;quot;[LIVE]&amp;quot;. Not sure about actual times, and don't know how to rename page. Can someone else handle this? [[Special:Contributions/141.101.89.217|141.101.89.217]] 10:12, 12 November 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:694:_Retro_Virus&amp;diff=76935</id>
		<title>Talk:694: Retro Virus</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:694:_Retro_Virus&amp;diff=76935"/>
				<updated>2014-10-09T13:28:20Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Edited to reflect that at the time referenced in the comic (2003), Windows XP machines were not necessarily &amp;quot;more susceptible&amp;quot; to viruses, but rather due to their ubiquity (especially at large corporations or other organizations) were more likely to be targeted by viruses. I'm certainly not an expert, so please if anyone has a better understanding, update or revert the explanation, as appropriate. [[User:Orazor|Orazor]] ([[User talk:Orazor|talk]]) 08:52, 11 June 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Cleaning viruses in the Win32 API&amp;quot; is such a stupid statement... Gonna edit it later. [[Special:Contributions/141.101.89.217|141.101.89.217]] 13:28, 9 October 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1427:_iOS_Keyboard&amp;diff=76444</id>
		<title>Talk:1427: iOS Keyboard</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1427:_iOS_Keyboard&amp;diff=76444"/>
				<updated>2014-09-29T10:04:39Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;XKCD references on the XKCD wiki? Who would've thought... [[Special:Contributions/141.101.104.197|141.101.104.197]] 06:58, 29 September 2014 (UTC)&lt;br /&gt;
:I'm so meta even this acronym. &lt;br /&gt;
:Just saying... [[Special:Contributions/108.162.217.125|108.162.217.125]] 07:58, 29 September 2014 (UTC)BK201&lt;br /&gt;
&lt;br /&gt;
I believe that the ios word prediction is personalised based on your previous sentences. My Android autocomplete comes up with &amp;quot;Elementary, my feast of the United Kingdom&amp;quot;, and &amp;quot;Toto, I've a feeling we're not going to Switzerland&amp;quot;... --[[User:Pudder|Pudder]] ([[User talk:Pudder|talk]]) 07:53, 29 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
What about adding a reference to XKCD Questions[http://xkcd.com/1256/]? --[[User:Jkotek|Jkotek]]&lt;br /&gt;
&lt;br /&gt;
Wasn't there XKCD comics about keyboard prediction starting from blank state? --[[User:JakubNarebski|JakubNarebski]] ([[User talk:JakubNarebski|talk]]) 09:57, 29 September 2014 (UTC)&lt;br /&gt;
:[http://xkcd.com/1068/] You're welcome. [[Special:Contributions/141.101.89.217|141.101.89.217]] 10:04, 29 September 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1421:_Future_Self&amp;diff=75848</id>
		<title>Talk:1421: Future Self</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1421:_Future_Self&amp;diff=75848"/>
				<updated>2014-09-15T08:19:05Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: Created page with &amp;quot;The last paragraph was written with assumption no other content is here yet (because there wasn't) - can someone incorporate it correctly with the rest, please? ~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The last paragraph was written with assumption no other content is here yet (because there wasn't) - can someone incorporate it correctly with the rest, please? [[Special:Contributions/141.101.89.217|141.101.89.217]] 08:19, 15 September 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1421:_Future_Self&amp;diff=75846</id>
		<title>1421: Future Self</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1421:_Future_Self&amp;diff=75846"/>
				<updated>2014-09-15T08:16:30Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: /* Explanation */ hello world&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1421&lt;br /&gt;
| date      = September 15, 2014&lt;br /&gt;
| title     = Future Self&lt;br /&gt;
| image     = future_self.png&lt;br /&gt;
| titletext = Maybe I haven't been to Iceland because I'm busy dealing with YOUR crummy code.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|First attempt at explanation, taking over from the Bot, but probably debatable.}}&lt;br /&gt;
The comic shows presumably a segment of a code transcript from an old project of Cueball's, this part entirely consisting of comments (a number of computer languages, including several popular dialects, use &amp;quot;#&amp;quot; to indicate &amp;quot;the remainder of this line is a comment&amp;quot;) written with apparent foresight by the Cueball's 'younger self' in anticipation of being read by his 'older self' at some point in the future.&lt;br /&gt;
&lt;br /&gt;
A &amp;quot;parse function&amp;quot; might well be some code that interprets some form of input (e.g. the text of a web-page that has been 'scraped' by another part of the code) and makes sense of it in a way that enables functionality in some other part of the code.  For some reason this has now failed.  A likely explanation in the example case being that source web-site has revamped its pages and information display method, whether or not this is noticable by the human reader who only reads the page as rendered the browser and not the underlying code.&lt;br /&gt;
&lt;br /&gt;
Certainly, that the parser has 'failed' indicates that it worked once but possibly it was {{w|kludge|kludged}} together with no expectation that it would handle expected future changes and a firm belief that those changes could not be easily 'rekludged' to handle the new situation but instead a proper re-write of the code needs to be done.  However, it seems to have lasted one year more than expected, by the younger Cueball.  This is probably more down to external factors (lazy web-site maintainers), however.&lt;br /&gt;
&lt;br /&gt;
Older cueball feels the need to retorically reply to his younger self's commentary, only to find a further foreward-looking snark that is both prescient and obviously emotionally hard-hitting.  The title-text is a further come-back by the older-self, who lays the blame back upon the historic Cueball persona.&lt;br /&gt;
&lt;br /&gt;
Some people write letters to &amp;quot;future self&amp;quot;, which they put away and read years later to see how much they've changed. In this comic, the letter wasn't written for entertainment purposes, but rather it is a comment in source code file in which Cueball of the past admitted he did a horrible job writing a parsing routine, and knew that somewhere in the future, he would have to go back to this code and fix some bug that wasn't the problem back then, but it turned out to be now. He knew that the code will be very hard to fix and left the letter as a reminder to not try to fix it and rewrite it from scratch instead. Cueball of the present, shown on the comic, is absolutely bewildered how accurate the note he left years ago is.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript}}&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; Dear Future Self,&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; You're looking at this file because&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; the parse function finally broke.&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; It's not fixable. You have to rewrite it.&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; Sincerely, Past Self&lt;br /&gt;
&lt;br /&gt;
:Cueball: Dear Past Self, it's kinda creepy how you do that.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; Also, it's probably at least&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; 2013. Did you ever take&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt; that trip to Iceland?&lt;br /&gt;
&lt;br /&gt;
:Cueball: Stop judging me!&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=379:_Forgetting&amp;diff=75608</id>
		<title>379: Forgetting</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=379:_Forgetting&amp;diff=75608"/>
				<updated>2014-09-10T12:51:01Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 379&lt;br /&gt;
| date      = February 4, 2008&lt;br /&gt;
| title     = Forgetting&lt;br /&gt;
| image     = forgetting.png&lt;br /&gt;
| titletext = Of course, the assert doesn't work.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Cueball]] is writing a piece of code (probably in the programming language {{w|C++}}) which removes an item from a data structure called a {{w|Linked list}} (the first two lines of the text). Then, he writes a {{w|Comment (computer programming)|comment}} (which is delimited by the double slashes) relating the code to his personal life. Finally, he adds an {{w|Assertion (computing)|assertion}}, which is normally a formal specification of a condition which should always be true (with which the programmer ensures that e.g. mass is not negative). But in this case, instead of asserting a software-related predicate, he asserts that &amp;quot;it's going to be okay&amp;quot; - and because of how {{w|String literal|string literals}} are treated by the compiler, the assertion will be true.&lt;br /&gt;
&lt;br /&gt;
An &amp;quot;assert&amp;quot; is a programming statement that allows you to insert sanity checks into your code. For example, if you were writing a program to calculate the speed of a neutrino, then at the end of the calculation you could say:  &lt;br /&gt;
:&amp;lt;code&amp;gt;assert ( velocity_of_neutrino &amp;lt;= speed_of_light );&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the assertion fails, then the program will stop with an error. This would be much better than publishing an embarrassing paper, for example. &lt;br /&gt;
&lt;br /&gt;
The title text explains that assertion in question fails: we cannot be sure that things are going to be ok.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball sits at computer, coding.]&lt;br /&gt;
 prev-&amp;gt;next = toDelete-&amp;gt;next;&lt;br /&gt;
 delete toDelete;&lt;br /&gt;
 &lt;br /&gt;
 //if only forgetting were &lt;br /&gt;
 //this easy for me.&lt;br /&gt;
&lt;br /&gt;
:Cueball: &amp;lt;sniff&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:[Cueball lowers his head into his hands and cries.]&lt;br /&gt;
&lt;br /&gt;
:[Cueball types again.]&lt;br /&gt;
 assert &amp;quot;It's going to be okay.&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Programming]]&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1416:_Pixels&amp;diff=75287</id>
		<title>1416: Pixels</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1416:_Pixels&amp;diff=75287"/>
				<updated>2014-09-05T13:40:49Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1416&lt;br /&gt;
| date      = September 3, 2014&lt;br /&gt;
| title     = Pixels&lt;br /&gt;
| image     = pixels.png&lt;br /&gt;
| titletext = It's turtles all the way down.&lt;br /&gt;
}}&lt;br /&gt;
'''NOTE: The above is only a zoomed out version of the this interactive comic.''' For a collection of images that appear when zooming in on this comic, see [[1416: Pixels/Images]].&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Individual panels need explanations}}&lt;br /&gt;
This interactive comic begins with a panel where [[Cueball]] is stacking turtles. This is a reference to the idiom &amp;quot;turtles all the way down,&amp;quot; which refers to the problem of infinite recursion: if everything in the universe is &amp;quot;on top of&amp;quot; something else, so to speak, there must be a &amp;quot;bottom.&amp;quot; A joking solution to the paradoxical nature of such a bottom is the proposition that  {{w|Turtles_all_the_way_down|the world rests on a semi-infinite stack of turtles}}.&lt;br /&gt;
&lt;br /&gt;
As can be read you should &amp;quot;scroll to zoom&amp;quot;. This can be done by placing the cursor inside the panel of the comic. When scrolling up (using the mouse wheel) the picture zooms in until the pixels are visible. When you continue to scroll on each pixel then resolves into another comic picture, with black-on-white comic panels making up the white pixels and white-on-black panels making up the black pixels. Scrolling on until you can see the pixels of the comic picture you are now zooming into the process is repeated again and will be so for all subsequent sets of comic panels. Not all white and all black panels are the same; some sets involve more than two different panels, but all involve repetitive tiling.&lt;br /&gt;
&lt;br /&gt;
==Themes==&lt;br /&gt;
===Book Launch===&lt;br /&gt;
This comic was released on September 3rd, 2014, the day after [[Randall|Randall's]] book ''[http://whatif.xkcd.com/book/ What If]'' was launched. The book is shown and referred to in a number of frames, for example it is [[:File:pixels-upgoer.png|'''literally''' launched]] as a part of an &amp;lt;strike&amp;gt;rocket&amp;lt;/strike&amp;gt; [[1133:_Up_Goer_Five|''up goer'']] built by Cueball.&lt;br /&gt;
&lt;br /&gt;
The model ''up goer'' is [[:File:pixels-assembly-1.png|made of Rocket Parts from KSP]].  KSP is the {{w|Kerbal Space Program}}, a spaceflight simulator which was also [[1350: Lorenz#Themes|part]] of the latest interactive comic [[1350: Lorenz]]. Perhaps XKCD's 'parts' refers to KSP's large community of mod developers who contribute 'parts' to the game. The frames showing the book launch use URIs that include the text &amp;quot;upgoer&amp;quot; in reference to the [[Up Goer Five]] comic.&lt;br /&gt;
&lt;br /&gt;
===Needs More Struts===&lt;br /&gt;
{{w|Strut|Struts}} are structural members in engineering, and are are one of the components used in Kerbal Space Program to construct rockets. 'Needs More Struts' seems to be a meme amongst players of Kerbal Space Program, along the lines of 'When in doubt, overengineer'. Megan deems Cueball's rocket to be insufficiently structurally sound, and declares that it &amp;quot;[[:File:pixels-assembly-4.png|Needs More Struts]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===The Only Copy===&lt;br /&gt;
Cueball &amp;amp; Megan turn to each other having just launched the What-If book rocket into space (construction and launch are seen in other panels). perhaps Megan realises they may have misunderstood the term 'book launch' and that they may have just lost ''[[:File:pixels-upgoer-6.png|the only copy]]'' of the book.&lt;br /&gt;
&lt;br /&gt;
===Holism, Reductionism, Mu===&lt;br /&gt;
These three words refer to &amp;quot;A MU offering&amp;quot;, an essay by {{w|Douglas Hofstatder}} in his book {{w|Godel, Escher, Bach}} (which was referenced by Randall in [[24: Godel, Escher, Kurt Halsey ]]). It includes a similar multiple level drawing: {{w|Mu (negative)|the word MU}} is composed of copies of the words [[:File:pixels-holism.png|HOLISM]] and [[:File:pixels-reductionism.png|REDUCTIONISM]], each of which are in turn made of smaller copies of the other, which are in turn made of [http://newtonexcelbach.wordpress.com/2011/02/16/two-more-letters/ tiny copies] of the word [[:File:pixels-mu.png|MU]].&lt;br /&gt;
&lt;br /&gt;
===Cantor Set===&lt;br /&gt;
[[:File:pixels-cantor.png|One panel]] contains a number of lines and dots, which are in fact a depiction of the first 5 steps of a {{w|Cantor set|Cantor Ternary Set}}, mirrored about the horizontal centreline. The Cantor ternary set is constructed by repeatedly deleting the open middle thirds of a set of line segments. The Cantor Set is one of the canonical examples of a fractal, a shape whose individual parts resemble the whole. The use of the Cantor Set in this comic is self-referential, in that the comic, itself, is composed of parts of the same shape as the whole.&lt;br /&gt;
&lt;br /&gt;
===Time Turners===&lt;br /&gt;
The time turner is a device from the {{w|Harry Potter}} series of novels by {{w|JK Rowling}}. It allows the user to re-live a period of time over again. In the third novel Hermione is given the time-turner to allow her to take extra classes, however it is eventually used to spare Buckbeak the hippogryph from execution. This prompted many questions regarding why time-turners weren’t used on other occasions to save people's lives (among other things). &lt;br /&gt;
&lt;br /&gt;
While J.K Rowling has “[http://pottermore.wikia.com/wiki/Time-Turner solved the problem to her own satisfaction]” she admits that she entered into the subject of time-travel too lightly.&lt;br /&gt;
&lt;br /&gt;
[[:File:pixels-time-turner.png|This panel]] jokes that if the real life JK Rowling had a fictional time-turner which worked, she would have gone back and removed the time-turner plotline from the book, saving her all the hassle of dealing with the resulting time-travel questions. This act would result in a time-travel paradox.&lt;br /&gt;
&lt;br /&gt;
===Stockholm Syndrome===&lt;br /&gt;
{{w|Stockholm syndrome}} is the name for a psychological phenomenon, in which hostages develop sympathy, empathy and/or positive feelings towards their captors. These feelings are usually seen as irrational, seeing as the hostage is held against their wishes, usually with the threat of physical harm or death.&lt;br /&gt;
&lt;br /&gt;
[[:File:pixels-stockholm.png|This panel]] asks &amp;quot;How do we know anyone really ''wants'' to live in Stockholm?&amp;quot;, questioning whether everyone who lives in the city of Stockholm is in fact held hostage there and only stays because they have developed to like life there (due to Stockholm Syndrome).&lt;br /&gt;
&lt;br /&gt;
===Shut Down the Server===&lt;br /&gt;
Cueball tells an offscreen character that he is going to [[:File:pixels-server-1.png|shut down the server]], while carrying a bucket of water.&lt;br /&gt;
&lt;br /&gt;
Usually shutting down a {{w|Server (computing)|server}} is done via the operating system or software, or (not recommended) turning it off or pulling the power plug. But in this case it appears that cueball is simply going to douse it with water, likely resulting in serious water damage to the hardware.&lt;br /&gt;
&lt;br /&gt;
=== du ===&lt;br /&gt;
&amp;quot;[[:File:pixels-du.png|du]]&amp;quot; is a {{w|Linux}} command to indicate the &amp;quot;disk usage&amp;quot; of a file or directory.&lt;br /&gt;
&lt;br /&gt;
    ~$ du -s video/&lt;br /&gt;
    4170882256&lt;br /&gt;
&lt;br /&gt;
This is a command that shows how large all the files are in this user's &amp;quot;video&amp;quot; directory - presumably where they store their personal videos. The units of the result is probably kilobytes (depending on settings)&lt;br /&gt;
&lt;br /&gt;
This number is clearly large and difficult to parse, and the units are not clear. More appropriate units would be gibibytes rather than bytes. The du command offers an option to display units in &amp;quot;human readable format&amp;quot;, which will adapt to use kilobytes, megabytes, gigabytes, terabytes, etc. as appropriate. The next command purports to request the same result in more human-readable form.&lt;br /&gt;
&lt;br /&gt;
    ~$ du -hs video/&lt;br /&gt;
    A lot.&lt;br /&gt;
    ~$&lt;br /&gt;
&lt;br /&gt;
It seems that the computer, rather than giving a specific answer, simply says that the size of the video directory is &amp;quot;A lot.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The final line indicates the computer is now ready to accept a new command.&lt;br /&gt;
&lt;br /&gt;
===Fire Hydrant===&lt;br /&gt;
[[Black Hat]] is talking to a fireman, with a fire engine on fire in the background, he asks &amp;quot;To be fair, what else would you expect to come out of a &amp;quot;[[:File:pixels-fire-hydrant.png|fire hydrant]]&amp;quot;?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Black Hat appears to have managed to replace the usual water supply to the {{w|fire hydrant}} with actual fire. Thus when the hydrant is used, the result is, quite literally, fire. In Black Hat's logic, a hydrant which delivers water should be called a water hydrant.&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
The {{w|March of Progress}} image is a famous and instantly recognisable image showing the stages of human evolution by way of a series of primate figures as if marching in a line. The panel parodies the March of Progress image, with [[:File:pixels-evolution.png|5 ducklings following an adult duck]]. In this case they don’t actually ‘evolve’ into the adult duck however. The comic has some resemblance to [[537: Ducklings]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is stacking turtles, and is about to put the fourth turtle on his pile. At the bottom right there is a small panel. Inside this is written:]&lt;br /&gt;
:Scroll to zoom&lt;br /&gt;
&lt;br /&gt;
:[When zooming in there will be several panels with text. The transcript of these may not be possible to complete - but add the transcript of these panels here: [[1416: Pixels/Transcript|interactive transcript]]]&lt;br /&gt;
&lt;br /&gt;
==Bugs==&lt;br /&gt;
Doesn't seem to work properly in all browsers (e.g. Firefox and Safari on MacOSX), giving &amp;quot;TypeError: this.data is null&amp;quot; in line 173 of zoom.js: &amp;quot;var item = this.data.get(dims)&amp;quot;&lt;br /&gt;
Doesn't seem to work in IE8, comic is blank, but title text works.&lt;br /&gt;
&lt;br /&gt;
Does not work on xkcd.org neither www.xkcd.org in Firefox and Chrome. Currently you should visit http://xkcd.com for this comic to work properly.&lt;br /&gt;
&lt;br /&gt;
Also, it doesn't work on HTTPS.&lt;br /&gt;
&lt;br /&gt;
==Gallery==&lt;br /&gt;
[[File:1416_Pixels_layout.png|thumb|Graph of links between the 79 individual images]]&lt;br /&gt;
[[1416: Pixels/Images|This gallery]] contains some of the 79 images&amp;lt;ref&amp;gt;http://azttm.wordpress.com/2014/09/03/xkcd-com-1416-pixels/&amp;lt;/ref&amp;gt; used in this comic. The images are related in a [[:File:1416_Pixels_layout.png|directed graph]].&lt;br /&gt;
&lt;br /&gt;
==Images Database==&lt;br /&gt;
This google sheet describes all possible images, their associated codes, and what possible images can be used as sub-images for each zoom level: https://docs.google.com/spreadsheets/d/1nldKAkeVcK606CY12KI9bah9rDmK9E7CZOyinsEj2Lo/edit?usp=sharing&lt;br /&gt;
&lt;br /&gt;
==Image scraping script==&lt;br /&gt;
This gist recursively downloads all possible images:&lt;br /&gt;
https://gist.github.com/Aaron1011/d3b56325881cd639506a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Interactive comics]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1416:_Pixels&amp;diff=75080</id>
		<title>1416: Pixels</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1416:_Pixels&amp;diff=75080"/>
				<updated>2014-09-04T11:19:20Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: /* du */ terabytes are NOT appropriate here&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1416&lt;br /&gt;
| date      = September 3, 2014&lt;br /&gt;
| title     = Pixels&lt;br /&gt;
| image     = pixels.png&lt;br /&gt;
| titletext = It's turtles all the way down.&lt;br /&gt;
}}&lt;br /&gt;
'''NOTE: The above is only a zoomed out version of the this interactive comic.''' For a collection of images that appear when zooming in on this comic, see [[1416: Pixels/Images]].&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Individual panels need explanations}}&lt;br /&gt;
This interactive comic begins with a panel where [[Cueball]] is stacking turtles. This is a reference to the idiom &amp;quot;turtles all the way down,&amp;quot; which refers to the problem of infinite regression: if everything in the universe is &amp;quot;on top of&amp;quot; something else, so to speak, there must be a &amp;quot;bottom.&amp;quot; A joking solution to the paradoxical nature of such a bottom is the proposition that  {{w|Turtles_all_the_way_down|the world rests on a semi-infinite stack of turtles}}.&lt;br /&gt;
&lt;br /&gt;
As can be read you should &amp;quot;scroll to zoom&amp;quot;. This can be done by placing the cursor inside the panel of the comic. When scrolling up (using the mouse wheel) the picture zooms in until the pixels are visible. When you continue to scroll on each pixel then resolves into another comic picture, with black-on-white comic panels making up the white pixels and white-on-black panels making up the black pixels. Scrolling on until you can see the pixels of the comic picture you are now zooming into the process is repeated again and will be so for all subsequent sets of comic panels. Not all white and all black panels are the same; some sets involve more than two different panels, but all involve repetitive tiling.&lt;br /&gt;
&lt;br /&gt;
===Book Launch===&lt;br /&gt;
This comic was released on September 3rd, 2014, the day after Randall's book ''[http://www.amazon.com/What-If-Scientific-Hypothetical-Questions/dp/0544272994 What If]'' was launched. The book is shown and referred to in a number of frames, for example it is [[:File:pixels-upgoer.png|'''literally''' launched]] as a part of an &amp;lt;strike&amp;gt;rocket&amp;lt;/strike&amp;gt; [[1133:_Up_Goer_Five|''up goer'']] built by Cueball.&lt;br /&gt;
&lt;br /&gt;
The model ''up goer'' is [[:File:pixels-assembly-1.png|made of Rocket Parts from KSP]].  KSP is the {{w|Kerbal Space Program}}, a spaceflight simulator which was also [[1350: Lorenz#Themes|part]] of the latest interactive comic [[1350: Lorenz]]. Perhaps XKCD's 'parts' refers to KSP's large community of mod developers who contribute 'parts' to the game. The frames showing the book launch use URIs that include the text &amp;quot;upgoer&amp;quot; in reference to the [[Up Goer Five]] comic.&lt;br /&gt;
&lt;br /&gt;
===Needs More Struts===&lt;br /&gt;
{{w|Strut|Struts}} are structural members in engineering, and are are one of the components used in Kerbal Space Program to construct rockets. 'Needs More Struts' seems to be a meme amongst players of Kerbal Space Program, along the lines of 'When in doubt, overengineer'. Megan deems Cueball's rocket to be insufficiently structurally sound, and declares that it &amp;quot;[[:File:pixels-assembly-4.png|Needs More Struts]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===The Only Copy===&lt;br /&gt;
Cueball &amp;amp; Megan turn to each other having just launched the What-If book rocket into space (construction and launch are seen in other panels). perhaps Megan realises they may have misunderstood the term 'book launch' and that they may have just lost the only copy of the book.&lt;br /&gt;
&lt;br /&gt;
===Holism, Reductionism, Mu===&lt;br /&gt;
These three words refer to &amp;quot;A MU offering&amp;quot;, an essay by Douglas Hofstatder in his book [[24|Godel, Escher, Bach]]. It includes a similar multiple level drawing: {{w|Mu (negative)|the word MU}} is composed of copies of the words HOLISM and REDUCTIONISM, each of which are in turn made of smaller copies of the other, which are in turn made of [http://newtonexcelbach.wordpress.com/2011/02/16/two-more-letters/ tiny copies] of the word MU.&lt;br /&gt;
&lt;br /&gt;
===Cantor Set===&lt;br /&gt;
[[:File:pixels-cantor.png|One panel]] contains a number of lines and dots, which are in fact a depiction of the first 5 steps of a {{w|Cantor set|Cantor Ternary Set}}, mirrored about the horizontal centreline. The Cantor ternary set is constructed by repeatedly deleting the open middle thirds of a set of line segments. The Cantor Set is one of the canonical examples of a fractal, a shape whose individual parts resemble the whole. The use of the Cantor Set in this comic is self-referential, in that the comic, itself, is composed of parts of the same shape as the whole.&lt;br /&gt;
&lt;br /&gt;
===Time Turners===&lt;br /&gt;
The time turner is a device from the Harry Potter series of novels by JK Rowling. It allows the user to re-live a period of time over again. In the third novel Hermione is given the time-turner to allow her to take extra classes, however it is eventually used to spare Buckbeak the hippogryph from execution. This prompted many questions regarding why time-turners weren’t used on other occasions to save people's lives (among other things). &lt;br /&gt;
&lt;br /&gt;
While J.K Rowling has “[http://pottermore.wikia.com/wiki/Time-Turner solved the problem to her own satisfaction]” she admits that she entered into the subject of time-travel too lightly.&lt;br /&gt;
This panel jokes that if the real life JK Rowling had a fictional time-turner which worked, she would have gone back and removed the time-turner plotline from the book, saving her all the hassle of dealing with the resulting time-travel questions. This act would result in a time-travel paradox.&lt;br /&gt;
&lt;br /&gt;
===Stockholm Syndrome===&lt;br /&gt;
{{w|Stockholm syndrome}} is the name for a psychological phenomenon, in which hostages develop sympathy, empathy and/or positive feelings towards their captors. These feelings are usually seen as irrational, seeing as the hostage is held against their wishes, usually with the threat of physical harm or death.&lt;br /&gt;
&lt;br /&gt;
[[:File:pixels-stockholm.png|This panel]] asks &amp;quot;How do we know anyone really ''wants'' to live in Stockholm?&amp;quot;, questioning whether everyone who lives in the city of Stockholm is in fact held hostage there and only stays because they have developed to like life there (due to Stockholm Syndrome).&lt;br /&gt;
&lt;br /&gt;
===Shut Down the Server===&lt;br /&gt;
Cueball tells an offscreen character that he is going to shut down the server, while carrying a bucket of water.&lt;br /&gt;
&lt;br /&gt;
Usually shutting down a server is done via the operating system or software, or (not recommended) turning it off or pulling the power plug. But in this case it appears that cueball is simply going to douse it with water, likely resulting in serious water damage to the hardware.&lt;br /&gt;
&lt;br /&gt;
=== du ===&lt;br /&gt;
`du` is a Linux command to indicate the &amp;quot;disk usage&amp;quot; of a file or directory.&lt;br /&gt;
&lt;br /&gt;
    ~$ du -s video/&lt;br /&gt;
    4170882256&lt;br /&gt;
&lt;br /&gt;
This is a command that shows how large all the files are in this user's &amp;quot;video&amp;quot; directory - presumably where they store their personal videos. The units of the result is probably kilobytes (depending on settings)&lt;br /&gt;
&lt;br /&gt;
This number is clearly large and difficult to parse, and the units are not clear. More appropriate units would be gibibytes rather than bytes. The du command offers an option to display units in &amp;quot;human readable format&amp;quot;, which will adapt to use kilobytes, megabytes, gigabytes, terabytes, etc. as appropriate. The next command purports to request the same result in more human-readable form.&lt;br /&gt;
&lt;br /&gt;
    ~$ du -hs video/&lt;br /&gt;
    A lot.&lt;br /&gt;
    ~$&lt;br /&gt;
&lt;br /&gt;
It seems that the computer, rather than giving a specific answer, simply says that the size of the video directory is &amp;quot;A lot.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The final line indicates the computer is now ready to accept a new command.&lt;br /&gt;
&lt;br /&gt;
===Fire Hydrant===&lt;br /&gt;
Black Hat is talking to a fireman, with a fire engine on fire in the background, he asks &amp;quot;To be fair, what else would you expect to come out of a 'Fire Hydrant'?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Black Hat appears to have managed to replace the usual water supply to the hydrant with some sort of flammable liquid. Thus when the hydrant is used, the result is, quite literally, fire. In Black Hat's logic, a hydrant which delivers water should be called a water hydrant.&lt;br /&gt;
&lt;br /&gt;
===Evolution===&lt;br /&gt;
The {{w|March of Progress}} image is a famous and instantly recognisable image showing the stages of human evolution by way of a series of primate figures as if marching in a line. The panel parodies the March of Progress image, with 5 ducklings following an adult duck. In this case they don’t actually ‘evolve’ into the adult duck however. The comic has some resemblance to [[537: Ducklings]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is stacking turtles, and is about to put the fourth turtle on his pile. At the bottom right there is a small panel. Inside this is written:]&lt;br /&gt;
:Scroll to zoom&lt;br /&gt;
&lt;br /&gt;
:[When zooming in there will be several panels with text. The transcript of these may not be possible to complete - but add the transcript of these panels here: [[1416: Pixels/Transcript|interactive transcript]]]&lt;br /&gt;
&lt;br /&gt;
==Bugs==&lt;br /&gt;
Doesn't seem to work properly in all browsers (e.g. Firefox and Safari on MacOSX), giving &amp;quot;TypeError: this.data is null&amp;quot; in line 173 of zoom.js: &amp;quot;var item = this.data.get(dims)&amp;quot;&lt;br /&gt;
Doesn't seem to work in IE8, comic is blank, but title text works.&lt;br /&gt;
&lt;br /&gt;
Does not work on xkcd.org neither www.xkcd.org in Firefox and Chrome. Currently you should visit http://xkcd.com for this comic to work properly.&lt;br /&gt;
&lt;br /&gt;
Also, it doesn't work on HTTPS.&lt;br /&gt;
&lt;br /&gt;
==Gallery==&lt;br /&gt;
[[File:1416_Pixels_layout.png|thumb|Graph of links between the 79 individual images]]&lt;br /&gt;
[[1416: Pixels/Images|This gallery]] contains some of the 79 images&amp;lt;ref&amp;gt;http://azttm.wordpress.com/2014/09/03/xkcd-com-1416-pixels/&amp;lt;/ref&amp;gt; used in this comic. The images are related in a [[:File:1416_Pixels_layout.png|directed graph]].&lt;br /&gt;
&lt;br /&gt;
==Images Database==&lt;br /&gt;
This google sheet describes all possible images, their associated codes, and what possible images can be used as sub-images for each zoom level: https://docs.google.com/spreadsheets/d/1nldKAkeVcK606CY12KI9bah9rDmK9E7CZOyinsEj2Lo/edit?usp=sharing&lt;br /&gt;
&lt;br /&gt;
==Image scraping script==&lt;br /&gt;
This gist recursively downloads all possible images:&lt;br /&gt;
https://gist.github.com/Aaron1011/d3b56325881cd639506a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Interactive comics]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:185:_Wikifriends&amp;diff=74921</id>
		<title>Talk:185: Wikifriends</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:185:_Wikifriends&amp;diff=74921"/>
				<updated>2014-09-03T14:52:35Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I thought this was a reference to the WikiFriends group who defend WikiLeaks. I figured it was about intimidation. [[Special:Contributions/184.66.160.91|184.66.160.91]] 02:52, 27 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
That's impossible. The comic came out before Wikileaks even existed.[[Special:Contributions/120.148.234.14|120.148.234.14]] 22:01, 19 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have a completely different understanding of this comic than what's in the explanation here. Wiki is a site where anyone can change content and it's instantly visible - I think Randall meant that wikifriends are wiki because anyone can change their opinion on movies because they instantly adapt what others say. [[Special:Contributions/141.101.89.217|141.101.89.217]] 14:52, 3 September 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1368:_One_Of_The&amp;diff=67322</id>
		<title>Talk:1368: One Of The</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1368:_One_Of_The&amp;diff=67322"/>
				<updated>2014-05-15T10:45:51Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: Mothering Sunday&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There's a set of golden arches at Jefferson and Russell, Arguably more identifiable. {{unsigned ip|173.245.54.36}}&lt;br /&gt;
&lt;br /&gt;
:If you are talking about the McDonald's arches, then well played, sir, well played. Definitely more identifiable. --[[User:Dangerkeith3000|Dangerkeith3000]] ([[User talk:Dangerkeith3000|talk]]) 14:57, 14 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;''Reporters on television and in other media try to only make statements they can verify in fact''&amp;quot;&lt;br /&gt;
Seriously???  Maybe once, but not now.  The point of this cartoon is largely that reporters are hedging their bets on what's a fact.&lt;br /&gt;
When you have prominent reporters like Chuck Todd (one of the most prominent reporters on TV) saying [http://www.fair.org/blog/2013/09/18/inform-the-public-not-my-job-says-chuck-todd/|it's &amp;quot;not his job&amp;quot; to report factual information] but merely to repeat what politicians have said, or everyone on Fox &amp;quot;News&amp;quot; basically ignoring facts in favor of ideology, claiming reporters try to speak only facts is not supported by demonstrable facts.&lt;br /&gt;
[[Special:Contributions/199.27.128.84|199.27.128.84]] 16:42, 14 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Or maybe it's because of the liability reporters face for reporting even errors made by the police. [http://www.usatoday.com/story/news/nation/2014/05/12/mistaken-identity-tv-show/8989189/ | Keith Todd or Todd Keith]. [[User:Pallas|Pallas]] ([[User talk:Pallas|talk]]) 19:16, 14 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I know it's not really part of the joke, but should the explanation say who the reporter is talking about? Who designed the Gateway arch? I'm curious now.[[Special:Contributions/108.162.219.7|108.162.219.7]] 02:18, 15 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The Gateway Arch was designed by Finnish-American architect Eero Saarinen and German-American structural engineer Hannskarl Bandel in 1947. As stated on the {{w|Gateway Arch|wikipedia page already linked from explanation}}. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 09:15, 15 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Note that the UK celebrates {{w|Mothering Sunday}} on the fourth Sunday in Lent as if it was Mother's Day. --[[Special:Contributions/141.101.89.217|141.101.89.217]] 10:45, 15 May 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1367:_Installing&amp;diff=67150</id>
		<title>1367: Installing</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1367:_Installing&amp;diff=67150"/>
				<updated>2014-05-12T10:33:29Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: /* Explanation */ Comparison with Firefox OS&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1367&lt;br /&gt;
| date      = May 12, 2014&lt;br /&gt;
| title     = Installing&lt;br /&gt;
| image     = installing.png&lt;br /&gt;
| titletext = But still, my scheme for creating and saving user config files and data locally to preserve them across reinstalls might be useful for--wait, that's cookies.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic refers to the kind of &amp;quot;inventions&amp;quot; which seem new from the point of view of a {{w|smartphone}} (handheld computer) user, but have already been around for a long time on desktop or laptop/notebook computers.&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] has a clever idea to skip the downloading and installing of applications on mobile phones: he would host the applications online instead, and provide links to the servers.&lt;br /&gt;
The apps wouldn't stay on the phone all the time; instead the phone would download each app again every time the user wanted to run it.&lt;br /&gt;
&lt;br /&gt;
However, web pages and {{w|web application}}s already work like this.&lt;br /&gt;
Clicking a link will make the browser download a web page and execute the contained HTML and any JavaScript it contains or plugin data (such as Flash applets) that it links to.&lt;br /&gt;
The page usually isn't saved long-term on the user's computer; instead the browser downloads it again when needed.&lt;br /&gt;
&lt;br /&gt;
In the title text, Cueball's idea for local application storage already exists in the HTTP protocol as {{w|HTTP cookie|cookies}}.  &lt;br /&gt;
More recently, the HTML 5 protocol added the more flexible {{w|Web storage|web storage}}, which does much the same thing.&lt;br /&gt;
&lt;br /&gt;
Native phone applications and web applications are not completely interchangeable.&lt;br /&gt;
The web browser that is needed to run web applications on a mobile phone doesn't allow access to several of the phone's resources, like notifications and sensors. The [https://developer.mozilla.org/en-US/Firefox_OS Firefox OS] project is trying to standardize these resources so that the entire user interface can be a web app, while projects like [http://cordova.apache.org/ Apache Cordova] try to make these resources available to web applications, but they do this by creating a native application wrapper for the web application.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and Megan are standing next to each other.]&lt;br /&gt;
:Cueball: Installing things has gotten so fast and painless.&lt;br /&gt;
:Cueball: Why not skip it entirely, and make a phone that has every app &amp;quot;installed&amp;quot; already and just downloads and runs them on the fly?&lt;br /&gt;
&lt;br /&gt;
:[Caption:]&lt;br /&gt;
:I felt pretty clever until I realized I'd invented webpages.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1330:_Kola_Borehole&amp;diff=67069</id>
		<title>Talk:1330: Kola Borehole</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1330:_Kola_Borehole&amp;diff=67069"/>
				<updated>2014-05-10T12:54:52Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reminds me of the title text in #[[1218]]: Doors of Durin. [[User:Whimsye|Whimsye]] ([[User talk:Whimsye|talk]]) 06:21, 14 February 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Surely this is a Dwarf Fortress reference. The Soviets breached the Happy Fun Stuff! [[Special:Contributions/108.162.250.5|108.162.250.5]] 06:42, 14 February 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Well, DF ''has'' that connotation, but both the [[wikipedia:Kola_Superdeep_Borehole|real thing]] and the [[wikipedia:Well_to_Hell_hoax|hoax]] are older than Toady's game, so perhaps not so much a reference to DF (although Black Hat does propose a typically DF-player solution... I hope he's prepared for [http://dwarffortresswiki.org/index.php/FPS FPS Hell] from the flowing liquids).  Randall ''[[1223|knows]]'' about DF, of course.&lt;br /&gt;
:(BTW, from that (first, factual event) page: &amp;quot;In 1983, the drill passed 12,000 m (39,000 ft), and drilling was stopped for about a year to celebrate the event.&amp;quot;  ...Russians!) [[Special:Contributions/141.101.98.176|141.101.98.176]] 08:18, 14 February 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Lakes and Oceans #[[1040]] also mentions the Kola Borehole.[[Special:Contributions/199.27.128.70|199.27.128.70]] 09:03, 14 February 2014 (UTC)Nix&lt;br /&gt;
&lt;br /&gt;
If Hell would be a physical place, I don't think {{w|Lucifer}} would still be ruling there. In next war between Heaven and Hell, the winners will be anime and/or computer games nerds. Both Heaven and Hell will lose. :-) -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 11:06, 14 February 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
One may recall from the ''Divine Comedy'' that Dante's imagery of Hell is a negative-mountain-shaped abyss that starts widest at the surface of our allegorical planet and ends at a point far below the surface where Satan resides. The deeper you go, the narrower the abyss gets, like a cone, and the more heinous the sinners. On the other side of the planet there is a mountain made from all that earth God removed to dig the Inferno. The Saints (all those who are saved by faith from the other fate) progress up the mountain through Purgatory to reach Paradise. ''&amp;amp;mdash; [[User:Tbc|tbc]] ([[User talk:Tbc|talk]]) 14:01, 14 February 2014 (UTC)''&lt;br /&gt;
&lt;br /&gt;
I remember reading about this in Dial the Truth ministries: http://www.av1611.org/hell.html&lt;br /&gt;
Either way, in the war between Earth and Hell, I shall be in Heaven. [[User:Greyson|Greyson]] ([[User talk:Greyson|talk]]) 14:51, 14 February 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
In Dante's Inferno, Hell is depicted as being a cold place since it is far from the warmth of the Creator.  The modern hot version of hell is a byproduct of the fire and brimstone of the reformation period. [[Special:Contributions/108.162.210.254|108.162.210.254]] 16:47, 14 February 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
About the kola superdeep borehole being welded-shut - that seems to be actualy true. The wikipedia page on the borehole has a picture of it being welded shut, and the reference about the bore hole project being abandonded, an article in russian[http://www.rg.ru/2008/10/15/skvazhina.html], says that it was welded shut in 1995. Could someone update that? --[[Special:Contributions/141.101.99.8|141.101.99.8]] 21:07, 14 February 2014 (UTC)&lt;br /&gt;
:Not only that, it was apparently capped with concrete as well [http://www.wired.com/2014/01/an-artist-records-the-mysterious-rumblings-of-middle-earth/] [[Special:Contributions/141.101.89.217|141.101.89.217]] 12:54, 10 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
When he says that she probably won't be on his side, I took it to mean that he'll be on his own side during the war, fighting against both Hell and Earth.  Since she's nice, she probably wouldn't join him. [[Special:Contributions/108.162.237.64|108.162.237.64]] 19:37, 15 February 2014 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1360:_Old_Files&amp;diff=66139</id>
		<title>Talk:1360: Old Files</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1360:_Old_Files&amp;diff=66139"/>
				<updated>2014-04-25T19:58:42Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I notice backup and recovery files.  I once had a folder on my father's computer that housed everything I did.  When the drive crashed, I managed to recover it and store it to a CD-ROM (this was before thumb drives).  I copied everything onto my first computer within my main folder (I don't use My Documents), and I continue to move my main folder into a new main folder each time I migrate between computers.  I have so many nested memories.  I, too, have incomplete fan-fiction and instant message logs.  Oh, and a dream.txt.  [[Special:Contributions/108.162.237.218|108.162.237.218]] 04:47, 25 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I don't have as much of a problem with the &amp;quot;old files room&amp;quot;, because I keep nearly all of my files on my laptop, but my hard drive is almost full. Another hard drive replace the CD drive, but this computer won't last much longer (bye cd drive workaround). I'll have to build an &amp;quot;old files room&amp;quot; sooner or later. [[User:Z|Z]] ([[User talk:Z|talk]]) 05:07, 25 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Back in the... early '90s, I think it was... I recall there being someone like a buddhist monk (or someone ''claiming'' to be someone like a buddhist monk, and the religion could have been something else) who set up an internet site (not necessarily a website) as a temple for &amp;quot;all lost data&amp;quot;.  The files you had accidentally deleted, the floppies that got damaged or otherwise corrupted, forgotten formats on old drives that you'd lost the wherewithall to access them.  Between this and the &amp;quot;hoarder&amp;quot; behaviour exhibitted in the above XKCD folder we encompass ''all'' long-term computer users.  At the same time.  I know I regret the dead USB sticks (with irreplacable content) and yet I stare in hopelessness at the folders &amp;quot;GStick&amp;quot; and &amp;quot;FStick&amp;quot; within My Documents, that really need looking at again.  (No, they don't contain the lost material.  Datestamped at 2009.)  But they're two of fifty-three separate subfolders (and a helluva lot of loose files) in that level.  &amp;quot;WebRedo&amp;quot;?  I remember that.  That site hasn't even been ''active'' for about a decade. [[Special:Contributions/141.101.89.224|141.101.89.224]] 06:50, 25 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Explanation&lt;br /&gt;
I think the point of the comic doesn't come across in the explanation. It's not just that he's sifting through files, but that he's finding files nested deeply in his folder structure that just came to pass because he always copied contents of an old computer to some folder on the next computer and then ignored its contents.&lt;br /&gt;
&lt;br /&gt;
I.e. in his &amp;quot;Documents&amp;quot; folder, there is the &amp;quot;Old Desktop&amp;quot; folder from a previous computer, which contains the &amp;quot;Recovered from drive crash&amp;quot; folder from another previous system, which has another &amp;quot;Mu Documents&amp;quot; folder within, ... etc. The nesting aspect should somehow be integrated into the explanation.&lt;br /&gt;
--[[Special:Contributions/108.162.229.57|108.162.229.57]] 09:59, 25 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The shape of the panel is vaguely reminiscent of a hard drive, this may be intentional, being emphasized by the increasing size of the individual layers.  In which case there might be some metaphor construed by the placement of the two characters based on their location in the structure of the hard-drive perhaps involving the catalog index. {{unsigned ip|108.162.216.35}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It should be pointed out that the AYB folder is directly referencing https://xkcd.com/286/ {{unsigned ip|108.162.238.211}}&lt;br /&gt;
&lt;br /&gt;
I have done this before on my hard drive(s) and I always find my old qbasic programs. Anyone knows of an emulator for qbasic so I could see my old programs running again? [[User:Bigfatbernie|Bigfatbernie]] ([[User talk:Bigfatbernie|talk]]) 13:56, 25 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:DOSBox will run QBasic programs if you grab the QBasic 1.1 interpreter from either an old copy of Windows 98 that still has it in its dos utilities folder, or just download it from here: http://www.qbasic.net/en/qbasic-downloads/compiler/qbasic-interpreter.htm [[Special:Contributions/108.162.219.42|108.162.219.42]] 17:01, 25 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Anybody know what Citadel is? [[Special:Contributions/108.162.219.42|108.162.219.42]] 16:58, 25 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Can we get some instructions on how to edit the page?&lt;br /&gt;
&lt;br /&gt;
It makes no sense to me whatsoever, and it's unlike every other page on the wiki. I can find the list we use in the transcript, but I can't figure out how to add the explainations [[Special:Contributions/199.27.130.204|199.27.130.204]] 18:19, 25 April 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I did remove that templates from this page, the explain is still very bad — but now you should be able to post your adds. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:23, 25 April 2014 (UTC)&lt;br /&gt;
: I am the person who added the templates. I figured that on a xkcd wiki of all wikis one should feel free to use some more advanced Mediawiki features, to keep from redundancy (here, repetition of data between the explanation and the transcript)... Oh well. Apparently the definition of &amp;quot;to make sense&amp;quot; is &amp;quot;to make sense to others&amp;quot;. Also, semicolons are used for definition lists, not for headers.&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1360:_Old_Files&amp;diff=66103</id>
		<title>1360: Old Files</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1360:_Old_Files&amp;diff=66103"/>
				<updated>2014-04-25T12:40:19Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1360&lt;br /&gt;
| date      = April 25, 2014&lt;br /&gt;
| title     = Old Files&lt;br /&gt;
| image     = old_files.png&lt;br /&gt;
| titletext = Wow, ANIMORPHS-NOVEL.RTF? Just gonna, uh, go through and delete that from all my archives real quick.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Missing explanations for most of the various files.}}&lt;br /&gt;
Cueball is digging through a pile of old files, which the comic represents as literally digging into the depths of his filesystem.  The files are in concentric layers because each directory contains files moved over from an older system, so his &amp;quot;Documents&amp;quot; folder contains an &amp;quot;Old Desktop&amp;quot; folder from an older computer, the &amp;quot;Old Desktop&amp;quot; contains files recovered from the drive crash of the system before that, which had its own &amp;quot;My Documents&amp;quot; folder, which contained files saved from a Zip Disk in high school.  The result is that files from all the way back in high school have survived to his present-day machine.  He discovers several files he is embarrassed about, including a poetry file that surprises him, since he does not remember writing poetry, and an &amp;quot;Animorphs Novel&amp;quot; mentioned in the title text, most likely a fan fiction of the Animorphs series, although possibly a copy of one of the original books.&lt;br /&gt;
&lt;br /&gt;
This comic came out the day after [http://news.sky.com/story/1248397/andy-warhol-originals-found-on-floppy-disk Sky News published the story] of original [[wikipedia:Andy Warhol|Andy Warhol]] artwork, created in 1985 on an [[wikipedia:Amiga 1000|Amiga 1000]], was recovered from recently found floppy disks.&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- http://www.explainxkcd.com/wiki/index.php?title=Template:1360/list&amp;amp;action=edit --&amp;gt;&lt;br /&gt;
{{1360/list|type=explanation}}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- http://www.explainxkcd.com/wiki/index.php?title=Template:1360/list&amp;amp;action=edit --&amp;gt;&lt;br /&gt;
{{1360/list|type=transcription}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:Megan (on top of stack of files): You OK down there?&lt;br /&gt;
:Cueball (deep inside stack): Oh my god. I wrote '''POETRY'''.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1360:_Old_Files&amp;diff=66089</id>
		<title>1360: Old Files</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1360:_Old_Files&amp;diff=66089"/>
				<updated>2014-04-25T12:03:10Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: /* Transcript */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1360&lt;br /&gt;
| date      = April 25, 2014&lt;br /&gt;
| title     = Old Files&lt;br /&gt;
| image     = old_files.png&lt;br /&gt;
| titletext = Wow, ANIMORPHS-NOVEL.RTF? Just gonna, uh, go through and delete that from all my archives real quick.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Missing explanations for most of the various files.}}&lt;br /&gt;
Cueball is sifting through a pile of old files, either a theoretical one that exists on a hard drive, making fun of how hard it is to search through old files, or a real room of old hard drives. He discovers several files he is embarrassed about, including a poetry file that surprises him, since he does not remember writing poetry, and an &amp;quot;Animorphs Novel&amp;quot; mentioned in the title text, most likely a fan fiction of the Animorphs series, although possibly a copy of one of the original books.&lt;br /&gt;
&lt;br /&gt;
This comic came out the day after [http://news.sky.com/story/1248397/andy-warhol-originals-found-on-floppy-disk Sky News published the story] of original [[wikipedia:Andy Warhol|Andy Warhol]] artwork, created in 1985 on an [[wikipedia:Amiga 1000|Amiga 1000]], was recovered from recently found floppy disks.&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
* Documents 47GB [[wikipedia:My_Documents|Documents]] is the special folder on Windows Vista and newer Microsoft operating systems that holds user files. Notice how the folders get smaller when they are from older systems (with less storage).&lt;br /&gt;
* Misc.txt&lt;br /&gt;
* Video projects&lt;br /&gt;
* Old desktop 12GB&lt;br /&gt;
* Facebook pics&lt;br /&gt;
* Pics from other camera&lt;br /&gt;
* Temp&lt;br /&gt;
* Misc PDFs&lt;br /&gt;
* MP3&lt;br /&gt;
* Recovered from drive crash 4GB&lt;br /&gt;
* Temp&lt;br /&gt;
* Work misc&lt;br /&gt;
* Audio books&lt;br /&gt;
* My documents 570MB [[wikipedia:My_Documents|My Documents]] is the special folder on Windows XP and older Microsoft operating systems that holds user files.&lt;br /&gt;
* Downloads&lt;br /&gt;
* [[wikipedia:Kazaa|Kazaa]] is an internet file sharing service.&lt;br /&gt;
* [[wikipedia:All_your_base_are_belong_to_us|AYB]] is an acronym for &amp;quot;All your base are belong to us&amp;quot;, a badly translated phrase from video game Zero Wing. This could be a copy of this game or of the popular video that was created to make fun of the bad translation in this game.&lt;br /&gt;
* [[wikipedia:Escape_Velocity_Override|EV Override]] is a video game originally written for the Apple Macintosh.&lt;br /&gt;
* [[wikipedia:Angband|Angband]] is a rogue-like computer game.&lt;br /&gt;
* [[wikipedia:Graphics_Interchange_Format|GIFs]] An image format that is still used for storing lossless images, but before the rise of JPG compression widely accepted for storing all images. &lt;br /&gt;
* Fight club.wmv A Windows Media encode of [[wikipedia:Fight_Club|Fight club (1999)]].&lt;br /&gt;
* [[wikipedia:Elasto_Mania|Elasto Maina]] is a 2D motorbike computer game&lt;br /&gt;
* AIM Direct Connect files: [[wikipedia:AOL_Instant_Messenger|AIM]] is an instant messenger that allows sending binary data (images etc.) using a direct connection.&lt;br /&gt;
* 4Chan&lt;br /&gt;
* [[wikipedia:ICQ|ICQ]] is an early (1996) instant messenger client.&lt;br /&gt;
* High school zip disk 94MB: [[wikipedia:Zip drive|zip disks]] were a popular storage medium in the late 90's before being replaced by rewritable CD's and later USB thumbdrives.&lt;br /&gt;
* Lovenote.txt&lt;br /&gt;
* [[wikipedia:Gorillas (video game)|Gorilla.bas]] is one of the games that came with QBasic.&lt;br /&gt;
* [[wikipedia:AOL|AOL]]&lt;br /&gt;
* AOL Citadel&lt;br /&gt;
* NYET is a Tetris clone written for MS DOS in 1988.&lt;br /&gt;
* Jokes.txt&lt;br /&gt;
* Korn midi - {{w|MIDI}} is format for music used in times before MP3. {{w|Korn}} might be the rock band.&lt;br /&gt;
* Photos3 Prom&lt;br /&gt;
* Dream.txt&lt;br /&gt;
* James.txt&lt;br /&gt;
* [[wikipedia:QBasic|QBasic]] is an IDE and intepreter for a dialect of the BASIC programming language, originally bundled with MS-DOS 5.0 and newer&lt;br /&gt;
* AAAFiles 9.4MB&lt;br /&gt;
* TXT 850K&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
# '''Documents''' (47 GB)&lt;br /&gt;
## misc.txt&lt;br /&gt;
## '''Old desktop''' (12 GB)&lt;br /&gt;
### Facebook pics&lt;br /&gt;
### Misc PDFs&lt;br /&gt;
### MP3&lt;br /&gt;
### Pics from other camera&lt;br /&gt;
### '''Recovered from drive crash''' (4 GB)&lt;br /&gt;
#### Audiobooks&lt;br /&gt;
#### '''My documents''' (570 MB)&lt;br /&gt;
##### 4chan&lt;br /&gt;
##### AIM Direct Connect files&lt;br /&gt;
##### Angband&lt;br /&gt;
##### AYB&lt;br /&gt;
##### Downloads&lt;br /&gt;
##### Elasto Mania&lt;br /&gt;
##### EV Override&lt;br /&gt;
##### FIGHT CLUB.wmv&lt;br /&gt;
##### GIFs&lt;br /&gt;
##### '''High school Zip disk''' (94 MB)&lt;br /&gt;
###### '''AAAFILES''' (9.4 MB)&lt;br /&gt;
####### '''TXT''' (850 K)&lt;br /&gt;
###### AOL&lt;br /&gt;
####### Citadel&lt;br /&gt;
###### dream.txt&lt;br /&gt;
###### gorilla.bas&lt;br /&gt;
###### James.txt&lt;br /&gt;
###### jokes.txt&lt;br /&gt;
###### Korn MIDI&lt;br /&gt;
###### lovenote.txt&lt;br /&gt;
###### NYET&lt;br /&gt;
###### Photos3&lt;br /&gt;
####### Prom&lt;br /&gt;
###### QBasic&lt;br /&gt;
##### ICQ logs&lt;br /&gt;
##### Kazaa shared&lt;br /&gt;
##### ''(four unnamed directories)''&lt;br /&gt;
#### Temp&lt;br /&gt;
#### Work misc&lt;br /&gt;
### Temp&lt;br /&gt;
### ''(one unnamed directory)''&lt;br /&gt;
## Video projects&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:Megan (on top of stack of files): You OK down there?&lt;br /&gt;
:Cueball (deep inside stack): Oh my god. I wrote '''POETRY'''.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1360:_Old_Files&amp;diff=66086</id>
		<title>1360: Old Files</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1360:_Old_Files&amp;diff=66086"/>
				<updated>2014-04-25T11:51:57Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.89.217: /* Transcript */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1360&lt;br /&gt;
| date      = April 25, 2014&lt;br /&gt;
| title     = Old Files&lt;br /&gt;
| image     = old_files.png&lt;br /&gt;
| titletext = Wow, ANIMORPHS-NOVEL.RTF? Just gonna, uh, go through and delete that from all my archives real quick.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Missing explanations for most of the various files.}}&lt;br /&gt;
Cueball is sifting through a pile of old files, either a theoretical one that exists on a hard drive, making fun of how hard it is to search through old files, or a real room of old hard drives. He discovers several files he is embarrassed about, including a poetry file that surprises him, since he does not remember writing poetry, and an &amp;quot;Animorphs Novel&amp;quot; mentioned in the title text, most likely a fan fiction of the Animorphs series, although possibly a copy of one of the original books.&lt;br /&gt;
&lt;br /&gt;
This comic came out the day after [http://news.sky.com/story/1248397/andy-warhol-originals-found-on-floppy-disk Sky News published the story] of original [[wikipedia:Andy Warhol|Andy Warhol]] artwork, created in 1985 on an [[wikipedia:Amiga 1000|Amiga 1000]], was recovered from recently found floppy disks.&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
* Documents 47GB [[wikipedia:My_Documents|Documents]] is the special folder on Windows Vista and newer Microsoft operating systems that holds user files. Notice how the folders get smaller when they are from older systems (with less storage).&lt;br /&gt;
* Misc.txt&lt;br /&gt;
* Video projects&lt;br /&gt;
* Old desktop 12GB&lt;br /&gt;
* Facebook pics&lt;br /&gt;
* Pics from other camera&lt;br /&gt;
* Temp&lt;br /&gt;
* Misc PDFs&lt;br /&gt;
* MP3&lt;br /&gt;
* Recovered from drive crash 4GB&lt;br /&gt;
* Temp&lt;br /&gt;
* Work misc&lt;br /&gt;
* Audio books&lt;br /&gt;
* My documents 570MB [[wikipedia:My_Documents|My Documents]] is the special folder on Windows XP and older Microsoft operating systems that holds user files.&lt;br /&gt;
* Downloads&lt;br /&gt;
* [[wikipedia:Kazaa|Kazaa]] is an internet file sharing service.&lt;br /&gt;
* [[wikipedia:All_your_base_are_belong_to_us|AYB]] is an acronym for &amp;quot;All your base are belong to us&amp;quot;, a badly translated phrase from video game Zero Wing. This could be a copy of this game or of the popular video that was created to make fun of the bad translation in this game.&lt;br /&gt;
* [[wikipedia:Escape_Velocity_Override|EV Override]] is a video game originally written for the Apple Macintosh.&lt;br /&gt;
* [[wikipedia:Angband|Angband]] is a rogue-like computer game.&lt;br /&gt;
* [[wikipedia:Graphics_Interchange_Format|GIFs]] An image format that is still used for storing lossless images, but before the rise of JPG encryption widely accepted for storing all images. &lt;br /&gt;
* Fight club.wmv A Windows Media encode of [[wikipedia:Fight_Club|Fight club (1999)]].&lt;br /&gt;
* [[wikipedia:Elasto_Mania|Elasto Maina]] is a 2D motorbike computer game&lt;br /&gt;
* AIM Direct Connect files: [[wikipedia:AOL_Instant_Messenger|AIM]] is an instant messenger that allows sending binary data (images etc.) using a direct connection.&lt;br /&gt;
* 4Chan&lt;br /&gt;
* [[wikipedia:ICQ|ICQ]] is an early (1996) instant messenger client.&lt;br /&gt;
* High school zip disk 94MB: [[wikipedia:Zip drive|zip disks]] were a popular storage medium in the late 90's before being replaced by rewritable CD's and later USB thumbdrives.&lt;br /&gt;
* Lovenote.txt&lt;br /&gt;
* [[wikipedia:Gorillas (video game)|Gorilla.bas]] is one of the games that came with QBasic.&lt;br /&gt;
* [[wikipedia:AOL|AOL]]&lt;br /&gt;
* AOL Citadel&lt;br /&gt;
* NYET is a Tetris clone written for MS DOS in 1988.&lt;br /&gt;
* Jokes.txt&lt;br /&gt;
* Korn midi - {{w|MIDI}} is format for music used in times before MP3. {{w|Korn}} might be the rock band.&lt;br /&gt;
* Photos3 Prom&lt;br /&gt;
* Dream.txt&lt;br /&gt;
* James.txt&lt;br /&gt;
* [[wikipedia:QBasic|QBasic]] is an IDE and intepreter for a dialect of the BASIC programming language, originally bundled with MS-DOS 5.0 and newer&lt;br /&gt;
* AAAFiles 9.4MB&lt;br /&gt;
* TXT 850K&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
# '''Documents''' (47 GB)&lt;br /&gt;
## misc.txt&lt;br /&gt;
## '''Old desktop''' (12 GB)&lt;br /&gt;
### Facebook pics&lt;br /&gt;
### Misc PDFs&lt;br /&gt;
### MP3&lt;br /&gt;
### Pics from other camera&lt;br /&gt;
### '''Recovered from drive crash''' (4 GB)&lt;br /&gt;
#### Audiobooks&lt;br /&gt;
#### '''My documents''' (570 MB)&lt;br /&gt;
##### 4chan&lt;br /&gt;
##### AIM Direct Connect files&lt;br /&gt;
##### Angband&lt;br /&gt;
##### AYB&lt;br /&gt;
##### Downloads&lt;br /&gt;
##### Elastomania&lt;br /&gt;
##### EV Override&lt;br /&gt;
##### FIGHT CLUB.wmv&lt;br /&gt;
##### GIFs&lt;br /&gt;
##### '''High school Zip disk''' (94 MB)&lt;br /&gt;
###### '''AAAFILES''' (9.4 MB)&lt;br /&gt;
####### '''TXT''' (850 K)&lt;br /&gt;
###### AOL&lt;br /&gt;
####### Citadel&lt;br /&gt;
###### dream.txt&lt;br /&gt;
###### gorilla.bas&lt;br /&gt;
###### James.txt&lt;br /&gt;
###### jokes.txt&lt;br /&gt;
###### Korn MIDI&lt;br /&gt;
###### lovenote.txt&lt;br /&gt;
###### NYET&lt;br /&gt;
###### Photos3&lt;br /&gt;
####### prom&lt;br /&gt;
###### QBasic&lt;br /&gt;
##### ICQ logs&lt;br /&gt;
##### Kazaa shared&lt;br /&gt;
##### ''(four unnamed directories)''&lt;br /&gt;
#### Temp&lt;br /&gt;
#### Work misc&lt;br /&gt;
### Temp&lt;br /&gt;
### ''(one unnamed directory)''&lt;br /&gt;
## Video projects&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:Megan (on top of stack of files): You OK down there?&lt;br /&gt;
:Cueball (deep inside stack): Oh my god. I wrote '''POETRY'''.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>141.101.89.217</name></author>	</entry>

	</feed>