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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Sandbox&amp;diff=123298</id>
		<title>explain xkcd:Sandbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Sandbox&amp;diff=123298"/>
				<updated>2016-07-13T19:42:24Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOINDEX__&lt;br /&gt;
Make changes, try things out, or just have fun with the wiki here!  Just leave everything above the line alone, please.&lt;br /&gt;
[http://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Sandbox&amp;amp;action=edit&amp;amp;oldid=91667 clear sandbox]&lt;br /&gt;
------&lt;br /&gt;
SO I CAN WRITE THINGS HERE AND NOT BE BOTHERED BY THE CONSEQUENCES ? OK THEN...&lt;br /&gt;
11/9 WAS AN INSIDE JOB&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1685:_Patch&amp;diff=120824</id>
		<title>1685: Patch</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1685:_Patch&amp;diff=120824"/>
				<updated>2016-05-25T16:10:30Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: /* Explanation */ i for i *in* a&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1685&lt;br /&gt;
| date      = May 25, 2016&lt;br /&gt;
| title     = Patch&lt;br /&gt;
| image     = patch.png&lt;br /&gt;
| titletext = My optimizer uses content-aware inpainting to fill in all the wasted whitespace in the code, repeating the process until it compiles.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{w|Adobe Photoshop}} is a commonly used software for image manipulation. One of its features is &amp;quot;content-aware inpainting&amp;quot;, which allows the user to delete parts of the image and seamlessly replace the deleted sections with &amp;quot;patches&amp;quot; of texture from other parts of the image. &lt;br /&gt;
&lt;br /&gt;
The {{w|GNU}} {{w|Patch (Unix)|patch}} is a software program that replaces only parts of the code with an updated version, without requiring the user to download the entire source code. Here, it appears the author was told to &amp;quot;patch&amp;quot; the code, but used Photoshop to do this instead of GNU patch, with devastating results. Although the title text suggest that if you did this enough times the code would eventually compile, this would never happen. In fact, Photoshop could only edit an image of the text and not the text itself.&lt;br /&gt;
&lt;br /&gt;
The code appears to be written in {{w|Python_(programming_language)|Python}}, a programming language often referred to in xkcd.  A few of the function names that can be recognized are &amp;quot;isPrime&amp;quot; and &amp;quot;quicksort&amp;quot;, both elementary programming algorithms.&lt;br /&gt;
&lt;br /&gt;
The title text also explains that patch used the content-aware inpainting to fill in all the wasted whitespace in the code. In Python, whitespaces are used as a part of programming syntax (for example, new line of code are used instead of semicolon (;), and indents are used instead of curly brackets.&lt;br /&gt;
&lt;br /&gt;
The original code was likely as follows:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;import&amp;lt;/font&amp;gt; re&lt;br /&gt;
 &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;def&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt; isPrime&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;(n):&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if &amp;lt;/font&amp;gt;n&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt;=&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;1&amp;lt;/font&amp;gt;:&lt;br /&gt;
 		&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;return&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;False&amp;lt;/font&amp;gt;&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;for&amp;lt;/font&amp;gt; i &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;in &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;range&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;2&amp;lt;/font&amp;gt;, &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;int&amp;lt;/font&amp;gt;(n&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;**&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;0.5&amp;lt;/font&amp;gt;)&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;+&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;1&amp;lt;/font&amp;gt;):&lt;br /&gt;
 		&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if&amp;lt;/font&amp;gt; n&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;%&amp;lt;/font&amp;gt;i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;==&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;0&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;:&lt;br /&gt;
 			&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;return&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt; False&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;return &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;True&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;def &amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;isPrimeRegex&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;(n):&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if&amp;lt;/font&amp;gt; re.match(&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;'&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;^&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;1&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;?&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;$&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;^&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;(11&amp;lt;/font&amp;gt;+?&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;)&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;\1+&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;$&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;'&amp;lt;/font&amp;gt;, &amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;'1'&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;*&amp;lt;/font&amp;gt;n): &lt;br /&gt;
 		&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;return &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;False&amp;lt;/font&amp;gt;&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;return&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt; True&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;def&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt; quicksort&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;(a):&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;len&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;(a) &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt; &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;2&amp;lt;/font&amp;gt;&amp;lt;/font&amp;gt;:&lt;br /&gt;
 		&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;return &amp;lt;/font&amp;gt;a&lt;br /&gt;
 	pivot&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=&amp;lt;/font&amp;gt;a[&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;0&amp;lt;/font&amp;gt;]&lt;br /&gt;
 	l&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=&amp;lt;/font&amp;gt;[i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt; for&amp;lt;/font&amp;gt; i &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;in&amp;lt;/font&amp;gt; a &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if&amp;lt;/font&amp;gt; i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt;&amp;lt;/font&amp;gt;pivot]&lt;br /&gt;
 	r&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=&amp;lt;/font&amp;gt;[i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt; for&amp;lt;/font&amp;gt; i &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;in&amp;lt;/font&amp;gt; a &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if&amp;lt;/font&amp;gt; i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;gt;&amp;lt;/font&amp;gt;pivot]&lt;br /&gt;
 	mid&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=&amp;lt;/font&amp;gt;[pivot]&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;*&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;len&amp;lt;/font&amp;gt;(a)&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;-&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;len&amp;lt;/font&amp;gt;(l)&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;+&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;len&amp;lt;/font&amp;gt;(r)))&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;return &amp;lt;/font&amp;gt;quicksort(l)&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;+&amp;lt;/font&amp;gt;mid&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;+&amp;lt;/font&amp;gt;quicksort(r)&lt;br /&gt;
&lt;br /&gt;
isPrime and quicksort are standard python implementations of simple algorithms (although you would not generally write a sorting algorithm in python as there are built-in algorithms available).  isPrimeRegex uses the re module to detect if a number is prime by seeing if a string containing that many 1s can be matched to 2 or more copies of some string containing at least 2 1s.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[The panel displays part of a code, in four different colors (red, light blue, green and purple) as well as normal black text, which due to image editing is difficult to read. The first and last line are partly obscured by the frame of the panel. Here below is an attempt to transcribe the code, using the sign &amp;quot;¤&amp;quot; for anything not easily transcribed. Feel free to add other signs instead of these that looks more like the one in the image (and also improve the attempted transcription if possible).]&lt;br /&gt;
 &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;impo¤l &amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;me&amp;lt;/font&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;doo&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;PisPS¤me&amp;lt;/font&amp;gt;(n):&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;r&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;¤&amp;lt;/font&amp;gt;n&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt;&amp;lt;/font&amp;gt;n,&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;1&amp;lt;/font&amp;gt;:&lt;br /&gt;
 		&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;retern&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;F&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;ise&amp;lt;/font&amp;gt;&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;for&amp;lt;/font&amp;gt; i &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;ir&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;ararre&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;2&amp;lt;/font&amp;gt;, &amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;nint&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;*&amp;lt;/font&amp;gt;n&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;**&amp;lt;/font&amp;gt;n&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;+&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;5&amp;lt;/font&amp;gt;)&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;+&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;5&amp;lt;/font&amp;gt;):&lt;br /&gt;
 		&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if&amp;lt;/font&amp;gt; n i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;==&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;0&amp;lt;/font&amp;gt;&lt;br /&gt;
 			&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;ret¤¤nrs&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;elsel&amp;lt;/font&amp;gt;:&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;re¤ irn &amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;True&amp;lt;/font&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;defe&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;sisPrimcieg ¤x&amp;lt;/font&amp;gt;(c&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;x&amp;lt;/font&amp;gt;&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;e&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;¤i&amp;lt;/font&amp;gt;natc&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;x&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;r&amp;lt;/font&amp;gt;'&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;^&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;(1&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;?| ?.&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;1&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;+?&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;)&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;lime&amp;quot;&amp;gt;\+&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;)&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;$&amp;lt;/font&amp;gt;'&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;*&amp;lt;/font&amp;gt;n &amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;)1'&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;*&amp;lt;/font&amp;gt;n):&lt;br /&gt;
 		&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;rerjrn &amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;Fa&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;(&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt; e&amp;lt;/font&amp;gt;&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;Letyl&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;nr&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;Trl&amp;lt;/font&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;dq&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot;&amp;gt;l qlsorsor&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;n&amp;lt;/font&amp;gt;(a :&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;if &amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;¤n&amp;lt;/font&amp;gt;(a &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt; &amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;2&amp;lt;/font&amp;gt;:&lt;br /&gt;
 		&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;eteturn &amp;lt;/font&amp;gt;a&lt;br /&gt;
 	pi&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;= =r f&amp;lt;/font&amp;gt;a[&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;0&amp;lt;/font&amp;gt;]&lt;br /&gt;
 	l&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=&amp;lt;/font&amp;gt;pi&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=for&amp;lt;/font&amp;gt; j &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;ln&amp;lt;/font&amp;gt; a i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt;&amp;lt;/font&amp;gt; i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt;&amp;lt;/font&amp;gt;pi&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt;&amp;lt;/font&amp;gt;(t]&amp;lt;small&amp;gt;(&amp;lt;/small&amp;gt;)&lt;br /&gt;
 	r&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=&amp;lt;/font&amp;gt;[l&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=for f in&amp;lt;/font&amp;gt; a) &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;r&amp;lt;/font&amp;gt; i&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;gt;&amp;lt;/font&amp;gt;viviv]&amp;lt;small&amp;gt;(&amp;lt;/small&amp;gt;vo)&lt;br /&gt;
 	mid&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;=&amp;lt;/font&amp;gt;[pi[&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;*&amp;lt;/font&amp;gt;t]&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;*&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;*&amp;lt;/font&amp;gt;t&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;,&amp;lt;/font&amp;gt;(a)&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;-&amp;lt;/font&amp;gt;(&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;len&amp;lt;/font&amp;gt;pi&amp;lt;font color=&amp;quot;light blue&amp;quot;&amp;gt;enlen&amp;lt;/font&amp;gt;(c)))&lt;br /&gt;
 	&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;r¤lrurrr&amp;lt;/font&amp;gt;iklcksckt(l) &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;+&amp;lt;/font&amp;gt; r ¤ ¤quickrort(r)&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:Protip: If you don't have access to the GNU ''patch'' tool, you can use the Photoshop one.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Protip]]&lt;br /&gt;
[[Category:Programming]]&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:173:_Movie_Seating&amp;diff=120665</id>
		<title>Talk:173: Movie Seating</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:173:_Movie_Seating&amp;diff=120665"/>
				<updated>2016-05-23T16:38:16Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I think that &amp;quot;two friends ... each sitting three seats away&amp;quot; takes &amp;quot;they&amp;quot; a little too literally. [[User:Daddy|Daddy]] ([[User talk:Daddy|talk]]) 06:17, 28 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Look at it like this. Placing them _friends_ apart guarantees lower background noise so you can actually watch the movie. {{unsigned ip|108.162.231.227}}&lt;br /&gt;
&lt;br /&gt;
Truthfully, I feel one-way crush should be second priority 05:09, 14 November 2015 (UTC) Lonely...&lt;br /&gt;
&lt;br /&gt;
I know I'm horrifically late on this one, but surely swapping 4 and 7 is the solution which minimizes strangers in &amp;quot;Do not keep 8 away from 6&amp;quot;. &lt;br /&gt;
There is currently no path from 8 to 4. Swapping 4 and 7 downgrades the link to 5 to an Acquaintance from Friendship, but offers a viable path between all members. Unless we're intentionally forcing 8 to talk to 6? [[Special:Contributions/162.158.99.64|162.158.99.64]] 08:20, 15 December 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
The solutions are making assumptions about the weighting of friends, relationships, and acquaintances. For example, maybe someone in a relationship would achieve maximum enjoyment if the SO is seated next to a stranger so all focus is on them. {{unsigned|Flewk}}&lt;br /&gt;
&lt;br /&gt;
If we take the &amp;quot;keep 8 away&amp;quot; solution and put 8 in middle of 6 and 3, wouldn't the result be strictly superior to the &amp;quot;do not keep 8 away&amp;quot; one?  It'd have the same number of adjacent relationships, but 6 would be seated next to a friend instead of an aquaintance, which is better. [[Special:Contributions/141.101.104.82|141.101.104.82]] 16:38, 23 May 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1678:_Recent_Searches&amp;diff=119640</id>
		<title>1678: Recent Searches</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1678:_Recent_Searches&amp;diff=119640"/>
				<updated>2016-05-09T20:04:36Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: /* Explanation */ oops a typo how embarassing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1678&lt;br /&gt;
| date      = May 9, 2016&lt;br /&gt;
| title     = Recent Searches&lt;br /&gt;
| image     = recent_searches.png&lt;br /&gt;
| titletext = autoexec code posted by verified twitter users&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The comic refers to the practice of finding answers to computer problems using {{w|Google}}. It shows a list of search queries, each of which suggests the author is perversely misusuing or overextending some computer technology or technologies. The overall impression is of someone technically sophisticated enough to shoot themselves in the foot, and who does not learn any larger lessons despite doing so repeatedly. It is unlikely any of the searches would give useful answers, because no two people would be perverse in these extremely specific ways. The title text is another possible entry in this list. A complication in attempting to solve computer problems this way would be presented by Google's search term autocorrection, which for several years has replaced technical terms with unrelated language from recent popular culture.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! width=20% | Search&lt;br /&gt;
! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Google translate syntax highlighting&lt;br /&gt;
| {{w|Syntax highlighting}} can be used when editing source code to make the code more readable and easier to understand. {{w|Google Translate}} is used to translate text from one {{w|natural language}} to another. The joke here is that syntax highlighting doesn't make sense in the context of translating natural languages.&lt;br /&gt;
&lt;br /&gt;
Alternatively, this could imply that the user is attempting to translate code from one programming language to another using Google translate.&lt;br /&gt;
|-&lt;br /&gt;
| Autodetect mixed bash zsh&lt;br /&gt;
| {{w|bash}} and {{w|Z_shell|zsh}} are two {{w|Command-line_interface|command line interfaces}} for {{w|Linux}}. The way to execute commands is almost identical, making detecting a script that contains a mixed syntax nearly impossible.&lt;br /&gt;
|-&lt;br /&gt;
| CPU temperature sensor limits&lt;br /&gt;
| The CPU's temperature sensors exist to tell you when your CPU is becoming dangerously overheated (normally because of a faulty fan or overclocking). Someone who searches for information about the limits of those sensors is presumably expecting to misuse their CPU.&lt;br /&gt;
|-&lt;br /&gt;
| GIF to XLS&lt;br /&gt;
| .GIF (Graphic Interchange Format) is a file extension used to store images and sequences of images to be displayed as an animation. .XLS is the file extension for Microsoft Excel spreadsheets. The joke is that the complete difference between the two types of file makes any kind of conversion all but impossible, so the search is useless. (Although, in fact, this search turns up a number of results along the lines of OCR programs that can convert a table in a GIF image to spreadsheet format.)&lt;br /&gt;
|-&lt;br /&gt;
| Clock speed jumper sample rate&lt;br /&gt;
|  Jumper wire is a short circuit used for switching a certain function on an electronic circuit. On a motherboard, jumpers can be used to alter the clock speeds of various motherboard functions (such as the CPU or the front side bus). These jumpers should be modified when the computer is off. However, this search is asking how often the motherboard checks the status of the clock speed jumpers, implying that they intend to change these jumpers while the computer is powered on.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.google.com/search?q=clean+reinstall+keybinding Clean reinstall keybinding]&lt;br /&gt;
| This refers to keybinding, the practice of mapping a certain key to a certain function (e.g., pressing PRTSC will take a screenshot). Creating a keybinding for a task usually implies that the task is repeated often. A &amp;quot;clean reinstall&amp;quot; (presumably of an operating system) is however not generally something that should be repeated often, implying that the user is regularly breaking the OS with their tinkering.&lt;br /&gt;
|-&lt;br /&gt;
| Cron job to update crontab&lt;br /&gt;
| {{w|Cron}} is a utility that allows you to schedule commands or scripts to be run periodically. These scheduled jobs are read from a ''crontab'' file. A job that updates the crontab (therefore creating new jobs, removing old ones or editing existing ones) is highly unusual and unlikely to be what you actually want to do.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.google.com/search?q=fsck+chrome+extension fsck Chrome extension]&lt;br /&gt;
| &lt;br /&gt;
This is probably a search for an interface to the Unix '''f'''ile'''s'''ystem che'''ck'''er {{w|fsck}} via third-party software added to Chrome.  Repairing a filesystem this way would be inadvisable. {{Citation needed}} This might indicate confusion about the meaning of the term &amp;quot;online filesystem repair&amp;quot;, in which &amp;quot;online&amp;quot; means &amp;quot;while the filesystem is in use&amp;quot; rather than &amp;quot;over the internet&amp;quot;. Alternatively, the user might want to repair an installation of the operating system Chromium, in a manner less drastic than the {{w|factory reset}} preferred by Google.&lt;br /&gt;
|-&lt;br /&gt;
| Recursive font&lt;br /&gt;
| An idiosyncratic mix of {{w|Recursion}} and the font style ''{{w|cursive}}'', referring especially to text handwritten in a flowing manner. {{w|PostScript}} (the language {{w|PostScript fonts|some fonts}} are written in) is capable of recursion and PostScript Type 3 fonts are able to use the full language. This could create effects like fonts with complicated fractal borders and fill patterns - but the increase in processing time would contribute to seeming brokenness of the computer (or printer) rendering the font.&lt;br /&gt;
|-&lt;br /&gt;
| Regex matching valid EBNF&lt;br /&gt;
| EBNF refers to {{w|Extended Backus–Naur Form}}, which is used to define {{w|Formal Language|formal languages}}. It is far too complex for a {{w|Regular_Expression|regular expression}} to determine whether it is valid or not. There is some irony in using regex to test the validity of something which ''defines'' the validity of things like regex.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.google.com/search?q=Hardlinks+Turing+complete Hardlinks Turing complete]&lt;br /&gt;
| In some filesystems, for example {{w|ext4}} and {{w|NTFS}}, a single file may be referenced by different names anywhere in the filesystem.  These filenames are termed &amp;quot;hard links&amp;quot; to the file because they are automatically resolved by the operating system to the file metadata.  &amp;quot;Soft&amp;quot; or &amp;quot;symbolic&amp;quot; links are resolved indirectly via a filename, which may reside anywhere.  A file is deleted when the last hard link to it is unlinked; a soft link exists independently of its target.&lt;br /&gt;
&lt;br /&gt;
{{w|Turing completeness}} is the {{w|computational complexity}} required to simulate any other Turing complete system (given an infinite amount of memory).  Recently there have been cases where unexpected mechanisms from card games to text parsers were proved to be Turing complete. Hardlinks being Turing complete would imply that creating and deleting hardlinks alone is enough to statisfy the requirements of Turing completeness.&lt;br /&gt;
|-&lt;br /&gt;
| Opposite of safe mode&lt;br /&gt;
| {{w|Safe mode}} is a diagnostic mode of an operating system or application which allows the user to troubleshoot problems by disabling unnecessary functionality. The &amp;quot;opposite of safe mode&amp;quot; implies a &amp;quot;dangerous&amp;quot; mode where the purpose is to cause problems rather than fix them.&lt;br /&gt;
|-&lt;br /&gt;
| Predictive touchpad&lt;br /&gt;
| {{w|Predictive text}} is a feature of many smartphone keyboards that predicts the most likely word the user wishes to type, and then gives the user the option to place the word in the sentence without typing the whole word. A {{w|touchpad}} is a computer pointing device, similar to a {{w|computer mouse}}. The idea of a &amp;quot;predictive touchpad&amp;quot; seems absurd because, as opposed to typed words, there are not a limited number of swipe combinations that are possible on a touchpad. A &amp;quot;predictive touchpad&amp;quot; implies that a computer could predict where the user was going to move the mouse or click, which is clearly unreasonable. {{Citation needed}} &lt;br /&gt;
|-&lt;br /&gt;
| Google docs from bootloader&lt;br /&gt;
| Google docs relies on programs and libraries much more complex than a {{w|bootloader}} (a very small program running immediately after boot, mainly for loading the OS) could run.&lt;br /&gt;
|-&lt;br /&gt;
| Hardware acceleration red channel only&lt;br /&gt;
| {{w|Hardware acceleration}} means that certain calculations are not performed by the computer's {{w|CPU}} but by a &amp;quot;specialized&amp;quot; processor, e.g. a {{w|GPU}} which is part of the graphics adapter. This speeds up output, especially if complex 3D calculations are required and reduces CPU load. To use this function only on a single color channel seems pretty useless, but one may want to troubleshoot a program that displays only red when hardware acceleration is enabled.&lt;br /&gt;
|-&lt;br /&gt;
| autoexec code posted by verified twitter users&lt;br /&gt;
| Automatically executing code from the internet is generally a terrible idea, because it could be written by someone with malicious intent and harm your computer. The joke here is that the code would only be executed if written by someone who has been &amp;quot;verified&amp;quot; on Twitter. Twitter's verification service only serves to show that a user is who they claim to be, not whether or not their code can be trusted, so this would provide little protection.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Coloured and styled as the logo]&lt;br /&gt;
:Google&lt;br /&gt;
&lt;br /&gt;
:[Google Search bar, with a drop down box with faded text, implying recent searches]&lt;br /&gt;
:Google translate syntax highlighting&lt;br /&gt;
:Autodetect mixed bash zsh&lt;br /&gt;
:CPU temperature sensor limits&lt;br /&gt;
:GIF to XLS&lt;br /&gt;
:Clock speed jumper sample rate&lt;br /&gt;
:Clean reinstall keybinding&lt;br /&gt;
:Cron job to update crontab&lt;br /&gt;
:fsck Chrome extension&lt;br /&gt;
:Recursive font&lt;br /&gt;
:Regex matching valid EBNF&lt;br /&gt;
:Hardlinks Turing complete&lt;br /&gt;
:Opposite of safe mode&lt;br /&gt;
:Predictive touchpad&lt;br /&gt;
:Google docs from bootloader&lt;br /&gt;
:Hardware acceleration red channel only&lt;br /&gt;
&lt;br /&gt;
:[Bold, below page outline]&lt;br /&gt;
:I have no idea why my computers are always broken&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1678:_Recent_Searches&amp;diff=119639</id>
		<title>1678: Recent Searches</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1678:_Recent_Searches&amp;diff=119639"/>
				<updated>2016-05-09T20:03:36Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: bootloader loads boots i guess&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1678&lt;br /&gt;
| date      = May 9, 2016&lt;br /&gt;
| title     = Recent Searches&lt;br /&gt;
| image     = recent_searches.png&lt;br /&gt;
| titletext = autoexec code posted by verified twitter users&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The comic refers to the practice of finding answers to computer problems using {{w|Google}}. It shows a list of search queries, each of which suggests the author is perversely misusuing or overextending some computer technology or technologies. The overall impression is of someone technically sophisticated enough to shoot themselves in the foot, and who does not learn any larger lessons despite doing so repeatedly. It is unlikely any of the searches would give useful answers, because no two people would be perverse in these extremely specific ways. The title text is another possible entry in this list. A complication in attempting to solve computer problems this way would be presented by Google's search term autocorrection, which for several years has replaced technical terms with unrelated language from recent popular culture.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; style=&amp;quot;border-collapse: collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! width=20% | Search&lt;br /&gt;
! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Google translate syntax highlighting&lt;br /&gt;
| {{w|Syntax highlighting}} can be used when editing source code to make the code more readable and easier to understand. {{w|Google Translate}} is used to translate text from one {{w|natural language}} to another. The joke here is that syntax highlighting doesn't make sense in the context of translating natural languages.&lt;br /&gt;
&lt;br /&gt;
Alternatively, this could imply that the user is attempting to translate code from one programming language to another using Google translate.&lt;br /&gt;
|-&lt;br /&gt;
| Autodetect mixed bash zsh&lt;br /&gt;
| {{w|bash}} and {{w|Z_shell|zsh}} are two {{w|Command-line_interface|command line interfaces}} for {{w|Linux}}. The way to execute commands is almost identical, making detecting a script that contains a mixed syntax nearly impossible.&lt;br /&gt;
|-&lt;br /&gt;
| CPU temperature sensor limits&lt;br /&gt;
| The CPU's temperature sensors exist to tell you when your CPU is becoming dangerously overheated (normally because of a faulty fan or overclocking). Someone who searches for information about the limits of those sensors is presumably expecting to misuse their CPU.&lt;br /&gt;
|-&lt;br /&gt;
| GIF to XLS&lt;br /&gt;
| .GIF (Graphic Interchange Format) is a file extension used to store images and sequences of images to be displayed as an animation. .XLS is the file extension for Microsoft Excel spreadsheets. The joke is that the complete difference between the two types of file makes any kind of conversion all but impossible, so the search is useless. (Although, in fact, this search turns up a number of results along the lines of OCR programs that can convert a table in a GIF image to spreadsheet format.)&lt;br /&gt;
|-&lt;br /&gt;
| Clock speed jumper sample rate&lt;br /&gt;
|  Jumper wire is a short circuit used for switching a certain function on an electronic circuit. On a motherboard, jumpers can be used to alter the clock speeds of various motherboard functions (such as the CPU or the front side bus). These jumpers should be modified when the computer is off. However, this search is asking how often the motherboard checks the status of the clock speed jumpers, implying that they intend to change these jumpers while the computer is powered on.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.google.com/search?q=clean+reinstall+keybinding Clean reinstall keybinding]&lt;br /&gt;
| This refers to keybinding, the practice of mapping a certain key to a certain function (e.g., pressing PRTSC will take a screenshot). Creating a keybinding for a task usually implies that the task is repeated often. A &amp;quot;clean reinstall&amp;quot; (presumably of an operating system) is however not generally something that should be repeated often, implying that the user is regularly breaking the OS with their tinkering.&lt;br /&gt;
|-&lt;br /&gt;
| Cron job to update crontab&lt;br /&gt;
| {{w|Cron}} is a utility that allows you to schedule commands or scripts to be run periodically. These scheduled jobs are read from a ''crontab'' file. A job that updates the crontab (therefore creating new jobs, removing old ones or editing existing ones) is highly unusual and unlikely to be what you actually want to do.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.google.com/search?q=fsck+chrome+extension fsck Chrome extension]&lt;br /&gt;
| &lt;br /&gt;
This is probably a search for an interface to the Unix '''f'''ile'''s'''ystem che'''ck'''er {{w|fsck}} via third-party software added to Chrome.  Repairing a filesystem this way would be inadvisable. {{Citation needed}} This might indicate confusion about the meaning of the term &amp;quot;online filesystem repair&amp;quot;, in which &amp;quot;online&amp;quot; means &amp;quot;while the filesystem is in use&amp;quot; rather than &amp;quot;over the internet&amp;quot;. Alternatively, the user might want to repair an installation of the operating system Chromium, in a manner less drastic than the {{w|factory reset}} preferred by Google.&lt;br /&gt;
|-&lt;br /&gt;
| Recursive font&lt;br /&gt;
| An idiosyncratic mix of {{w|Recursion}} and the font style ''{{w|cursive}}'', referring especially to text handwritten in a flowing manner. {{w|PostScript}} (the language {{w|PostScript fonts|some fonts}} are written in) is capable of recursion and PostScript Type 3 fonts are able to use the full language. This could create effects like fonts with complicated fractal borders and fill patterns - but the increase in processing time would contribute to seeming brokenness of the computer (or printer) rendering the font.&lt;br /&gt;
|-&lt;br /&gt;
| Regex matching valid EBNF&lt;br /&gt;
| EBNF refers to {{w|Extended Backus–Naur Form}}, which is used to define {{w|Formal Language|formal languages}}. It is far too complex for a {{w|Regular_Expression|regular expression}} to determine whether it is valid or not. There is some irony in using regex to test the validity of something which ''defines'' the validity of things like regex.&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.google.com/search?q=Hardlinks+Turing+complete Hardlinks Turing complete]&lt;br /&gt;
| In some filesystems, for example {{w|ext4}} and {{w|NTFS}}, a single file may be referenced by different names anywhere in the filesystem.  These filenames are termed &amp;quot;hard links&amp;quot; to the file because they are automatically resolved by the operating system to the file metadata.  &amp;quot;Soft&amp;quot; or &amp;quot;symbolic&amp;quot; links are resolved indirectly via a filename, which may reside anywhere.  A file is deleted when the last hard link to it is unlinked; a soft link exists independently of its target.&lt;br /&gt;
&lt;br /&gt;
{{w|Turing completeness}} is the {{w|computational complexity}} required to simulate any other Turing complete system (given an infinite amount of memory).  Recently there have been cases where unexpected mechanisms from card games to text parsers were proved to be Turing complete. Hardlinks being Turing complete would imply that creating and deleting hardlinks alone is enough to statisfy the requirements of Turing completeness.&lt;br /&gt;
|-&lt;br /&gt;
| Opposite of safe mode&lt;br /&gt;
| {{w|Safe mode}} is a diagnostic mode of an operating system or application which allows the user to troubleshoot problems by disabling unnecessary functionality. The &amp;quot;opposite of safe mode&amp;quot; implies a &amp;quot;dangerous&amp;quot; mode where the purpose is to cause problems rather than fix them.&lt;br /&gt;
|-&lt;br /&gt;
| Predictive touchpad&lt;br /&gt;
| {{w|Predictive text}} is a feature of many smartphone keyboards that predicts the most likely word the user wishes to type, and then gives the user the option to place the word in the sentence without typing the whole word. A {{w|touchpad}} is a computer pointing device, similar to a {{w|computer mouse}}. The idea of a &amp;quot;predictive touchpad&amp;quot; seems absurd because, as opposed to typed words, there are not a limited number of swipe combinations that are possible on a touchpad. A &amp;quot;predictive touchpad&amp;quot; implies that a computer could predict where the user was going to move the mouse or click, which is clearly unreasonable. {{Citation needed}} &lt;br /&gt;
|-&lt;br /&gt;
| Google docs from bootloader&lt;br /&gt;
| Google docs relies on programs and libraries much more complex than a {{w|bootloader}} (a very small program running immediately after boot, mainly for loading the OC) could run.&lt;br /&gt;
|-&lt;br /&gt;
| Hardware acceleration red channel only&lt;br /&gt;
| {{w|Hardware acceleration}} means that certain calculations are not performed by the computer's {{w|CPU}} but by a &amp;quot;specialized&amp;quot; processor, e.g. a {{w|GPU}} which is part of the graphics adapter. This speeds up output, especially if complex 3D calculations are required and reduces CPU load. To use this function only on a single color channel seems pretty useless, but one may want to troubleshoot a program that displays only red when hardware acceleration is enabled.&lt;br /&gt;
|-&lt;br /&gt;
| autoexec code posted by verified twitter users&lt;br /&gt;
| Automatically executing code from the internet is generally a terrible idea, because it could be written by someone with malicious intent and harm your computer. The joke here is that the code would only be executed if written by someone who has been &amp;quot;verified&amp;quot; on Twitter. Twitter's verification service only serves to show that a user is who they claim to be, not whether or not their code can be trusted, so this would provide little protection.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Coloured and styled as the logo]&lt;br /&gt;
:Google&lt;br /&gt;
&lt;br /&gt;
:[Google Search bar, with a drop down box with faded text, implying recent searches]&lt;br /&gt;
:Google translate syntax highlighting&lt;br /&gt;
:Autodetect mixed bash zsh&lt;br /&gt;
:CPU temperature sensor limits&lt;br /&gt;
:GIF to XLS&lt;br /&gt;
:Clock speed jumper sample rate&lt;br /&gt;
:Clean reinstall keybinding&lt;br /&gt;
:Cron job to update crontab&lt;br /&gt;
:fsck Chrome extension&lt;br /&gt;
:Recursive font&lt;br /&gt;
:Regex matching valid EBNF&lt;br /&gt;
:Hardlinks Turing complete&lt;br /&gt;
:Opposite of safe mode&lt;br /&gt;
:Predictive touchpad&lt;br /&gt;
:Google docs from bootloader&lt;br /&gt;
:Hardware acceleration red channel only&lt;br /&gt;
&lt;br /&gt;
:[Bold, below page outline]&lt;br /&gt;
:I have no idea why my computers are always broken&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:628:_Psychic&amp;diff=118745</id>
		<title>Talk:628: Psychic</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:628:_Psychic&amp;diff=118745"/>
				<updated>2016-04-26T05:11:34Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tip: No one picks 50. [[Special:Contributions/75.69.96.225|75.69.96.225]] 01:35, 14 March 2013 (UTC)&lt;br /&gt;
:The '''Answer to the Ultimate Question of Life, the Universe, and Everything''' is 42. This comic is wrong ;) --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:52, 6 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Interestingly, it appears Megan was trying to trip Cueball up. The obvious choice would have been &amp;quot;42&amp;quot;, a number with very geeky connotations, {{w|42_(number)#Popular_culture|to say the least}}. Megan may have thought of it immediately, known Cueball would suspect, and gone for the next higher number, 43. Of course, Cueball was smart enough to realize this simple trick, and knew Megan was, too. So he won anyway. {{unsigned ip|173.245.54.91}}&lt;br /&gt;
&lt;br /&gt;
I seems that 37 (or 73) would be most not-random random. Though I cannot say, that sources are 100% reliable: [http://micro.magnet.fsu.edu/creatures/pages/random.html]&lt;br /&gt;
[http://catb.org/jargon/html/R/random-numbers.html]&lt;br /&gt;
[[Special:Contributions/141.101.88.219|141.101.88.219]] 08:57, 15 May 2015 (UTC) Koovert&lt;br /&gt;
&lt;br /&gt;
Wait, if Cueball's probability to pick a specific number is 1/100 and Megan's probability to pick a specific number is also 1/100, wouldn't the probability of their picks being the same be 0.01%?&lt;br /&gt;
--[[User:Jogerj|Jogerj]] ([[User talk:Jogerj|talk]]) 02:11, 12 August 2015 (UTC)&lt;br /&gt;
::Yes, now multiply it by 100 because there can be 100 specific numbers. [[User:Anachor|Anachor]] ([[User talk:Anachor|talk]]) 10:17, 27 August 2015 (UTC)&lt;br /&gt;
::No, because you only have to have one of them match the other, not both of them match a number from some other source.[[Special:Contributions/173.245.54.34|173.245.54.34]] 07:07, 30 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Ooh, so the 17 thing is real after all!  I've long since spotted it, but was never sure whether it's objective or just me preferentially noticing this number.  Man, it feels good to be vindicated. [[Special:Contributions/141.101.104.82|141.101.104.82]] 05:11, 26 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1402:_Harpoons&amp;diff=72749</id>
		<title>Talk:1402: Harpoons</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1402:_Harpoons&amp;diff=72749"/>
				<updated>2014-08-01T22:10:41Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I took the sentient space craft joke to be a reference to the movie &amp;quot;Dark Star&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Harpoon is a brand of rum. Did a bottle make it into space? [[Special:Contributions/108.162.219.196|108.162.219.196]] 12:55, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I tried to find who makes it but wasn't able to find a definitive source. I added http://www.harpoon-rum.eu/ for now but it would be nice to have the link to the canonical source. Any pointers? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:24, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: It's only headcannon. (ref to xkcd #1401)  A headcannon which fires a harpoon. [[Special:Contributions/108.162.216.80|108.162.216.80]] 17:52, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Did this comic upload quite late in the day for anyone else? Is anyone else experiencing or did anyone else experience that &amp;quot;Latest Comic&amp;quot; is still going to 1401 as ix XKCD.com and XKCD.com/#&lt;br /&gt;
&lt;br /&gt;
&amp;quot;This is obviously a joke, as sentient spacecraft cannot be created with current technology.&amp;quot; Yeah, will need a citation on that... [[Special:Contributions/108.162.229.148|108.162.229.148]] 13:23, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Definitely a joke. Appolo 12’s call sign was Yankee Clipper, and a clipper ship would not carry any harpoons.[[Special:Contributions/108.162.216.129|108.162.216.129]] 14:04, 1 August 2014 (UTC)&lt;br /&gt;
: I'd believe someone might have smuggled some Harpoon (or even any brand of) rum up there, then brought it back down with them, ingested or otherwise (thus the drop right after the mission). Alternately, &amp;quot;incident&amp;quot; could be something more along the lines of losing an empty bottle of rum during a spacewalk (farfetched as it may be) and it reentering the atmosphere(?) - probably no more than stories, though - nothing official probably exists about anything like that going up or down in any manner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moby Dick is, let's say, extremely far-fetched. It was not the ship that was hunting the whale and harpooning it by itself. --[[Special:Contributions/141.101.104.143|141.101.104.143]] 17:27, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could the Apollo 12 bump possibly be a reference to Futurama? &amp;quot;We're whalers on the moon, we carry a harpoon&amp;quot;  [[Special:Contributions/199.27.130.246|199.27.130.246]] 15:51, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Maybe it is a reference to a print ad by Bacardi-Martini, mentioned briefly in Buzz Aldrins book Magnificent Desolation. [[Special:Contributions/141.101.104.82|141.101.104.82]] 22:10, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Whale killing==&lt;br /&gt;
Saying &amp;quot;sailors would throw harpoons at a whale until it died&amp;quot; betrays a limited understanding of the process. Harpoons were barbed, and were meant to stick in the whale while it sounded (went deep.) A length of (about half-inch) rope kept the harpoon connected to the whaleboat. After the whale was exhausted (from towing the whaleboat while trying to shake off the harpoon? idk) the whaleboat could approach it, and the boatswain (''not'' the harpooner) would kill it with an unbarbed lance. Holling Clancy Holling's ''Seabird'' shows how it was done, with pictures and all. [[Special:Contributions/173.245.54.153|173.245.54.153]] 19:00, 1 August 2014 (UTC)&lt;br /&gt;
===Svend Foyn===&lt;br /&gt;
Norwegian whaler Svend Foyn revolutionarized whaling by inventing explosive harpoon to hunt whales. He made whaling much easier and quicker. This method saved Norway from the famine thread in 19th century.&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1402:_Harpoons&amp;diff=72747</id>
		<title>Talk:1402: Harpoons</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1402:_Harpoons&amp;diff=72747"/>
				<updated>2014-08-01T21:53:59Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I took the sentient space craft joke to be a reference to the movie &amp;quot;Dark Star&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Harpoon is a brand of rum. Did a bottle make it into space? [[Special:Contributions/108.162.219.196|108.162.219.196]] 12:55, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I tried to find who makes it but wasn't able to find a definitive source. I added http://www.harpoon-rum.eu/ for now but it would be nice to have the link to the canonical source. Any pointers? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:24, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: It's only headcannon. (ref to xkcd #1401)  A headcannon which fires a harpoon. [[Special:Contributions/108.162.216.80|108.162.216.80]] 17:52, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Did this comic upload quite late in the day for anyone else? Is anyone else experiencing or did anyone else experience that &amp;quot;Latest Comic&amp;quot; is still going to 1401 as ix XKCD.com and XKCD.com/#&lt;br /&gt;
&lt;br /&gt;
&amp;quot;This is obviously a joke, as sentient spacecraft cannot be created with current technology.&amp;quot; Yeah, will need a citation on that... [[Special:Contributions/108.162.229.148|108.162.229.148]] 13:23, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Definitely a joke. Appolo 12’s call sign was Yankee Clipper, and a clipper ship would not carry any harpoons.[[Special:Contributions/108.162.216.129|108.162.216.129]] 14:04, 1 August 2014 (UTC)&lt;br /&gt;
: I'd believe someone might have smuggled some Harpoon (or even any brand of) rum up there, then brought it back down with them, ingested or otherwise (thus the drop right after the mission). Alternately, &amp;quot;incident&amp;quot; could be something more along the lines of losing an empty bottle of rum during a spacewalk (farfetched as it may be) and it reentering the atmosphere(?) - probably no more than stories, though - nothing official probably exists about anything like that going up or down in any manner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moby Dick is, let's say, extremely far-fetched. It was not the ship that was hunting the whale and harpooning it by itself. --[[Special:Contributions/141.101.104.143|141.101.104.143]] 17:27, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could the Apollo 12 bump possibly be a reference to Futurama? &amp;quot;We're whalers on the moon, we carry a harpoon&amp;quot;  [[Special:Contributions/199.27.130.246|199.27.130.246]] 15:51, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Maybe it is a reference to a print ad by Bacardi-Martini, mentioned briefly in Buzz Aldrins book Magnificent Desolation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Whale killing==&lt;br /&gt;
Saying &amp;quot;sailors would throw harpoons at a whale until it died&amp;quot; betrays a limited understanding of the process. Harpoons were barbed, and were meant to stick in the whale while it sounded (went deep.) A length of (about half-inch) rope kept the harpoon connected to the whaleboat. After the whale was exhausted (from towing the whaleboat while trying to shake off the harpoon? idk) the whaleboat could approach it, and the boatswain (''not'' the harpooner) would kill it with an unbarbed lance. Holling Clancy Holling's ''Seabird'' shows how it was done, with pictures and all. [[Special:Contributions/173.245.54.153|173.245.54.153]] 19:00, 1 August 2014 (UTC)&lt;br /&gt;
===Svend Foyn===&lt;br /&gt;
Norwegian whaler Svend Foyn revolutionarized whaling by inventing explosive harpoon to hunt whales. He made whaling much easier and quicker. This method saved Norway from the famine thread in 19th century.&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1402:_Harpoons&amp;diff=72746</id>
		<title>Talk:1402: Harpoons</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1402:_Harpoons&amp;diff=72746"/>
				<updated>2014-08-01T21:50:44Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.104.82: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I took the sentient space craft joke to be a reference to the movie &amp;quot;Dark Star&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Harpoon is a brand of rum. Did a bottle make it into space? [[Special:Contributions/108.162.219.196|108.162.219.196]] 12:55, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I tried to find who makes it but wasn't able to find a definitive source. I added http://www.harpoon-rum.eu/ for now but it would be nice to have the link to the canonical source. Any pointers? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:24, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
: It's only headcannon. (ref to xkcd #1401)  A headcannon which fires a harpoon. [[Special:Contributions/108.162.216.80|108.162.216.80]] 17:52, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Did this comic upload quite late in the day for anyone else? Is anyone else experiencing or did anyone else experience that &amp;quot;Latest Comic&amp;quot; is still going to 1401 as ix XKCD.com and XKCD.com/#&lt;br /&gt;
&lt;br /&gt;
&amp;quot;This is obviously a joke, as sentient spacecraft cannot be created with current technology.&amp;quot; Yeah, will need a citation on that... [[Special:Contributions/108.162.229.148|108.162.229.148]] 13:23, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Definitely a joke. Appolo 12’s call sign was Yankee Clipper, and a clipper ship would not carry any harpoons.[[Special:Contributions/108.162.216.129|108.162.216.129]] 14:04, 1 August 2014 (UTC)&lt;br /&gt;
: I'd believe someone might have smuggled some Harpoon (or even any brand of) rum up there, then brought it back down with them, ingested or otherwise (thus the drop right after the mission). Alternately, &amp;quot;incident&amp;quot; could be something more along the lines of losing an empty bottle of rum during a spacewalk (farfetched as it may be) and it reentering the atmosphere(?) - probably no more than stories, though - nothing official probably exists about anything like that going up or down in any manner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moby Dick is, let's say, extremely far-fetched. It was not the ship that was hunting the whale and harpooning it by itself. --[[Special:Contributions/141.101.104.143|141.101.104.143]] 17:27, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could the Apollo 12 bump possibly be a reference to Futurama? &amp;quot;We're whalers on the moon, we carry a harpoon&amp;quot;  [[Special:Contributions/199.27.130.246|199.27.130.246]] 15:51, 1 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Whale killing==&lt;br /&gt;
Saying &amp;quot;sailors would throw harpoons at a whale until it died&amp;quot; betrays a limited understanding of the process. Harpoons were barbed, and were meant to stick in the whale while it sounded (went deep.) A length of (about half-inch) rope kept the harpoon connected to the whaleboat. After the whale was exhausted (from towing the whaleboat while trying to shake off the harpoon? idk) the whaleboat could approach it, and the boatswain (''not'' the harpooner) would kill it with an unbarbed lance. Holling Clancy Holling's ''Seabird'' shows how it was done, with pictures and all. [[Special:Contributions/173.245.54.153|173.245.54.153]] 19:00, 1 August 2014 (UTC)&lt;br /&gt;
===Svend Foyn===&lt;br /&gt;
Norwegian whaler Svend Foyn revolutionarized whaling by inventing explosive harpoon to hunt whales. He made whaling much easier and quicker. This method saved Norway from the famine thread in 19th century.&lt;br /&gt;
&lt;br /&gt;
The first harpoon could be a reference to a print ad by Bacardi-Martini, mentioned briefly in Buzz Aldrins book Magnificent Desolation.&lt;/div&gt;</summary>
		<author><name>141.101.104.82</name></author>	</entry>

	</feed>