<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=108.162.219.210</id>
		<title>explain xkcd - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=108.162.219.210"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/108.162.219.210"/>
		<updated>2026-06-24T17:18:15Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2247:_Weird_Hill&amp;diff=205645</id>
		<title>Talk:2247: Weird Hill</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2247:_Weird_Hill&amp;diff=205645"/>
				<updated>2021-02-01T18:47:50Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.219.210: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(obligatory comment about how the explanation I made was my first) but seriously, first time actually doing something after a long time checking here for comics I didn't get. Hope it's good. [[Special:Contributions/108.162.216.222|108.162.216.222]] 06:55, 27 December 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
Maybe there should also be a comparison between this and https://xkcd.com/386/? [[User:Baldrickk|Baldrickk]] ([[User talk:Baldrickk|talk]]) 13:45, 27 December 2019 (UTC)&lt;br /&gt;
:I'm not sure a comparison is in order, but this could easily be a sequel to 386 [[Special:Contributions/172.69.68.147|172.69.68.147]] 16:34, 27 December 2019 (UTC) Sam&lt;br /&gt;
&lt;br /&gt;
As I have the mediator personality type (INFP) but I'm also something of a chaotic neutral, I can confirm that there are points where I've found a weird metaphoric hill to lie on... quite comfortably too. [[Special:Contributions/172.69.68.147|172.69.68.147]] 16:34, 27 December 2019 (UTC) Sam&lt;br /&gt;
&lt;br /&gt;
Is the expression &amp;quot;weird hill to die on&amp;quot; or &amp;quot;hill to die on&amp;quot; (as the link indicates)?   [[Special:Contributions/162.158.146.10|162.158.146.10]] 04:04, 2 January 2020 (UTC)loosenut&lt;br /&gt;
:I'm VERY sure the expression is &amp;quot;hill to die on&amp;quot;, I usually hear it as &amp;quot;Is this the hill you wanna die on?&amp;quot;. He's just describing this one as a weird choice. That link leads to an article simply titled &amp;quot;hill to die on&amp;quot;. [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 07:11, 5 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should it be mentioned that this comic is similar to [[438]] and [[14]]? [[Special:Contributions/108.162.219.210|108.162.219.210]] 18:47, 1 February 2021 (UTC)&lt;/div&gt;</summary>
		<author><name>108.162.219.210</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1537:_Types&amp;diff=95345</id>
		<title>1537: Types</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1537:_Types&amp;diff=95345"/>
				<updated>2015-06-12T12:48:37Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.219.210: added an intro&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1537&lt;br /&gt;
| date      = June 12, 2015&lt;br /&gt;
| title     = Types&lt;br /&gt;
| image     = types.png&lt;br /&gt;
| titletext = colors.rgb(&amp;quot;blue&amp;quot;) yields &amp;quot;#0000FF&amp;quot;. colors.rgb(&amp;quot;yellowish blue&amp;quot;) yields NaN. colors.sort() yields &amp;quot;rainbow&amp;quot;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Initial draft.}}&lt;br /&gt;
&lt;br /&gt;
This comic is a series of programming jokes about a ridiculous new programming language. Most regular porgramming languages distinguish a number of types, e.g. integers , strings, lists,... All of which have different behaviours. The operation &amp;quot;+&amp;quot; is conventionally defined over more than one of these types. Applied to two integers, it returns their addition, but applied to two strings it concatenates them:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;gt; 2 + 3&lt;br /&gt;
&lt;br /&gt;
5&lt;br /&gt;
&lt;br /&gt;
&amp;gt; &amp;quot;123&amp;quot; + &amp;quot;abc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;123abc&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
While these behaviours are standard, conventional, and intuitive, there is a huge amount of variation among programming languages when you apply an operation like &amp;quot;+&amp;quot; to different types. One logical approach is to always return an error in all cases of type mixing, but it is often practical to allow some case mixing, since it can hugely simplify an operation. Variation and lack of a clearly more intuitive behaviour leads some languages to have weird results when you mix types.&lt;br /&gt;
&lt;br /&gt;
# &amp;lt;code&amp;gt;2 + &amp;quot;2&amp;quot;&amp;lt;/code&amp;gt; uses the &amp;lt;code&amp;gt;+&amp;lt;/code&amp;gt; operator on a number and a string. In a normal language, this would result either the number &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt; (addition), or &amp;lt;code&amp;gt;&amp;quot;22&amp;quot;&amp;lt;/code&amp;gt; (string concatenation); however, the new language converts the string to an integer, adds them to produce &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt; and converts back to a string.&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;quot;2&amp;quot; + []&amp;lt;/code&amp;gt; adds a string to an array (a list), this time. This first inexplicably converts the string to a number again, and then it literally adds the number to the list by appending it (this would make sense if it was &amp;lt;code&amp;gt;[] + 2&amp;lt;/code&amp;gt;, but usually not the other way around). And then the result is converted to a string again.&lt;br /&gt;
# &amp;lt;code&amp;gt;(2/0)&amp;lt;/code&amp;gt; divides &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; by &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt; and quite reasonably results in &amp;lt;code&amp;gt;NaN&amp;lt;/code&amp;gt; (not a number).&lt;br /&gt;
# &amp;lt;code&amp;gt;(2/0)+2&amp;lt;/code&amp;gt; adds &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;NaN&amp;lt;/code&amp;gt;. &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; is &amp;quot;added&amp;quot; to the string &amp;lt;code&amp;gt;&amp;quot;NaN&amp;quot;&amp;lt;/code&amp;gt; (again, the number is converted to a string for apparently no reason), which produces &amp;lt;code&amp;gt;&amp;quot;NaP&amp;quot;&amp;lt;/code&amp;gt;, as if &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; was added to &amp;lt;code&amp;gt;&amp;quot;N&amp;quot;&amp;lt;/code&amp;gt; to produce &amp;lt;code&amp;gt;&amp;quot;P&amp;quot;&amp;lt;/code&amp;gt; (as per alphabetical order).&lt;br /&gt;
# &amp;lt;code&amp;gt;&amp;quot;&amp;quot;+&amp;quot;&amp;quot;&amp;lt;/code&amp;gt; looks like it is concatenating (adding) an empty string to another empty string, which should produce an empty string. However, the entire thing is treated as one string (with the start quote being the first one and the end quote being the very last one), which produces the egregious '&amp;lt;code&amp;gt;&amp;quot;+&amp;quot;&amp;lt;/code&amp;gt;'.&lt;br /&gt;
# &amp;lt;code&amp;gt;[1,2,3]+2&amp;lt;/code&amp;gt; seems to test whether it's sound to append &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to the list &amp;lt;code&amp;gt;[1,2,3]&amp;lt;/code&amp;gt;, and concludes that it doesn't fit the pattern, returning the boolean value &amp;lt;code&amp;gt;false&amp;lt;/code&amp;gt;. It could conceivably also be the result of an attempt to add &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to the ''set'' &amp;lt;code&amp;gt;[1,2,3]&amp;lt;/code&amp;gt;, which already contains that element (although &amp;lt;code&amp;gt;{1,2,3}&amp;lt;/code&amp;gt; would be a more common notation for sets).&lt;br /&gt;
# &amp;lt;code&amp;gt;[1,2,3]+4&amp;lt;/code&amp;gt; returns &amp;lt;code&amp;gt;true&amp;lt;/code&amp;gt; for much the same reason.&lt;br /&gt;
# &amp;lt;code&amp;gt;2/(2-(3/2+1/2))&amp;lt;/code&amp;gt; is a floating point joke. Floating point numbers are notoriously imprecise. With precise mathematics, &amp;lt;code&amp;gt;(3/2+1/2)&amp;lt;/code&amp;gt; would be exactly 2, hence the entire thing would evaluate to &amp;lt;code&amp;gt;2/0&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;NaN&amp;lt;/code&amp;gt; in Randall's new language. However, the result of &amp;lt;code&amp;gt;(3/2+1/2)&amp;lt;/code&amp;gt; is &amp;quot;just slightly off,&amp;quot; which makes the result &amp;quot;just slightly off&amp;quot; of &amp;lt;code&amp;gt;NaN&amp;lt;/code&amp;gt; (which would be ridiculous in a real language). The ironic thing is that fractions with 2 in the denominator are ''not'' the kind of numbers that typically suffer from floating point impreciseness.&lt;br /&gt;
# &amp;lt;code&amp;gt;range(&amp;quot; &amp;quot;)&amp;lt;/code&amp;gt; normally wouldn't make any sense. However, the new language appears to interpret it as ASCII, and in the ASCII table, character #32 is space, #33 is &amp;lt;code&amp;gt;!&amp;lt;/code&amp;gt;, and #34 is &amp;lt;code&amp;gt;&amp;quot;&amp;lt;/code&amp;gt;. So, instead of interpreting &amp;lt;code&amp;gt;&amp;quot; &amp;quot;&amp;lt;/code&amp;gt; as a string, it seems to be interpreted as &amp;lt;code&amp;gt;34, 32, 34&amp;lt;/code&amp;gt; (in ASCII), and then &amp;lt;code&amp;gt;range&amp;lt;/code&amp;gt; appears to transform this into &amp;lt;code&amp;gt;34, 33, 32, 33, 34&amp;lt;/code&amp;gt; (the &amp;quot;ranges&amp;quot; between the numbers), which, interpreted as ASCII, becomes &amp;lt;code&amp;gt;['&amp;quot;', '!', ' ', '!', '&amp;quot;']&amp;lt;/code&amp;gt;.&lt;br /&gt;
# &amp;lt;code&amp;gt;+2&amp;lt;/code&amp;gt; appears to be applying a unary &amp;lt;code&amp;gt;+&amp;lt;/code&amp;gt; to the number &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt;, which should just be &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt;. However, the code is adding  &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to the line number &amp;lt;code&amp;gt;10&amp;lt;/code&amp;gt; in this context.&lt;br /&gt;
# &amp;lt;code&amp;gt;2+2&amp;lt;/code&amp;gt; would normally be &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt;. However, the interpreter takes this instruction to mean to add the value 2 to the literal value of &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt;, making it &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt; and then reports that the work is &amp;quot;Done&amp;quot;.  This can be seen in the subsequent lines where all &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt;s are replaced by &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt;s.  This could be a reference to languages like Fortran where literals were able to be assigned new values.&lt;br /&gt;
# &amp;lt;code&amp;gt;range(1,5)&amp;lt;/code&amp;gt; would normally return &amp;lt;code&amp;gt;[1, 2, 3, 4, 5]&amp;lt;/code&amp;gt;. However, since the value of &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; has been changed to &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt;, it returns &amp;lt;code&amp;gt;[1, 4, 3, 4, 5]&amp;lt;/code&amp;gt;, and this even affects the line number (which is 14 instead of 12).&lt;br /&gt;
# &amp;lt;code&amp;gt;floor(10.5)&amp;lt;/code&amp;gt; should return &amp;lt;code&amp;gt;10&amp;lt;/code&amp;gt; (the &amp;quot;floor&amp;quot; of a decimal number is that number rounded down). However, it instead returns... a picture of the number on a &amp;quot;floor.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
My new language is great, but it has a few quirks regarding type:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 [1]&amp;gt; 2+&amp;quot;2&amp;quot;&lt;br /&gt;
   =&amp;gt; &amp;quot;4&amp;quot;&lt;br /&gt;
 [2]&amp;gt; &amp;quot;2&amp;quot;+[]&lt;br /&gt;
   =&amp;gt; &amp;quot;[2]&amp;quot;&lt;br /&gt;
 [3]&amp;gt; (2/0)&lt;br /&gt;
   =&amp;gt; NaN&lt;br /&gt;
 [4]&amp;gt; (2/0)+2&lt;br /&gt;
   =&amp;gt; NaP&lt;br /&gt;
 [5]&amp;gt; &amp;quot;&amp;quot;+&amp;quot;&amp;quot;&lt;br /&gt;
   =&amp;gt; '&amp;quot;+&amp;quot;'&lt;br /&gt;
 [6]&amp;gt; [1,2,3]+2&lt;br /&gt;
   =&amp;gt; FALSE&lt;br /&gt;
 [7]&amp;gt; [1,2,3]+4&lt;br /&gt;
   =&amp;gt; TRUE&lt;br /&gt;
 [8]&amp;gt; 2/(2-(3/2+1/2))&lt;br /&gt;
   =&amp;gt; NaN.0000000000000013&lt;br /&gt;
 [9]&amp;gt; range(&amp;quot; &amp;quot;)&lt;br /&gt;
   =&amp;gt; ('&amp;quot;','!',&amp;quot; &amp;quot;,&amp;quot;!&amp;quot;,'&amp;quot;')&lt;br /&gt;
[10]&amp;gt; +2&lt;br /&gt;
   =&amp;gt; 12&lt;br /&gt;
[11]&amp;gt; 2+2&lt;br /&gt;
   =&amp;gt; DONE&lt;br /&gt;
[14]&amp;gt; RANGE(1,5)&lt;br /&gt;
   =&amp;gt; (1,4,3,4,5)&lt;br /&gt;
[13]&amp;gt; FLOOR(10.5)&lt;br /&gt;
   =&amp;gt; |&lt;br /&gt;
   =&amp;gt; |&lt;br /&gt;
   =&amp;gt; |&lt;br /&gt;
   =&amp;gt; |&lt;br /&gt;
   =&amp;gt; |___10.5___&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>108.162.219.210</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1311:_2014&amp;diff=56591</id>
		<title>1311: 2014</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1311:_2014&amp;diff=56591"/>
				<updated>2014-01-03T23:51:22Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.219.210: /* Explanation */ making it more concise&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1311&lt;br /&gt;
| date      = January 1, 2014&lt;br /&gt;
| title     = 2014&lt;br /&gt;
| image     = 2014.png&lt;br /&gt;
| titletext = Some future reader, who may see the term, without knowing the history of it, may imagine that it had reference to some antiquated bridge of the immortal Poet, thrown across the silver Avon, to facilitate his escape after some marauding excursion in a neighbouring park; and in some Gentleman&amp;amp;#39;s Magazine of the next century, it is not impossible, but that future antiquaries may occupy page after page in discussing so interesting a matter. We think it right, therefore, to put it on record in the Oriental Herald that the &amp;amp;#39;Shakesperian Rope Bridges&amp;amp;#39; are of much less classic origin; that Mr Colin Shakespear, who, besides his dignity as Postmaster, now signs himself &amp;amp;#39;Superintendent General of Shakesperian Rope Bridges&amp;amp;#39;, is a person of much less genius than the Bard of Avon. --The Oriental Herald, 1825&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Needs information on how much has come true, also information in general. This is also the longest title text?|1311: 2014}}&lt;br /&gt;
The comic includes many predictions from the 1800s and early 1900s. Many of them are for the twenty-first century in general, and only three specifically mention 2014 (two of them as in &amp;quot;a century from now&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
*It's desirable '''every thing printed should be preserved,''' for we '''cannot now tell how useful it may become''' two centuries hence.&lt;br /&gt;
:A good idea. Now, with Google Books, this can be done in an easier manner.&lt;br /&gt;
&lt;br /&gt;
*I predict that a century hence the '''Canadian people''' will be '''the noblest specimens of humanity on the face of the earth''' (1863)&lt;br /&gt;
:Notably, there is a common joke nowadays that Canadians are always calm, mellow, polite peoples, even when insulting others.&lt;br /&gt;
The rest of the quote goes as follows: all that was good in the Celt, the Saxon, the Gaul and other races, combining to form neither English, Irish, nor Welsh, but Canadians, who would take their place among the churches of Christendom and the nations of the earth.&lt;br /&gt;
:This religious prediction probably wasn't believed even by its author. It's only a harangue.&lt;br /&gt;
&lt;br /&gt;
*In the twenty-first century '''mankind will subsist entirely upon jellies.'''&lt;br /&gt;
:Concentrates, which are gelatine like, form a large part of our food sources. &lt;br /&gt;
:Absurd if taken literally, but if he's talking about processed foods in general then he's not too far from the mark.&lt;br /&gt;
&lt;br /&gt;
*The twenty-first century baby is destined to be rocked and cradled by electricity, warmed and coddled by electricity, perhaps fathered and mothered by electricity. '''Probably the only thing he will be left to do unaided will be to make love.'''&lt;br /&gt;
:Probably an exaggeration even in its time&lt;br /&gt;
:But still valid to some degree, as many electronics are used in rearing children today. From incubators, warming blankets, walkie-talkies, etc to the TV.&lt;br /&gt;
:On the same coin, however, these are merely tools of assistance; the process of child-''rearing'' is still a human task by and large.&lt;br /&gt;
:Of course, with Viagra, Cialis, vibrators, and other kinkier toys, we don't even have to make love unaided.&lt;br /&gt;
&lt;br /&gt;
*To-day, in the city of New York, sixty-six different tongues are spoken. '''A century hence, there will probably be only one.''' (1907)&lt;br /&gt;
:False, but getting pretty close. The predominant language is of course English, and possibly one or two other prominent languages.&lt;br /&gt;
&lt;br /&gt;
*I often think '''what interesting history we are making for the student of the twenty-first century.''' (William Carey Jones, 1908)&lt;br /&gt;
:Referring to {{w|World War I}}. In 1908, {{w|Bosnian crisis|Austria-Hungary annexed Bosnia and Herzegovina}}. This led to the {{w|Assassination_of_Archduke_Franz_Ferdinand_of_Austria|Sarajevo Assassination of Archduke Franz Ferdinand of Austria}} in 1914 that is considered the starting event of the World War.&lt;br /&gt;
&lt;br /&gt;
*China may be a '''great shoe market''' a decade or a century from now (1914)&lt;br /&gt;
:While it is true in 2013/14, the context behind it was false, as the premise originally was that the business in the western world could export shoes to China, when currently, most of the shoes are actually manufactured in China itself and exported to western world.&lt;br /&gt;
Ironically though, the profits from the shoe selling go to overseas companies.&lt;br /&gt;
&lt;br /&gt;
*'''We cannot settle the problem,''' and I venture the prophecy that perhaps '''a century from now this same question may be brought before some future society and discussed very much as it is tonight.''' (1914, on abortion)&lt;br /&gt;
:True - it is still heavily debated.&lt;br /&gt;
&lt;br /&gt;
*By the twenty-first century I believe '''we shall all be telepaths.'''&lt;br /&gt;
:Absurd if taken literally... However if we disregard the actual meaning of ''telepath'' there is another point of view:&lt;br /&gt;
:Came true, in a way. Mobile phones allow near-instant communication over voice, text or even the internet. While we do not technically communicate through thought directly, in some way this technology can be considered telepathy.&lt;br /&gt;
&lt;br /&gt;
More context for this prediction:&lt;br /&gt;
:‘And it’s my firm belief,’ said Gumbril Senior, adding notes to his epic, ‘that they [the birds] make use of some sort of telepathy, some kind of direct mind-to-mind communication between themselves.  You can’t watch them without coming to that conclusion.’&lt;br /&gt;
:‘A charming conclusion,’ said Mrs Viveash.&lt;br /&gt;
:‘It’s a faculty,’ Gumbril Senior went on, ‘we all possess, I believe.  All we animals.’  [...] ‘Why don’t we use it more? You may well ask.  For the simple reason, my dear young lady, that half our existence is spent dealing with things that have no mind – things with which it is impossible to hold telepathetic communication.  Hence the development of the five senses.  I have eyes that preserve me from running into the lamppost, ears that warn me I’m in the neighbourhood of Niagara.  And having made these instruments very efficient, I use them in holding converse with other beings having a mind.  I let my telepathetic faculty lie idle, preferring to employ an elaborate and cumbrous arrangement of symbols in order to make my thought known to you through your senses.  In certain individuals, however, the faculty is naturally so well-developed – like the musical, or the mathematical, or the chess-playing faculties in other people – that they cannot help entering into direct communication with other minds&lt;br /&gt;
&lt;br /&gt;
*The physician of the twenty-first century… may even criticize the language of the times, and may find that '''some of our words have become as offensive to him as the term “lunatic” has become offensive to us.'''&lt;br /&gt;
:Just look at the word &amp;quot;gay&amp;quot;; in his time it's completely harmless, even a positive word, while today it's a moderate slur.&lt;br /&gt;
:And indeed, the word &amp;quot;lunatic&amp;quot; isn't considered offensive anymore, but merely derogatory.&lt;br /&gt;
:He correctly predicts the trajectory of terms like &amp;quot;{{w|mentally retarded}}&amp;quot;, itself adopted by his day to replace earlier terms for the intellectually disabled, such as &amp;quot;moron&amp;quot; and &amp;quot;imbecile&amp;quot;, which had become pejorative. Soon enough the word &amp;quot;retard&amp;quot; joined them in that regard, and it now has largely been abandoned as a medical term.&lt;br /&gt;
&lt;br /&gt;
*Historians of the twenty-first century will look back with well-placed scorn on the '''shallow-minded days''' of the early twentieth century '''when football games and petting parties were considered the most important elements of a college education.'''&lt;br /&gt;
:While media still encourages such images, colleges start to be much more career oriented.  Also, due to incidents involving sex-themed frosh weeks, there was actually a greater emphasis to condemn sexual activities among college students&lt;br /&gt;
&lt;br /&gt;
*'''In the year A.D. 2014''' journalists will be writing on the centenary of the great war - '''that is, if there has not been a greater war.'''&lt;br /&gt;
:2014 marks 100 years since the beginning of {{w|World War I}} (popularly called &amp;quot;The Great War&amp;quot; at the time), thus journalists will definitely write articles of this war. More than 9&amp;amp;nbsp;million combatants were killed.  However, unfortunately, there was a greater war, {{w|World War II}}, which killed around 25 million soldiers and an even greater number of civilians.&lt;br /&gt;
&lt;br /&gt;
The title text refers to a certain British officer, Mr. Colin Shakespeare, who experimented and promoted the use of rope suspension bridges in India, apparently for the ease of colonization and military operations.[http://books.google.com/books?id=aZRPAAAAYAAJ&amp;amp;pg=PA367] The reference to &amp;quot;River Avon&amp;quot; is about the river of Avon in Warwickshire, Stratford upon Avon being the town where Shakespeare (the playwright) was born and where he lived until his early twenties.{{w|River Avon (Warwickshire)}}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:'''Notes from the past'''&lt;br /&gt;
:It's desirable '''every thing printed should be preserved,''' for we '''cannot now tell how useful it may become''' two centuries hence.&lt;br /&gt;
::Christopher Baldwin&lt;br /&gt;
:::1834&lt;br /&gt;
&lt;br /&gt;
:I predict that a century hence the '''Canadian people''' will be '''the noblest specimens of humanity on the face of the earth'''&lt;br /&gt;
::Rev. John Bredin&lt;br /&gt;
:::1863&lt;br /&gt;
&lt;br /&gt;
:In the twenty-first century '''mankind will subsist entirely upon jellies.'''&lt;br /&gt;
::''The Booklover''&lt;br /&gt;
:::1903&lt;br /&gt;
&lt;br /&gt;
:The twenty-first century baby is destined to be rocked and cradled by electricity, warmed and coddled by electricity, perhaps fathered and mothered by electricity. '''Probably the only thing he will be left to do unaided will be to make love.'''&lt;br /&gt;
::Mrs. John Lane, ''The fortnightly''&lt;br /&gt;
:::1905&lt;br /&gt;
&lt;br /&gt;
:To-day, in the city of New York, sixty-six different tongues are spoken. '''A century hence, there will probably be only one.'''&lt;br /&gt;
::''The American Historical Magazine''&lt;br /&gt;
:::1907&lt;br /&gt;
&lt;br /&gt;
:I often think '''what interesting history we are making for the student of the twenty-first century.'''&lt;br /&gt;
::Willian Carey Jones&lt;br /&gt;
:::1908&lt;br /&gt;
&lt;br /&gt;
:China may be a '''great shoe market''' a decade or a century from now.&lt;br /&gt;
::''Boot and Shoe Recorder''&lt;br /&gt;
:::1914&lt;br /&gt;
&lt;br /&gt;
:'''We cannot settle the problem,''' and I venture the prophecy that perhaps '''a century from now this same question may be brought before some future society and discussed very much as it is tonight.'''&lt;br /&gt;
::Dr. Barton C. Hirst on the subject of '''abortion'''&lt;br /&gt;
:::1914&lt;br /&gt;
&lt;br /&gt;
:By the twenty-first century I believe '''we shall all be telepaths.'''&lt;br /&gt;
::Gumbriel, character in ''Antic Hay''&lt;br /&gt;
:::1923&lt;br /&gt;
&lt;br /&gt;
:The physician of the twenty-first century… may even criticize the language of the times, and may find that '''some of our words have become as offensive to him as the term “lunatic” has become offensive to us.'''&lt;br /&gt;
::Dr. C. Macae Campbell&lt;br /&gt;
:::1924&lt;br /&gt;
&lt;br /&gt;
:Historians of the twenty-first century will look back with well-placed scorn on the '''shallow-minded days''' of the early twentieth century '''when football games and petting parties were considered the most important elements of a college education.'''&lt;br /&gt;
::Mary Eileen Ahern, ''Library Bureau''&lt;br /&gt;
:::1926&lt;br /&gt;
&lt;br /&gt;
:'''In the year A.D. 2014''' journalists will be writing on the centenary of the great war - '''that is, if there has not been a greater war.'''&lt;br /&gt;
::F.J.M, ''The Journalist''&lt;br /&gt;
:::1934&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Politics]]&lt;/div&gt;</summary>
		<author><name>108.162.219.210</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1311:_2014&amp;diff=56428</id>
		<title>1311: 2014</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1311:_2014&amp;diff=56428"/>
				<updated>2014-01-02T18:16:23Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.219.210: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1311&lt;br /&gt;
| date      = January 1, 2014&lt;br /&gt;
| title     = 2014&lt;br /&gt;
| image     = 2014.png&lt;br /&gt;
| titletext = Some future reader, who may see the term, without knowing the history of it, may imagine that it had reference to some antiquated bridge of the immortal Poet, thrown across the silver Avon, to facilitate his escape after some marauding excursion in a neighbouring park; and in some Gentleman&amp;amp;#39;s Magazine of the next century, it is not impossible, but that future antiquaries may occupy page after page in discussing so interesting a matter. We think it right, therefore, to put it on record in the Oriental Herald that the &amp;amp;#39;Shakesperian Rope Bridges&amp;amp;#39; are of much less classic origin; that Mr Colin Shakespear, who, besides his dignity as Postmaster, now signs himself &amp;amp;#39;Superintendent General of Shakesperian Rope Bridges&amp;amp;#39;, is a person of much less genius than the Bard of Avon. --The Oriental Herald, 1825&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Needs information on how much has come true, also information in general. Needs transcript, also is this the longest title text?|1311: 2014}}&lt;br /&gt;
The comic includes many predictions from the 1800s and early 1900s. Many of them are for the twenty-first century in general, and only three specifically mention 2014 (two of them as in &amp;quot;a century from now&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
*It's desirable '''every thing printed should be preserved,''' for we '''cannot now tell how useful it may become''' two centuries hence.&lt;br /&gt;
:A good idea. Now, with Google Books, this can be done in an easier manner.&lt;br /&gt;
&lt;br /&gt;
*I predict that a century hence the '''Canadian people''' will be '''the noblest specimens of humanity on the face of the earth''' (1863)&lt;br /&gt;
:Notably, there is a common joke nowadays that Canadians are always calm, mellow, polite peoples, even when insulting others.&lt;br /&gt;
The rest of the quote goes as follows: all that was good in the Celt, the Saxon, the Gaul and other races, combining to form neither English, Irish, nor Welsh, but Canadians, who would take their place among the churches of Christendom and the nations of the earth.&lt;br /&gt;
:This religious prediction probably wasn't believed even by its author. It's only a harangue.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*In the twenty-first century '''mankind will subsist entirely upon jellies.'''&lt;br /&gt;
:Concentrates, which is gelatine like, form a large part of our food sources. &lt;br /&gt;
:Absurd&lt;br /&gt;
&lt;br /&gt;
*The twenty-first century baby is destined to be rocked and cradled by electricity, warmed and coddled by electricity, perhaps fathered and mothered by electricity. '''Probably the only thing he will be left to do unaided will be to make love.'''&lt;br /&gt;
:Probably an exaggeration even in its time&lt;br /&gt;
:But, still valid, as many electronics are used in rearing children today. From incubators, warming blankets, walkie-talkies, etc to the tv.&lt;br /&gt;
&lt;br /&gt;
*To-day, in the city of New York, sixty-six different tongues are spoken. '''A century hence, there will probably be only one.''' (1907)&lt;br /&gt;
:False, though the predominant language is still English, and possibly one or two other prominent languages.&lt;br /&gt;
&lt;br /&gt;
*I often think '''what interesting history we are making for the student of the twenty-first century.''' (William Carey Jones, 1908)&lt;br /&gt;
:''Pending''&lt;br /&gt;
:It's just meta.&lt;br /&gt;
&lt;br /&gt;
*China may be a '''great shoe market''' a decade or a century from now (1914)&lt;br /&gt;
:While it is true in 2013/14, the context behind it was false, as the premise originally was that the business in the western world could export shoes to China, when currently, most of the shoes are actually manufactured in China itself and exported to western world.&lt;br /&gt;
Ironically though, the profits from the shoe selling go to overseas companies.&lt;br /&gt;
&lt;br /&gt;
*'''We cannot settle the problem,''' and I venture the prophecy that perhaps '''a century from now this same question may be brought before some future society and discussed very much as it is tonight.''' (1914, on abortion)&lt;br /&gt;
:True - it is still heavily debated.&lt;br /&gt;
&lt;br /&gt;
*By the twenty-first century I believe '''we shall all be telepaths.'''&lt;br /&gt;
:Absurd, however if we disregard the actual meaning of ''telepath'' there is another point of view.&lt;br /&gt;
:Came true, in a way. Mobile phones allow near-instant communication over voice, text or even the internet. While we do not technically communicate through thought directly, in some way this technology can be considered telepathy.&lt;br /&gt;
&lt;br /&gt;
More context for this prediction:&lt;br /&gt;
:‘And it’s my firm belief,’ said Gumbril Senior, adding notes to his epic, ‘that they [the birds] make use of some sort of telepathy, some kind of direct mind-to-mind communication between themselves.  You can’t watch them without coming to that conclusion.’&lt;br /&gt;
:‘A charming conclusion,’ said Mrs Viveash.&lt;br /&gt;
:‘It’s a faculty,’ Gumbril Senior went on, ‘we all possess, I believe.  All we animals.’  [...] ‘Why don’t we use it more? You may well ask.  For the simple reason, my dear young lady, that half our existence is spent dealing with things that have no mind – things with which it is impossible to hold telepathetic communication.  Hence the development of the five senses.  I have eyes that preserve me from running into the lamppost, ears that warn me I’m in the neighbourhood of Niagara.  And having made these instruments very efficient, I use them in holding converse with other beings having a mind.  I let my telepathetic faculty lie idle, preferring to employ an elaborate and cumbrous arrangement of symbols in order to make my thought known to you through your senses.  In certain individuals, however, the faculty is naturally so well-developed – like the musical, or the mathematical, or the chess-playing faculties in other people – that they cannot help entering into direct communication with other minds&lt;br /&gt;
&lt;br /&gt;
*The physician of the twenty-first century… may even criticize the language of the times, and may find that '''some of our words have become as offensive to him as the term “lunatic” has become offensive to us.'''&lt;br /&gt;
:True&lt;br /&gt;
&lt;br /&gt;
*Historians of the twenty-first century will look back with well-placed scorn on the '''shallow-minded days''' of the early twentieth century '''when football games and petting parties were considered the most important elements of a college education.'''&lt;br /&gt;
:While media still encourages such images, colleges start to be much more career oriented.  Also, due to incidents involving sex-themed frosh weeks, there was actually a greater emphasize to condemn sexual activities among college students&lt;br /&gt;
&lt;br /&gt;
*'''In the year A.D. 2014''' journalists will be writing on the centenary of the great war - '''that is, if there has not been a greater war.'''&lt;br /&gt;
:The year is too early to tell, and thus they will definitely be writing articles of World War I.  However, outside on the centenary, WWI is greatly overshadowed by World War II as well as many current wars&lt;br /&gt;
&lt;br /&gt;
The title text refers to a certain British officer, Mr. Shakespeare, who experimented and promoted the use of rope suspension bridges in India, apparently for the ease of colonization and military operations. &lt;br /&gt;
http://books.google.com/books?id=aZRPAAAAYAAJ&amp;amp;pg=PA367&lt;br /&gt;
The reference to &amp;quot;River Avon&amp;quot; is about the river of Avon in Warwickshire, Stratford upon Avon being the town where Shakespeare (the playwright) was born and where he lived until his early twenties.&lt;br /&gt;
https://en.wikipedia.org/wiki/River_Avon_(Warwickshire)&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:'''Notes from the past'''&lt;br /&gt;
:It's desirable '''every thing printed should be preserved,''' for we '''cannot now tell how useful it may become''' two centuries hence.&lt;br /&gt;
::Christopher Baldwin&lt;br /&gt;
:::1834&lt;br /&gt;
&lt;br /&gt;
:I predict that a century hence the '''Canadian people''' will be '''the noblest specimens of humanity on the face of the earth'''&lt;br /&gt;
::Rev. John Bredin&lt;br /&gt;
:::1863&lt;br /&gt;
&lt;br /&gt;
:In the twenty-first century '''mankind will subsist entirely upon jellies.'''&lt;br /&gt;
::''The Booklover''&lt;br /&gt;
:::1903&lt;br /&gt;
&lt;br /&gt;
:The twenty-first century baby is destined to be rocked and cradled by electricity, warmed and coddled by electricity, perhaps fathered and mothered by electricity. '''Probably the only thing he will be left to do unaided will be to make love.'''&lt;br /&gt;
::Mrs. John Lane, ''The fortnightly''&lt;br /&gt;
:::1905&lt;br /&gt;
&lt;br /&gt;
:To-day, in the city of New York, sixty-six different tongues are spoken. '''A century hence, there will probably be only one.'''&lt;br /&gt;
::''The American Historical Magazine''&lt;br /&gt;
:::1907&lt;br /&gt;
&lt;br /&gt;
:I often think '''what interesting history we are making for the student of the twenty-first century.'''&lt;br /&gt;
::Willian Carey Jones&lt;br /&gt;
:::1908&lt;br /&gt;
&lt;br /&gt;
:China may be a '''great shoe market''' a decade or a century from now.&lt;br /&gt;
::''Boot and Shoe Recorder''&lt;br /&gt;
:::1914&lt;br /&gt;
&lt;br /&gt;
:'''We cannot settle the problem,''' and I venture the prophecy that perhaps '''a century from now this same question may be brought before some future society and discussed very much as it is tonight.'''&lt;br /&gt;
::Dr. Barton C. Hirst on the subject of '''abortion'''&lt;br /&gt;
:::1914&lt;br /&gt;
&lt;br /&gt;
:By the twenty-first century I believe '''we shall all be telepaths.'''&lt;br /&gt;
::Gumbriel, character in ''Antic Hay''&lt;br /&gt;
:::1923&lt;br /&gt;
&lt;br /&gt;
:The physician of the twenty-first century… may even criticize the language of the times, and may find that '''some of our words have become as offensive to him as the term “lunatic” has become offensive to us.'''&lt;br /&gt;
::Dr. C. Macae Campbell&lt;br /&gt;
:::1924&lt;br /&gt;
&lt;br /&gt;
:Historians of the twenty-first century will look back with well-placed scorn on the '''shallow-minded days''' of the early twentieth century '''when football games and petting parties were considered the most important elements of a college education.'''&lt;br /&gt;
::Mary Eileen Ahern, ''Library Bureau''&lt;br /&gt;
:::1926&lt;br /&gt;
&lt;br /&gt;
:'''In the year A.D. 2014''' journalists will be writing on the centenary of the great war - '''that is, if there has not been a greater war.'''&lt;br /&gt;
::F.J.M, ''The Journalist''&lt;br /&gt;
:::1934&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Politics]]&lt;/div&gt;</summary>
		<author><name>108.162.219.210</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1285:_Third_Way&amp;diff=51742</id>
		<title>Talk:1285: Third Way</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1285:_Third_Way&amp;diff=51742"/>
				<updated>2013-11-04T12:45:05Z</updated>
		
		<summary type="html">&lt;p&gt;108.162.219.210: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;One line per sentence is reminiscent of a diagrammed/formal logic argument in philosophy. It would be a much more effective convention to help people parse and interpret content and validity of e.g. political claims. [[Special:Contributions/173.245.63.198|173.245.63.198]] 17:21, 2 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
ONE SPACE AFTER A PERIOD. '''[[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;]] 04:38, 1 November 2013 (UTC)&lt;br /&gt;
:MY VOTE TOO!!! --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:36, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Writing plaintext, I always do two spaces after a sentence ending period.&lt;br /&gt;
This is probably because I did in fact start typing on a real typewriter.&lt;br /&gt;
In an environment where automatic formatting will take place, like a web page or wiki text, I use the newline.&lt;br /&gt;
I have had people in this wiki collapse my multiple line forms to one of the others.&lt;br /&gt;
(I was disappointed.)&lt;br /&gt;
--[[User:Divad27182|Divad27182]] ([[User talk:Divad27182|talk]]) 04:48, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I prefer double spacing, but I used single spacing in writing the explanation, just to make people happy.  Perhaps I should have used new lines. [[User:Concomitant|Concomitant]] ([[User talk:Concomitant|talk]]) 05:10, 1 November 2013 (UTC)&lt;br /&gt;
: I'm a double-spacer too.  Am I wrong?  I can't break myself of the habit, I even do it in tweets! --[[User:Jeff|&amp;lt;b&amp;gt;&amp;lt;font color=&amp;quot;orange&amp;quot;&amp;gt;Jeff&amp;lt;/font&amp;gt;&amp;lt;/b&amp;gt;]] ([[User talk:Jeff|talk]]) 16:43, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
The 'third way' is a little underappreciated here: it divides the text into self contained logical units, and makes text processing tools (grep, diff etc.) much more usable.&lt;br /&gt;
Proper text rendering engines (TeX, HTML, etc.) already make this assumption and group sentences accordingly.&lt;br /&gt;
If only I realized this earlier, it would have made my thesis revisions much more easier.&lt;br /&gt;
In fact, up to this moment, I thought I was that lone guy in the comic.&lt;br /&gt;
EDIT: this comment in xkcd forums makes my point clear: http://forums.xkcd.com/viewtopic.php?f=7&amp;amp;t=106217#p3489055&lt;br /&gt;
--[[Special:Contributions/141.101.96.11|141.101.96.11]] 05:42, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:As a programmer, I find nothing weird in adapting your style to language. Writing two spaces in HTML or TeX is useless, as they won't render as two spaces anyway. (While using for this purpose nonbreakable spaces, which would render, is a crime.) -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 10:48, 1 November 2013 (UTC)&lt;br /&gt;
::It would also render incorrectly if the period was close to the end of a line. If the markup is [last word of sentence][period][nbsp][space][next sentence], the last word of the first sentence could end up on the next line unnecessarily. But if it's [last word of sentence][period][space][nbsp][next sentence], the next line of text would start with a space, which is much worse.--[[User:Rael|Rael]] ([[User talk:Rael|talk]]) 15:16, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I end my sentences with a line break, a % and another linebreak. Only after commata etc i use a single line break. Oh, and don't forget to protect the space after points used in abbreviations, not as full stops, by a backslash. Most TeX increase the length of the space after a full stop a bit. Bit question: Why don't double space people, when using Word not just use a longer space instead of a double space. Noone would have the idea to indent a paragraph or substitute a tab with a series of spaces.[[Special:Contributions/108.162.242.117|108.162.242.117]] 03:11, 2 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I always just find and replace double space with single space. If formatting suffers, someone did a bad job.[[Special:Contributions/108.162.231.228|108.162.231.228]] 06:33, 1 November 2013 (UTC) Synthetica&lt;br /&gt;
&lt;br /&gt;
So, why did double spacing after a period ever exist? It doesn't seem necessary. [[User:PheagleAdler|PheagleAdler]] ([[User talk:PheagleAdler|talk]]) 07:31, 1 November 2013 (UTC)&lt;br /&gt;
:Here's the standard explanation: on typewriters, each character takes up the same amount of space. So a lower-case &amp;quot;i&amp;quot; takes up the same amount of space as a capital &amp;quot;M&amp;quot;. This is called a monospace font. When typing, if you just put a single space after the end of period ending a sentence, the reader doesn't necessarily get the sense that a new sentence has started. This is particularly true if you were typing in all caps, as might be common on some types of forms or documents. Two spaces, however, does the job nicely. In theory, with modern proportional-width fonts, this is unnecessary. [[User:Rylon|Rylon]] ([[User talk:Rylon|talk]]) 23:36, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
even though i learned typing on a typewriter, to this day i had never heard of the double space thing. maybe it's a US only thing, like the stupid french with spaces BEFORE punctuation marks. [[User:Peter|Peter]] ([[User talk:Peter|talk]]) 07:54, 1 November 2013 (UTC)&lt;br /&gt;
:I've always taken the double-space thing as a US thing. Some editors like emacs default to it, which is really annoying. That said, as a frenchman, the &amp;quot;space before punctuation&amp;quot; is normal to me and it is part of the ''codified'' typography -- and I think this is actually an important distinction to make. Is this double-space vs single-space something codified somehow? As a last word, I need to be nitpicky: the exact French typography rule is &amp;quot;a space before punctuation made of two parts (namely colon, semi-colon, exclamation/question mark) and no space before punctuation made of a single part (dots, commas.)&amp;quot; It's a very deterministic rule that is easy to apply (whether one agrees to it or not.) [[User:Ralfoide|Ralfoide]] ([[User talk:Ralfoide|talk]]) 16:40, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
As a german typographer I have to say I’m ''shocked''! ''Two'' spaces per period? A space ''before'' punctuation?! My scientific opinion: you all are completely crazy ;-) (Just kidding, but seriously, two spaces? In Germany, the first possibility to do that safely is your last will …) [[User:Quoti|Quoti]] ([[User talk:Quoti|talk]]) 10:34, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
The doubled spaces appear in my browser's tooltips. (Maybe someone should add some non breaking spaces to the quotation of the tooltip text?) --[[Special:Contributions/141.101.98.236|141.101.98.236]] 10:45, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
As a(n automatic) two-spacer person (just you watch, I'll use 'em here, despite it obviously not being rendered), it's just what I learnt, back in the '70s, here in the UK.  I've no idea ''why'' I learnt it.  However, it may stem from the same root as the 'rule' in handwriting (not biros, but nibbed pens dipped in ink... wow, I feel old, but it ''was'' at primary school) that we use a gap as big as our our (very little) little-fingers to separate sentences.  I imagine differentiating full-stops (US: periods) from commas in the messy medium of ink might be a valuable visual indicator as to what a given smudge might ''actually'' be.  So, anyway, double-spacing.  On the other hand I should report that, &amp;quot;I've dropped the habit it of appropriate punctuation prior to quotes,&amp;quot; I say, &amp;quot;despite being the way I learnt it.&amp;quot;  And instead I will drop &amp;quot;&amp;lt;- Commas from that sort of position,&amp;quot; you see, &amp;quot;even through I'll keep the ones that are semantic pauses.&amp;quot;  You see how my standards are slipping? Anyway, good comic.  We now return you to your regularly-scheduled programme. &amp;lt;!-- (Oh look at me and my predecessor's IPs. We're ''not'' the same person, but I imagine they're using the same ISP as me.) --&amp;gt; [[Special:Contributions/141.101.98.214|141.101.98.214]] 14:44, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'm in the same boat this this bloke.  I don't get the typewriter tie in.  I seem to recall being taught to use a finger gage correct gap of whitespace to leave between the end of one sentence and the beginning of the next.  This was in an American small town southern school in the early 1980s.  I assume it was for readability. [[Special:Contributions/108.162.236.25|108.162.236.25]] 16:16, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;third way&amp;quot; is used for articles on the [http://www.bbc.co.uk/news BBC News] website :-) --[[Special:Contributions/141.101.99.233|141.101.99.233]] 14:52, 1 November 2013 (UTC)&lt;br /&gt;
:Actually, they put each sentence into a paragraph of its own, which is yet different. (In HTML: &amp;lt;code&amp;gt;&amp;amp;lt;p&amp;gt;... .&amp;amp;lt;/p&amp;gt;&amp;lt;/code&amp;gt; vs. &amp;lt;code&amp;gt;... .&amp;amp;lt;br /&amp;gt;&amp;lt;/code&amp;gt;) --[[User:Das-g|Das-g]] ([[User talk:Das-g|talk]]) 16:07, 1 November 2013 (UTC)&lt;br /&gt;
:That's what I came here to say, that the Third Way is common-place on the web today, it is the tabloid style. This headline article http://www.bbc.co.uk/news/uk-24775846 off the BBC right now only has full-stops (periods in en-US) before paragraph breaks, apart from quotations (ie what the BBC did not write). [[Special:Contributions/141.101.98.229|141.101.98.229]] 16:11, 1 November 2013 (UTC)&lt;br /&gt;
:The BBC is not the only web site to do that - and it is '''so''' annoying. [[Special:Contributions/108.162.222.244|108.162.222.244]] 10:15, 2 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
There's a FOURTH way!  I receive a &amp;quot;Weekly Update from Senator Tim Scott&amp;quot; HTML formatted email about once a week (unsurprisingly) which, in lieu of spaces between words, uses a carriage return and a linefeed.  This alleviates the question of how many spaces between sentences completely!  It also renders as oneverylongword in my email client. Ie: &amp;lt;blockquote&amp;gt;Thankyouforsubscribingtomye-newsletter.&amp;lt;/blockquote&amp;gt; [[Special:Contributions/108.162.236.25|108.162.236.25]] 16:16, 1 November 2013 (UTC)&lt;br /&gt;
: And a fifth: In France, they use one whitespace before and after double punctions (:;?!) but only one whitespace after single punctuation (.,). --[[Special:Contributions/141.101.79.25|141.101.79.25]] 20:15, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think the finger space was to help kids create clear separation while developing their proficiency at penmanship.&lt;br /&gt;
I think the 2x space is a fall out from the fixed width formatting of typewriters to help assist the reader (or proof reader) with the start and end of a sentence.&lt;br /&gt;
Double spacing has almost become OCD for me.  I can't help it.  Of course I also leave paragraph marks on while I type as well.  I wonder if the French would require a space before a double quote, &amp;quot;The author ponders. &amp;quot;&lt;br /&gt;
&lt;br /&gt;
I think we could improve old school cryptography if we just used carriage returns and ignored the 'new' line.&lt;br /&gt;
I might be able to accept and adopt the single space rule if I can make my spaces default to twice the point size of every other character in the style.&lt;br /&gt;
[[Special:Contributions/199.27.128.186|199.27.128.186]] 19:00, 1 November 2013 (UTC)&lt;br /&gt;
:FOROL DSCHO OLCRY PTOGR APHYT AKEYO URCUE FROME NIGMA DECOD ESAND ARRAN GEEVE RYTHI NGING ROUPS OFFIV EWITH OUT''AN Y''PUNC TUAT  IONAN DINAL LCAPS &amp;lt;!-- For 'old-school cryptography', take your cue from Enigma decodes and arrange everything in groups of five, without /any/ punctuation and in ALL-CAPS ;) --&amp;gt; [[Special:Contributions/141.101.98.214|141.101.98.214]] 01:38, 2 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have my word processor set to a a gap equal to one and a half spaces after a sentence ends[[Special:Contributions/173.245.52.198|173.245.52.198]] 19:05, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
New paragraph (TWO line brakes) after every sentence :-) --[[User:Sten|Sten]] ([[User talk:Sten|talk]]) 20:36, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
I love how the explanation uses the third method.  Nice touch.  [[User:JRDeBo|JRDeBo]] ([[User talk:JRDeBo|talk]]) 23:29, 1 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Does anyone think there's any significance to the sword and the spear? [[Special:Contributions/108.162.208.144|108.162.208.144]] 23:46, 2 November 2013 (UTC)&lt;br /&gt;
:Yes, because this is a SERIOUS ISSUE. [[User:Alpha|Alpha]] ([[User talk:Alpha|talk]]) 06:35, 4 November 2013 (UTC)&lt;br /&gt;
:A sword has a longer blade, while a spear keeps people further away.  [[Special:Contributions/108.162.219.210|108.162.219.210]] 12:45, 4 November 2013 (UTC)&lt;/div&gt;</summary>
		<author><name>108.162.219.210</name></author>	</entry>

	</feed>