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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1638:_Backslashes&amp;diff=110501</id>
		<title>Talk:1638: Backslashes</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1638:_Backslashes&amp;diff=110501"/>
				<updated>2016-02-03T06:31:40Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.66.83: /* I don't think the regex is invalid */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It should be noted that this also occurs in almost every programming language where &amp;quot;\&amp;quot; is the escape character. i.e.&lt;br /&gt;
 print(&amp;quot;Hello&amp;quot;)&lt;br /&gt;
 &amp;gt; Hello&lt;br /&gt;
 print(&amp;quot;\&amp;quot;Hello\&amp;quot;&amp;quot;)&lt;br /&gt;
 &amp;gt; &amp;quot;Hello&amp;quot;&lt;br /&gt;
 print(&amp;quot;\\Hello\\&amp;quot;)&lt;br /&gt;
 &amp;gt; \Hello\&lt;br /&gt;
Oh, and by the way, isn't this the third comic to mention &amp;quot;Ba'al, the Soul Eater&amp;quot;? Maybe we should start a category. (Others are [http://www.explainxkcd.com/wiki/index.php/1246:_Pale_Blue_Dot 1246] (title text) and [http://www.explainxkcd.com/wiki/index.php/1419:_On_the_Phone 1419].)&lt;br /&gt;
[[Special:Contributions/173.245.54.29|173.245.54.29]] 06:14, 3 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== I don't think the regex is invalid ==&lt;br /&gt;
&lt;br /&gt;
According to &amp;lt;tt&amp;gt;man grep&amp;lt;/tt&amp;gt; you need to specify the &amp;lt;tt&amp;gt;-E&amp;lt;/tt&amp;gt; option to use extended regex; without it unescaped parentheses are not interpreted, so they don't need to match.&lt;br /&gt;
&lt;br /&gt;
My - very wild - guess is that it was the command he used to find the line with the most special characters, but I am not confident enough to edit the article (if someone can confirm?).&lt;/div&gt;</summary>
		<author><name>141.101.66.83</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=342:_1337:_Part_2&amp;diff=109615</id>
		<title>342: 1337: Part 2</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=342:_1337:_Part_2&amp;diff=109615"/>
				<updated>2016-01-20T18:34:13Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.66.83: /* Explanation */ link edition&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 342&lt;br /&gt;
| date      = November 13, 2007&lt;br /&gt;
| title     = 1337: Part 2&lt;br /&gt;
| image     = 1337 part 2.png&lt;br /&gt;
| titletext = Trivia: Elaine is actually her middle name.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&amp;quot;Like a ring in a bell&amp;quot; appears to be a reference to the {{w|Chuck Berry}} song {{w|Johnny B. Goode}}, in which Berry describes a young boy (like himself) who becomes a guitar-playing prodigy. Apparently, Elaine learned to program as quickly, easily, and skillfully as Johnny (and Chuck) learned to play rock 'n' roll.&lt;br /&gt;
{{w|Donald Knuth}} is a computer science Professor Emeritus at {{w|Stanford University}} who is famous for writing {{w|The Art of Computer Programming}} and developing the &amp;lt;span class=&amp;quot;texhtml&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;font-family:cmr10, LMRoman10-Regular, Times, serif;&amp;quot;&amp;gt;T&amp;lt;span style=&amp;quot;text-transform:uppercase; vertical-align:-0.5ex; margin-left:-0.1667em; margin-right:-0.125em;&amp;quot;&amp;gt;e&amp;lt;/span&amp;gt;X&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; computerized typesetting system. He may not have a mountain hideaway {{Citation needed}} (a reference to ''{{w|Kill Bill}}'', by the way), but he would be one of the best mentors a budding hacker could have.&lt;br /&gt;
&lt;br /&gt;
The {{w|A* search algorithm}} and {{w|Dijkstra's algorithm}} are {{w|Graph traversal|graph search}} {{w|algorithm}}s. And what study of algorithms would be complete without a healthy study about finding complexities? {{w|Computational complexity theory|Time complexity}} is the amount of time an algorithm takes to execute. Upper and lower bounds for complexity is written in {{w|Big O notation}}. Best possible execution of an algorithm is constant time, or O(1), said in words, for any given data set no matter how large the algorithm will always return the answer in the same time. However, constant time is extremely difficult to achieve; linear time (O(n)) is also very good. For more complex algorithms, [http://www.wolframalpha.com/input/?i=plot+x*log%28x%29 O( n*log(n) )] is good, but [http://www.wolframalpha.com/input/?i=plot+x*log%28log%28x%29%29 O( n*log(log(n)) )] is better. (Note that logarithms in different bases are proportional to each other. So this would hold true for any base &amp;gt;1.)&lt;br /&gt;
&lt;br /&gt;
From the evidence that [[Mrs. Roberts]] has two children, a daughter named [[Elaine Roberts|Elaine]], and a younger son named Bobby (presumably [[Little Bobby Tables|Robert'); DROP TABLE students;--]]), we can assume that she is the same mother from [[327: Exploits of a Mom]]. Of course, the title text here explains that Elaine is only her middle name. In [[327]] we learned her first name is &amp;quot;Help I'm trapped in a driver's license factory&amp;quot;. Mrs. Roberts appears to have had fun naming her children.&lt;br /&gt;
&lt;br /&gt;
All comics in &amp;quot;[[:Category:1337|1337]]&amp;quot; series:&lt;br /&gt;
*[[341: 1337: Part 1]]&lt;br /&gt;
*342: 1337: Part 2 (this one)&lt;br /&gt;
*[[343: 1337: Part 3]]&lt;br /&gt;
*[[344: 1337: Part 4]]&lt;br /&gt;
*[[345: 1337: Part 5]]&lt;br /&gt;
&lt;br /&gt;
This series was released on 5 consecutive days (Monday-Friday) and not over the usual Monday/Wednesday/Friday schedule.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball standing near a friend, who is on the floor near the armchair.]&lt;br /&gt;
:Friend: So the greatest hacker of our era is a cookie-baking mom?&lt;br /&gt;
:Cueball: Second-greatest.&lt;br /&gt;
:Friend: Oh?&lt;br /&gt;
&lt;br /&gt;
:[A young Elaine with a ponytail is laying on the floor looking at the screen of a computer that appears to have been pieced together. A younger Bobby is finger painting at an easel.]&lt;br /&gt;
:Mrs. Roberts had two children. Her son, Bobby, was never much for computers, but her daughter Elaine took to them like a ring in the bell.&lt;br /&gt;
&lt;br /&gt;
:[The back of a car is in frame. Mrs. Roberts is waving goodbye to her daughter who is wearing a backpack and is holding a walking stick. She is about to begin climbing a staircase built into a mountain.]&lt;br /&gt;
:When Elaine turned 11, her mother sent her to train under Donald Knuth in his mountain hideaway.&lt;br /&gt;
&lt;br /&gt;
:[Donald Knuth is standing with a pointing stick at a chalk board with graph traversal patterns on it.]&lt;br /&gt;
:For four years she studied algorithms.&lt;br /&gt;
:Knuth: Child—&lt;br /&gt;
&lt;br /&gt;
:[Knuth whips around slashing the stick like a sword. Elaine jumps and lands on the stick.]&lt;br /&gt;
:Knuth: Why is A* search wrong in this situation?&lt;br /&gt;
:''swish''&lt;br /&gt;
:Elaine: Memory usage!&lt;br /&gt;
:Knuth: What would you use?&lt;br /&gt;
:Elaine: Dijkstra's algorithm!&lt;br /&gt;
&lt;br /&gt;
:[They are outside both working on a chalkboard with a separator down the middle so they cannot look at each other's work. Elaine is no longer wearing her hair in a ponytail.]&lt;br /&gt;
:Until one day she bested her master&lt;br /&gt;
:Knuth: So our lower bound here is O(n log n)&lt;br /&gt;
:Elaine: Nope. Got it in O(n log (log n))&lt;br /&gt;
:And left.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*In this [http://www.youtube.com/watch?v=zJOS0sV2a24#t=21m30s Google-speech] Donald Knuth personally asked [[Randall]] what his ''n*log(log(n))'' algorithm for searching was, and Randall referred him to Elaine.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Elaine Roberts]]&lt;br /&gt;
[[Category:Comics featuring Mrs. Roberts]]&lt;br /&gt;
[[Category:Comics featuring Little Bobby Tables]]&lt;br /&gt;
[[Category:Comics featuring Donald Knuth]]&lt;br /&gt;
[[Category:1337|02]]&lt;/div&gt;</summary>
		<author><name>141.101.66.83</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=293:_RTFM&amp;diff=109464</id>
		<title>293: RTFM</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=293:_RTFM&amp;diff=109464"/>
				<updated>2016-01-18T18:03:44Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.66.83: /* Explanation */ english language; a “fact” needs references&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 293&lt;br /&gt;
| date      = July 23, 2007&lt;br /&gt;
| title     = RTFM&lt;br /&gt;
| image     = rtfm.png&lt;br /&gt;
| titletext = Life is too short for man pages, and occasionally much too short without them.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The title RTFM is an acronym for &amp;quot;{{w|RTFM|read the f**king manual}}&amp;quot;, which frustrated software manufacturers tell users when confronted with a simple question (most likely answered in the manual).&lt;br /&gt;
&lt;br /&gt;
However, [[Cueball]] encounters a similar situation with a {{w|911}} call, in which the first question the 911 dispatcher asks is if Cueball has read the toaster's {{w|man page}} (man pages are the 'manual' for unix systems, but only describe commands and library functions, not hardware). Even if a man page existed, it is unreasonable to require the user of a toaster to read the manual just to avoid being stabbed in the face. The 911 dispatcher decides that as he has not read the man page, Cueball is not entitled to medical assistance, and hangs up.&lt;br /&gt;
The title text refers to the popular phrase &amp;quot;Life's too short&amp;quot;, which asserts that because we only have a fixed amount of time on Earth, and that time can pass by quickly, we should make the most of it. That could mean, for example, don't spend time reading the documentation unless you actually experience a problem. The second part suggests that some people actually die because they didn't RTFM!&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball with a knife sticking out of his heavily bleeding face stands in front of a toaster, which has an arm extending from the top of it. He is holding a telephone to his ear.]&lt;br /&gt;
:Cueball: Hello, 911? I just tried to toast some bread, and the toaster grew an arm and stabbed me in the face!&lt;br /&gt;
:911: Did you read the toaster's man page first?&lt;br /&gt;
:Cueball: Well, no, but all I wanted was--&lt;br /&gt;
:911: ''click''&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}} &lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics with color]]&lt;/div&gt;</summary>
		<author><name>141.101.66.83</name></author>	</entry>

	</feed>