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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:ConscriptGlossary&amp;diff=358290</id>
		<title>User talk:ConscriptGlossary</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:ConscriptGlossary&amp;diff=358290"/>
				<updated>2024-11-30T09:15:27Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Befunge */ I got it totally wrong&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Suggestions been made to block C___G___ accounts! ==&lt;br /&gt;
Hi. I'm an admin here and there has been a request to [[User_talk:Kynde#Blocking_ColorfulGalaxy|block ColorfulGalaxy]] and other accounts that are of the form C___G___ like yours, because you all seem to interact and maybe use each others accounts or being one guy with multiple accounts. Specifically [https://www.explainxkcd.com/wiki/index.php?title=User:ColorfulGalaxy&amp;amp;oldid=320641 the dead links] on [[User:ColorfulGalaxy|ColorfulGalaxys]] page (that has at the moment been removed, hence link to old version) was an offence point. Seems you have ben trying to use this wiki for a project called neology, which does not belong here. Please stop what ever you are doing, and remove any thing related to this or I will be forced to ban all of these accounts. If you stop and begin editing only relevant stuff I will not ban you! Best regads --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:01, 29 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
The neography project has already been moved. It's been moved several times in fact. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 12:07, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Li Jiayi ==&lt;br /&gt;
&lt;br /&gt;
You added a trivia section in [[461: Google Maps]] about Li Jiayi. I’ve never heard of this person, could you please drop a link to wherever you found this so that I can add the Chinese characters? I have Chinese keyboards on my device. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:09, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please create this related page.&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+:,2+3*:,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please help me. I was IP-banned there and couldn't create accounts. I need help! [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:12, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Barnstar ==&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border: 1px solid {{{border|gray}}}; background-color: {{{color|#fdffe7}}};&amp;quot;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;vertical-align:middle;&amp;quot; | {{{{{|safesubst:}}}#ifeq:{{{2}}}|alt|[[File:Barnstar of Reversion Hires.png|100px]]|[[File:Barnstar_of_Reversion2.png|100px]]}}&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|style=&amp;quot;font-size: x-large; padding: 0; vertical-align: middle; height: 1.1em;&amp;quot; | '''The Anti-Vandalism Barnstar'''&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;vertical-align: middle; border-top: 1px solid gray;&amp;quot; | &amp;lt;div style=&amp;quot;font-family: Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;font-size:15pt;color:black&amp;quot;&amp;gt; For your help in reverting vandalism on my talk pages, [[User:ConscriptGlossary|ConscriptGlossary]], I hereby award thee a Barnstar. Feel free to display it on your user page. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:15pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:12pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 21:14, 24 October 2024 (UTC) &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Usage of {{template|incomplete}} ==&lt;br /&gt;
&lt;br /&gt;
You've been inserting &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{incomplete|...}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; in the rough manner of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, probably assuming it gives a &amp;lt;sup&amp;gt;[incomplete]&amp;lt;/sup&amp;gt; style span-tag. But it inserts an infobox that's paragraph-breaking (if used within one). As you'd see if you Previewed what you did. I'd do an example, but then it'd permanently label your Talk page as 'incomplete', unless I cobbled together a fake version.&lt;br /&gt;
&lt;br /&gt;
If you want to add (new) incomplete-tag info, put it in the traditional place of just below the &amp;quot;==Explanation==&amp;quot; header. Or just make the edits needed to reflect the update of info that you are trying to identify.&lt;br /&gt;
&lt;br /&gt;
I'm going to address these issues for you, but wanted to make sure that you weren't going to continue. Perhaps you could instead tag such things with {{template|Actual citation needed}}. You can add an 'explanation parameter', as with the incompleteness one. Though it won't show up in the tag itself, it would benefit future editors to know exactly what issue you were raising. [[Special:Contributions/172.69.43.136|172.69.43.136]] 13:33, 7 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Further note: There's no reason to replace {{template|Citation needed}} with {{template|cn}} (though, yes, do move the tag the right side of the adjacent punctuation). The 'true template' is &amp;quot;Citation needed&amp;quot; and &amp;quot;cn&amp;quot; (and &amp;quot;citation needed&amp;quot; and &amp;quot;Citation Needed&amp;quot; and &amp;quot;fact&amp;quot; and several others) tend to be aliased/redirected to that. If anything, take the time to replace &amp;quot;&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;...something{{cn}}. Something else...&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;quot; with &amp;quot;&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;...something.{{Citation needed}} Something else...&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;quot;, while you're adjusting the punctuation, but it doesn't actually help to rename it reverse. It looks the same (insofar as the tag) when viewing the page normally, but doesn't significantly help (and, for the unfamiliar, may more hinder) the understanding of the markup edit. Not worth a special (re)edit, but I'll frequently take the opportunity to use the &amp;quot;one true&amp;quot; template name if I pass something like a &amp;quot;cn&amp;quot; (maybe or maybe not a &amp;quot;fact&amp;quot;) when adjusting a other element of a page. [[Special:Contributions/172.70.86.21|172.70.86.21]] 15:34, 7 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cultural issues. ==&lt;br /&gt;
&lt;br /&gt;
We understand that those from the PRC still claim the territory of ROC, but it's not your place to tell someone who they are in such a complicated issue. Indeed, they may be of more original Formosan heritage (Gāoshān?), not Chinese Han. Or from, e.g. Qing times well prior to the CPC taking over 'only' mainland China. I don't want to speak on their behalf, but it is certainly nonsensical to use the Taiwanese (and anti-Qing!) flag but state &amp;quot;Chinese&amp;quot; (except in any claim that the Mao Zedong takeover was, and remains, illegitimate - which isn't obviously the case here).&lt;br /&gt;
&lt;br /&gt;
I don't want you to get into trouble, locally, by changing your personal learned understanding of the situation from the official CCP line, but do appreciate that on the worldwide stage there are diplomatic contortions made in order to not ''directly'' contradict this but still appreciate that this is a territory in its own right that is a continuation of the pre-revolutionary government. (I am not a diplomat, I probably can't describe it all entirely correctly, as I also have no personal association or bias on the matter. But then I'm also not restrained to the dancing about the issue that an actual government would have to, on the world stage. The point is, opinions differ, as with territorial matter. See also Gaza, Golan Heights, Crimea/Donbass/etc, Transnistria, Ossetia Kosovo, Cyprus, Gibraltar, Falklands, Kashmir, Kuril Islands, etc. In no particular order, to various degrees of dispute, and deliberately trying to avoid mentioning any case in which (either/both) China would still be involved.) Hence it's not really valid to 'correct' such things.&lt;br /&gt;
&lt;br /&gt;
Maybe add caveats in Explanation-type pages (which might be further edited to caveat your caveats, if not totally out of accepted reality), but mostly don't change others' User-page stuff or signed Talk-page statements to &amp;quot;your personal liking&amp;quot;. [[Special:Contributions/172.70.91.130|172.70.91.130]] 14:01, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:ConscriptGlossary&amp;diff=358289</id>
		<title>User talk:ConscriptGlossary</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:ConscriptGlossary&amp;diff=358289"/>
				<updated>2024-11-30T09:12:25Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Li Jiayi */ HELP ME&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Suggestions been made to block C___G___ accounts! ==&lt;br /&gt;
Hi. I'm an admin here and there has been a request to [[User_talk:Kynde#Blocking_ColorfulGalaxy|block ColorfulGalaxy]] and other accounts that are of the form C___G___ like yours, because you all seem to interact and maybe use each others accounts or being one guy with multiple accounts. Specifically [https://www.explainxkcd.com/wiki/index.php?title=User:ColorfulGalaxy&amp;amp;oldid=320641 the dead links] on [[User:ColorfulGalaxy|ColorfulGalaxys]] page (that has at the moment been removed, hence link to old version) was an offence point. Seems you have ben trying to use this wiki for a project called neology, which does not belong here. Please stop what ever you are doing, and remove any thing related to this or I will be forced to ban all of these accounts. If you stop and begin editing only relevant stuff I will not ban you! Best regads --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:01, 29 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
The neography project has already been moved. It's been moved several times in fact. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 12:07, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Li Jiayi ==&lt;br /&gt;
&lt;br /&gt;
You added a trivia section in [[461: Google Maps]] about Li Jiayi. I’ve never heard of this person, could you please drop a link to wherever you found this so that I can add the Chinese characters? I have Chinese keyboards on my device. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:09, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please create this related page.&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please help me. I was IP-banned there and couldn't create accounts. I need help! [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:12, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Barnstar ==&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border: 1px solid {{{border|gray}}}; background-color: {{{color|#fdffe7}}};&amp;quot;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;vertical-align:middle;&amp;quot; | {{{{{|safesubst:}}}#ifeq:{{{2}}}|alt|[[File:Barnstar of Reversion Hires.png|100px]]|[[File:Barnstar_of_Reversion2.png|100px]]}}&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|style=&amp;quot;font-size: x-large; padding: 0; vertical-align: middle; height: 1.1em;&amp;quot; | '''The Anti-Vandalism Barnstar'''&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;vertical-align: middle; border-top: 1px solid gray;&amp;quot; | &amp;lt;div style=&amp;quot;font-family: Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;font-size:15pt;color:black&amp;quot;&amp;gt; For your help in reverting vandalism on my talk pages, [[User:ConscriptGlossary|ConscriptGlossary]], I hereby award thee a Barnstar. Feel free to display it on your user page. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:15pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:12pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 21:14, 24 October 2024 (UTC) &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Usage of {{template|incomplete}} ==&lt;br /&gt;
&lt;br /&gt;
You've been inserting &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{incomplete|...}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; in the rough manner of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, probably assuming it gives a &amp;lt;sup&amp;gt;[incomplete]&amp;lt;/sup&amp;gt; style span-tag. But it inserts an infobox that's paragraph-breaking (if used within one). As you'd see if you Previewed what you did. I'd do an example, but then it'd permanently label your Talk page as 'incomplete', unless I cobbled together a fake version.&lt;br /&gt;
&lt;br /&gt;
If you want to add (new) incomplete-tag info, put it in the traditional place of just below the &amp;quot;==Explanation==&amp;quot; header. Or just make the edits needed to reflect the update of info that you are trying to identify.&lt;br /&gt;
&lt;br /&gt;
I'm going to address these issues for you, but wanted to make sure that you weren't going to continue. Perhaps you could instead tag such things with {{template|Actual citation needed}}. You can add an 'explanation parameter', as with the incompleteness one. Though it won't show up in the tag itself, it would benefit future editors to know exactly what issue you were raising. [[Special:Contributions/172.69.43.136|172.69.43.136]] 13:33, 7 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Further note: There's no reason to replace {{template|Citation needed}} with {{template|cn}} (though, yes, do move the tag the right side of the adjacent punctuation). The 'true template' is &amp;quot;Citation needed&amp;quot; and &amp;quot;cn&amp;quot; (and &amp;quot;citation needed&amp;quot; and &amp;quot;Citation Needed&amp;quot; and &amp;quot;fact&amp;quot; and several others) tend to be aliased/redirected to that. If anything, take the time to replace &amp;quot;&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;...something{{cn}}. Something else...&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;quot; with &amp;quot;&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;...something.{{Citation needed}} Something else...&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;quot;, while you're adjusting the punctuation, but it doesn't actually help to rename it reverse. It looks the same (insofar as the tag) when viewing the page normally, but doesn't significantly help (and, for the unfamiliar, may more hinder) the understanding of the markup edit. Not worth a special (re)edit, but I'll frequently take the opportunity to use the &amp;quot;one true&amp;quot; template name if I pass something like a &amp;quot;cn&amp;quot; (maybe or maybe not a &amp;quot;fact&amp;quot;) when adjusting a other element of a page. [[Special:Contributions/172.70.86.21|172.70.86.21]] 15:34, 7 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cultural issues. ==&lt;br /&gt;
&lt;br /&gt;
We understand that those from the PRC still claim the territory of ROC, but it's not your place to tell someone who they are in such a complicated issue. Indeed, they may be of more original Formosan heritage (Gāoshān?), not Chinese Han. Or from, e.g. Qing times well prior to the CPC taking over 'only' mainland China. I don't want to speak on their behalf, but it is certainly nonsensical to use the Taiwanese (and anti-Qing!) flag but state &amp;quot;Chinese&amp;quot; (except in any claim that the Mao Zedong takeover was, and remains, illegitimate - which isn't obviously the case here).&lt;br /&gt;
&lt;br /&gt;
I don't want you to get into trouble, locally, by changing your personal learned understanding of the situation from the official CCP line, but do appreciate that on the worldwide stage there are diplomatic contortions made in order to not ''directly'' contradict this but still appreciate that this is a territory in its own right that is a continuation of the pre-revolutionary government. (I am not a diplomat, I probably can't describe it all entirely correctly, as I also have no personal association or bias on the matter. But then I'm also not restrained to the dancing about the issue that an actual government would have to, on the world stage. The point is, opinions differ, as with territorial matter. See also Gaza, Golan Heights, Crimea/Donbass/etc, Transnistria, Ossetia Kosovo, Cyprus, Gibraltar, Falklands, Kashmir, Kuril Islands, etc. In no particular order, to various degrees of dispute, and deliberately trying to avoid mentioning any case in which (either/both) China would still be involved.) Hence it's not really valid to 'correct' such things.&lt;br /&gt;
&lt;br /&gt;
Maybe add caveats in Explanation-type pages (which might be further edited to caveat your caveats, if not totally out of accepted reality), but mostly don't change others' User-page stuff or signed Talk-page statements to &amp;quot;your personal liking&amp;quot;. [[Special:Contributions/172.70.91.130|172.70.91.130]] 14:01, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3011:_Europa_Clipper&amp;diff=358288</id>
		<title>3011: Europa Clipper</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3011:_Europa_Clipper&amp;diff=358288"/>
				<updated>2024-11-30T09:09:35Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3011&lt;br /&gt;
| date      = November 13, 2024&lt;br /&gt;
| title     = Europa Clipper&lt;br /&gt;
| image     = europa_clipper_2x.png&lt;br /&gt;
| imagesize = 333x356px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = They had BETTER make this a sample return mission.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a JOVIAN DESSERT. Please do not delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
[[File:Animation of Europa Clipper trajectory around Jupiter.gif|thumb|right|The ''Europa Clipper's'' projected course around {{w|Jupiter}}, represented as the stationary &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;green&amp;lt;/span&amp;gt; dot. In &amp;lt;span style=&amp;quot;color:gold;&amp;quot;&amp;gt;gold&amp;lt;/span&amp;gt; is Jupiter's moon {{w|Callisto (moon)|Callisto}}, in &amp;lt;span style=&amp;quot;color:cyan;&amp;quot;&amp;gt;cyan&amp;lt;/span&amp;gt; is the moon {{w|Europa (moon)|Europa}} &amp;amp;mdash; the primary target of the spacecraft's study &amp;amp;mdash; and in &amp;lt;span style=&amp;quot;color:#FF4500;&amp;quot;&amp;gt;orange-red&amp;lt;/span&amp;gt; is the innermost of Jupiter's four {{w|Galilean moons|&amp;quot;Galilean&amp;quot;}} moons, {{w|Io (moon)|Io}}. The spacecraft's track is shown in &amp;lt;span style=&amp;quot;color:magenta;&amp;quot;&amp;gt;magenta&amp;lt;/span&amp;gt;. Jupiter's largest moon {{w|Ganymede (moon)|Ganymede}} is not shown, but its gravitational pull affects the ''Clipper's'' trajectory. A mission goal is to achieve a 6:1 {{w|orbital resonance}} with Europa [https://www.researchgate.net/profile/Martin-Ozimek/publication/383115312_AAS_24-433_Europa_Clipper_Mission_Analysis_Pump_Down_Trajectory_Design/links/66bcd845311cbb094938dbd6/AAS-24-433-Europa-Clipper-Mission-Analysis-Pump-Down-Trajectory-Design.pdf by September 2034]. ]]&lt;br /&gt;
&lt;br /&gt;
The ''{{w|Europa Clipper}}'' space probe was launched from the {{w|Kennedy Space Center}} in Florida on [https://europa.nasa.gov/mission/about/ October 14, 2024]. It is expected to arrive at Jupiter and begin exploration of Jupiter's moons, particularly {{w|Europa (moon)|Europa}}, in April of 2030. &lt;br /&gt;
&lt;br /&gt;
Europa is an icy moon. Water ice covers its surface. Around 15 to 25 kilometers (10 to 15 miles) beneath the ice, there is expected to be liquid water which may contain some [https://europa.nasa.gov/why-europa/ingredients-for-life/ basic forms of life]. To sample this liquid, its icy crust would need to be breached. The thickness of the ice dwarfs the ''Europa Clipper's'' 31 meter span.&lt;br /&gt;
&lt;br /&gt;
Europa's surface of ice over liquid water could be loosely compared to the caramelized crust on the popular dessert {{w|crème brûlée}}&amp;amp;mdash;a comparison that may have been prompted because the {{w|Cassini-Huygens}} probe, after landing on Saturn's moon Titan in January of 2005, found that its surface had what was described as [https://www.sciencenews.org/article/world-unveiled-cr%C3%A8me-br%C3%BBl%C3%A9e-titan a &amp;quot;crème brûlée&amp;quot; consistency]. The hard surface of the caramel cream dessert is traditionally cracked open with a {{w|Tableware#Spoon|spoon}}, so [[Randall]] jokes that such equipment will be deployed by the ''Europa Clipper''.&lt;br /&gt;
&lt;br /&gt;
In truth, no such spoon is present on the probe, and Europa's icy crust is too thick to be penetrated by a spoon of such size. Advanced measures are needed to prevent contamination of liquid water by Earth's organisms such as {{w|tardigrade}}s, {{w|deinococcus radiodurans}}, or {{w|bacillus subtilis}}. The ''Europa Clipper's'' course has been charted to avoid any contact with the surface of Europa (although it will fly through some sparse material it ejects into space) so as to prevent {{w|Planetary protection|contamination by microorganisms from Earth}}.&lt;br /&gt;
&lt;br /&gt;
The successful deployment of any spacecraft's instrument is considered a cause for celebration because deployable spacecraft instruments often fail to correctly extend, unfurl or undock. The ''Clipper'' has a magnetometer that will be used at the end of a 8.5 meter boom (not apparent in the comic which, spoon extension aside, is an otherwise fairly accurate depiction) as part of its study of the moons' environment.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; justify-content: center; align-items: center; margin: 1em 0;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:Europa_-_Perijove_45_(cropped).png|200px|alt=Europa]]&lt;br /&gt;
    &amp;lt;div&amp;gt;Europa&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:2014_0531_Crème_brûlée_Doi_Mae_Salong_(cropped).jpg|200px|alt=Crème brûlée]]&lt;br /&gt;
    &amp;lt;div&amp;gt;Crème brûlée&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:Europa_Clipper_spacecraft_model.png|200px|alt=The Europa Clipper spacecraft]]&lt;br /&gt;
    &amp;lt;div&amp;gt;The ''Europa Clipper'' spacecraft&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The title text expands on the joke by stating that the spacecraft &amp;quot;had BETTER&amp;quot; return samples of Europa to Earth. However, the ''Europa Clipper'' is not a {{w|sample-return mission}}, and if it were, such samples are unlikely to be good to eat.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[A space probe with two rectangular solar panels, a circular dish of the front, and a very large spoon extending beneath, longer than the span of both solar panels]&lt;br /&gt;
&lt;br /&gt;
:[Below the panel:]&lt;br /&gt;
:Good news: NASA's '''''Europa Clipper''''' is en route to Europa and has successfully deployed its crème brûlée spoon.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
Initially, the ''Europa Clipper'' mission was planned to include a lander component, but it was removed from the project early on. The Europa Lander proposal lags significantly behind the Clipper in development and has not secured funding. An actual sample return mission is currently far into the future of {{w|Ocean Worlds Exploration Program|the pertinent plans for exploration}}.&lt;br /&gt;
&lt;br /&gt;
In {{w|Arthur C. Clarke}}'s novel ''{{w|2010: Odyssey Two}}'', the monolith aliens tell humanity ''&amp;quot;All these worlds are yours &amp;amp;mdash; except Europa. Attempt no landing there.&amp;quot;'' Contrary to the suggestion of the comic, no landing or any other physical interaction beyond observation of the surface and analysis of the ejecta of Europa is planned.&lt;br /&gt;
&lt;br /&gt;
In {{w|Greek mythology}}, {{w|Europa (consort of Zeus)|Europa}} was a {{w|Phoenician}} princess whom {{w|Zeus}}, the king of the gods, abducted after transforming himself into a bull. The name of the continent Europe may derive from this legend, though alternative theories suggest it originates from ancient Greek words meaning &amp;quot;wide-gazing&amp;quot; or &amp;quot;broad face.&amp;quot; Additionally, there is an {{w|Oceanid}} named {{w|Europa (Greek myth)|Europa}} (with a sister named {{w|Asia (Oceanid)|Asia}}), one of the many daughters of the {{w|Titans}}, {{w|Oceanus}} and {{w|Tethys (mythology)|Tethys}}. The name Europa is also used in {{w|Europa (Greek myth)|other mythological}} and {{w|Europa (Roman province)|geographical}} contexts. Jupiter's moon Europa was named after the Phoenician princess, following the tradition of naming Jovian moons after Zeus's lovers. &lt;br /&gt;
&lt;br /&gt;
Diacritics are previously featured in comic [[Diacritics]] and [[2619]].&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Space]]&lt;br /&gt;
[[Category:Space probes]]&lt;br /&gt;
[[Category:Food]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3011:_Europa_Clipper&amp;diff=358287</id>
		<title>3011: Europa Clipper</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3011:_Europa_Clipper&amp;diff=358287"/>
				<updated>2024-11-30T09:08:13Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: I couldn't get the other link to work.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3011&lt;br /&gt;
| date      = November 13, 2024&lt;br /&gt;
| title     = Europa Clipper&lt;br /&gt;
| image     = europa_clipper_2x.png&lt;br /&gt;
| imagesize = 333x356px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = They had BETTER make this a sample return mission.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a JOVIAN DESSERT. Please do not delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
[[File:Animation of Europa Clipper trajectory around Jupiter.gif|thumb|right|The ''Europa Clipper's'' projected course around {{w|Jupiter}}, represented as the stationary &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;green&amp;lt;/span&amp;gt; dot. In &amp;lt;span style=&amp;quot;color:gold;&amp;quot;&amp;gt;gold&amp;lt;/span&amp;gt; is Jupiter's moon {{w|Callisto (moon)|Callisto}}, in &amp;lt;span style=&amp;quot;color:cyan;&amp;quot;&amp;gt;cyan&amp;lt;/span&amp;gt; is the moon {{w|Europa (moon)|Europa}} &amp;amp;mdash; the primary target of the spacecraft's study &amp;amp;mdash; and in &amp;lt;span style=&amp;quot;color:#FF4500;&amp;quot;&amp;gt;orange-red&amp;lt;/span&amp;gt; is the innermost of Jupiter's four {{w|Galilean moons|&amp;quot;Galilean&amp;quot;}} moons, {{w|Io (moon)|Io}}. The spacecraft's track is shown in &amp;lt;span style=&amp;quot;color:magenta;&amp;quot;&amp;gt;magenta&amp;lt;/span&amp;gt;. Jupiter's largest moon {{w|Ganymede (moon)|Ganymede}} is not shown, but its gravitational pull affects the ''Clipper's'' trajectory. A mission goal is to achieve a 6:1 {{w|orbital resonance}} with Europa [https://www.researchgate.net/profile/Martin-Ozimek/publication/383115312_AAS_24-433_Europa_Clipper_Mission_Analysis_Pump_Down_Trajectory_Design/links/66bcd845311cbb094938dbd6/AAS-24-433-Europa-Clipper-Mission-Analysis-Pump-Down-Trajectory-Design.pdf by September 2034]. ]]&lt;br /&gt;
&lt;br /&gt;
The ''{{w|Europa Clipper}}'' space probe was launched from the {{w|Kennedy Space Center}} in Florida on [https://europa.nasa.gov/mission/about/ October 14, 2024]. It is expected to arrive at Jupiter and begin exploration of Jupiter's moons, particularly {{w|Europa (moon)|Europa}}, in April of 2030. &lt;br /&gt;
&lt;br /&gt;
Europa is an icy moon. Water ice covers its surface. Around 15 to 25 kilometers (10 to 15 miles) beneath the ice, there is expected to be liquid water which may contain some [https://europa.nasa.gov/why-europa/ingredients-for-life/ basic forms of life]. To sample this liquid, its icy crust would need to be breached. The thickness of the ice dwarfs the ''Europa Clipper's'' 31 meter span.&lt;br /&gt;
&lt;br /&gt;
Europa's surface of ice over liquid water could be loosely compared to the caramelized crust on the popular dessert {{w|crème brûlée}}&amp;amp;mdash;a comparison that may have been prompted because the {{w|Cassini-Huygens}} probe, after landing on Saturn's moon Titan in January of 2005, found that its surface had what was described as [https://www.sciencenews.org/article/world-unveiled-cr%C3%A8me-br%C3%BBl%C3%A9e-titan a &amp;quot;crème brûlée&amp;quot; consistency]. The hard surface of the caramel cream dessert is traditionally cracked open with a {{w|Tableware#Spoon|spoon}}, so [[Randall]] jokes that such equipment will be deployed by the ''Europa Clipper''.&lt;br /&gt;
&lt;br /&gt;
In truth, no such spoon is present on the probe, and Europa's icy crust is too thick to be penetrated by a spoon of such size. Advanced measures are needed to prevent contamination of liquid water by Earth's organisms such as {{w|tardigrade}}s, {{w|deinococcus radiodurans}}, or {{w|bacillus subtilis}}. The ''Europa Clipper's'' course has been charted to avoid any contact with the surface of Europa (although it will fly through some sparse material it ejects into space) so as to prevent {{w|Planetary protection|contamination by microorganisms from Earth}}.&lt;br /&gt;
&lt;br /&gt;
The successful deployment of any spacecraft's instrument is considered a cause for celebration because deployable spacecraft instruments often fail to correctly extend, unfurl or undock. The ''Clipper'' has a magnetometer that will be used at the end of a 8.5 meter boom (not apparent in the comic which, spoon extension aside, is an otherwise fairly accurate depiction) as part of its study of the moons' environment.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; justify-content: center; align-items: center; margin: 1em 0;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:Europa_-_Perijove_45_(cropped).png|200px|alt=Europa]]&lt;br /&gt;
    &amp;lt;div&amp;gt;Europa&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:2014_0531_Crème_brûlée_Doi_Mae_Salong_(cropped).jpg|200px|alt=Crème brûlée]]&lt;br /&gt;
    &amp;lt;div&amp;gt;Crème brûlée&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:Europa_Clipper_spacecraft_model.png|200px|alt=The Europa Clipper spacecraft]]&lt;br /&gt;
    &amp;lt;div&amp;gt;The ''Europa Clipper'' spacecraft&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The title text expands on the joke by stating that the spacecraft &amp;quot;had BETTER&amp;quot; return samples of Europa to Earth. However, the ''Europa Clipper'' is not a {{w|sample-return mission}}, and if it were, such samples are unlikely to be good to eat.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[A space probe with two rectangular solar panels, a circular dish of the front, and a very large spoon extending beneath, longer than the span of both solar panels]&lt;br /&gt;
&lt;br /&gt;
:[Below the panel:]&lt;br /&gt;
:Good news: NASA's '''''Europa Clipper''''' is en route to Europa and has successfully deployed its crème brûlée spoon.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
Initially, the ''Europa Clipper'' mission was planned to include a lander component, but it was removed from the project early on. The Europa Lander proposal lags significantly behind the Clipper in development and has not secured funding. An actual sample return mission is currently far into the future of {{w|Ocean Worlds Exploration Program|the pertinent plans for exploration}}.&lt;br /&gt;
&lt;br /&gt;
In {{w|Arthur C. Clarke}}'s novel ''{{w|2010: Odyssey Two}}'', the monolith aliens tell humanity ''&amp;quot;All these worlds are yours &amp;amp;mdash; except Europa. Attempt no landing there.&amp;quot;'' Contrary to the suggestion of the comic, no landing or any other physical interaction beyond observation of the surface and analysis of the ejecta of Europa is planned.&lt;br /&gt;
&lt;br /&gt;
In {{w|Greek mythology}}, {{w|Europa (consort of Zeus)|Europa}} was a {{w|Phoenician}} princess whom {{w|Zeus}}, the king of the gods, abducted after transforming himself into a bull. The name of the continent Europe may derive from this legend, though alternative theories suggest it originates from ancient Greek words meaning &amp;quot;wide-gazing&amp;quot; or &amp;quot;broad face.&amp;quot; Additionally, there is an {{w|Oceanid}} named {{w|Europa (Greek myth)|Europa}} (with a sister named {{w|Asia (Oceanid)|Asia}}), one of the many daughters of the {{w|Titans}}, {{w|Oceanus}} and {{w|Tethys (mythology)|Tethys}}. The name Europa is also used in {{w|Europa (Greek myth)|other mythological}} and {{w|Europa (Roman province)|geographical}} contexts. Jupiter's moon Europa was named after the Phoenician princess, following the tradition of naming Jovian moons after Zeus's lovers. &lt;br /&gt;
&lt;br /&gt;
Diacritics are previously featured in comic [[Diacritics]] and &amp;quot;Crepe&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Space]]&lt;br /&gt;
[[Category:Space probes]]&lt;br /&gt;
[[Category:Food]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3011:_Europa_Clipper&amp;diff=358286</id>
		<title>3011: Europa Clipper</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3011:_Europa_Clipper&amp;diff=358286"/>
				<updated>2024-11-30T09:06:15Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Undo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3011&lt;br /&gt;
| date      = November 13, 2024&lt;br /&gt;
| title     = Europa Clipper&lt;br /&gt;
| image     = europa_clipper_2x.png&lt;br /&gt;
| imagesize = 333x356px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = They had BETTER make this a sample return mission.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a JOVIAN DESSERT. Please do not delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
[[File:Animation of Europa Clipper trajectory around Jupiter.gif|thumb|right|The ''Europa Clipper's'' projected course around {{w|Jupiter}}, represented as the stationary &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;green&amp;lt;/span&amp;gt; dot. In &amp;lt;span style=&amp;quot;color:gold;&amp;quot;&amp;gt;gold&amp;lt;/span&amp;gt; is Jupiter's moon {{w|Callisto (moon)|Callisto}}, in &amp;lt;span style=&amp;quot;color:cyan;&amp;quot;&amp;gt;cyan&amp;lt;/span&amp;gt; is the moon {{w|Europa (moon)|Europa}} &amp;amp;mdash; the primary target of the spacecraft's study &amp;amp;mdash; and in &amp;lt;span style=&amp;quot;color:#FF4500;&amp;quot;&amp;gt;orange-red&amp;lt;/span&amp;gt; is the innermost of Jupiter's four {{w|Galilean moons|&amp;quot;Galilean&amp;quot;}} moons, {{w|Io (moon)|Io}}. The spacecraft's track is shown in &amp;lt;span style=&amp;quot;color:magenta;&amp;quot;&amp;gt;magenta&amp;lt;/span&amp;gt;. Jupiter's largest moon {{w|Ganymede (moon)|Ganymede}} is not shown, but its gravitational pull affects the ''Clipper's'' trajectory. A mission goal is to achieve a 6:1 {{w|orbital resonance}} with Europa [https://www.researchgate.net/profile/Martin-Ozimek/publication/383115312_AAS_24-433_Europa_Clipper_Mission_Analysis_Pump_Down_Trajectory_Design/links/66bcd845311cbb094938dbd6/AAS-24-433-Europa-Clipper-Mission-Analysis-Pump-Down-Trajectory-Design.pdf by September 2034]. ]]&lt;br /&gt;
&lt;br /&gt;
The ''{{w|Europa Clipper}}'' space probe was launched from the {{w|Kennedy Space Center}} in Florida on [https://europa.nasa.gov/mission/about/ October 14, 2024]. It is expected to arrive at Jupiter and begin exploration of Jupiter's moons, particularly {{w|Europa (moon)|Europa}}, in April of 2030. &lt;br /&gt;
&lt;br /&gt;
Europa is an icy moon. Water ice covers its surface. Around 15 to 25 kilometers (10 to 15 miles) beneath the ice, there is expected to be liquid water which may contain some [https://europa.nasa.gov/why-europa/ingredients-for-life/ basic forms of life]. To sample this liquid, its icy crust would need to be breached. The thickness of the ice dwarfs the ''Europa Clipper's'' 31 meter span.&lt;br /&gt;
&lt;br /&gt;
Europa's surface of ice over liquid water could be loosely compared to the caramelized crust on the popular dessert {{w|crème brûlée}}&amp;amp;mdash;a comparison that may have been prompted because the {{w|Cassini-Huygens}} probe, after landing on Saturn's moon Titan in January of 2005, found that its surface had what was described as [https://www.sciencenews.org/article/world-unveiled-cr%C3%A8me-br%C3%BBl%C3%A9e-titan a &amp;quot;crème brûlée&amp;quot; consistency]. The hard surface of the caramel cream dessert is traditionally cracked open with a {{w|Tableware#Spoon|spoon}}, so [[Randall]] jokes that such equipment will be deployed by the ''Europa Clipper''.&lt;br /&gt;
&lt;br /&gt;
In truth, no such spoon is present on the probe, and Europa's icy crust is too thick to be penetrated by a spoon of such size. Advanced measures are needed to prevent contamination of liquid water by Earth's organisms such as {{w|tardigrade}}s, {{w|deinococcus radiodurans}}, or {{w|bacillus subtilis}}. The ''Europa Clipper's'' course has been charted to avoid any contact with the surface of Europa (although it will fly through some sparse material it ejects into space) so as to prevent {{w|Planetary protection|contamination by microorganisms from Earth}}.&lt;br /&gt;
&lt;br /&gt;
The successful deployment of any spacecraft's instrument is considered a cause for celebration because deployable spacecraft instruments often fail to correctly extend, unfurl or undock. The ''Clipper'' has a magnetometer that will be used at the end of a 8.5 meter boom (not apparent in the comic which, spoon extension aside, is an otherwise fairly accurate depiction) as part of its study of the moons' environment.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; justify-content: center; align-items: center; margin: 1em 0;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:Europa_-_Perijove_45_(cropped).png|200px|alt=Europa]]&lt;br /&gt;
    &amp;lt;div&amp;gt;Europa&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:2014_0531_Crème_brûlée_Doi_Mae_Salong_(cropped).jpg|200px|alt=Crème brûlée]]&lt;br /&gt;
    &amp;lt;div&amp;gt;Crème brûlée&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: 0 1em;&amp;quot;&amp;gt;&lt;br /&gt;
    [[File:Europa_Clipper_spacecraft_model.png|200px|alt=The Europa Clipper spacecraft]]&lt;br /&gt;
    &amp;lt;div&amp;gt;The ''Europa Clipper'' spacecraft&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The title text expands on the joke by stating that the spacecraft &amp;quot;had BETTER&amp;quot; return samples of Europa to Earth. However, the ''Europa Clipper'' is not a {{w|sample-return mission}}, and if it were, such samples are unlikely to be good to eat.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[A space probe with two rectangular solar panels, a circular dish of the front, and a very large spoon extending beneath, longer than the span of both solar panels]&lt;br /&gt;
&lt;br /&gt;
:[Below the panel:]&lt;br /&gt;
:Good news: NASA's '''''Europa Clipper''''' is en route to Europa and has successfully deployed its crème brûlée spoon.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
Initially, the ''Europa Clipper'' mission was planned to include a lander component, but it was removed from the project early on. The Europa Lander proposal lags significantly behind the Clipper in development and has not secured funding. An actual sample return mission is currently far into the future of {{w|Ocean Worlds Exploration Program|the pertinent plans for exploration}}.&lt;br /&gt;
&lt;br /&gt;
In {{w|Arthur C. Clarke}}'s novel ''{{w|2010: Odyssey Two}}'', the monolith aliens tell humanity ''&amp;quot;All these worlds are yours &amp;amp;mdash; except Europa. Attempt no landing there.&amp;quot;'' Contrary to the suggestion of the comic, no landing or any other physical interaction beyond observation of the surface and analysis of the ejecta of Europa is planned.&lt;br /&gt;
&lt;br /&gt;
In {{w|Greek mythology}}, {{w|Europa (consort of Zeus)|Europa}} was a {{w|Phoenician}} princess whom {{w|Zeus}}, the king of the gods, abducted after transforming himself into a bull. The name of the continent Europe may derive from this legend, though alternative theories suggest it originates from ancient Greek words meaning &amp;quot;wide-gazing&amp;quot; or &amp;quot;broad face.&amp;quot; Additionally, there is an {{w|Oceanid}} named {{w|Europa (Greek myth)|Europa}} (with a sister named {{w|Asia (Oceanid)|Asia}}), one of the many daughters of the {{w|Titans}}, {{w|Oceanus}} and {{w|Tethys (mythology)|Tethys}}. The name Europa is also used in {{w|Europa (Greek myth)|other mythological}} and {{w|Europa (Roman province)|geographical}} contexts. Jupiter's moon Europa was named after the Phoenician princess, following the tradition of naming Jovian moons after Zeus's lovers. &lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Space]]&lt;br /&gt;
[[Category:Space probes]]&lt;br /&gt;
[[Category:Food]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:ConscriptGlossary&amp;diff=358281</id>
		<title>User talk:ConscriptGlossary</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:ConscriptGlossary&amp;diff=358281"/>
				<updated>2024-11-30T05:48:29Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Li Jiayi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Suggestions been made to block C___G___ accounts! ==&lt;br /&gt;
Hi. I'm an admin here and there has been a request to [[User_talk:Kynde#Blocking_ColorfulGalaxy|block ColorfulGalaxy]] and other accounts that are of the form C___G___ like yours, because you all seem to interact and maybe use each others accounts or being one guy with multiple accounts. Specifically [https://www.explainxkcd.com/wiki/index.php?title=User:ColorfulGalaxy&amp;amp;oldid=320641 the dead links] on [[User:ColorfulGalaxy|ColorfulGalaxys]] page (that has at the moment been removed, hence link to old version) was an offence point. Seems you have ben trying to use this wiki for a project called neology, which does not belong here. Please stop what ever you are doing, and remove any thing related to this or I will be forced to ban all of these accounts. If you stop and begin editing only relevant stuff I will not ban you! Best regads --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:01, 29 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
The neography project has already been moved. It's been moved several times in fact. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 12:07, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Li Jiayi ==&lt;br /&gt;
&lt;br /&gt;
You added a trivia section in [[461: Google Maps]] about Li Jiayi. I’ve never heard of this person, could you please drop a link to wherever you found this so that I can add the Chinese characters? I have Chinese keyboards on my device. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:09, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please create this related page.&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please help me. I was IP-banned there and couldn't create accounts. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:12, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Barnstar ==&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border: 1px solid {{{border|gray}}}; background-color: {{{color|#fdffe7}}};&amp;quot;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;vertical-align:middle;&amp;quot; | {{{{{|safesubst:}}}#ifeq:{{{2}}}|alt|[[File:Barnstar of Reversion Hires.png|100px]]|[[File:Barnstar_of_Reversion2.png|100px]]}}&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|style=&amp;quot;font-size: x-large; padding: 0; vertical-align: middle; height: 1.1em;&amp;quot; | '''The Anti-Vandalism Barnstar'''&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;vertical-align: middle; border-top: 1px solid gray;&amp;quot; | &amp;lt;div style=&amp;quot;font-family: Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;font-size:15pt;color:black&amp;quot;&amp;gt; For your help in reverting vandalism on my talk pages, [[User:ConscriptGlossary|ConscriptGlossary]], I hereby award thee a Barnstar. Feel free to display it on your user page. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:15pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:12pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 21:14, 24 October 2024 (UTC) &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Usage of {{template|incomplete}} ==&lt;br /&gt;
&lt;br /&gt;
You've been inserting &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{incomplete|...}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; in the rough manner of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, probably assuming it gives a &amp;lt;sup&amp;gt;[incomplete]&amp;lt;/sup&amp;gt; style span-tag. But it inserts an infobox that's paragraph-breaking (if used within one). As you'd see if you Previewed what you did. I'd do an example, but then it'd permanently label your Talk page as 'incomplete', unless I cobbled together a fake version.&lt;br /&gt;
&lt;br /&gt;
If you want to add (new) incomplete-tag info, put it in the traditional place of just below the &amp;quot;==Explanation==&amp;quot; header. Or just make the edits needed to reflect the update of info that you are trying to identify.&lt;br /&gt;
&lt;br /&gt;
I'm going to address these issues for you, but wanted to make sure that you weren't going to continue. Perhaps you could instead tag such things with {{template|Actual citation needed}}. You can add an 'explanation parameter', as with the incompleteness one. Though it won't show up in the tag itself, it would benefit future editors to know exactly what issue you were raising. [[Special:Contributions/172.69.43.136|172.69.43.136]] 13:33, 7 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Further note: There's no reason to replace {{template|Citation needed}} with {{template|cn}} (though, yes, do move the tag the right side of the adjacent punctuation). The 'true template' is &amp;quot;Citation needed&amp;quot; and &amp;quot;cn&amp;quot; (and &amp;quot;citation needed&amp;quot; and &amp;quot;Citation Needed&amp;quot; and &amp;quot;fact&amp;quot; and several others) tend to be aliased/redirected to that. If anything, take the time to replace &amp;quot;&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;...something{{cn}}. Something else...&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;quot; with &amp;quot;&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;...something.{{Citation needed}} Something else...&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;quot;, while you're adjusting the punctuation, but it doesn't actually help to rename it reverse. It looks the same (insofar as the tag) when viewing the page normally, but doesn't significantly help (and, for the unfamiliar, may more hinder) the understanding of the markup edit. Not worth a special (re)edit, but I'll frequently take the opportunity to use the &amp;quot;one true&amp;quot; template name if I pass something like a &amp;quot;cn&amp;quot; (maybe or maybe not a &amp;quot;fact&amp;quot;) when adjusting a other element of a page. [[Special:Contributions/172.70.86.21|172.70.86.21]] 15:34, 7 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cultural issues. ==&lt;br /&gt;
&lt;br /&gt;
We understand that those from the PRC still claim the territory of ROC, but it's not your place to tell someone who they are in such a complicated issue. Indeed, they may be of more original Formosan heritage (Gāoshān?), not Chinese Han. Or from, e.g. Qing times well prior to the CPC taking over 'only' mainland China. I don't want to speak on their behalf, but it is certainly nonsensical to use the Taiwanese (and anti-Qing!) flag but state &amp;quot;Chinese&amp;quot; (except in any claim that the Mao Zedong takeover was, and remains, illegitimate - which isn't obviously the case here).&lt;br /&gt;
&lt;br /&gt;
I don't want you to get into trouble, locally, by changing your personal learned understanding of the situation from the official CCP line, but do appreciate that on the worldwide stage there are diplomatic contortions made in order to not ''directly'' contradict this but still appreciate that this is a territory in its own right that is a continuation of the pre-revolutionary government. (I am not a diplomat, I probably can't describe it all entirely correctly, as I also have no personal association or bias on the matter. But then I'm also not restrained to the dancing about the issue that an actual government would have to, on the world stage. The point is, opinions differ, as with territorial matter. See also Gaza, Golan Heights, Crimea/Donbass/etc, Transnistria, Ossetia Kosovo, Cyprus, Gibraltar, Falklands, Kashmir, Kuril Islands, etc. In no particular order, to various degrees of dispute, and deliberately trying to avoid mentioning any case in which (either/both) China would still be involved.) Hence it's not really valid to 'correct' such things.&lt;br /&gt;
&lt;br /&gt;
Maybe add caveats in Explanation-type pages (which might be further edited to caveat your caveats, if not totally out of accepted reality), but mostly don't change others' User-page stuff or signed Talk-page statements to &amp;quot;your personal liking&amp;quot;. [[Special:Contributions/172.70.91.130|172.70.91.130]] 14:01, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3015:_D%26D_Combinatorics&amp;diff=358279</id>
		<title>3015: D&amp;D Combinatorics</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3015:_D%26D_Combinatorics&amp;diff=358279"/>
				<updated>2024-11-30T05:35:02Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3015&lt;br /&gt;
| date      = November 22, 2024&lt;br /&gt;
| title     = D&amp;amp;D Combinatorics&lt;br /&gt;
| image     = dnd_combinatorics_2x.png&lt;br /&gt;
| imagesize = 328x446px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Look, you can't complain about this after giving us so many scenarios involving N locked chests and M unlabeled keys.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a HTML SHORTENING CODE TYPO - Please change this comment when editing this page. Please DO delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
{{w|Dungeons and Dragons}} (D&amp;amp;D) is a {{w|tabletop role-playing game}} that usually has a &amp;quot;Dungeon Master&amp;quot; (narrator) that takes a team of players through scenarios where they attack monsters and go on quests.&lt;br /&gt;
&lt;br /&gt;
Often, there will be semi-random events: e.g., when attacking a monster, often a player will roll a die and deal damage based on the result. D&amp;amp;D uses a variety of dice, from regular d6 (6-sided, cubic dice) to other {{w|Dice#Common_variations|polyhedral dice}}, with the number of faces denoted by dX (e.g., d10 is a 10-sided die, with numbers from 1 to 10 on it). Common sets include: d4, d6, d8, d10, d12, d20, and occasionally d100 (typically not, however, the [[2626:_d65536|d65536]]).{{cn}}&lt;br /&gt;
&lt;br /&gt;
With these, you can simulate events with a wide variety of denominators. In this case, Cueball gives a {{w|combinatorics|combinatorial}} problem:&lt;br /&gt;
&lt;br /&gt;
* There are 10 arrows.&lt;br /&gt;
* 5 arrows are cursed.&lt;br /&gt;
* You randomly take two.&lt;br /&gt;
* What are the odds that neither of them are cursed?&lt;br /&gt;
&lt;br /&gt;
Calculating using {{w|binomial coefficients}}, there are &amp;quot;10 choose 2&amp;quot; (45) ways to choose two arrows, of which there are &amp;quot;5 choose 2&amp;quot; (10) ways to choose 2 arrows that are non-cursed. As a result, the odds of taking all non-cursed arrows is 10/45, which simplifies to 2/9. &lt;br /&gt;
&lt;br /&gt;
To see this in a different way, the probability of choosing one non-cursed arrow is 5/10, which then must be multiplied by the probability of choosing the second non-cursed arrow, which is now 4/9, giving 20/90 or 2/9, the same result as before.&lt;br /&gt;
&lt;br /&gt;
The Dungeon Master (DM) in this case [[356: Nerd Sniping|has to]] map that probability into rolling multiple dice, whose sums are also not evenly distributed: i.e. if rolling 3d6 (3 six-sided dice) and a d4 (1 four-sided die), the sums can range from 4 to 22. It's pretty hard to do this in one's head, but it does happen that the odds of rolling 16 or more with this combination is 2/9, matching the probability that we want to simulate. Here's a table of all the 6*6*6*4=864 possible outcomes -&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ All possible combinations of rolls for 3d6 + 1d4&lt;br /&gt;
|-&lt;br /&gt;
!Total!!4!!5!!6!!7!!8!!9!!10!!11!!12!!13!!14!!15!!16!!17!!18!!19!!20!!21!!22&lt;br /&gt;
|-&lt;br /&gt;
|Ways to roll it||1||4||10||20||34||52||71||88||100||104||100||88&lt;br /&gt;
| style=&amp;quot;background:#ffffcc;&amp;quot; | ''' ''71'' '''&lt;br /&gt;
| style=&amp;quot;background:#ffffcc;&amp;quot; | ''' ''52'' '''&lt;br /&gt;
| style=&amp;quot;background:#ffffcc;&amp;quot; | ''' ''34'' '''&lt;br /&gt;
| style=&amp;quot;background:#ffffcc;&amp;quot; | ''' ''20'' '''&lt;br /&gt;
| style=&amp;quot;background:#ffffcc;&amp;quot; | ''' ''10'' '''&lt;br /&gt;
| style=&amp;quot;background:#ffffcc;&amp;quot; | ''' ''4'' '''&lt;br /&gt;
| style=&amp;quot;background:#ffffcc;&amp;quot; | ''' ''1'' '''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
71+52+34+20+10+4+1 = 192&lt;br /&gt;
&lt;br /&gt;
192/864 = 2/9, which matches the desired probability from earlier. The table of outcomes can either be bruteforced with a program, or can be derived using generating functions.&lt;br /&gt;
&lt;br /&gt;
The caption elaborates that the DM has a degree in the relevant field, and is unable to resist applying this to the D&amp;amp;D game when the opportunity arises - opportunities that Cueball eagerly provides for this very reason.&lt;br /&gt;
&lt;br /&gt;
There are several much easier ways of implementing this operation, without coming up with a more complex solution:&lt;br /&gt;
#Do not even attempt to abstract the chances with dice-rolls. Literally present 10 similar-looking arrows, or other objects that are taken to represent arrows (face-down playing cards, for example), where the assigned information of whether each one is cursed initially hidden away from Cueball, and then just let Cueball pick any two. This approach would more likely be used if the D&amp;amp;D gameplay were {{w|Live action role-playing game|live-action}} as opposed to {{w|Tabletop role-playing game|tabletop}} (though is still possible in tabletop). &lt;br /&gt;
#Even just with D&amp;amp;D dice, the DM could ask Cueball to roll a 1d10 for the first arrow, and then again for the second, re-rolling the second so long as Cueball gets the same number as before (which emulates the same sort of process, but with a non-zero chance of having to make and reject an arbitrary number of extra dice-rolls). One could specify that 1-5 represents the cursed arrows and 6-10 represents the non-cursed arrows, following the convention that lower rolls are bad in D&amp;amp;D.&lt;br /&gt;
#Similarly, the player could be asked to roll a d20, with a score of 15 or 16 requiring a re-roll and 17–20 being successful choices. This would give a 4/18 chance, i.e., 2/9 for a successful roll on the first (and any subsequent) rolls. As with option 2, there would be a 1/10 chance of having to make and reject at least one extra dice-roll. &lt;br /&gt;
#If understanding the actual odds, but wishing to keep the dice in use simple, a 2/9 probability can also be found by saying Cueball would succeed when 2D6 produces a 9, 10, or 12 (4/36, 3/36, and 1/36 probability, respectively, giving 8/36, i.e., 2/9).&lt;br /&gt;
#Another method would be to roll 1d6 twice, using the first as a base number and the second as a control die where 1-2 = +0, 3-4 = +6 and 5-6 = +12 for a linear spread of 1-18. In this case a roll of 3, 4, 5, or 6 on the first roll coupled with a 5 or 6 on the second roll would indicate the top four of the eighteen possibilities, 4/18, or 2/9.&lt;br /&gt;
#Or to roll 1d6 twice and ''multiply'', rather than add, the results. A successful roll is 20 or more.&lt;br /&gt;
#Alternatively, approximate the odds by using a d100 (or equivalent roll of two D10s) and seeking an 78 or higher (i.e. the range of 78-99, assuming this roll can produce a zero/double-zero roll, instead of a 'natural 100' for which the range would have to start at 79), which gives a 22% chance, which may be sufficiently acceptable as it is substantially similar to 2/9's effective odds of 22.&amp;lt;span style=&amp;quot;text-decoration:overline&amp;quot;&amp;gt;222&amp;lt;/span&amp;gt;%. If you re-roll either the 0 or 100 (depending on whether you use 78 or 79 as the cutoff), you would bring the probability exactly to 22/99 or 2/9.&lt;br /&gt;
&lt;br /&gt;
The first two options also instantly reveal cases of whether ''two'' cursed arrows are nominally chosen (an outcome that is at identical odds to the opposite possibility of neither being so), should this be useful roleplaying information in addition to the basic fact of ''failing'' to avoid at least one of them. The fourth option could also be used to suggest this if (for example) the complementary results of 2, 4 or 5 are rolled, and the final one in the event that the 'percentage' given is 0-21 (or 1-22).&lt;br /&gt;
&lt;br /&gt;
One could argue that the above solutions do not have the &amp;quot;polished&amp;quot; D&amp;amp;D feel of rolling a certain number of dice, adding them up, and seeing if the result is greater than or equal to an entirely correct required total. This is a commonly used mechanic for difficulty checks, hit calculations, and other such chance-based events in D&amp;amp;D. The DM may feel that this dice format is a requirement, but this approach is far too clunky for most DMs to be practical. It may be inferred that as the DM's mind tends towards more combinatorial solutions, she is either unable or unwilling to consider more straightforward and less time-consuming solutions to this cursed arrow problem.&lt;br /&gt;
&lt;br /&gt;
The title text claims that Randall only started doing this to the DM after she herself insisted on forcing another combinatorial puzzle on the players several times, involving a bunch of locked treasure chests and a multitude of keys to unlock them with. This might be a reference to an M-of-N encryption system, where a system has ''n'' valid passwords (instead of just one) but requires ''m'' of those passwords to be given before it will open; it is assumed m is greater than 1 but less than n. While this is easy enough to implement in a computer system, it would be extremely cumbersome to build for a physical lock with keys, and spreading the mechanism across multiple separate treasure chests would be impossible without literal magic (luckily, magic is in plentiful supply in a typical Dungeons and Dragons game).{{cn}}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball, Megan, Ponytail, White Hat, and Knit Cap are sitting around a table on office chairs. The first and last at either end and the other on the same side facing outwards. Everyone is looking at Cueball who is holding a finger up in front of him while speaking. Ponytail is facepalming while replying. The table is covered in sheets of paper and assorted dice.]&lt;br /&gt;
:Cueball: I grab 2 of the 10 arrows without looking and fire them, hoping I didn't grab one of the 5 cursed ones. Did I?&lt;br /&gt;
:Ponytail: Sigh. Umm. Okay.&lt;br /&gt;
:Ponytail: Roll... Uh... Hang on...&lt;br /&gt;
:Ponytail: Roll 3d6 and a d4. You need... 16 or better to avoid the cursed arrows.&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:I got '''''way''''' more annoying to play D&amp;amp;D with once I learned that our DM has a combinatorics degree and can't resist puzzles.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
When this comic was originally released, due to seeming error on Randall's end, the official title of the page was &amp;quot;xkcd: D[sic] Combinatorics&amp;quot;, instead of &amp;quot;xkcd: D&amp;amp;D Combinatorics&amp;quot;. The reason for this is thought to be caused by literal interpretation of the '''''&amp;amp;D''''' as an HTML escape character. As of this writing has not been fixed. &lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring White Hat]]&lt;br /&gt;
[[Category:Comics featuring Knit Cap]]&lt;br /&gt;
[[Category:Games]]&lt;br /&gt;
[[Category:Math]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:3018:_Second_Stage&amp;diff=358210</id>
		<title>Talk:3018: Second Stage</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:3018:_Second_Stage&amp;diff=358210"/>
				<updated>2024-11-29T14:30:33Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: All characters invisible&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;
Reminds me of enough KSP incidents where I was editing my stack badly enough so as to forget to have engines (and/or fuel and/or control) at a given (usually mid-stage) scheduled jetison/discarding point. Especially with complicated asparagus clusters with cross-linked fuel feeds. - Also, the current trend for &amp;quot;two stage to orbit&amp;quot; (Booster+Starship, etc) perhaps makes us forget that three or four stages (maybe or maybe not including the boosting/manoevering payload 'bus' atop the main stack) has been a fairly normal setup for all but the lightest loftable loads. [[Special:Contributions/172.70.163.145|172.70.163.145]] 14:16, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Do we need the [[:Category:Rockets]]? [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 14:27, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
This comic contains dialogue but no visible human characters. What is the first comic to do that? [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 14:30, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:3018:_Second_Stage&amp;diff=358209</id>
		<title>Talk:3018: Second Stage</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:3018:_Second_Stage&amp;diff=358209"/>
				<updated>2024-11-29T14:27:12Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: I'm not so good at handling categories.&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;
Reminds me of enough KSP incidents where I was editing my stack badly enough so as to forget to have engines (and/or fuel and/or control) at a given (usually mid-stage) scheduled jetison/discarding point. Especially with complicated asparagus clusters with cross-linked fuel feeds. - Also, the current trend for &amp;quot;two stage to orbit&amp;quot; (Booster+Starship, etc) perhaps makes us forget that three or four stages (maybe or maybe not including the boosting/manoevering payload 'bus' atop the main stack) has been a fairly normal setup for all but the lightest loftable loads. [[Special:Contributions/172.70.163.145|172.70.163.145]] 14:16, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Do we need the [[:Category:Rockets]]? [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 14:27, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358197</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358197"/>
				<updated>2024-11-29T13:12:32Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Help!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please help me. I was IP-banned there and couldn't create accounts. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:12, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wow ==&lt;br /&gt;
Wow, I've just reached the top of the [[Main Page]] leaderboard. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:02, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358196</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358196"/>
				<updated>2024-11-29T13:11:25Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Help!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please help me. I was IP-banned there and couldn't create accounts. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:11, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wow ==&lt;br /&gt;
Wow, I've just reached the top of the [[Main Page]] leaderboard. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:02, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Technical&amp;diff=358195</id>
		<title>explain xkcd:Community portal/Technical</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Technical&amp;diff=358195"/>
				<updated>2024-11-29T13:06:46Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Esolang wiki bug */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;__NEWSECTIONLINK__&lt;br /&gt;
{{Community links}}&lt;br /&gt;
&lt;br /&gt;
{|-&lt;br /&gt;
|valign=&amp;quot;top&amp;quot; width=&amp;quot;100%&amp;quot;|[[File:Crystal Clear app package settings blue.png|left|120px]] &amp;lt;big&amp;gt;&amp;lt;big&amp;gt;&amp;lt;b&amp;gt;Technical&amp;lt;/b&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt;Technical issues ''about'' the [[explain xkcd]] wiki, including bug reports or MediaWiki extensions requests.&amp;lt;/i&amp;gt; {{AddNewSection|Page=Explain XKCD:Community portal/Technical|Text=&amp;lt;small&amp;gt;(+post)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
= Discussion Area =&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== We need more maintainers ==&lt;br /&gt;
&lt;br /&gt;
:''I'm moving a thread that Davidy22 started on my talk page. The gist is, we need more people with server-side access (especially mediawiki-savvy ones) so we can properly deal with several issues that have been plaguing the wiki for a while now, most notably spam, but also the image scaling problem, a possible extension for proper comments, clean urls, etc. Below is the original thread, please comment.'' --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:56, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could you set the permissions so that all anon users have to pass a captcha to edit? The spam has gotten obscene, and they've stopped posting links, so our current detection mechanisms aren't working anymore. [[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Davidy22|&amp;lt;tt&amp;gt;(talk)&amp;lt;/tt&amp;gt;]] 08:21, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I would love to have the ability to tweak the wiki more thoroughly, but currently Jeff's the only one with server access. To be honest, I am not terribly familiar with server-side mediawiki management, so I haven't asked Jeff for access, but it's clear we can't be dependent on a single person to do all the mediawiki config (and Jeff probably knows even less about mediawiki than I do). Are you by any chance acquainted with server-side mediawiki maintenance? I think we could present a good case for having someone else with access to a dev/prototype instance of this wiki on Jeff's server so we could at least experiment and tell him exactly what needs to be done. Thoughts? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:40, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I agree that we need more people that are empowered to actively fight spam. I think that we ought to promote Davidy22 to administrator also, so that he can delete pages and block spammers/vandals as he notices them rather than letting them pile up until yourself, IronyChef, or myself notice that there's work that needs done.&lt;br /&gt;
&lt;br /&gt;
::What I think we should do is break out rights into more groups than simply administrator and bureaucrat. I think that's too big of a jump, and that there should be some gradiation. I think we should add a moderator (mark pages as patrolled and rollback ability (as much as it's a sledgehammer when you really only need a ball-peen hammer)) position.&lt;br /&gt;
&lt;br /&gt;
::I think we also need a spam fighter position, but that might not be possible to implement. It should be a position that allows the person to delete pages with 1 or 2 edits (page creation, marked as spam, maybe as high as 3 or 4 for the bots that repeat edit certain pages) and block users with 1 or 2 edits. The real problem there is how to grant those super-powerful abilities without allowing them to lose their mind and go crazy and destroy the wiki. Of course, if we don't catch it early enough there's going to be those IPs that manage to get to six edits, and those will have to be squashed by a full admin. We will also need a way of tagging those spam accounts so when a full admin passes by they will also know to ban the IP address after a spam fighter has deleted all the pages it created.&lt;br /&gt;
&lt;br /&gt;
::Finally, we also need a more active bureaucrat so that we don't have to bug Jeff to promote admin's as well as future moderators and/or spam fighters, and recognize bot accounts as bot accounts. We also should find someone knowledgeable to help Jeff (and maybe he has little helpers) to maintain the actual server. I've done some PHP work, but I've never touched anything deep inside a wiki (I like Ruby and Rails much more). This is my first time gaining admin status on a wiki, so I have no idea what the extra dials and levers do/mean. I look up on the MediaWiki manual and Wikipedia help pages things that I think should be possible, and often times pages exist in places about doing these things, but I'm nowhere near being called knowledgeable. After I finish up some IRL work I'm currently tied up in, I intend to set up a VM webserver on my computers and run a mediawiki install so I can learn how to work (and not break) things without putting explain xkcd in jeopardy.&lt;br /&gt;
&lt;br /&gt;
::Another really wordy post from, [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]])  22:01, 29 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: From what I know, a moderator user group is possible, but not the spam fighter one. Then again, too many hierarchical levels may be too much for such a small body of regulars. Implementing the moderator group is easy, [[mw:Manual:User rights]] has the details (the &amp;quot;ninja&amp;quot; example and the &amp;quot;list of permissions&amp;quot; section should be enough for putting together the configuration commands to be added to the wiki's LocalSettings.php).&lt;br /&gt;
::: As for bureaucrats, I think it makes sense but it seems to me that Jeff only takes longer to perform changes that affect the server, as they understandably may take longer or be more complex (or break the wiki!). Bureaucrats' only difference from admins is that they can promote/demote other users, and this Jeff has been doing without delay, so perhaps there isn't a need for more bureaucrats at the moment. Please correct me if I'm wrong.&lt;br /&gt;
::: We do need more sysadmins (people with access to the server), though, for sure. This is a little tricky as none of us is comfortable enough to confidently make server changes in a mediawiki install. Jeff, how about putting the wiki in source control and giving two or three people access to it, so that any wrongdoings can be easily reverted? You could setup a git repository in the server and we could fork it locally to our machines, make tests and push the commits to the server repo whenever they're ready. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:20, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: This is good stuff.  I'm down with promoting more admins for spam fighting.  If they screw stuff up we can demote them if necessary.  I really haven't found a spam fighting extension that I think will be the best possible solution.  I'll keep looking as it may be a combination of things. Server access is much more complicated as it is not even my server and it is shared hosting.  I think that would be best to be accessed just by me. --[[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]]) 19:10, 19 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::: Regarding the server, I understand -- your position seems reasonable. In any case, I've been looking for extensions that may help taking some workload out of server actions and make more stuff configurable via the wiki itself. I'll report back if I find something usable.&lt;br /&gt;
::::: On another note, how do you feel about promoting more bureaucrats? I suggest Lcarsos who's been consistently active for the past few months. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 12:47, 4 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Personally I'd kind of like to go and make some changes myself. Come up with a nice short url pattern and set it up. Upgrade the wiki. etc... [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 02:44, 23 March 2013 (UTC)&lt;br /&gt;
:The shorter URL is being looked into, although Mediawiki strongly advises against it. As for upgrades to the wiki, monetary donations towards Jeff so he can buy better bit for the server would be appreciated. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 03:06, 23 March 2013 (UTC)&lt;br /&gt;
::MediaWiki does not advise against it. Half the code currently running short URLs in core was written by me. Same for the new standard for rewrite rules in the new guides. And the tool to automatically generate the config needed to apply short urls to a wiki. Short URLs are '''not''' advised against.&lt;br /&gt;
::We do however strongly advise against installing a wiki in &amp;lt;code&amp;gt;/wiki&amp;lt;/code&amp;gt;. Because you do '''not''' want to create &amp;lt;code&amp;gt;/wiki/$1&amp;lt;/code&amp;gt; style paths while your script path makes scripts look like &amp;lt;code&amp;gt;/wiki/index.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
::In this case my plan would be to move &amp;lt;code&amp;gt;/wiki&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;/w&amp;lt;/code&amp;gt; then come up with some other short url pattern like &amp;lt;code&amp;gt;/e/$1&amp;lt;/code&amp;gt;, some other path, or maybe &amp;lt;code&amp;gt;/$1&amp;lt;/code&amp;gt;.&lt;br /&gt;
::And setup some 301 redirects to redirect from the old urls to the new ones.&lt;br /&gt;
::And upgrading the version of MediaWiki so that it doesn't have security holes doesn't require server replacement. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 07:09, 23 March 2013 (UTC)&lt;br /&gt;
:::Ohwait, software upgrades. Uh. I knew you were talking about that. Yep. Definitely. The wiki recently had issues with running out of hard drive space, so that was all that was on my mind there.&lt;br /&gt;
:::Also, I thought you had been referring to [http://www.mediawiki.org/wiki/Manual:Wiki_in_site_root_directory this]. Whoop. Well, you could leave Jeff a message at his [[user talk:Jeff|talk page]] to get server access. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 08:05, 23 March 2013 (UTC)&lt;br /&gt;
::::I strongly support this. It's been far too long since we decided we'd want the short url scheme (&amp;lt;code&amp;gt;/$1&amp;lt;/code&amp;gt; seems like the best option since it would be simpler/cleaner and allow http://explainxkcd/1234 to point to the correct comic without any extra rewrite rules). While you're at it, I'm sure many would appreciate a look at the current situation with image resizing, which doesn't seem to be working for some reason. Installing [[mw:Extension:Comments|Extension:Comments]] would be awesome, too, as well as [[mw:Extension:Contribution Scores|Extension:Contribution Scores]] ([http://setiquest.org/wiki/index.php/Special:ContributionScores live example]). I'll ask Jeff to take a look at this thread. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 20:07, 23 March 2013 (UTC)&lt;br /&gt;
::::: [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) email me and I'll get you set up with whatever you need. All the suggestions sound good to me. --[[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]]) 00:10, 24 March 2013 (UTC)&lt;br /&gt;
::::: Also, the [[Special:ContributionScores|Contribution Scores]] are up.  I'm not even top 10 all time, I need to step up my game. Comments will take more work as it needs its own database. --[[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]]) 00:10, 24 March 2013 (UTC)&lt;br /&gt;
::::::Awesome! I did some styling changes to make it more interesting :) Let me know what you guys think about it! --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 20:32, 24 March 2013 (UTC)&lt;br /&gt;
:::::::Holy crud, what did you do when the wiki started to have almost double my lifetime score? '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 23:57, 24 March 2013 (UTC)&lt;br /&gt;
::::::::Hahahah :P I'm pretty sure I cheated a little, IIRC there was an image renaming operation for which I used [http://github.com/btongminh/mwclient mwclient] ;) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 03:22, 25 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Sort by numbers in categories ==&lt;br /&gt;
&lt;br /&gt;
I noticed that in [[:Category:Comics]] all comics are sorted correctly by numbers; but not in any subcategory. (I didn't really get the explanation of how it works on the comics page.) How to fix this? -- [[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 10:40, 22 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;The comics template uses a template called num4 that turns the number in the comic number field into a four-digit number. That's then passed as a parameter to the category link, and the comics category page sorts articles by those four-digit numbers instead of their actual names. If we wanted to do the same for other categories, we would have to type them all out as [[Category:Politics|0200]], or whatever the comic number is. I would rather wait for mediawiki to come out with an in-built feature to solve this.&amp;lt;/nowiki&amp;gt; [[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:28, 22 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Is there a reason that the template applies that directly to [[:Category:Comics]] and not as a default sortkey via DEFAULTSORT? &amp;amp;ndash;&amp;amp;nbsp;''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 12:10, 1 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: Good thinking. Using DEFAULTSORT oughta make it work for all categories. I'll give it a try. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 15:37, 1 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Resize ==&lt;br /&gt;
&lt;br /&gt;
I haven't been here (to edit) for a while, but have we still not addressed the bug that doesn't allow image resizing? I know most of us don't have access to that kind of lower-level coding on the site, but I think it's a bit of a notable issue that we can't display comics smaller than their actual size. [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 14:24, 21 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Take it up with [[User:Jeff]], but I suspect that adding your voice to the already insistent roaring that images are broken isn't going to inspire much change. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:08, 23 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incidental Ads ==&lt;br /&gt;
&lt;br /&gt;
as ive noticed i think you should check if someone has embeded some of your links with ads really annoying please fix&lt;br /&gt;
&lt;br /&gt;
--[[User:TheWeatherMan|TheWeatherMan]] ([[User talk:TheWeatherMan|talk]]) 14:00, 23 January 2013 (UTC)TheWeatherMan&lt;br /&gt;
&lt;br /&gt;
:Do you have any specific examples of this? By the way, using punctuation, capitalization, spell check, and complete sentences are more likely to get someone to help you. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:10, 23 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::There is known malware (both adware and viruses) that makes Wikipedia look like it has ads.  This wiki uses the same wiki software, so perhaps that malware affects our site too? &amp;amp;ndash;&amp;amp;nbsp;''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 05:42, 15 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==/wiki/==&lt;br /&gt;
Now that explainxkcd redirects straight to the wiki, could we take the /wiki/ out of the url? I'd also like the wiki's edit log to be purged to clean out the history and forget about past spam, but that's probably wishing for too much. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 04:06, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:But seriously, could the /wiki/ go? It'll screw with the spammers for a day or two, at the very least. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:37, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Newbie questions:  Comic dates, previous-and-next-comic buttons==&lt;br /&gt;
Just created the my first page, [[220: Philosophy]], but I could use a little guidance.  How do I find the date that an ''xkcd'' comic was originally posted, and how do I rig up the previous-comic and next-comic arrows on a page?  (Actually, I've noticed several pages that should have the arrows but don't.)  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 11:19, 28 January 2013 (UTC)&lt;br /&gt;
:Those arrows will automagically insert themselves when you make the adjacent comic explanations. There *is* a little backstage magic that needs to be taken care of, but we can do that for you. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:40, 28 January 2013 (UTC)&lt;br /&gt;
** OK.  How about the dates?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 11:41, 28 January 2013 (UTC)&lt;br /&gt;
:::Click on &amp;quot;All Comics&amp;quot; in the navbar on left-hand side of the site. The dates are in the form YYYY-MM-DD. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:56, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The comic template checks for the existence of the numerical redirect for the comic before and the comic after. If it finds the page to exist it will display the next/previous button as appropriate. So, by creating the redirects listed on the [[List of all comics]] (third column, only worry about the number and title links) future pages will automatically get the links created. Redirect pages look like &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#REDIRECT [[####: Comic Title]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and that's it ([http://www.explainxkcd.com/wiki/index.php?title=1143&amp;amp;redirect=no here] is a link to the redirect page with redirect disabled so you can look at the source to see what I'm talking about). That's all that needs to exist on the number and title redirects. If you feel up to creating them yourself, feel free, otherwise someone else goes through occasionally and mass adds all the missing redirects. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 17:55, 29 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Error message ==&lt;br /&gt;
&lt;br /&gt;
I've been getting this error message a lot the last cup'o days. When trying to access a page; when trying to save changes on a page. Any ideas on why? I'm getting it on both chrome and firefox.&lt;br /&gt;
::Database error&lt;br /&gt;
::A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
::(SQL query hidden) from within function &amp;quot;Revision::insertOn&amp;quot;. Database returned error &amp;quot;1142: INSERT command denied to user ::'dbo423085716'@'74.208.16.155' for :table 'text' (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
–[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 22:54, 18 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Every once in a while I get a SQL error being reported, but usually I can simply F5 and the page comes up. Every once in a while it seems like the server load is just so that somebody gets lucky enough to see the server error out. I don't think there's much we can do about this, other than move the wiki onto a more powerful server. But, there are no ads on this site, there is no revenue model, just a very kind person paying for hosting that keeps this site up. I'm more than willing to overlook a few hiccups for the continuing availability of explain xkcd. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 07:12, 23 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yeah, I get those too, but St. Nerol was talking about something that happened recently with the server running out of hard drive space and throwing SQL errors every time someone tried to make large edits. I had to find Jeff on twitter because I'd get SQL errors when I tried to edit his talk page. He's looking into history deletion plugins, to clear out our vast archives of deleted spam and obsoleted prototype comic templates. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 08:10, 23 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Install a caching reverse proxy to handle heavy load ==&lt;br /&gt;
&lt;br /&gt;
According to returned headers, this server runs from Apache directly. I would recommend setting up a reverse caching proxy in front of Apache to handle high traffic load (like, e.g. current load). The one I use is nginx (http://nginx.org/) -- admins, drop me an email if you need help setting it up [[User:Fry-kun|Fry-kun]] ([[User talk:Fry-kun|talk]]) 21:38, 26 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The standard software to use is either Squid or Varnish. Nginx is a bit too much of a webserver to be configured in the way MW needs iirc. Although nginx would help with serving the static assets. Unfortunately there will be a need to switch to a proper server first. The site seems to be hosted on shared hosting. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 04:59, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I had gotten burned before with both Squid and Varnish but Nginx had always kept my systems alive. It's extremely lightweight and works great to fix these kinds of problems. But, of course if it's a shared server where you can't use it, it won't help... [[User:Fry-kun|Fry-kun]] ([[User talk:Fry-kun|talk]]) 16:35, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Nginx is a great webserver. It'll serve out static pages much better than Apache. But the issue here isn't the webserver. It's PHP and all the work that the database needs to do on every request. Switching webservers won't get rid of that issue. Using squid/varnish a proper reverse proxying cache will allow complete pages to be cached and served directly to readers bypassing the webserver, php, and the database entirely on some requests. That'll reduce the load the site has to cope with. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 23:47, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== A couple of enwiki features implemented ==&lt;br /&gt;
&lt;br /&gt;
I have &amp;quot;imported&amp;quot; {{tl|disambig}} and the related [[:Category:Disambiguation pages|category]] for the [[Exoplanets‎‎|one page]] it was needed for (to avoid having a page that was uncategorised :-) ).&lt;br /&gt;
&lt;br /&gt;
I have also created {{tl|unsigned ip}} (and converted the one use of {{tl|unsigned}}) and applied it for a handful of existing uses of {{tl|unsigned}}. It hardly matters, but then it's also only three more characters to type for new uses.&lt;br /&gt;
&lt;br /&gt;
Importantly, however, I implore you to consider including the second datestamp parameter when applying either template -- it's actually the more useful information. I know it's a pain to convert times ''back'' to UTC, but, hey, most of you don't have to deal with a half hour timezone :-) [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 16:19, 13 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Urrggh, there's an option to make UTC the default display time. The template oughta be a little more automated, mebbe filling the time in automagically with five tildes if no date field is entered? The time will be a bit off when editors fill in the unsigned templates, but it'll be close enough to the actual value. '''[[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;]] 23:59, 13 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::No, especially while there's existing templates to adjust, where the &amp;quot;default&amp;quot; datestamp would be way out. If someone wants to fix a lot of the existing usage, setting their timezone to UTC is the simplest option. [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 09:14, 14 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== I've removed &amp;quot;add a comment!&amp;quot; from Discussion heading ==&lt;br /&gt;
&lt;br /&gt;
:''This thread has been moved to [[explain xkcd:Community portal/Proposals#I've removed &amp;quot;add a comment!&amp;quot; from Discussion heading|The proposals board]].''&lt;br /&gt;
&lt;br /&gt;
== Need password reset ==&lt;br /&gt;
&lt;br /&gt;
Sorry to bother you all, but I seem to have lost the password to this account and don't have an email set (which requires the password). I'm still logged in thanks to the &amp;quot;remember me&amp;quot; feature but after 30 days I'll lose access. This isn't fixable at the MediaWiki level; someone with access to the server mysql or whatever will need to change something. Is there such a person I can email with? [[User:Splainr|Splainr]] ([[User talk:Splainr|talk]]) 03:05, 15 April 2013 (UTC)&lt;br /&gt;
:I assume your browser isn't remembering it for you? [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 03:08, 15 April 2013 (UTC)&lt;br /&gt;
::Oh wow that was fast. Nope, neither Firefox not OSX keychain access know what it is. [[User:Splainr|Splainr]] ([[User talk:Splainr|talk]]) 15:18, 15 April 2013 (UTC)&lt;br /&gt;
: I'm not sure how to solve that problem, but I know account usurpation has been done for the single-login transition in Wikimedia wikis, so technically it should be doable. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 23:04, 16 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
See [[mw:Manual:Resetting passwords]]. --[[User:Mormegil|Mormegil]] ([[User talk:Mormegil|talk]]) 11:59, 15 May 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Analytics ==&lt;br /&gt;
&lt;br /&gt;
Recently I found out about WikiApiary, an interesting site that collects analytics from mediawiki wikis. I added explain xkcd. Check the stats that have been collected so far: http://wikiapiary.com/wiki/explain_xkcd --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 00:03, 17 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;External&amp;quot; hotlinking enabled to confirm issue with other car.jpg ==&lt;br /&gt;
&lt;br /&gt;
FYI I have [http://www.explainxkcd.com/wiki/index.php?title=MediaWiki:External_image_whitelist&amp;amp;oldid=34582 enabled] &amp;quot;external&amp;quot; hotlinking to this wiki's own images to show [[:File:other car.jpg]] can display correctly. See further notes about that issue [[File talk:other car.jpg|here]]. [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 14:32, 21 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:If the problem is lack of thumbnail generation, it should display correctly even without hotlinking, simply by using the original size, e.g.&lt;br /&gt;
:[[File:other car.jpg]]&lt;br /&gt;
:I'm not sure why it doesn't. In any case, this image hotlinking thing reminded me, would it be a good idea to use the images hosted at XKCD.com and only upload variants to the wiki (e.g. those at [[:Category:Helper comic images]]) and images Randall for some reason deleted from the server (e.g. images with typos)? This would reduce the load on the explainxkcd server and provide a better experience for viewers since xkcd is already optimized for high loads and actually openly provides the image urls for hotlinking. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 15:01, 21 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Seeing as [[User:Daddy]]'s upload has fixed the wiki always attempting to display the thumbnail version (which still don't work), I have disabled the &amp;quot;hotlinking&amp;quot; again.&lt;br /&gt;
&lt;br /&gt;
[[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 11:32, 22 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Redirect from explainxkcd.com/1234 ==&lt;br /&gt;
&lt;br /&gt;
It would be really cool if &amp;lt;code&amp;gt;http://www.explainxkcd.com/&amp;lt;number&amp;gt;&amp;lt;/code&amp;gt; redirected to the explain page for that number. That would allow people to get to the correct explanation by simply adding &amp;lt;code&amp;gt;explain&amp;lt;/code&amp;gt; to the comic url.&lt;br /&gt;
&lt;br /&gt;
If you are willing to do this, all you would need to do (assuming you run apache with mod_rewrite enabled) is put the following in &amp;lt;code&amp;gt;.htaccess&amp;lt;/code&amp;gt; in your web root:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
RewriteRule ^(\d+)/?$ /wiki/index.php?title=$1 [R,L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-[[User:Sionide21|Sionide21]] ([[User talk:Sionide21|talk]]) 22:28, 7 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yeah! I'm waiting for this. But admins seems to be rare here.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:44, 7 June 2013 (UTC)&lt;br /&gt;
::And it seems we both could help...--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:47, 7 June 2013 (UTC)&lt;br /&gt;
:::There are several admins here (in fact, I am, too), but what you are looking for is the sysop, the one with access to the server. Admins can delete/protect/undelete pages and block users etc. [[User:Jeff|Jeff]] is the only one that can change MediaWiki configuration or url rewriting... --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 17:08, 8 June 2013 (UTC)&lt;br /&gt;
::::Thanks for your information, so I will try to talk to [[User:Jeff|Jeff]]. BTW: Can you edit the main page? I still miss a link to the incomplete comics on the top.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 17:52, 8 June 2013 (UTC)&lt;br /&gt;
::::: At the top of the main page, there is a section that says ''&amp;quot;We have collaboratively explained 1189 xkcd comics, and only 33 (3%) remain. Add yours while there's a chance!&amp;quot;''. The word ''remain'' is already linked to the list. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 19:16, 8 June 2013 (UTC)&lt;br /&gt;
::::::I was talking about the 97% comics. There are still many incomplete pages and we have a category here on that.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:36, 8 June 2013 (UTC)&lt;br /&gt;
:::::::Ah, I see. Just did it; everyone: feel free to change the sentence, I'm not a native speaker. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 21:07, 8 June 2013 (UTC)&lt;br /&gt;
::::::::THANKS! I'm also not native English, I'm German. But this wiki is a great challenge to get more practice, even much more as if talking to common English natives.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:27, 8 June 2013 (UTC)&lt;br /&gt;
::::::::: This is something I want to do, so I'm putting this on my page, so I remember to add it to the .htaccess.  I'm not super familiar with the .htaccess rules, can I have this along with the other rules I have in my htaccess file? --[[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]]) 15:17, 22 October 2013 (UTC)&lt;br /&gt;
:::::::::: Yes, that rule will work alongside other rules --[[User:Sionide21|Sionide21]] ([[User talk:Sionide21|talk]]) 19:28, 27 October 2013 (UTC)&lt;br /&gt;
::::::::::: I've fixed this on our new host.  (I actually had the rule in there already, I just had it in the wrong order.) I'd love to promote this feature a bunch.  Any ideas how? --[[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]]) 02:33, 30 October 2013 (UTC)&lt;br /&gt;
:::::::::::: A sitenotice oughta do it. '''[[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;]] 03:43, 30 October 2013 (UTC)&lt;br /&gt;
:::::::::::: Woohoo, finally!!! Now if we could just have [[#We need more maintainers|clean URLs]] too, that'd be swell! ;) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 05:02, 14 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incomplete – motivation ==&lt;br /&gt;
&lt;br /&gt;
Is it possible to fix (or is there already) a way to add a motivation with the &amp;quot;incomplete&amp;quot;-tag? I tried &amp;lt;nowiki&amp;gt;{{incomplete|the title text needs explaining}}&amp;lt;/nowiki&amp;gt;, which made &amp;quot;edit it&amp;quot; in the banner link to the uncreated page &amp;quot;the title text...&amp;quot;... ––[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 12:16, 10 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You can use the &amp;lt;nowiki&amp;gt;{{notice|Your text...}}&amp;lt;/nowiki&amp;gt; template:&lt;br /&gt;
{{notice|Here is my notice.}}&lt;br /&gt;
:--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 17:30, 10 June 2013 (UTC)&lt;br /&gt;
::Thanks! I think that ideally most incomplete-notices shold carry a note on what's missing, but we aren't there, so this'll do for now. ––[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 10:21, 11 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Unable to Edit ==&lt;br /&gt;
&lt;br /&gt;
I cannot edit this latest comic's page. When I hit edit a screen appears which says &amp;quot;This page has been protected to prevent editing.&amp;quot; I've never edited before, but I'm annoyed by the improper use of the word candid. &amp;quot;It would be candid and unrealistic&amp;quot; would be better off in that sentence if candid was removed. How do I make it so I can edit the page, so I can remove this affront to the English language?&lt;br /&gt;
:I believe you are trying to edit the main page. You can click &amp;quot;Latest comic&amp;quot; in the left sidebar or the &amp;quot;Go to this comic&amp;quot; button in the top right corner of the grey box to go to the actual page for today's comic. '''[[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;]] 16:42, 1 July 2013 (UTC)&lt;br /&gt;
::That was the problem, thanks.--[[User:Holcma01|Holcma01]] ([[User talk:Holcma01|talk]]) 17:07, 1 July 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Banner ad placement ==&lt;br /&gt;
&lt;br /&gt;
On iPad and iPhone browsers, the banner ads obscure the top of the page.  This covers up some of the useful buttons up there, like LOGIN for example.  The workaround is to refresh the page.  Because the banner ad is the last thing to load, you have a brief window of maybe three seconds to find and click the link you need. [[User:Gardnertoo|Gardnertoo]] ([[User talk:Gardnertoo|talk]]) 20:24, 26 July 2013 (UTC)&lt;br /&gt;
: Fixed. --[[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]]) 21:12, 25 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bookmarklet for jumping to explainxkcd.com from xkcd.com ==&lt;br /&gt;
&lt;br /&gt;
I wrote a short {{w|bookmarklet}} for jumping from xkcd.com to explainxkcd.com. Bookmarklet form:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:var%20match%20%3D%20window.location.href.match(%2F%5Cd%2B%2F)%3B%0Avar%20suffix%20%3D%20match%20%3F%20%27%3Ftitle%3D%27%20%2B%20match%5B0%5D%20%3A%20%27%27%3B%0Awindow.location%20%3D%27http%3A%2F%2Fwww.explainxkcd.com%2Fwiki%2Findex.php%27%20%2B%20suffix%3B&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Decoded:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:var match = window.location.href.match(/\d+/);&lt;br /&gt;
var suffix = match ? '?title=' + match[0] : '';&lt;br /&gt;
window.location ='http://www.explainxkcd.com/wiki/index.php' + suffix;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you're on a numbered xkcd page, it will go to the accompanying explainxkcd.com page automatically.  If you're on the xkcd.com home page, it goes to the explainxkcd.com wiki home page. [[User:Mattflaschen|Mattflaschen]] ([[User talk:Mattflaschen|talk]]) 17:30, 19 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
To add this bookmarklet to your browser:&lt;br /&gt;
&lt;br /&gt;
# Copy the bookmarklet javascript (*not* the decoded version)&lt;br /&gt;
# Using your browsers bookmark manager, create a new bookmark&lt;br /&gt;
# Give the bookmark a meaningful name -- e.g. ExplainXKCD&lt;br /&gt;
# Paste the javascript in for the bookmark URL&lt;br /&gt;
# Save.&lt;br /&gt;
({{unsigned|Tomh}})&lt;br /&gt;
&lt;br /&gt;
:Thanks Mattflaschen and Tomh!  I've started collecting these helpful tools on a [[Browser helpers|new page]], to hopefully make them easier for others to find.  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 01:33, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Database Error ==&lt;br /&gt;
&lt;br /&gt;
I have NO IDEA where this should go, but&lt;br /&gt;
http://www.explainxkcd.com/wiki/index.php?title=1011&lt;br /&gt;
has the content&lt;br /&gt;
&lt;br /&gt;
Database error&lt;br /&gt;
A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
(SQL query hidden)&lt;br /&gt;
from within function &amp;quot;SqlBagOStuff::set&amp;quot;. Database returned error &amp;quot;1142: INSERT command denied to user 'dbo423085716'@'74.208.16.155' for table 'objectcache' (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Just thought I should report it.&lt;br /&gt;
&lt;br /&gt;
OOPS forgot sig. [[Special:Contributions/67.175.58.94|67.175.58.94]] 00:13, 23 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Edit: This has been fixed randomly. Never mind then. :X&lt;br /&gt;
&lt;br /&gt;
== [[mw:Extension:SyntaxHighlighter]] ==&lt;br /&gt;
&lt;br /&gt;
Could we maybe enable this? It would be helpful for some of the programming-heavy comics' explanations, e.g. [[1270|today's one]].[[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 17:02, 27 September 2013 (UTC)&lt;br /&gt;
: Done, PinkAmpersand. --[[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]]) 19:57, 28 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== It's not taking me to the main page ==&lt;br /&gt;
&lt;br /&gt;
If I type explainxkcd.com, it redirects me to http://www.explainxkcd.com/wiki which just shows a directory listing, rather than taking me to the main page (as I assume it's supposed to). [[User:Chridd|chridd]] ([[User talk:Chridd|talk]]) 02:07, 31 October 2013 (UTC)&lt;br /&gt;
:Thaat's not supposed to happen. I'm on it. '''[[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;]] 06:49, 31 October 2013 (UTC)&lt;br /&gt;
:Is it fixed for you now? '''[[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;]] 06:55, 31 October 2013 (UTC)&lt;br /&gt;
::Yes [[User:Chridd|chridd]] ([[User talk:Chridd|talk]]) 14:46, 31 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Logo in upper left corner missing ==&lt;br /&gt;
&lt;br /&gt;
The logo in the upper left corner is missing, probably because of a wrong redirect. The logo should be at http://www.explainxkcd.com/wiki/skins/common/images/explainxkcd.png, but this link takes me to the main page. The icons in the edit toolbar are missing, too, probably the same problem. You should exclude all \.png$ queries from redirects. --[[Special:Contributions/108.162.254.177|108.162.254.177]] 10:09, 31 October 2013 (UTC)&lt;br /&gt;
: Fixed that.  Sorry about that, it was an overzealous htaccess.  Thanks! --[[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]]) 15:45, 31 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Sidebar ad overhangs content in Firefox 25.0 ==&lt;br /&gt;
&lt;br /&gt;
The sidebar ad on each page overhangs the content frame slightly when I view this site in Firefox 25.0 on a Windows 7 Home Premium 64bit pc. I have started Firefox in safe mode with all add-ons disabled and it still happens. Site looks fine in IE 11. {{unsigned ip|173.245.56.79}}&lt;br /&gt;
:Have you tried hitting control-shift-R, or clearing your cache? That sounds like Firefox is disregarding part of our CSS for whatever reason. I'm running a very similar setup and I'm not getting these problems. Try giving it a wee bit of time and trying again. '''[[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;]] 17:27, 13 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:What's your monitor resolution and size of your Firefox window (maximized, 50/50 split, etc)? [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:24, 13 November 2013 (UTC)&lt;br /&gt;
::I'm really sure that scaling isn't the issue, I made the sidebar width definite. I'll check it again. '''[[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;]] 19:06, 13 November 2013 (UTC)&lt;br /&gt;
:::The sidebar has a fixed width defined at the CSS style sheet. Press F5 or CTRL-R to reload this style sheet. This happened to me in the past too. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:14, 13 November 2013 (UTC)&lt;br /&gt;
::::I changed the defined width to pixels instead of em, in the annoying edge-case that a browser uses a weird default font width. '''[[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;]] 19:24, 13 November 2013 (UTC)&lt;br /&gt;
:::::It looks fine now.--[[Special:Contributions/173.245.56.79|173.245.56.79]] 06:08, 18 November 2013 (UTC)&lt;br /&gt;
::::::Sidebar ad overhangs content in DuckDuckGo 7.67.1.2 for iOS 15.4.1, on iPhone 12. aka 'Your sidebar ad has been crushed into a cube. You have fifteen minutes to move your cube.'&lt;br /&gt;
&lt;br /&gt;
== Connection problems ==&lt;br /&gt;
&lt;br /&gt;
Whatever the new hoster does cost, you should get your money back. Sometimes the page doesn't load at all, or the menu is missing after the browser did finish after one or two minutes. The performance here is still annoying. That cloud seems to be a dead cloud. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:33, 11 January 2014 (UTC)&lt;br /&gt;
:It's easily more performant than our old service, and it holds up far better to traffic. I am inclined to say that it's a region specific issue, and I'll submit a ticket for that, but they've worked far better than flat shared hosting for the time that we've been using them. '''[[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;]] 00:01, 12 January 2014 (UTC)&lt;br /&gt;
::More detail: The message is an Error 522 (Connection timed out).&lt;br /&gt;
::*You (Browser, Working) &amp;lt;-&amp;gt; Amsterdam (CloudFlare, Working) &amp;lt;-&amp;gt; &amp;lt;nowiki&amp;gt;www.explainxkcd.com&amp;lt;/nowiki&amp;gt; (Host, '''Error''')&lt;br /&gt;
::In December the CloudFlare did belong to Frankfurt. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:35, 12 January 2014 (UTC)&lt;br /&gt;
:::I'm having still major problems to connect, only this this silly error message. ...and then it does work again. Still strange.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:58, 14 January 2014 (UTC)&lt;br /&gt;
:Today I've been getting a ''lot'' of these errors with Cloudflare.  (London-based CloudFlare, in my case.)  &amp;quot;Error 522 Ray ID: 2587581d8b8a350c • 2015-12-21 23:25:22 UTC&amp;quot; is just one of the IDs.  Not sure if you'd prefer another bit of the page info, instead, but the Ray ID looked unique enough to pinpoint debug info in the background.)  The suggestion is made that the web server is too busy at something or other. Anyway, just so you're aware.&lt;br /&gt;
:I had a look here, first, to see if anyone had mentioned anything (and found the above), so apologies if I'm not posting in the best bit of the best page. [[Special:Contributions/162.158.152.227|162.158.152.227]] 23:44, 21 December 2015 (UTC)&lt;br /&gt;
::It seems to be an occasional regional issue that cloudflare has with us. When I go to our server directly our site is still up, so something between us and cloudflare is failing. Not sure what though. '''[[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;]] 03:40, 22 December 2015 (UTC)&lt;br /&gt;
:Yesterday (and day before?) Cloudflare London insisted that the server was not responding. Not sure if that was an actual explain-server issue (not seen mention of it anywhere else, in a brief dig), only Cloudflare London being refused by the server (detecting and blanket filtering rogue traffic via my gateway) or some other issue. Meant to check for update timestamps on the latest comic article that coincided with my being unable to visit the site at the time.  But FYI, assuming the cause isn't already sorted out with no further actions needed and/or possible... [[Special:Contributions/162.158.155.92|162.158.155.92]] 16:02, 11 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wrong IP address shown ==&lt;br /&gt;
&lt;br /&gt;
All [http://www.explainxkcd.com/wiki/index.php?title=Special:RecentChanges&amp;amp;hideliu=1 edits by IPs] (well, at least all I checked, including my own edits) are recorded using IP addresses of CloudFlare ([http://www.utrace.de/whois/108.162.238.220 108.162.192.0/18], [http://www.utrace.de/whois/173.245.50.88 173.245.48.0/20] and some other ranges), i.e., it's not the address of the client, but of the server. This seems similar to [https://bugzilla.wikimedia.org/show_bug.cgi?id=56681]. --[[Special:Contributions/108.162.254.160|108.162.254.160]] 09:05, 29 January 2014 (UTC)&lt;br /&gt;
:That's something we're working on, but current limitations with our provider are making things sow for us. When they give us what we need, we can do it. '''[[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;]] 16:59, 29 January 2014 (UTC)&lt;br /&gt;
::Hmmpf! I just noticed this twelve months later and it's still the case... [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 01:59, 29 January 2015 (UTC)&lt;br /&gt;
:::Uurrrp a couple of holdups happened, I need to do this at some point. '''[[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:54, 29 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: I just noticed it as well [[Special:Contributions/162.158.252.197|162.158.252.197]] 04:20, 24 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
: CloudFlare is already providing the Real Ip address -- there are mods for Apache https://support.cloudflare.com/hc/en-us/articles/203656534-How-can-I-set-up-Apache-mod-CloudFlare- and Nginx https://support.cloudflare.com/hc/en-us/articles/200170706-How-do-I-restore-original-visitor-IP-with-Nginx-  or you can just pull it from the X-Forwarded-For HTTP header which proxy servers (like CloudFlare) typically puts the client IP address.   [[Special:Contributions/162.158.252.197|162.158.252.197]] 04:25, 24 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 1337 leads to...? === &lt;br /&gt;
&lt;br /&gt;
Current and latest comic page, 1337, unusually has a &amp;quot;Next&amp;quot; before there's even any 1338 page.  (It points to 1337.)  As a lowly IP, I don't feel I ought to delve too deep to see if it's a page template issue (possibly because &amp;quot;1337&amp;quot; is both a past title ''and'' the current number, maybe, although not too sure if that'd work out) or just because of manual editing.  But bringing it to general attention. (It may of course be an issue that does not even last beyond Wednesday, and comic number 1338's arrival, even without intervention.) [[Special:Contributions/141.101.99.7|141.101.99.7]] 13:40, 3 March 2014 (UTC)&lt;br /&gt;
:D'aww, and I wanted to be lazy too. I'll get to fixing it, an IP took it to himself to add stuff to the comic template and he removed the auto-hiding buttons. Imma fixy. '''[[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;]] 17:42, 3 March 2014 (UTC)&lt;br /&gt;
::I did revert some edits on that issue here, so for the first point it should work again. In general: The main page should not be affected like this and the test environment is called: Sandbox. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:43, 3 March 2014 (UTC)&lt;br /&gt;
:::The issue was fixed three hours before your autorevert. This is getting excessive. The next time you autorevert a large edit without testing or making an attempt to fix things yourself, expect a three-day ban. '''[[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;]] 22:41, 3 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== No confirmation email? ==&lt;br /&gt;
&lt;br /&gt;
I requested an email for confirmation when I registered. I got nothing, not in spam filter, not in trash, and definitely in not my inbox.&lt;br /&gt;
&lt;br /&gt;
Today, I requested another confirmation email. Again, nothing has appeared.&lt;br /&gt;
&lt;br /&gt;
Is it me? Is it my shampoo??? Enquiring minds want to know....&lt;br /&gt;
Thanks. [[User:Karenb|Karenb]] ([[User talk:Karenb|talk]]) 22:45, 20 March 2014 (UTC)&lt;br /&gt;
:Confirmation emails? What, are we a five-star hotel now?&lt;br /&gt;
:Jokes aside, is this a thing you really need? You should be autoconfirmed after editing for a while without getting blocked, but if you can put forward a good reason why we should add this in, I'll do it. '''[[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;]] 00:54, 21 March 2014 (UTC)&lt;br /&gt;
:::Not blocked! Trying to authenticate my email, which I thought was an automatic process. Does that feature not work? That would certainly explain the lack of autoresponse.... Cheers. KB [[User:Karenb|Karenb]] ([[User talk:Karenb|talk]]) 01:35, 21 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm having the same issue. I've requested several confirmation emails over the past few days. I have also tried changing and then resetting my email address. Nothing has worked so far, and it's not in any of my filtered inboxes. I can edit most pages. Will this fix itself even if I don't get an email? [[User:DownGoer|DownGoer]] ([[User talk:DownGoer|talk]]) 18:16, 26 June 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Because the people visiting here are probably the people that should see this==&lt;br /&gt;
After the server upgrades mentioned in the sitenotice, de.explainxkcd.com should exist. I'm not publicizing it yet, just want to get it up and work out implementation details before it goes fully live. Pls dun test during the downtime, there'll be plenty of time for that after it's live. '''[[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;]] 01:14, 21 March 2014 (UTC)&lt;br /&gt;
:Ok, so our server doesn't actually have the required dependencies to complete the upgrade, so that was slightly fruitless. Sorry about any downtime or inconvenience caused, I didn't add the German wiki again because I'm looking set up the parallel wikis on an up-to-date base. Sorry again for any inconvenience that may have caused, I'll make sure to be better prepared next time, and maybe actually succeed in performing the upgrade next time. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 02:02, 24 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Does anyone have image of Black Hat saying to Cueball &amp;quot;It's 'cause you're dumb&amp;quot; ?==&lt;br /&gt;
Guys, does anyone has this image? &lt;br /&gt;
I'm hosting Russian xkcd fanpage here - vk.com/xkcdoff and if someone would post it it would be very helpful. --[[User:KOTYAR|KOTYAR]] ([[User talk:KOTYAR|talk]]) 22:40, 24 March 2014 (UTC)&lt;br /&gt;
:I actually can't find it either. Shame, I liked that old thumbnail. I could probably photoshop up a new version if you really want one though. '''[[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:53, 26 March 2014 (UTC)&lt;br /&gt;
:&lt;br /&gt;
::[[File:explain xkcd blog header image.png|right]] Just going to the [[explain xkcd]] page and following [http://wayback.archive.org/web/20091026122109/http://www.explainxkcd.com/2009/07/03/extrapolating/ the first historic (internet-archived) link] allowed me to extract [http://wayback.archive.org/web/20110202213753im_/http://www.explainxkcd.com/wp-content/themes/lightword/images/header-image.png the requested &amp;quot;header-image.png&amp;quot;] &amp;lt;small&amp;gt;(the [http://www.explainxkcd.com/wp-content/themes/lightword/images/header-image.png corresponding image URL on the current site] gives nothing anymore... thank you, Internet Archive!)&amp;lt;/small&amp;gt;. Which I uploaded to the wiki here, for convenience and because it's part of this wiki's history, in a way, and also, cool. [[File:Face-smile.svg|20px|Smile|link=]] - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 10:39, 16 April 2014 (UTC) &amp;lt;small&amp;gt;(PS: also, [http://www.facebook.com/explainxkcd/photos/10150144122985214 facebook.com/explainxkcd/photos/10150144122985214]; but JPEG.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== expxkcd.com redirect not up-to-date ==&lt;br /&gt;
&lt;br /&gt;
By adding &amp;quot;exp&amp;quot; at the beginning of the URL one can easily switch from [http://xkcd.com/1234 xkcd.com/1234] to [http://expxkcd.com/1234 expxkcd.com/1234], which redirects to the corresponding explanation here, and that's nice. But right now, [http://expxkcd.com expxkcd.com] redirects to [[1355]] (at least for me), instead of [[1356]], the latest comic. Wouldn't it be better if expxkcd.com redirected to the [[Main Page]] instead (as does correctly [http://explainxkcd.com explainxkcd.com])? - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 10:55, 16 April 2014 (UTC)&lt;br /&gt;
:expxkcd is actually a thing that user [[user:grep]] was so kind to purchase and handle for us. I can forward this on to him for him to resolve, and give him the rewrite rules we use if he needs them. '''[[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;]] 11:12, 16 April 2014 (UTC)&lt;br /&gt;
:&lt;br /&gt;
::Nice, thank you for the quick forward to the right place. - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 11:31, 16 April 2014 (UTC)&lt;br /&gt;
:Yeah, the reason for that is that right now, I update it manually, which is obviously a really bad idea. I plan to change this pretty soon. I don't want it to go to the main page because the main page doesn't show the discussion, and comes along with all the other, regular main page stuff. Any rewrite rules wouldn't hurt, Davidy22. {{User:Grep/signature|12:04, 16 April 2014}}&lt;br /&gt;
::Hrm. Ours rules point towards the main page. We have no automatically updating page that always redirects to the latest comic, but you can use Mediawiki hooks to append the contents of the page [[Template:LATESTCOMIC]] to the end of our URL. '''[[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;]] 23:44, 17 April 2014 (UTC)&lt;br /&gt;
:::Sorry, I don't understand. My BOT will upload the next comic on time, unless it's some new chaos by Randall a BOT just can't handle. The LATESTCOMIC template is updated and so it seems only be an issue on that damn Cloud Service Cache. Even Randall's pages are affected. At &amp;quot;What-if&amp;quot; I still have to use &amp;lt;CTRL+R&amp;gt; to get the latest content. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 00:26, 18 April 2014 (UTC)&lt;br /&gt;
::::We're talking about a different thing related to shortened URLs. '''[[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;]] 02:24, 18 April 2014 (UTC)&lt;br /&gt;
:::That is an interesting idea, however I just made a script that automatically adds 1 every Monday, Wednesday, and Friday. I could have it grab the number from your page and do this once a day at something like 00:10 EST (because Randall sometimes does things on other days), that's a possibility as well (other times / intervals may also be done if you wish/want). {{User:Grep/signature|04:34, 02 May 2014}}&lt;br /&gt;
::::Our LATESTCOMIC page and Randall's xkcd json page should both have up-to-date comic numbers for you to pull. Ours is probably the better one to pull since your site is linking to us. '''[[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;]] 06:30, 2 May 2014 (UTC)&lt;br /&gt;
:::::The script now checks Template:LATESTCOMIC every 30 minutes to see if the comic has changed or not. If you wish, I &amp;lt;u&amp;gt;might&amp;lt;/u&amp;gt; be able narrow this down to 11PM-&amp;gt;6AM (for 30 minute checking) and then have it check every two hours at other times or something similar to that (if [http://www.freedesktop.org/software/systemd/man/systemd.time.html systemd.time] has a way to do it) {{User:Grep/signature|12:13, 09 May 2014}}&lt;br /&gt;
::::::I still do not see that problems. Please touch this wiki as less as needed, this is still the best choice. But there is still a big problem on the cache, an update on a picture lasts many hours. Some statements in &amp;quot;LocalSettings.php&amp;quot; should work, if not this wiki version is buggy. Problems should be solved at the cause and not be overridden by some additional scripts. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:51, 9 May 2014 (UTC)&lt;br /&gt;
:::::::We have ample bandwidth for a bot that only checks once every half-hour. The image caching issue is irrelevant to the current topic. '''[[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;]] 03:45, 10 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Explain xkcd upgraded to version 1.19.17 ==&lt;br /&gt;
&lt;br /&gt;
Woo! '''[[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;]] 17:59, 26 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The header seems to have broken, there is no longer a link to the explanation in it. [[Special:Contributions/173.245.56.154|173.245.56.154]] 22:00, 26 July 2014 (UTC)&lt;br /&gt;
:Which header are you talking about? All the links I can think of still seem to work. '''[[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;]] 02:13, 27 July 2014 (UTC)&lt;br /&gt;
:: It fixed itself shortly after I mentioned it. It was the incomplete explanation, the link to 428 was bold, but not a link. [[Special:Contributions/173.245.56.154|173.245.56.154]] 04:48, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
One of the ads is broken.&lt;br /&gt;
&lt;br /&gt;
[[File:brokenexplainxkcdad.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;[[User:MrGameZone|0100011101100001011011010110010101011010011011110110111001100101]] ([[User talk:MrGameZone|talk page]])&amp;lt;/small&amp;gt; 04:33, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ooh, thanks for catching that. Should be fixed now. '''[[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;]] 17:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Nice :) But is this update a preparation for an upcoming update to {{w|MediaWiki version history|one of the latest versions}}, or are we limited to 1.19 for some reason? I'm asking because 1.19 is only supported for {{w|mw:Version lifecycle#Version timeline|a few more months}}, and also because with newer versions we'd have access to some niceties -- for example, after version 1.20 the {{w|mw:Help:Magic words#Statistics|PAGESINCAT}} magic word accepts parameters, which would allow the count of explained comics in the main page to work using less hardcoded hacks. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 16:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Prior attempts to update the wiki have been prevented by the realization that Lunarpages doesn't give us quite as much control over our server share as we thought we had. Checking again, they seem to have upgraded the version of PHP on our server since we last attempted and failed to run one dumb update script, which should mean that it'll work next time we try it. The wiki also has quite a bit of user effort invested into it now, and I'm a little less ready to jump into .0~.3 releases than I would normally be on my own machine, so I upgraded down the LTS path that I knew would be safe. After the first ill-planned attempt, I've been eyeing the 1.23 LTS line for the next major jump, but I'm certainly not stepping into it while it's still relatively fresh. '''[[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;]] 17:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Sounds reasonable. Thanks for the details. I'll be looking forward to the next update :) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 18:52, 28 July 2014 (UTC)&lt;br /&gt;
::Just wanting to offer, I use ARP Networks for hosting, you should check them out if you want more control. {{unsigned ip|173.245.56.154}}&lt;br /&gt;
:::Hum, there's an option. I'll keep that in mind. '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
::::It wasn't me that posted that comment. But surprisingly enough anon and I have the same first two bytes in our IP addresses. Congrats on the version upgrade. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 05:31, 29 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why does the site say I'm blocking ads when I'm not? I do use AdBlock Plus, but it's turned off for this site. Screenshot [http://i1271.photobucket.com/albums/jj637/backagain2012/contra_zps3c6aa295.png here]. And while I'm here, that &amp;quot;unblock us&amp;quot; text has an error- the first &amp;quot;and&amp;quot; in the second sentence shouldn't be there. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 01:51, 29 July 2014 (UTC)&lt;br /&gt;
:The text only appears when the ads fail to load. The error message actually says noscript, which means that the Javascript that the ad box uses to fetch images isn't running. How long has this been happening for you? '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
::It just started. I came over here as soon as I noticed it. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 19:07, 29 July 2014 (UTC)&lt;br /&gt;
:::Have you recently made any changes to your browser? Does the problem persist when you hit CTRL+SHIFT+R? '''[[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;]] 12:43, 30 July 2014 (UTC)&lt;br /&gt;
::::Nope, no recent changes. And yes, the problem persists when I hit Ctrl+Shift+R. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 14:04, 30 July 2014 (UTC)&lt;br /&gt;
:::::I am genuinely puzzled. The message tells me that something is causing your browser to fail to load/run the Javascript that makes the ad render and report stats, so the problem could be anything that can cause that: noscript, outdated browser, experimentation. I don't know anything about your setup, and it works on my test machines, so I can't tell currently what's wrong. '''[[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;]] 03:10, 1 August 2014 (UTC)&lt;br /&gt;
:Do you have privoxy installed on your machine? (this is a long shot) [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 00:24, 3 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== If anything broke, complain here. ==&lt;br /&gt;
&lt;br /&gt;
There's a banner that says:&lt;br /&gt;
The wiki has been updated to stable mediawiki version 1.19.17. If anything broke, complain here.&lt;br /&gt;
&lt;br /&gt;
So...&lt;br /&gt;
&lt;br /&gt;
The following have broken:&lt;br /&gt;
Cars&lt;br /&gt;
My previous computer&lt;br /&gt;
A railroad train&lt;br /&gt;
Condoms&lt;br /&gt;
Etc.&lt;br /&gt;
&lt;br /&gt;
None of which has anything to do with this website.&lt;br /&gt;
&lt;br /&gt;
The banner should be made more specific before Randall sees it and does a comic mocking it.&lt;br /&gt;
&lt;br /&gt;
Or not. {{unsigned ip|173.245.48.80}}&lt;br /&gt;
:Well, there's always that one guy. Fixed. '''[[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;]] 05:05, 28 July 2014 (UTC)&lt;br /&gt;
::I don't see how you could have fixed that one guy.  Throttled, eliminated, insulted, blocked, etc.  But not fixed. [[User:Walenc|Walenc]] ([[User talk:Walenc|talk]]) 16:29, 28 July 2014 (UTC)&lt;br /&gt;
:::See sense 6 here: http://en.wiktionary.org/wiki/fix#Verb :P [[Special:Contributions/173.245.56.154|173.245.56.154]] 02:13, 29 July 2014 (UTC)&lt;br /&gt;
::::i bet you think yer so clever. just watch me take the site down. '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Misc Request... (|&amp;lt; &amp;lt; Prev Comic Next &amp;gt; &amp;gt;| format) ==&lt;br /&gt;
&lt;br /&gt;
I usually browse in a very small window and the menu buttons split kind of strangely (http://i.imgur.com/wPE7szZ.png). Would it be possible to replace the spaces with nonbreaking spaces? --[[Special:Contributions/173.245.56.202|173.245.56.202]] 15:13, 1 August 2014 (UTC)&lt;br /&gt;
:Annoyingly, the spaces that are giving you trouble can't be changed because they're text string inputs, and Mediawiki has no regular expression markup yet. Every other instance of formatting-critical spaces has been changed to non-breaking spaces though, thanks for the heads up! '''[[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;]] 18:13, 2 August 2014 (UTC)&lt;br /&gt;
:: I think I fixed this by adding a space between the buttons. Unfortunately, this only works as long as the comic is not as wide as the button bar. I guess this is because of the surrounding table. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 20:15, 2 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Not receiving password reset emails ==&lt;br /&gt;
&lt;br /&gt;
I've forgotten my password, and password reset is not working for me.  I went to [[Special:PasswordReset]], and had it send me a reset email.  However, I have not received the email.  I am sure that I have an email associated with my account, and it's confirmed. [[Special:Contributions/173.245.54.174|173.245.54.174]] 08:38, 18 August 2014 (UTC)&lt;br /&gt;
:Tested, password reset emails seem to work for me. Have you checked your spam folder? '''[[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;]] 18:04, 24 August 2014 (UTC)&lt;br /&gt;
::I checked in Gmail in &amp;quot;Mail &amp;amp; Spam &amp;amp; Trash&amp;quot;, and it still doesn't find it.  I tried a fresh reset, so we'll see if that comes through.  No luck after a minute or two.  [[Special:Contributions/108.162.216.71|108.162.216.71]] 04:59, 28 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==TOR Captcha==&lt;br /&gt;
&lt;br /&gt;
Hi, I use TOR. To access your website, cloudfare has made it such that I have to enter a captcha. This is very inconvenient, as your site is not the only one doing this. Can you please fix this issue? You should be able to see a guide here: https://tor.stackexchange.com/questions/599/cloudflares-captcha-screen-insurmountable . Thank you for taking the time to consider this. [[Special:Contributions/141.101.104.60|141.101.104.60]] 11:34, 13 September 2014 (UTC)&lt;br /&gt;
:Is it better now? '''[[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;]] 13:06, 13 September 2014 (UTC)&lt;br /&gt;
::Sorry, no. I still get the captcha. What did you try doing? [[Special:Contributions/108.162.216.87|108.162.216.87]] 22:09, 13 September 2014 (UTC)&lt;br /&gt;
:::Set the threat level threshold way up. Any further steps into cheap botnet territory. For your security, you may want to reconsider the nodes through which you're operating through. Also, why do you need to use Tor to visit us? '''[[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:17, 14 September 2014 (UTC)&lt;br /&gt;
::::Ah, okay, thanks, now I'm not getting the captcha. As for why I'm using Tor, I don't ''need'' to, but I'd rather do so just to be anonymous. I wouldn't have written if it were just your site, but since Cloudfare has made captchas the default setting for Tor, the internet is starting to become near unusable. So that everyday people aren't scared away from using Tor due to the perceived complexity of daily browsing, whenever I have to enter a captcha, I try to contact someone at the site to ask them to change the setting. [[Special:Contributions/108.162.216.82|108.162.216.82]] 06:52, 14 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Upgrade to the latest MediaWiki version? ==&lt;br /&gt;
&lt;br /&gt;
I think we should start trying to maintain a regular upgrade schedule of some sort. 6 months ago was the last time we've upgraded, and I think we should upgrade again. The impetus for this change would be for [https://www.mediawiki.org/wiki/Extension:Translate translation] [https://www.mediawiki.org/wiki/Extension:TranslationNotifications features], [https://www.mediawiki.org/wiki/Extension:Babel plus other multilinguality efforts that require the new versions of MediaWiki.] Localization efforts should be put into place, and the translate feature would work well for that. [[User:Chess|Chess]] ([[User talk:Chess|talk]]) 01:53, 12 November 2014 (UTC)&lt;br /&gt;
:Plans to upgrade only include LTS releases. That said though, the recent and unintentional server downtime was actually the result of a setup for a coming mediawiki upgrade, among other things. The plan is to upgrade to 1.23 sometime in the coming months, during the weekend after a satisfactory number of bugfix releases. We're very interested in setting up translations, although mediawiki in it's current form already supports translation; the extensions you linked are mostly quality-of-life additions. It's been delayed because the plan is to eliminate all incomplete comics first so that translators have a solid base to work from. '''[[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;]] 02:42, 12 November 2014 (UTC)&lt;br /&gt;
::Can I just be nitpicky and say that we last upgraded about 3.5 months ago, not 6? Thanks. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 03:17, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Fix HTTPS access ==&lt;br /&gt;
&lt;br /&gt;
explain xkcd is using Cloudflare which recently enabled HTTPS for all users, but when [https://explainxkcd.com accessing it via HTTPS] it returns [https://support.cloudflare.com/hc/en-us/articles/200171916-Error-521 error 521].&lt;br /&gt;
In order to fix this in addiction to the solution steps proposed by CloudFlare check if SSL settings are correct. {{unsigned ip|173.245.52.138}}&lt;br /&gt;
:On it '''[[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;]] 18:51, 13 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
HTTPS is working now, there just some mixed-content warnings, mostly on style tags which being active mixed content are blocked, but it's still a good improvement as it's possible to have more privacy when browsing explain xkcd.{{unsigned ip|188.114.99.35}}&lt;br /&gt;
&lt;br /&gt;
: Whoever has server access, can they try changing $wgServer ([[mediawikiwiki:Manual:$wgServer|Manual:$wgServer]]) to use a protocol relative url? As the manual page says, you may also want to set $wgCanonicalServer to a fully-qualified url (hopefully defaulting to https). [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 04:17, 29 October 2015 (UTC)&lt;br /&gt;
::Done. How's it now? '''[[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;]] 08:42, 31 October 2015 (UTC)&lt;br /&gt;
::: Much better! The styles and scripts are loaded now, and the page looks good. It's still not completely green https because it's loading some images over plain http, but my browser at least appears to be allowing them for now. If you want any more suggestions on technical issues, let me know. I currently maintain my own mediawiki installation with full https, cloudflare, and short urls. [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 20:27, 4 November 2015 (UTC)&lt;br /&gt;
::::Huh. Is it the ad images? The comic pictures *should* be also done over https, no? '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:10, 5 November 2015 (UTC)&lt;br /&gt;
::::: Yeah, one of them is the ad images (http://www.explainxkcd.com/wiki/lunarpages_160x600.jpg). Most of them are from [[MediaWiki:Common.css]], so you could just change all the urls on that css page to protocol-relative. The only other one I see is http://i.creativecommons.org/l/by-sa/3.0/88x31.png, which I think is set at [[mediawikiwiki:Manual:$wgFooterIcons|$wgFooterIcons]], but I'm not sure. All of them appear to be accessible over https, so just changing the links should work. [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 01:13, 6 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
If I replace xkcd with explainxkcd I get a very ugly CSS-less page in Chrome on Win7. If I change the https to http, the page works [[Special:Contributions/141.101.105.12|141.101.105.12]] 06:07, 3 September 2015 (UTC)&lt;br /&gt;
:Can you provide more information about your setup? Test a different browser? Unable to reproduce. '''[[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;]] 11:56, 3 September 2015 (UTC)&lt;br /&gt;
:: I can reproduce in Firefox. This is due to the mixed content blocker. Usually, it should only block active content (scripts) and maybe warn about passive content (stylesheets), but at least in Firefox, it is configurable to block both. But I cannot see why the stylesheets shouldn't be served via HTTPS.&lt;br /&gt;
:: Currently, the styles are referenced absolutely ([http://www.explainxkcd.com/wiki/load.php?debug=false&amp;amp;lang=de&amp;amp;modules=site&amp;amp;only=styles&amp;amp;skin=vector&amp;amp;* http://www.explainxkcd.com/wiki/...]), but they should rather by referenced domain-relative (&amp;lt;code&amp;gt;/wiki/...&amp;lt;/code&amp;gt;) or at least protocol-relative (&amp;lt;code&amp;gt;[//www.explainxkcd.com/wiki/load.php?debug=false&amp;amp;lang=de&amp;amp;modules=site&amp;amp;only=styles&amp;amp;skin=vector&amp;amp;* //www.explainxkcd.com/wiki/...]&amp;lt;/code&amp;gt;). --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:29, 3 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== RSS feed issue ==&lt;br /&gt;
&lt;br /&gt;
When attempting to access the feed for this wiki I'm told &amp;quot;Sorry. No feed found.&amp;quot; Is there some way that the feed can be restored to the satisfaction of Feedly? Could it be due to some [http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fexplainxkcd.com%2Frss.xml validation issues], or should I consider changing my news reader? [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 23:08, 7 January 2015 (UTC)&lt;br /&gt;
:Huh. The feed updates automatically with a script that I wrote a while ago, I'm very sure it passed more than this the last time I checked. Fixed a few things, left the one about the date because that's a pain to fix, and one that I can't figure out for the life of me. I think I fixed the line that was causing the actual problems though. Should update on feedly now. '''[[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;]] 01:52, 8 January 2015 (UTC)&lt;br /&gt;
::Hallelujah - the feed was mixed in with other geeky material and it only took me nearly 8 months to notice that nothing was coming through from here anymore. I'm premature with my thanks though. The [http://explainxkcd.com/rss.xml RSS link] in the navigation pane to the left still doesn't want to be understood by Feedly. By contrast, other feeds such as for latest changes can be picked up. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 02:04, 8 January 2015 (UTC)&lt;br /&gt;
:::Hrm. Sent an email to feedly about it, Just tested and I'm having similar issues with feedly. '''[[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;]] 02:17, 8 January 2015 (UTC)&lt;br /&gt;
::::It seems it's not just Feedly. When I use Chrome's [https://chrome.google.com/webstore/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp/related?hl=en RSS Feed Reader], that too also tells me &amp;quot;No posts here yet&amp;quot; followed by the an ever helpful &amp;quot;Chirp, chirp, chirp, chirp&amp;quot; [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 02:33, 8 January 2015 (UTC)&lt;br /&gt;
::::Could it be that it's just not valid XML? I see that it ends at line 236 with &amp;lt;/item&amp;gt; with no other closing tags, for example. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 03:18, 8 January 2015 (UTC)&lt;br /&gt;
:::::Ohwait a minute, the auto updater rips old entries off the bottom and that's where there's supposed to be a closing channel and RSS tag. well. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:19, 8 January 2015 (UTC)&lt;br /&gt;
It's good to know that the cause is now known - I'll let you (or someone else with the authority) get on with fixing things up :-) [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 07:46, 8 January 2015 (UTC)&lt;br /&gt;
:[http://feedly.com/i/subscription/feed/http://www.explainxkcd.com/rss.xml Hullo.] It's not perfect that only one specific formation of the URL works, but it's a start. '''[[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;]] 08:01, 8 January 2015 (UTC)&lt;br /&gt;
:: You sir do God's work - and that coming from a Dillahunty-following Atheist is saying something. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 08:11, 8 January 2015 (UTC)&lt;br /&gt;
My reader has been refusing to process the feed for the last few days. I finally un-busied enough to poke into why. When I looked at the source at [http://www.explainxkcd.com/rss.xml /rss.xml] I saw: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt;&lt;br /&gt;
	&amp;lt;title&amp;gt;1561: Water Phase Diagram&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;link&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/link&amp;gt;&lt;br /&gt;
	&amp;lt;pubDate&amp;gt;Thu, 06 Aug 2015 21:51:11 -0700&amp;lt;/pubDate&amp;gt;&lt;br /&gt;
	&amp;lt;guid isPermaLink=&amp;quot;true&amp;quot;&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/guid&amp;gt;&lt;br /&gt;
	&amp;lt;description&amp;gt;&amp;lt;![CDATA[&amp;lt;h2&amp;gt;1561: Water Phase Diagram&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;http://www.explainxkcd.com/1561&amp;quot;&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;]]&amp;gt;&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;/item&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I'm thinking that the script is broken. I could pro'ly come up with something workable, given the access. --[[User:Ericm301|Ericm301]] ([[User talk:Ericm301|talk]]) 16:50, 9 August 2015 (UTC)&lt;br /&gt;
:What on earth is happening here I don't even know. The script seems fine, I repaired the RSS file again manually. See if it malfunctions again today. '''[[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;]] 01:22, 10 August 2015 (UTC)&lt;br /&gt;
::Script is behaving very strangely. Today's update warped the feed file in a weird way, this doesn't usually happen. I'll test it on my machine to see what's happening. '''[[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;]] 13:56, 10 August 2015 (UTC)&lt;br /&gt;
It was fine for a minute (that must have been your edit), but now it's broke again. --[[User:Ericm301|Ericm301]] ([[User talk:Ericm301|talk]]) 19:53, 10 August 2015 (UTC)&lt;br /&gt;
:Alright, I figured out what was going on with the feed. There was a bit of code I had in the update script that trimmed off the last entry of the RSS file and when I recreated an empty file for the feed after the inexplicable wipe, I forgot to turn it off so it was still shaving off the end of the file. This time it should be working. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:34, 12 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Known appearances&amp;quot; character infobox fix? ==&lt;br /&gt;
&lt;br /&gt;
Currently, &amp;quot;Known appearances&amp;quot; in the characters infobox is broken as for some pages, when the character's category serves as it's own info page. (e.g. [[:Category:Red Spiders]], [[:Category:Sharks]], [[:Category:Squirrels]], [[:Category:Barrel]] etc.) Can this be fixed?--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 11:21, 29 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Fixed it myself. Just use template &amp;quot;Infobox character 2&amp;quot; instead of &amp;quot;Infobox character&amp;quot; when the character's category serves as it's own info page.--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 14:55, 31 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic 1505 (30 March 2015) isn't properly showing up, I think? ==&lt;br /&gt;
&lt;br /&gt;
Excuse me if I'm being a n00b, but [[1505]] is posted, and the page is extant, but it's not showing on the [[Main Page]] yet.  Is this supposed to happen, i.e. waiting for someone to put some content on the page, or did something break somewhere...? Again, sorry if I've just committed a massive derp.  [[Special:Contributions/173.245.56.189|173.245.56.189]] 04:38, 30 March 2015 (UTC)&lt;br /&gt;
:Should be showing up now. '''[[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;]] 09:38, 30 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== rendering problem ? ==&lt;br /&gt;
&lt;br /&gt;
To me, right now, with Windows Firefox 37.0.1, [[625: Collections]] looks like this:&lt;br /&gt;
&lt;br /&gt;
[[File:communityportal_technical_1504_collections.png]]&lt;br /&gt;
&lt;br /&gt;
There doesn't seem to be anything wrong with the source text.&lt;br /&gt;
&lt;br /&gt;
Here's the [[Main Page]] in Internet Explorer 8:&lt;br /&gt;
&lt;br /&gt;
[[File:communityportal_technical_1504_mainpage.png]]&lt;br /&gt;
&lt;br /&gt;
This is affecting everything?  Or just me? [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 03:31, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Okay, [[Special:Contributions/173.245.50.140|somebody]] was messing with [[Template:w]].  I reverted it to the previous editor's version, seemed to fix things. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 03:46, 6 April 2015 (UTC)&lt;br /&gt;
:On that note, they made a similar template that links to rationalwiki, but didn't use it at all in any pages. Huh. It's not even a very significant site. '''[[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;]] 05:52, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The IP [http://www.explainxkcd.com/wiki/index.php?title=301:_Limerick&amp;amp;oldid=84906&amp;amp;diff=88577 preferred the Rationalwiki article] on Poe's Law to the Wikipedia version, I guess.&lt;br /&gt;
::[[User:452]] did not approve. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:57, 6 April 2015 (UTC)&lt;br /&gt;
:::Given the fact that he broke Template:W, and [[Special:Contributions/173.245.50.140|didn't seem to know what he was doing]], I undid his other edits, sorry if this was inappropriate. -[[User:452|452]] ([[User talk:452|talk]]) 17:51, 15 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Main Page ==&lt;br /&gt;
&lt;br /&gt;
When categories are added to the latest comic, the Main Page is also categorized in those categories.--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 13:42, 15 April 2015 (UTC)&lt;br /&gt;
:The most obvious solution would be to put the categories inside &amp;lt;nowiki&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;/nowiki&amp;gt; tags, on every page. {{unsigned|143}}&lt;br /&gt;
::That's ugly and labor-intensive though. I think there's something we can do with string matching to fix it in a better way. '''[[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;]] 03:35, 16 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== #cscore doesn't work with #expr ==&lt;br /&gt;
&lt;br /&gt;
I can't use cscore with expr on my userpage.--{{User:17jiangz1/signature|10:30, 01 May 2015}}&lt;br /&gt;
&lt;br /&gt;
== 1545 page severely broken? ==&lt;br /&gt;
&lt;br /&gt;
The very tail end of the raw page source (using Internet Explorer) is&lt;br /&gt;
 &amp;quot;wgRedirectedFrom&amp;quot;:&amp;quot;1545&amp;quot;});&lt;br /&gt;
 }&amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;&lt;br /&gt;
...and then stops, obviously unfulfilled.  (I also snipped everything up until that unique-looking Redirection data, for brevity.)&lt;br /&gt;
&lt;br /&gt;
Compare that with the equivalent snippet from an adjacent page:&lt;br /&gt;
 &amp;quot;wgRedirectedFrom&amp;quot;:&amp;quot;1544&amp;quot;});&lt;br /&gt;
 }&amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;if(window.mw){&lt;br /&gt;
...and then continues with a working rest of the page.  (Also snipped, but this time both before ''and'' after.  I've kept it short while imagining I've given enough to ID the precise breakpoint though.)&lt;br /&gt;
&lt;br /&gt;
Same problem encountered when using &amp;quot;Next&amp;quot; link from 1544 or &amp;quot;Previous&amp;quot; link from 1546.  Page http://www.explainxkcd.com/wiki/index.php/List_of_all_comics ''itself'' suffers the exact same error. (Last wgVariable listed in LoaC page is ''&amp;quot;wgSearchNamespaces&amp;quot;:[0]'', instead, but still similarly ends after apparently the same close-script and open-script flagging point.)&lt;br /&gt;
&lt;br /&gt;
Does ''not'' go wrong in Mozilla-based browsers also on this machine (Firefox, Seamonkey).  Page sources for 1545 look exactly like the above 1544 snippet, as expected, with no obvious funny characters or 'Little Bobby Tables' anomalies, SFAICT.  In case it's a spurious downloading error that has ended up being cached, I've also &amp;quot;shift-refreshed&amp;quot; in my browser to force download.&lt;br /&gt;
&lt;br /&gt;
Utterly Baffling me, but FYI in case it's something someone needs to know about, although I'm hoping it's just local strangeness and not anything actually of significance.[[Special:Contributions/141.101.98.252|141.101.98.252]] 04:33, 5 July 2015 (UTC)&lt;br /&gt;
:Opened in Internet Explorer 11, it seems to appear for me. Are any site features being impacted by this bug? '''[[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;]] 15:44, 5 July 2015 (UTC)&lt;br /&gt;
::Nothing I was previously familiar enough with to spot an adverse effect.  Note that http://www.explainxkcd.com/wiki/index.php/1545:_Strengths_and_Weaknesses - the link I tried to get from the LoaC page (but only just now tried in non-IE!) works perfectly.  Even while the &amp;quot;/1545&amp;quot; (i.e. 'RedirectedFrom') version of the page ''continues'' to be truncated.  I can only assume that (despite attempts to force things anew), it's buggily-cached iteration.&lt;br /&gt;
::Hang on, that gives me an idea.  Which works.  I changed the 1545 page (change labelled as &amp;quot;Troubleshooting&amp;quot; in history) and... it opens perfectly.  Removed change (should probably have self-reverted, in hindesight, but suspect it'd be fixed anyway) and no further issue.  &amp;quot;List of all Comics&amp;quot; page still as broken (because I haven't forced it to update, and am not inclined to 'interfere' with it), but I shall check again after 1547 forces its own changes upon it.  Otherwise, consider this closed.  Sorry to bother you. &lt;br /&gt;
::TL;DR; problem solved.  Pretty much proven to be not even a site issue, I now think. [[Special:Contributions/141.101.98.252|141.101.98.252]] 21:38, 5 July 2015 (UTC)&lt;br /&gt;
::Ok, FYI, once 1547 'Solar System Questions' ''finally'' appeared, I check &amp;quot;List of all comics&amp;quot; page.  First of all a lot of &amp;quot;Waiting for page...&amp;quot; (uh oh), but then force-refreshed page (in the way that didn't work previously) and it loaded correctly. C'est finis. [[Special:Contributions/141.101.98.252|141.101.98.252]] 15:02, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[881]] loads as &amp;quot;database error&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
With this content:&lt;br /&gt;
Database error&lt;br /&gt;
A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
(SQL query hidden)&lt;br /&gt;
from within function &amp;quot;SqlBagOStuff::set&amp;quot;. Database returned error &amp;quot;1114: The table 'objectcache' is full (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
No other page gives me this error, just [[881]].--[[Special:Contributions/162.158.92.6|162.158.92.6]] 19:42, 2 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I just got this on 564 [[Special:Contributions/141.101.98.200|141.101.98.200]] 22:44, 2 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Database error ==&lt;br /&gt;
&lt;br /&gt;
I can't see [[:Category:Interactive_comics]] (&amp;lt;tt&amp;gt;1114: The table 'objectcache' is full (db423085716.db.1and1.com)&amp;lt;/tt&amp;gt;). [[Special:Contributions/199.27.128.105|199.27.128.105]] 00:18, 3 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== RSS missing ==&lt;br /&gt;
&lt;br /&gt;
Hey it looks like there's an issue with the rss feed, when you browse to the url on the right it just displays an empty page, not sure what's going on. [[User:Eluvatar|Eluvatar]] ([[User talk:Eluvatar|talk]]) 14:19, 3 August 2015 (UTC)&lt;br /&gt;
:Huh, in the last few hours the rss file was inexplicably wiped. I've restored the base of it, the bot should start populating the feed with new comics, but old ones are gone. '''[[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;]] 16:49, 3 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Extra Comics ==&lt;br /&gt;
&lt;br /&gt;
In extra comics, the header of the comic has &amp;quot;Expression error: Unrecognised punctuation character &amp;quot;{&amp;quot;.&amp;quot; such as in [[The Rise of Open Access]]. {{User:17jiangz1/signature|13:32, 13 September 2015}}&lt;br /&gt;
:{{done}} - It was because [[0]] was created, so the logic that #ifexist:0 should be false failed. I changed it to default to -2 when number  is not present, which will work as long as no one creates [[-1]]! [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 11:15, 14 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Explanations for all -4 comics! ==&lt;br /&gt;
&lt;br /&gt;
The main page header now contains this text:&lt;br /&gt;
&lt;br /&gt;
[http://i.imgur.com/p7VACbW.png We have an explanation for all -4 xkcd comics, and only 23 (1%) are incomplete. Help us finish them!]&lt;br /&gt;
&lt;br /&gt;
I'm assuming this is a bug. {{unsigned|Okofish|01:00, 15 September 2015}}&lt;br /&gt;
&lt;br /&gt;
: {{done}} It was a temporary artifact due to recent categorization changes. It's now fixed. Thanks for the quick report :) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 01:14, 15 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion pane missing on comic 1592? ==&lt;br /&gt;
&lt;br /&gt;
After checking the Discussion tab to make sure there ''was'' a Discussion, I thought that someone had removed the &amp;lt;nowiki&amp;gt;{{comic discussion}}&amp;lt;/nowiki&amp;gt; tag, and went into full-page edit to put it back.  But it's there.  Maybe it's just me, maybe it's just temporary, but FYI in case it isn't. [[Special:Contributions/141.101.75.185|141.101.75.185]] 15:06, 19 October 2015 (UTC)&lt;br /&gt;
:Fixed. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:21, 19 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha ==&lt;br /&gt;
&lt;br /&gt;
Captcha not appearing at all. Can't edit pages without turning off security settings (which were set to default). Chrome and &amp;quot;Edge&amp;quot; on Windows 10. Both yell at me about some components of the page being insecure.  15:48, 18 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Same issue with other browsers. reCAPTCHA won't load from an &amp;quot;insecure&amp;quot; resource when the wiki is accessed over HTTPS. [[User:TisTheAlmondTavern|TisTheAlmondTavern]] 15:07, 6 December 2016 (UTC)&lt;br /&gt;
::Oooh, I see. Alright, I'll get to fixing it now I know what the problem is. '''[[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;]] 01:00, 7 December 2016 (UTC)&lt;br /&gt;
Slight bug in the editing panel, when asked what webcomic we're talking about, it cannot be in all caps, it must be strict lowercase, despite appearances on xkcd.com. Could someone take a look at it? [[Special:Contributions/108.162.249.158|108.162.249.158]] 00:54, 5 November 2015 (UTC)&lt;br /&gt;
:It took me several months to figure out that &amp;quot;this wiki&amp;quot; is named &amp;quot;explain xkcd&amp;quot; and not &amp;quot;explainxkcd&amp;quot;. I spent those months answering two questions every time the &amp;quot;what's this wiki's name&amp;quot; question appeared (when I missed the answer, a different question appeared).--[[User:Jojonete|Jojonete]] ([[User talk:Jojonete|talk]]) 09:06, 5 November 2015 (UTC)&lt;br /&gt;
::I was sure both answers were correct, but never attempted to type explainxkcd, just in case. [[Special:Contributions/108.162.221.17|108.162.221.17]] 12:44, 5 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== wiki server clock has drifted - about 13 minutes fast ==&lt;br /&gt;
&lt;br /&gt;
As I type this, it is exactly 07:42:45 UTC. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:55, 14 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And thus timestamps here are 12 or 13 minutes off. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:59, 14 April 2015 (UTC)&lt;br /&gt;
:I see the same thing: 15:41:00 UTC now.... [[User:Nealmcb|Nealmcb]] ([[User talk:Nealmcb|talk]]) 15:54, 23 April 2015 (UTC)&lt;br /&gt;
::Huh. I'll look into it, when I get back home. '''[[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;]] 23:19, 23 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently it's 20 minutes fast. It's 21:00 UTC and it shows 21:20 (UTC). [[User:Xhfz|Xhfz]] ([[User talk:Xhfz|talk]]) 21:20, 14 July 2015 (UTC)&lt;br /&gt;
:Sorry bout the delay, was busy for a long bit, should be fixed now. '''[[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;]] 21:44, 26 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently it's 8 minutes fast. It's 20:56:00 UTC and it shows 21:03 UTC. [[Special:Contributions/108.162.221.17|108.162.221.17]] 21:03, 5 November 2015 (UTC)&lt;br /&gt;
:do we not have ntp on the server or something, gonna reset the clock again when i get back home. '''[[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;]] 00:33, 6 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Happening again: it's 11:33 UTC and the server has 11:48 UTC. [[Special:Contributions/141.101.75.161|141.101.75.161]] 11:49, 11 March 2016 (UTC)&lt;br /&gt;
:Fixed again, and I'm gonna have to check our NTP installation. 06:37, 18 March 2016 (UTC)&lt;br /&gt;
:Alright, changed some things, this shouldn't happen anymore. '''[[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;]] 06:38, 18 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The clock is about 13-14 minutes off again. It's currently 13:49 UTC. –''TisTheAlmondTavern'', 13:36, 17 January 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion template resources apparently missing ==&lt;br /&gt;
&lt;br /&gt;
As co-header (right-margin hugging text) to the Discussion section on all pages (or at least as many as I've just visited - and on multiple browsers, ''just in case''...) I'm getting the following, with the &amp;lt;&amp;gt;-tags being my own descriptive additions:&lt;br /&gt;
 &amp;lt;redlink&amp;gt;File:comment.png&amp;lt;/redlink&amp;gt; &amp;lt;validlink&amp;gt;add a comment!&amp;lt;/validlink&amp;gt; ⋅ &amp;lt;redlink&amp;gt;File:Icons-mini-action refresh blue.gif&amp;lt;/redlink&amp;gt; &amp;lt;validlink&amp;gt;refresh comments!Discussion&amp;lt;/validlink&amp;gt;&lt;br /&gt;
Looks like the PNG and GIF files concerned have been removed, or the links in the Discussion template broken/incorrectly redirected.&lt;br /&gt;
&lt;br /&gt;
(Sidenote: The character between the &amp;quot;add a comment!&amp;quot; and the &amp;quot;File: Icons-mini-action refresh blue.gif&amp;quot; that I've copied here verbatim (so doubtless appears correctly for everyone else who reads this) is an 'I don't have this character on my machine' character, for me, which is obviously entirely my fault for not downloading additional fonts that I'd need.  From cursory investigation, it appears to be essentially the same as &amp;quot;·&amp;quot;, Alt-0183, or HTML code '&amp;amp;amp;middot;', which ''would'' render on my machine and yet (if changed) shouldn't break on those where it currently works.  For your consideration, but not as vital.)&lt;br /&gt;
[[Special:Contributions/141.101.106.161|141.101.106.161]] 06:30, 7 November 2015 (UTC)&lt;br /&gt;
:ETA - Delving around further, [[:Category:Pages with broken file links]] seems to indicate it ''is'' a widespread problem at server-side, and not somehow solely my own (except for the Sidenote issue!).  And suggests a simple way to check that the issue is fixed (when suddenly the category is nowhere near as 'full'), and then discover any related ones that might need fixing (like the special Star Trek Into Darkness alternate version of the Discussion template). [[Special:Contributions/141.101.106.161|141.101.106.161]] 06:57, 7 November 2015 (UTC)&lt;br /&gt;
::Huh. I have a feeling I know what caused this, I'll get right on it. '''[[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;]] 16:23, 7 November 2015 (UTC)&lt;br /&gt;
:::I've seen some more of these cases, e.g. on [[explain xkcd:Community portal]]. I think these images are from Wikimedia Commons, maybe that integration broke somehow? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:33, 7 November 2015 (UTC)&lt;br /&gt;
::::i don't know what is even happening, the images seem to be fine now but they still show up as broken file links '''[[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;]] 02:04, 8 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Update captcha text? ==&lt;br /&gt;
&lt;br /&gt;
The text above the posting captcha says “type the two words” but reCaptcha often doesn't use two, and they're often not words. Example: http://i.imgur.com/TdM5n5O.png&lt;br /&gt;
&lt;br /&gt;
Maybe we could change it to something like “type the text”?&lt;br /&gt;
&lt;br /&gt;
[[User:P1h3r1e3d13|P1h3r1e3d13]] ([[User talk:P1h3r1e3d13|talk]]) 23:44, 2 March 2016 (UTC)&lt;br /&gt;
:So, the reCAPTCHA captchas are entirely provided by Google. If there's an error in it, it's likely Google's fault and a bug report should be sent in that direction instead. '''[[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;]] 00:23, 3 March 2016 (UTC)&lt;br /&gt;
::I noticed that before. It's not a bug in recaptcha, but rather in ConfirmEdit, file ReCaptcha/i18n/en.json to be exact. --[[Special:Contributions/162.158.90.217|162.158.90.217]]&lt;br /&gt;
:::Oh huh, hadn't thought of that. I'll fix that up then. '''[[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;]] 19:45, 3 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Stylesheets not working? ==&lt;br /&gt;
&lt;br /&gt;
It doesn't look like any of the site's CSS is loading for me. I have tried purging, adding useskins to the URL, and clearing my browser's cache, and webpage content remains in Times New Roman with no special styling. Headers and bold spans of text are bold, list items are bulleted, buttons are button-y, templates and my signature display with HTML-&amp;lt;tt&amp;gt;style&amp;lt;/tt&amp;gt;-attribute-level CSS, and so on, but that's the extent of it. Is this a belated April Fools' joke, or has something gone horribly wrong between the servers and my eyes? &amp;lt;span style=&amp;quot;background:#0064de;font-size:12px;padding:4px 12px;border-radius:8px;&amp;quot;&amp;gt;[[User talk:AgentMuffin|&amp;lt;span style=&amp;quot;color:#f0faff;&amp;quot;&amp;gt;~AgentMuffin&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:I made a similar post earlier -- it seems to have vanished down a black hole. I linked these screenshots: [http://i.imgur.com/smN1a45.png] [http://i.imgur.com/qdpxhdY.png]&lt;br /&gt;
:Note that there are no ads either! This could get to problem-level very fast. [[User:KangaroOS|Kangaro]][[User talk:KangaroOS|OS]] 01:28, 5 April 2016 (UTC)&lt;br /&gt;
::There are actually still ads, they're just shoved right at the bottom of the page. mysqld is clocking in at 40% cpu load, and mediawiki seems to be going into fallback mode and skipping stylesheets which is about what I'd expect from an april fools comic. '''[[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;]] 01:31, 5 April 2016 (UTC)&lt;br /&gt;
:::Ah, figured it was some sort of server overslow. For a while there I was getting a 503 error. [[User:KangaroOS|Kangaro]][[User talk:KangaroOS|OS]] 01:36, 5 April 2016 (UTC)&lt;br /&gt;
:::Well, perhaps you don't need another note about this, but I noted the 'stylesheetless' appearance myself, just now.  Except that it ''is'' styled, partially.  (When I choose to view by Style &amp;quot;No style&amp;quot;, it's even more not-Styled!)  Could be because a subset of styles aren't being loaded (so that the ones that ''are'' still loaded can only be identified from their enforced absence), but looks like you have this as much in hand as can be expected, so just FYI... [[Special:Contributions/141.101.98.137|141.101.98.137]] 04:13, 5 April 2016 (UTC)&lt;br /&gt;
::Have you tried switching the server off and back on ? ;-) Jokes apart, are there really so many users continuously polling ? It could be just a case of stale open connections. Really, a reboot might not hurt (although it may kill-off few sessions and you may get some angry posts, but at this point, it might be worth the try) Edit: Sorry, I was messing up the formatting while replying. I'm trying to fix it. But at this point, does it really matter? :P [[Special:Contributions/162.158.255.56|162.158.255.56]] 04:21, 5 April 2016 (UTC)&lt;br /&gt;
:::Alright guys, still having trouble with the load, but I've put a quick temporary hack in place to get the css working again for now. Fonts are a little off, I'll deal with that soon. '''[[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;]] 08:09, 5 April 2016 (UTC)&lt;br /&gt;
::::Did a little more work on things, styles should be working again but it's not great on the back end. I'm going to do some rooting around to see what went wrong. '''[[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;]] 00:07, 6 April 2016 (UTC)&lt;br /&gt;
:::::Cool.. This is pretty good. We're almost there.. The only things I can notice that are off are - (1) Category list at the end of the page (2) Contents block at the beginning of the page and (3) Edit buttons for individual sections. By the way, I'm curious, what exactly was broken ? I didn't expect you'd have to fix things here. I expected that since the issue was caused by excess server load, it would return back to normalcy automatically once things settle down a bit in couple of days after the offending comic was more or less explained. [[Special:Contributions/162.158.255.56|162.158.255.56]] 03:32, 6 April 2016 (UTC)&lt;br /&gt;
::::::A script responsible for picking user preferences and integrating css from pages like [[Mediawiki:common.css]] was failing to complete because of server load, so I gave it a helping hand and just had it insert a static stylesheet instead. I almost certainly missed a few spots though, because the wiki does not look right. '''[[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:43, 6 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
(resetting indent) Yes, things are still off. The text &amp;quot;Jump to: navigation, search&amp;quot; is at the top of every page, but it's useless because it links to stuff already at the top of the page. Edit summaries aren't italicized, the edit boxes don't use the whole window width, links are underlined, section edit links are too big, etc. I put the Wayback Machine to good use, and found the below set of archived pages, all using the proper style. Compare them with the current appearances of the pages, and you should see most, if not all, of the issues I've seen.&amp;lt;br&amp;gt;[http://web.archive.org/web/20160402151417/http://www.explainxkcd.com/wiki/index.php/Main_Page Main Page] | [http://web.archive.org/web/20150326134736/http://www.explainxkcd.com/wiki/index.php/Special:Contributions/NealCruco My contributions] | [http://web.archive.org/web/20150326170626/http://www.explainxkcd.com/wiki/index.php?title=1486:_Vacuum&amp;amp;action=edit The &amp;quot;edit&amp;quot; page for comic 1486] --[[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 21:50, 7 April 2016 (UTC)&lt;br /&gt;
::Is here nothing to be done about the missing styles? The tables still look horrible and there is not help when editing, for instance for signature etc. Colapsing of tables etc. also won't work which is a mess for some of the long explanations and tables [[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 11:56, 18 April 2016 (UTC)&lt;br /&gt;
HotCat also seems to be not working for adding categories. {{User:17jiangz1/signature|13:18, 25 April 2016}}&lt;br /&gt;
:Yeah, load.php is failing so all gadgets and user scripts are unavailable. :-( [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 14:42, 25 April 2016 (UTC)&lt;br /&gt;
::Alright, figured it out. It was a deal with file permissions, not sure how those got changed on April 1st. '''[[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;]] 18:59, 17 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic navigation buttons ==&lt;br /&gt;
&lt;br /&gt;
You know, the buttons that look like the ones on the xkcd site. Shouldn't they also highlight like the xkcd site? I thought maybe it was due to the above CSS issue, but the links to archive.org make it seem like it's just never worked.&lt;br /&gt;
&lt;br /&gt;
It just seems to me that, if we're going to go that far in mimicking the actual buttons, we should probably also mimic their a:hover settings. Shut off the box shadow, change the background to white, and the link color to #6E7B91.&lt;br /&gt;
&lt;br /&gt;
I've tested the following CSS, and it appears to work:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
li.plainlinks:hover, .no-link-underline &amp;gt; li:hover {&lt;br /&gt;
 	background-color: #FFF !important;&lt;br /&gt;
	box-shadow: none !important;&lt;br /&gt;
	-moz-box-shadow: none !important;&lt;br /&gt;
	-webkit-box-shadow: none !important; &lt;br /&gt;
}&lt;br /&gt;
li.plainlinks:hover &amp;gt; a &amp;gt; span, .no-link-underline &amp;gt; li:hover &amp;gt; a &amp;gt; span {&lt;br /&gt;
	color: #6E7B91 !important; &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Trlkly|Trlkly]] ([[User talk:Trlkly|talk]]) 09:14, 2 May 2016 (UTC)&lt;br /&gt;
:Seems like a decent addition. Thanks! '''[[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;]] 18:52, 1 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha trouble ==&lt;br /&gt;
&lt;br /&gt;
For about an hour, I wasn't able to edit a page or create an account when I was trying to, because the captcha was missing. I'm not sure if it was problem on this site or captcha but I thought I'd mention it.&lt;br /&gt;
--[[User:Anqied|Anqied]] ([[User talk:Anqied|talk]]) 08:34, 11 June 2016 (UTC)&lt;br /&gt;
:Recaptcha appears to work for me currently. Does it work now? It seems like they may have just gone down temporarily. '''[[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;]] 20:52, 11 June 2016 (UTC)&lt;br /&gt;
::I'm not certain this is the same issue, but I was just having a problem with the captcha for unregistered users trying to edit a page. I figured out that it's because you were trying to serve the captcha through HTTP even though the page was on HTTPS, so my browser was blocking the captcha. Changing to HTTP &amp;quot;fixed&amp;quot; the issue, but that shouldn't be the solution. [[Special:Contributions/108.162.215.187|108.162.215.187]] 16:45, 18 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== wrong IP ==&lt;br /&gt;
&lt;br /&gt;
[http://www.explainxkcd.com/wiki/index.php?title=632:_Suspicion&amp;amp;curid=3946&amp;amp;diff=122229&amp;amp;oldid=100180 My edition] was attributed to 141.101.104.60, whereas my real address is 88.156.226.213 according to [https://ipinfo.io]. Wikimedia sites (Wikipedias, Wiktionaries...) recognize my IP address properly. Someting strange is going on here. [[Special:Contributions/141.101.104.71|141.101.104.71]] 22:40, 21 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just a heads up that your website is incorrectly identifying the IP address of visitors as being from the CloudFlare server that is serving the page content to them. It would be best practice if you could explicitly look for the field &amp;quot;REMOTE_ADDR&amp;quot; rather than &amp;quot;X-FORWARDED-FOR&amp;quot; as the former is unaffected by the use of intermediate proxies.&lt;br /&gt;
PS My IP address should begin with 131.111. IP addresses beginning with 141.101 belong to Cloudflare London. [[Special:Contributions/141.101.98.5|141.101.98.5]] 21:08, 21 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
* This appears to still be an issue.  I just [http://www.explainxkcd.com/wiki/index.php?title=Talk:1787:_Voice_Commands&amp;amp;curid=19860&amp;amp;diff=133917&amp;amp;oldid=133916 posted] from [[Special:Contributions/172.72.47.40|172.72.47.40]], my work place and it's showing as [[Special:Contributions/108.162.238.11|108.162.238.11]].  Thanks.&lt;br /&gt;
&lt;br /&gt;
* FYI I just created this account and the &amp;quot;email address confirmation&amp;quot; email I received said the account was created by a Cloudflare IP (162.158.107.199), not my own. [[User:ExcarnateSojourner|ExcarnateSojourner]] ([[User talk:ExcarnateSojourner|talk]]) 15:09, 4 July 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha does not appear ==&lt;br /&gt;
&lt;br /&gt;
I am not a registered user (I just haven't bothered to make an account), so I have to complete a Captcha before saving any of my edits. However, I've found numerous times that the captcha does not show up when I hit [Save page]. The line of text introducing it (&amp;quot;To help protect against automated edit spam, please type the word you see in the box below:&amp;quot;) shows up, but the no actual captcha and thus no saved edits. '''Is this a known issue with Chrome?''' I managed to circumvent it by using IE (I assure you, it was the only other browser available), but I would much prefer to be able to edit ''explain xkcd'' pages in Chrome, my usual browser. {{unsigned ip|108.162.220.17}}&lt;br /&gt;
:What plugins do you have installed on chrome? Do you have Javascript enabled? I'll see what can be done if you have them off. '''[[User:D?avidy22|&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;]] 20:45, 20 July 2016 (UTC)&lt;br /&gt;
::I just figured out the problem and successfully edited a page.  I too tried IE after Chrome but still encountered the issue... to my consternation I noticed a new icon in the address-bar, 'Blocked content'.  (Apparently recaptcha is treated similarly to a pop-up.)  Interacting with this new button made the captcha appear.  I am in Chrome adding this comment, and after finding the similarly-functioning/corresponding button here, all is well [[Special:Contributions/108.162.237.247|108.162.237.247]] 18:39, 2 August 2016 (UTC)&lt;br /&gt;
::Hmph, I am likely a completely different user from the foregoing, but our IP addresses are similar and both reported as from Cloudflare in TX. [[Special:Contributions/108.162.237.247|108.162.237.247]] 18:42, 2 August 2016 (UTC)&lt;br /&gt;
::I would like to address this and also point out this is the only site where I've run into this problem; other wiki-based sites can load captcha fine. According to Chrome it's blocked because it's an &amp;quot;unsafe script&amp;quot;. [[Special:Contributions/141.101.107.84|141.101.107.84]] 08:54, 4 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wanted files ==&lt;br /&gt;
&lt;br /&gt;
[[Special:WantedFiles]]: 41 file is linked but nonexistent. &lt;br /&gt;
&lt;br /&gt;
Some on talk pages, user pages and project pages, but here is a list of those in main namespace:&lt;br /&gt;
# File:Apatosaurus scale mmartyniuk wiki.png&lt;br /&gt;
# File:Apidae - Eucera sp. (male).JPG&lt;br /&gt;
# File:Louisae.jpg&lt;br /&gt;
# File:Wet kookaburra 6674 Crop Edit.jpg&lt;br /&gt;
# File:MQ-1 Predator unmanned aircraft.jpg&lt;br /&gt;
# File:Bee orchids, Aller Brook Local Nature Reserve - geograph.org.uk - 833516.jpg&lt;br /&gt;
# File:Synhalonia nest 1.jpg&lt;br /&gt;
# File:Butterfly Voters View.jpg&lt;br /&gt;
# File:Fusca estacionado.jpg&lt;br /&gt;
# File:Ophrys apifera flower1.jpg&lt;br /&gt;
# File:Galilean moon Laplace resonance animation.gif&lt;br /&gt;
# File:PalmCellTower.jpg&lt;br /&gt;
# File:746 telephone in red.JPG&lt;br /&gt;
# File:Candidate Higgs Events in ATLAS and CMS.png&lt;br /&gt;
# File:Tommy Wiseau.jpg&lt;br /&gt;
# File:Google maps auto.jpg&lt;br /&gt;
# File:Velociraptor dinoguy2.jpg&lt;br /&gt;
# File:Acrocanthosaurus skeleton (1).jpg&lt;br /&gt;
# File:Vraptor-scale.png&lt;br /&gt;
# File:Alces alces elan trophee chateau Tanlay.jpg&lt;br /&gt;
# File:DBCooper.jpg&lt;br /&gt;
# File:Rick Astley - Pepsifest 2009.jpg&lt;br /&gt;
# File:Anonymous emblem.svg&lt;br /&gt;
# File:Eas new.svg&lt;br /&gt;
# File:John Cage and Michael Bach in Assissi 1992.jpg&lt;br /&gt;
I could not find why they were deleted and it's hard for me to argue for their presence in the articles. Being a newbie here, I would like to ask those who knows better to either undelete files, or upload them again, or delete file mentions from the explanations. Thanks --[[User:Ата|&amp;lt;span style=&amp;quot;color:SteelBlue&amp;quot;&amp;gt;Ата&amp;lt;/span&amp;gt;]]&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Ата|&amp;lt;span style=&amp;quot;color:#80A0FF&amp;quot;&amp;gt;(talk)&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 15:47, 8 August 2016 (UTC)&lt;br /&gt;
:I tend to clean up after myself, don't recognise these file names. I believe these happen when files get moved, feel free to cut dead file links wherever you find them if you find them unnecessary.'''[[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;]] 02:38, 10 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[827]]/[[1721]]: Business Idea ==&lt;br /&gt;
&lt;br /&gt;
See [[1721#Trivia]]. Randall has accidentally named both 1721 and 827 &amp;quot;Business Idea&amp;quot;. He fixed it by renaming 827 to &amp;quot;My Business Idea&amp;quot;. I tried to reproduce by renaming the file and wiki page for 827, but it now shows the old comic on both pages. Maybe CloudFlare caching? And idea (that's not a business idea) to fix this? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]])&lt;br /&gt;
:Cloudflare takes a little time to update changes to an image. For immediate results, you can create an image under a different name and use that while you wait for the old one to update. Otherwise, it should update within a few hours. Is it good for you now? '''[[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;]] 14:48, 18 August 2016 (UTC)&lt;br /&gt;
::Yes, it was resolved after a few hours. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 20:25, 18 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mobile CSS ==&lt;br /&gt;
&lt;br /&gt;
I've accessed this Wiki on my mobile device more often than previously and I couldn't find any discussion about this. Honestly, 50% of the reasons I'm adding this topic is about the discussion, the rest is about making it easier for people with narrower screens.&lt;br /&gt;
I understand that I am a new member on this Wiki and that altering [[Mediawiki:Common.css]] has site-wide effects (and I'm sure that there are some templates that won't agree with some of the options we have, even some tables, such as the one on [[893: 65 Years#Trivia]], will break a very narrow design).&lt;br /&gt;
&lt;br /&gt;
OK. Let me just ramble on about this, then. =)&lt;br /&gt;
There are some obvious (but not necessarily easier) options for mobile devices. [https://www.mediawiki.org/wiki/Manual:Mobiles,_tablets_and_responsive_design MediaWiki] lists a few Skins and Extensions. Not having ever had access to a Wiki's server, I have no idea how nerve-racking that is (or if it even makes sense for this Wiki). Even more obvious to some - and even harder to implement - is a mobile app (that I wouldn't use anyway).&lt;br /&gt;
&lt;br /&gt;
So, to bridge the time until maybe something more effective comes along, we ''could'' try to add some CSS ourselves. I'm no expert. But here are my thoughts.&lt;br /&gt;
*This is about all devices with narrow screens, not just phones. Let's say anything under 600px width is considered narrow.&lt;br /&gt;
*Most obviously, the font size should be affected. This has negative consequences for anything with fixed font size. And anything we forget. Basically, the sidebar, the search and anything else on top of each page can be massively smaller depending on the screen and fixing that won't be as easy.&lt;br /&gt;
*Of course we could disregard the sidebar, or rather, push it to the bottom (which is easy, it's artificially placed on the left instead of the bottom). There are a number of reasons why a lot of people wouldn't want that. One of those reasons is that the ads would basically disappear for anyone who doesn't scroll down. We would have to figure out where else we can put it, on the top maybe. On the plus side, we could have the entire width of the screen just for the article.&lt;br /&gt;
*Another thing that breaks the design regularly: comic images. We could make them fit. The navigation might be more challenging.&lt;br /&gt;
*There's a whole lot of paddings and margins to get rid of.&lt;br /&gt;
*Maybe make the search box a lot bigger?&lt;br /&gt;
&lt;br /&gt;
A short snippet for the comic images and for the font:&lt;br /&gt;
&lt;br /&gt;
 @media handheld,screen and (max-width: 600px),screen and (max-device-width: 600px){ /* because some mobile browsers like to work with a higher resolution than the resolution of the screen */&lt;br /&gt;
 &lt;br /&gt;
 #bodyContent{&lt;br /&gt;
 font-size:initial; /* resetting font to full size */&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 td &amp;gt; img{ /* maybe add a class for the table in [[Template:comic]] */&lt;br /&gt;
 display:block;&lt;br /&gt;
 margin:auto;&lt;br /&gt;
 max-width:100%; /* make image fit into box */&lt;br /&gt;
 height:auto;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
I don't know... What do you think?&lt;br /&gt;
Oh, also, Mediawiki says this can be added to [[Mediawiki:Mobile.css]] but I guess that is for extensions? We'd probably have to add that to [[Mediawiki:Common.css]] if we ever want to add it.&lt;br /&gt;
[[User:Ret Samys|Ret Samys]] ([[User talk:Ret Samys|talk]]) 16:21, 15 September 2016 (UTC)&lt;br /&gt;
:Getting on a plane soon, but I'll take a look at this when I get off and get moved in again. '''[[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;]] 14:07, 16 September 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== HTTPS Links Back to XKCD Interfere with Random Button ==&lt;br /&gt;
&lt;br /&gt;
''(I've moved this from &amp;quot;Proposals&amp;quot; to here, now realising this is the proper location.)''&lt;br /&gt;
&lt;br /&gt;
The Links back to the comics that are present just above the comic itself on the wiki pages (and adjacent to the next and previous links) provides an HTTPS link back to XKCD. However, this interferes with users who want to click that link, and then click &amp;lt;code&amp;gt;random&amp;lt;/code&amp;gt; - because &amp;lt;code&amp;gt;c.xkcd.com&amp;lt;/code&amp;gt; does NOT support HTTPS, and thus clicking &amp;lt;code&amp;gt;random&amp;lt;/code&amp;gt; after returning to xkcd from explainxkcd via the button on a comic's article does not work. These links should be switched back to HTTP.&lt;br /&gt;
&lt;br /&gt;
--[[User:9000 volts|9000 volts]] ([[User talk:9000 volts|talk]]) 22:53, 24 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:What makes you suspect &amp;lt;code&amp;gt;c.xkcd.com&amp;lt;/code&amp;gt; does not support SSL? It features a perfectly valid wildcard certificate from GeoTrust (currently valid from Dec 14 00:00:00 2016 GMT, so it should already have affected you), although it's different from the multi-site certificate from Fastly used on the comic and what-if.xkcd.com and, yet again, different from the Let's Encrypt ones used on the blag and store.&lt;br /&gt;
&lt;br /&gt;
:On the other hand, there is a compelling argument for HTTP links: Most interactive comics break with HTTPS. –''TisTheAlmondTavern'', 14:19, 17 January 2017 (UTC)&lt;br /&gt;
::I can't reproduce the issue with random comics, but the benefits of using SSL for links to a site that stores no user data probably don't outweigh the issues that some people seem to be having. Changed. '''[[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;]] 22:34, 10 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Retry for a live version&amp;quot; and stuff not responding ==&lt;br /&gt;
&lt;br /&gt;
Every now and then, I'd just be browsing around the site, then all of a sudden I'd run into an issue with it saying that there was an error with the explainxkcd.com host and that I would need to wait for the servers to restart. This is happening rather often for me, but goes away quickly. Sometimes, it happens on my own wiki pages too... weird. Other times, things would just freeze. Is it something on my end, or is it with the site? --[[User:JayRulesXKCD|JayRulesXKCD]] ([[User talk:JayRulesXKCD|talk]]) 14:05, 5 January 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Support for timezones? ==&lt;br /&gt;
&lt;br /&gt;
I live in the timezone PST, and because of that, the clock seems to be ahead of my time by about 7 hours and 40 minutes. Can someone add support for different timezones?&lt;br /&gt;
For example, at my time of posting, it is 7:56 PM on March 8, 2017. The time the wiki thinks it is is shown on my signature: [[User:625571b7-aa66-4f98-ac5c-92464cfb4ed8|625571b7-aa66-4f98-ac5c-92464cfb4ed8]] ([[User talk:625571b7-aa66-4f98-ac5c-92464cfb4ed8|talk]]) 03:40, 9 March 2017 (UTC)&lt;br /&gt;
:You can actually set your own time zone. Go to Preferences-&amp;gt;Date and Time, and there should be a time offset option for you to pick your time zone. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:36, 9 March 2017 (UTC)&lt;br /&gt;
::The thing is, I do have my time zone set to PST, but on the wiki it is still showing up as the wrong time. [[User:625571b7-aa66-4f98-ac5c-92464cfb4ed8|625571b7-aa66-4f98-ac5c-92464cfb4ed8]] ([[User talk:625571b7-aa66-4f98-ac5c-92464cfb4ed8|talk]]) 15:24, 9 March 2017 (UTC)&lt;br /&gt;
:::Oh, the timestamps recorded in signatures are in UTC for everyone. That doesn't change, because it makes it easier to follow the timeline of a conversation in a talk page. '''[[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;]] 17:24, 9 March 2017 (UTC)&lt;br /&gt;
::::Uhhh, the timestamp isn't UTC at all. My latest BOT upload was 06:02, 8 March 2017 CET or 05:02, 8 March 2017 UTC and it is recorded here as 04:45, 8 March 2017. So we still have an offset 17 minutes to the past. That's an old problem.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:33, 9 March 2017 (UTC)&lt;br /&gt;
:::::It is UTC, server inaccuracy doesn't change the time zone, it just makes it inaccurate. '''[[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;]] 19:13, 9 March 2017 (UTC)&lt;br /&gt;
::::::And even if you don't like me for this: The server time is currently UTC-00:17 and not UTC. This odd offset confuses users. But I know nobody can change this.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:36, 9 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mailserver-problem ==&lt;br /&gt;
&lt;br /&gt;
Hello, &amp;lt;br/&amp;gt;&lt;br /&gt;
I tried to reset my password today, but there is a problem with your mail-server: The sender-adress of your password-reset-mail is expla0@vps.explainxkcd.com, but the (sub-)domain vps.explainxkcd.com does not exists, and so the eMail is rejected by my mail-server (and most others too). Could that please be fixed? Thank you very much. --DaB.&lt;br /&gt;
&lt;br /&gt;
== When did InstantCommons get disabled? ==&lt;br /&gt;
&lt;br /&gt;
I was just about to add some photos of the ISS transiting the sun to [[1828|today's explanation]], but saw that it's no longer possible to just enter the names of {{w|c:|Wikimedia Commons}} photos and for them to render. I know of at least one explanation&amp;amp;mdash;[[1400]]&amp;amp;mdash;that previously had such images, but now just has redlinks. I presume that at some point someone must have disabled {{w|mw:InstantCommons|$wgUseInstantCommons}} in the config settings. May I ask what the reason for that was? And is there any chance that that could be reverted? Obviously there aren't a lot of articles where it makes sense to have Commons images up, but IMHO it's a useful feature to have for the rare occasion where it makes sense, like with today's comic. [[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 21:20, 24 April 2017 (UTC)&lt;br /&gt;
:'''Solved.''' You now can embed pictures from Commons like local files. The link &amp;lt;nowiki&amp;gt;[[File:DBCooper.jpg|thumb|Cooper]]&amp;lt;/nowiki&amp;gt; shows the picture from Commons because it doesn't exist here. There is no need to use a template. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:57, 25 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia template stopped working ==&lt;br /&gt;
&lt;br /&gt;
Some time ago the template used for links to Wikipedia stopped working correctly.  If you see here link to Halloween on Wikipedia, it works again:&lt;br /&gt;
{{w|Halloween}}. --[[User:JakubNarebski|JakubNarebski]] ([[User talk:JakubNarebski|talk]]) 22:21, 25 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Known issue, there's currently an anon doing boring vandalism. --[[Special:Contributions/108.162.241.172|108.162.241.172]] 22:37, 25 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CAPTCHA does not work for HTTPS visitors ==&lt;br /&gt;
&lt;br /&gt;
I am a fervent believer in encrypting everything (I am the crypto nut in [[1269: Privacy Opinions]]), and have configured the NoScript plugin to force the use of HTTPS instead of HTTP for all sites that aren't on a special list in my configs. Hence, I tend to visit sites on HTTPS that most people visit on unencrypted HTTP, discovering all the bugs in people's HTTPS implementations in the process...and this site is not exempt from the bugfinding.&lt;br /&gt;
&lt;br /&gt;
In order to edit pages, you need to enter a CAPTCHA. However, the script that makes this captcha work is fetched from Google over unencrypted http (the src tag in the script specifies http: not https:). When I visit this site over HTTPS, the use of active content served over unencrypted HTTP onto an encrypted page causes Firefox to have a spasm and block the script. Since Google fully supports HTTPS, the script's src tag should just be changed to say https: instead of http:, and that SHOULD fix it. Better yet, omit the protocol at all, and do something like:&lt;br /&gt;
&lt;br /&gt;
src=&amp;quot;//www.google.com/recaptcha/(rest of url)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Most modern browsers will interpret that as &amp;quot;fetch www.google.com/recaptcha/(rest of url) over the same protocol used to serve this page.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
(Sadly, NoScript is not smart enough to fix this by itself and just change the script's src to https: client-side...)&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/162.158.79.89|162.158.79.89]] 11:12, 20 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
The CAPTCHA also doesn't work for https while using Chrome. 01 September 2017&lt;br /&gt;
&lt;br /&gt;
== Deprecation of reCAPTCHA v1 ==&lt;br /&gt;
&lt;br /&gt;
The wiki currently uses reCAPTCHA v1 to validate users as human, which [https://developers.google.com/recaptcha/docs/faq#what-happens-to-recaptcha-v1 beginning in November will show public deprecation notices] and stop working altogether on March 31, 2018.&lt;br /&gt;
&lt;br /&gt;
Are there already plans to migrate to reCAPTCHA v2 or a different CAPTCHA algorithm? –[[User:TisTheAlmondTavern|TisTheAlmondTavern]] ([[User talk:TisTheAlmondTavern|talk]]) 20:05, 31 October 2017 (UTC) (wiki clock is several minutes late again, BTW)&lt;br /&gt;
&lt;br /&gt;
:I do intend to update the CAPTCHA, I got the email notice from Google. I've been away from the site for longer than I'd like, been busy but it looks like a bunch of stuff has piled up while I was gone. I'll try to fix what I can with the time I have. '''[[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;]] 03:38, 12 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Any update on this? It has &amp;lt;6 weeks of life left, and the user messaging has just got angrier. [[Special:Contributions/162.158.155.26|162.158.155.26]] 09:22, 20 February 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::10 days left. I wonder what happens then. Right now, it just says &amp;quot;V1 SHUTDOWN ON 2018-03-31&amp;quot; and expects me to type it as an answer. {{unsigned ip|172.68.110.46}}&lt;br /&gt;
&lt;br /&gt;
::::You can hit the refresh button and it will display an actual catch.  4 days before they shut it down. [[User:TheMageKing|TheMageKing]] ([[User talk:TheMageKing|talk]]) 12:22, 27 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Either the kludge of simply typing the message about shutdown still works, or the Captcha system is just not working: I'm not autoconfirmed here but I was able to edit today, 9 days after v1 presumably went &amp;quot;poof&amp;quot;. [[User:Yngvadottir|Yngvadottir]] ([[User talk:Yngvadottir|talk]]) 18:12, 9 April 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
The new reCAPTCHA v2 is now online. I apologize for the delay but many updates were required and I tried to keep the server downtime as short as possible. [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
== RSS bot stopped? ==&lt;br /&gt;
&lt;br /&gt;
The master RSS feed only goes up to 1912, although the wiki is already up to 1914. --[[Special:Contributions/141.101.105.18|141.101.105.18]] 11:20, 11 November 2017 (UTC)&lt;br /&gt;
:Sorry, been busy, the feed should be up and running again. '''[[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;]] 03:38, 12 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha doesn't work on my browser ==&lt;br /&gt;
&lt;br /&gt;
I can't make any edits to the comic pages because the captcha simply doesn't appear when I'm trying to edit the comic pages. {{unsigned|WilliamBrennan}}&lt;br /&gt;
:Please check your add blockers and activate JavaScript. [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hi &amp;amp; Thanks heaps! I finally created an account after years of pleasurable &amp;amp; enlightening explanations. It took me over 5 minutes to get past the Captcha, and I've seen a few in the last week registering for sites such as XDA-developers and the like. Not sure how it all works but it feels like it's set to &amp;quot;ultra-difficult&amp;quot; or some-such...and this is the place where things are *easy* for *stupid people* like me ;) Cheers &amp;amp; thanks again {{unsigned|Munchywok}}&lt;br /&gt;
:The Captcha is from Google (Big Brother...) and based on an sophisticated software in which you sometimes even don't have to solve it at all when it is convinced that you are a human. But it depends on your browser installation, especially your add ons. My best experience is using Google Chrome without any extensions. Firefox with extensions is the hell. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 09:25, 15 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== New High Resolution comics ==&lt;br /&gt;
&lt;br /&gt;
I've noticed Randall has been making the comics higher resolution to look good on HiDPI/Retina displays. But the copies on ExplainXKCD are the old low resolution copies.&lt;br /&gt;
&lt;br /&gt;
Perhaps we'll have to go through at some point and update these? {{unsigned ip|162.158.75.58}}&lt;br /&gt;
:I am aware of this. Randall started to provide two different resolutions at standard comics more than a year ago, and he also provides the larger resolutions to older comics since than. Technically the image tag provides links to two pictures and the browser decides based on the screen resolution what is shown. Since this wiki is now at the latest version the use of [https://www.mediawiki.org/wiki/Manual:$wgResponsiveImages $wgResponsiveImages] may be possible. But this has to be tested first. Stay tuned... [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Should the HTTP urls redirect to HTTPS? ==&lt;br /&gt;
&lt;br /&gt;
Not sure if this has been mentioned before, but shouldn't the HTTP urls be redirecting to HTTPS? Right now, the HTTP and HTTPS endpoints seem to have different login states, which is possibly confusing. I was stumped for a long time on why I couldn't login to my account, because I kept getting the error message &amp;quot;There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Go back to the previous page, reload that page and then try again.&amp;quot; And then I noticed the &amp;quot;Use secure connection&amp;quot; button, and when I clicked it, it took me to the HTTPS site where I was already logged in! But even now, if I go to an HTTP url, I'm still logged out there. [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 00:43, 21 August 2018 (UTC)&lt;br /&gt;
:Of course HTTP and HTTPS are different endpoints. Login via HTTPS and your credentials are encrypted and this will be never converted into plain text for HTTP. And I just successfully tested both connections with Google Chrome. Maybe we should redirect always to HTTPS like xkcd does, right now it's just your choice. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:46, 21 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Ah, I see. If I log in from the HTTP site, I'm logged in on both the HTTP and HTTPS sites. But if I login from the HTTPS site, then I'm only logged in on the HTTPS site, and not on the HTTP site. Furthermore, if I'm logged into the HTTPS site and I try to login from the HTTP site, I get the error message that I quote from above. Fair enough.&lt;br /&gt;
&lt;br /&gt;
::I guess one contribution to my confusion was the fact that the HTTPS site doesn't have the green padlock in Chrome. That would have made the difference between the HTTPS and HTTP site a bit more obvious. (I rarely type in the entire URL directly; I usually just let the Chrome address bar autocomplete do its job... and unfortunately that autocomplete takes me to the HTTP site, and I keep forgetting about that.) Right now, on any HTTPS page here, Chrome still says that it's insecure: &amp;quot;Attackers might be able to see the images you're looking at on this site and trick you by modifying them.&amp;quot; Firefox says something similar: &amp;quot;Parts of this page are not secure (such as images).&amp;quot; Perhaps someone should look into that? (I think it might be the ad image.) [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 03:09, 23 August 2018 (UTC)&lt;br /&gt;
:::Thanks for your remarks. I'm aware of this but the site isn't insecure, only a few local images and some from wikimedia are hard coded to a http link. It's not much so I'll fix it soon.&lt;br /&gt;
:::In general every http request should be redirected to https, but that's not trivial at our current environment. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:35, 23 August 2018 (UTC)&lt;br /&gt;
::::It took some time to find all the places of hard coded images via http (insecure) but now you should see the green secure remark in your browser when logging in via https. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 13:50, 24 August 2018 (UTC)&lt;br /&gt;
:::::in my holy opinion at least the login page should only be served securely. people are notoriously bad at not-reusing-passwords. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 12:23, 10 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just noting that basically every major site out there redirects from HTTP to HTTPS (including http://en.wikipedia.com, http://xkcd.com, http://stackoverflow.com, and even other wiki communities like http://wiki.puella-magi.net, http://en.touhouwiki.net/wiki/Touhou_Wiki, and http://wiki.documentfoundation.org). So it would really cool if we could get that redirect action happening on this site, too :) I was browsing the site today and I was just struck once again by how odd it was that I wasn't logged in, until I remembered that I was on the HTTP site, not the HTTPS site. A real user experience annoyance, if you ask me. [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 21:34, 19 October 2018 (UTC)&lt;br /&gt;
:Of course you're right. I still have other issues but this will be done soon. Stay tuned... --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:08, 20 October 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha too picky ==&lt;br /&gt;
&lt;br /&gt;
I just had to solve the &amp;quot;select all street signs&amp;quot; Captcha at least 10 times in a row. I never know when/whether to include slivers, backs of signs, sign posts, walk/wait lights. Captcha already doesn't follow my definition of street sign (I only call the sign that has the street name a &amp;quot;street sign&amp;quot;, but I realize what I call &amp;quot;road signs,&amp;quot; Captcha also calls &amp;quot;street signs&amp;quot; and I can adjust for that. But I haven't figured out the other issue yet, and I suspect Captcha is dinging me on choosing slivers. But that's only a guess, since it never tells you what you got wrong, it just gives you another Captcha. {{unsigned|Thisisnotatest}}&lt;br /&gt;
:My advice is installing Google Chrome and it works fine. Since that Captcha software is also from Google (Big Brother...) I believe that's on purpose. Firefox is the hell as you described; I'm not sure how it works at MS IE/Edge. In general you have to select not less than three and not more than four squares. But on Firefox, even when it seems definitely to be correct, the chance of getting an error message is more than 80%. You probably use FF. Nonetheless right now there are no other adequate Captcha tools supported by Mediawiki, the software this Wiki runs on. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:57, 27 August 2018 (UTC)&lt;br /&gt;
:I second this. Big Brother's Captchas on Firefox are nearly unsolvable (granted, I'm browsing with JS off and blocking 3rd party cookies). And recaptcha requires 1) JavaScript and 2) a connection to google. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 12:23, 10 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cannot create a user page ==&lt;br /&gt;
&lt;br /&gt;
i have tried to make a user page for myself and cannot seem to do it, i'm sorry if this has been addressed already, but i couldn't find it. [[User: Nintendo Mc]] ([[User talk:Nintendo Mc|talk]]) 13:07, 28 September 2018 (UTC)&lt;br /&gt;
:New user don't have the rights. Do some more edits and wait a few days until you can create new pages. Your user page is created by me for now. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 15:00, 28 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::'''Good Question!''' is there some place '''that everyone''' [who is cool] '''can find,''' that explains '''how many''' edits one has to do (and/or, '''how long''' one has to wait) in order to cause the&amp;lt;blockquote&amp;gt;[...] but you do not have permission to create this page.&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
::'''[error] message''' to ... '''&amp;quot;no longer&amp;quot; appear,''' when some limitation or rule is no longer blocking or &amp;quot;preventing&amp;quot; allowing creation -- by that user -- of his own '''&amp;quot;User:&amp;quot;''' page? (OR ... of ''her'' own '''&amp;quot;User talk:&amp;quot;''' page?) &lt;br /&gt;
&lt;br /&gt;
::I have done [https://www.explainxkcd.com/wiki/index.php/Special:Contributions/Mike_Schwartz very few edits] here, but ... a couple of them were almost '''3 years ago.''' &lt;br /&gt;
&lt;br /&gt;
::For what it's worth (FWIW), '''I did not plan to say much''' on my &amp;quot;User:&amp;quot; page here. Probably something like:  &lt;br /&gt;
::::This user is not a frequent flyer here on this Wiki (at &amp;quot;explainxkcd&amp;quot;); ...but he has done [https://en.wikipedia.org/wiki/Special:Contributions/Mike_Schwartz a 4-digit number of edits] on ''other'' Wikis ...mainly [https://en.wikipedia.org/wiki/Main_Page English Wikipedia] (&amp;quot;See also&amp;quot; his [https://en.wikipedia.org/wiki/User:Mike_Schwartz &amp;quot;User:&amp;quot; page] there.) &lt;br /&gt;
&lt;br /&gt;
::&amp;lt;big&amp;gt;&amp;lt;big&amp;gt;Any comments?&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt; Thanks for listening. --[[User:Mike Schwartz|Mike Schwartz]] ([[User talk:Mike Schwartz|talk]]) 07:43, 7 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::According to [[explain xkcd:Community portal/Admin requests#Permission request|here]] and [[:explain xkcd:Autoconfirmed users]], you need to accumulate 10 edits (as well as your account being active for at least 3? or 7? days), then you become an &amp;quot;autoconfirmed user&amp;quot; and gain the [[Special:ListGroupRights|right]] to create pages.  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 02:09, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Do you know if only edits count, or if talk contributions count too? [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:26, 19 June 2024 (UTC)&lt;br /&gt;
::::Wait. On [[:explain xkcd:Autoconfirmed users]] it says 50 edits, not 10. [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:51, 26 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Accessibility issues ==&lt;br /&gt;
&lt;br /&gt;
[First post - hello, everyone!]&lt;br /&gt;
&lt;br /&gt;
I have 15 years of experience of using MediaWiki, and have been heavily involved in some of the accessibility work on Wikipedia.&lt;br /&gt;
&lt;br /&gt;
When we use colons (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;), semicolons (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;), and asterisks (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;) to indent dialogue, discussions, etc we actually cause MediaWiki to generate HTML lists.&lt;br /&gt;
&lt;br /&gt;
If we leave a bank line between indented lines/ paragraphs, we cause the start of a new HTML list.&lt;br /&gt;
&lt;br /&gt;
Since the start of each list is read out by the kind of software used by (for example) people with severe visual impairments, this generates barrier to their use of the site. &lt;br /&gt;
&lt;br /&gt;
The solution is to not leave blank lines; to always indent replies by just one step; and to maintain consistency in the type of character used.&lt;br /&gt;
&lt;br /&gt;
You can see examples and more explanation at {{w|Wikipedia:Manual of Style/Accessibility#Lists}}&lt;br /&gt;
&lt;br /&gt;
Please consider adopting Wikipedia's recommended best practice for such lists, on this site. &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pigsonthewing|Andy Mabbett]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Pigsonthewing&amp;lt;/span&amp;gt;); [[User talk:Pigsonthewing|Talk to Andy]]; [[Special:Contributions/Pigsonthewing|Andy's edits]]&amp;lt;/span&amp;gt; 19:20, 5 November 2018 (UTC)&lt;br /&gt;
:Thanks for your input and welcome here. At first you should know that this Wiki doesn't follow every Wikipedia standard, but there is a --relatively new-- [[explain xkcd:Editor FAQ|FAQ]] and we should talk at that discussion page about any enhancements. And please consider to keep it short, a typical editor here isn't a Wikipedean and doesn't read tons of manuals.&lt;br /&gt;
:There are many ugly layouts here, most written before the FAQ did exist, but when I and others see them the explanation or transcript gets an incomplete tag for that reason. And the biggest problem in the past was the use of overwhelming tables.&lt;br /&gt;
:BTW: Using a new-newline for each sentence isn't also a nice layout. Never mind... --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:54, 5 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== suggest adding info to pages ==&lt;br /&gt;
&lt;br /&gt;
I see &amp;quot;Title text&amp;quot; here on explainxkcd, but not on the comic itself.  &lt;br /&gt;
&lt;br /&gt;
Eg. https://www.explainxkcd.com/wiki/index.php/1313:_Regex_Golf shows &amp;quot;Title text: /bu|[rn]t|[coy]e|[mtg]a|j|iso|n[hl]|[ae]d|lev|sh|[lnd]i|[po]o|ls/ matches the last names of elected US presidents but not their opponents.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I don't see that anywhere on https://xkcd.com/1313/  Why not? {{unsigned ip|172.68.174.106}}&lt;br /&gt;
&lt;br /&gt;
:First of all: Please sign your comments&lt;br /&gt;
:&amp;lt;s&amp;gt;Second: I am not sure this is the right place for such a question, so please do not wonder if someone removes it.&amp;lt;/s&amp;gt;&lt;br /&gt;
:And finally: the &amp;quot;title text&amp;quot; can be seen by hovering the mouse over the image on the &amp;quot;regular&amp;quot; xkcd page. Here it is made more visible by mentioning beneath the picture additionally. More details can be found at the page about the title text :) https://www.explainxkcd.com/wiki/index.php/title_text [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 15:09, 12 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
@[[User:Lupo|Lupo]], no honest comment will be removed here, even if it should be posted at the [[explain xkcd:Community portal/Miscellaneous|Miscellaneous]] section. @IP, the proper internal link is here: [[title text]], and I see that this wiki needs a simple page to explain all the terms and characters used in a general short way. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:43, 12 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mediawiki exception on some pages ==&lt;br /&gt;
&lt;br /&gt;
I get the following MedaiWiki exception on some of the pages:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MediaWiki internal error.&lt;br /&gt;
&lt;br /&gt;
Original exception: [0beebcc3efaec7ded86aea14] 2018-12-05 23:25:16: Fatal exception of type &amp;quot;MWException&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Exception caught inside exception handler.&lt;br /&gt;
&lt;br /&gt;
Set $wgShowExceptionDetails = true; at the bottom of LocalSettings.php to show detailed debugging information.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See for example sites https://www.explainxkcd.com/wiki/index.php/2034:_Equations or https://www.explainxkcd.com/wiki/index.php/User:Dgbrt&lt;br /&gt;
&lt;br /&gt;
[[User:Sztupy|Sztupy]] ([[User talk:Sztupy|talk]]) 23:29, 5 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Also having this. Seems to happen when “math” in Preferences-Appearance is set to “MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools)” [[User:DrMeepster|DrMeepster]] ([[User talk:DrMeepster|talk]]) 08:01, 8 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:New error: If that math option is set to “Latex source” than an error relating to the page-ruining setting replaces any latex code: Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response (&amp;quot;Math extension can not find Restbase URL. Please specify $wgMathFullRestbaseURL.&amp;quot;) from server &amp;quot;invalid&amp;quot;:): &amp;lt;LATEX CODE HERE&amp;gt; [[User:DrMeepster|DrMeepster]] ([[User talk:DrMeepster|talk]]) 07:50, 11 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Sorry for my late reply. I will check and solve this issue soon, right now only the plain PNG image setting does work. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:15, 15 February 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
: The problem appears to not be solved.  In addition to the above pages (which are still broken), I've noticed it on the following: https://www.explainxkcd.com/wiki/index.php/2292 and https://www.explainxkcd.com/wiki/index.php/2311.  The workaround of configuring my account to render math as PNG works, but someone with the knowledge and access to fix this needs to do so.  [[User:Shamino|Shamino]] ([[User talk:Shamino|talk]]) 13:43, 3 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== “All 2126 Comics have an Explanation” ==&lt;br /&gt;
&lt;br /&gt;
There are 2127 comics, and the main page seems to update automagically, so I’m not sure what the issue is. [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 15:58, 25 March 2019 (UTC)&lt;br /&gt;
:I think you posted this before the &amp;quot;new robot&amp;quot; comic came up? keep in mind that the number 404 is not linked to any comic. (There is an explain page for 404, but no comic 404. Therefore it is actually 1 comic less than you might think based on the number. On the other hand there are I think 2 or 3 additional special comics (not numbered), such as the latest entry to the 5 minute comic series, or the one about open source, etc. [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]])&lt;br /&gt;
::I posted after it came up. I know about the unnumbered comics, so assumed they didn’t count, but I always forget about 404. Accounting for the non-comic, all seems right in the world. Thanks Lupo. [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 14:01, 26 March 2019 (UTC)&lt;br /&gt;
:::Just checked and they just subtract 1 in the source code??????? [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 16:58, 12 April 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
&lt;br /&gt;
Hi, I'm working on a project focused on docs, and wondered if there's some API or database I can access to pinch some of the tagging info from this site?&lt;br /&gt;
Even something like Randall's /json.html data from each page would work. ''[[User:Toonarmycaptain]] ([[User talk:Toonarmycaptain]] forgot to sign this edit at 03:50, 14 May 2019 (UTC)''&lt;br /&gt;
&lt;br /&gt;
== Unwanted Link ==&lt;br /&gt;
&lt;br /&gt;
In [[1467: Email]], there are two links in the title text that should be normal text. It has happened several times in other pages, and it's annoying. How do I change links like that into regular text? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 07:41, 11 July 2019 (UTC)&lt;br /&gt;
:Not sure what you mean. Maybe it is a browser issue on your end? on my computer neither chrome nor internet explorer or edge interpret anything inside of &amp;quot;My New Year's resolution for 2014-54-12/30/14 Dec:12:1420001642 is to learn these stupid time formatting strings.&amp;quot; as a link... [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 08:00, 11 July 2019 (UTC)&lt;br /&gt;
::Just checked. iPad misinterpreting part of them as phone numbers, appeared as link. [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 09:29, 11 July 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha not working? ==&lt;br /&gt;
&lt;br /&gt;
I've been experiencing some problems when trying to solve captcha when posting comments and topics. It's gotten much harder than before, I fail a lot more often, and occasionally, when I finish it, it reloads the page with an &amp;quot;Incorrect or Missing Captcha&amp;quot; error, and forces me to retry. Has anybody else experienced this problem? Am I the only one with Captcha issues? '''Has it been working properly in recent times?'''[[Special:Contributions/108.162.241.244|108.162.241.244]] 18:40, 8 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== DgbrtBOT ==&lt;br /&gt;
&lt;br /&gt;
The bot seems to have been down since December 13, 2019, and Dgbrt hasn't made a single edit since March, 2019. He hasn't responded to the comments in DgbrtBOT's talk page, either. Is there any way for an someone to contact him? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 13:12, 1 January 2020 (UTC)&lt;br /&gt;
:The bot has resumed its extremely helpful work again this week, but no word yet on why it was MIA for a solid month. [[User:Ianrbibtitlht|Ianrbibtitlht]] ([[User talk:Ianrbibtitlht|talk]]) 14:06, 10 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Google Ads appearing all over the page ==&lt;br /&gt;
&lt;br /&gt;
Google seems to have changed something in AdSense again, and the ads have been appearing in random positions again since December, 2019. [https://wpadvancedads.com/adsense-in-random-positions-auto-ads/ This page] might have a solution? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 13:20, 1 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Links to xkcd pages sould be withoult &amp;quot;www.&amp;quot; part ==&lt;br /&gt;
&lt;br /&gt;
There is an issue with loading resources on pages, that are opened with &amp;quot;www.&amp;quot; part in URL.&lt;br /&gt;
For example commic [https://www.xkcd.com/1975/ 1975].&lt;br /&gt;
If viewed from https://www.xkcd.com/1975/, comic is not interactive. On the other hand, https://xkcd.com/1975/ works like a charm.&lt;br /&gt;
&lt;br /&gt;
Page failes to load resorces from https://xkcd.com/1975/alto/root with error caused by CORS policy:&lt;br /&gt;
&lt;br /&gt;
* Access to fetch at 'https://xkcd.com/1975/alto/root' from origin 'https://www.xkcd.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.&lt;br /&gt;
&lt;br /&gt;
All links to commics in headers (button ''Comic #1975 (April 1, 2018)'') include &amp;quot;www.&amp;quot; part, for example this explanation:&lt;br /&gt;
https://www.explainxkcd.com/wiki/index.php/1975:_Right_Click&lt;br /&gt;
&lt;br /&gt;
IMO links in headers (buttons ''Comic #xxx (date)'') should be updated to exclude &amp;quot;www.&amp;quot; part.&lt;br /&gt;
&lt;br /&gt;
== Can't create my userpage ==&lt;br /&gt;
&lt;br /&gt;
I just registered, and can't seem to edit/create my own userpage. I've been editing MediaWiki wikis for a very long time and it's currently part of my career, so I'm pretty sure I'm doing everything right. Is there a prerequisite number of edits or something before I can create my userpage? [[User:Equazcion|Equazcion]] ([[User talk:Equazcion|talk]]) 22:18, 6 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I do not know the answer to that, but ... if one of us finds out &amp;quot;sooner&amp;quot; than the other, then, let's &amp;quot;share&amp;quot; the answer. Yours might appear here, and mine ... might appear about eleven &amp;quot;sections&amp;quot; up, in this same &amp;quot;Technical&amp;quot; portal ... &amp;lt;s&amp;gt;at the URL&amp;lt;/s&amp;gt; in the section &amp;quot;[[explain_xkcd:Community_portal/Technical#Cannot_create_a_user_page|Cannot create a user page]].&amp;quot; (see [https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd%3ACommunity_portal%2FTechnical&amp;amp;type=revision&amp;amp;diff=190166&amp;amp;oldid=190127 the DIFF listing]...) &lt;br /&gt;
&lt;br /&gt;
:Maybe I should have &amp;quot;seconded the motion&amp;quot; '''here''', instead of adding my own question, -- which is very similar! -- to a different section, up '''there?''' Pardon me ... --[[User:Mike Schwartz|Mike Schwartz]] ([[User talk:Mike Schwartz|talk]]) 08:15, 7 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::[[explain_xkcd:Community_portal/Admin_requests#Permission_request]] might help. [[User:A(l)Chemist|AlChemist]] ([[User talk:A(l)Chemist|talk]]) 11:06, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Yes, according to that page, your account must be at least one week old, AND you must have made at least 10 edits.  There's a new page, [[:explain xkcd:Autoconfirmed users]], which says it's three days (rather than one week) and 10 edits – after that, you become an &amp;quot;autoconfirmed user&amp;quot;, and gain the right to create pages ([[Special:ListGroupRights|among other things]]).  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 02:01, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== List of all comics incomplete/overflowing ==&lt;br /&gt;
&lt;br /&gt;
The [[List_of_all_comics | List of all comics]] and the full list are incomplete, stopping with 2289. Taking a look at [[List_of_all_comics_(full) | List of all comics (full)]] nets that it belongs to the category 'Pages where template include size is exceeded', so I'm assuming it just hit the limit. I'm sadly not well versed in MediaWiki, so I have no idea what a workaround would look like&lt;br /&gt;
&lt;br /&gt;
== 2138 page issues ==&lt;br /&gt;
&lt;br /&gt;
This first came up when following a link from on of the other Code Quality pages.&lt;br /&gt;
&lt;br /&gt;
when you go to https://www.explainxkcd.com/wiki/index.php/2138:_Wanna_See_the_Code%3F you get a blank pag that says &amp;quot;No input file specified.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
however when you go to https://www.explainxkcd.com/wiki/index.php/2138 you get the actual page via redirect but when you reload the page it goes back to &amp;quot;No input file specified.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
not sure what causes this but i tested in chrome (incognito mode to avoid extensions), old edge (not chromium) and chrome iOS via mobile data. all test had the same result.&lt;br /&gt;
&lt;br /&gt;
sorry if this is the wrong place for this but not sure where else to put it. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 14:44, 21 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This problem seems to be common to all comics ending with a question mark: [[2236]], [[2138]], [[2065]], [[1841]], [[1205]]. My best guess is that the url is being interpreted as a query, but since there is nothing after the question mark this results in an error. Whether this is a new error or just hasn't been noticed before I don't know. Renaming the pages without the question mark could work, but would require every reference to these comics on the wiki to be updated. [[User:A(l)Chemist|AlChemist]] ([[User talk:A(l)Chemist|talk]]) 10:07, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::i think it is new, i recently (not sure when but after 2138 was released) went through the Code Quality series using the links and it worked fine then. i don't think it is being interpreted as a query because the question mark is encoded. i would amazed if it would still interpret this as a query because that would completely defeat the point of encoding the url in the first place. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 09:35, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::here is a full list of broken pages: [[58]], [[111]], [[259]], [[1205]], [[1705]], [[1841]], [[1913]], [[2065]], [[2138]], [[2236]]. i wrote a quick javascript to extract a full list of urls from [[List of all comics (full)]] (then added the recent ones manually, [[explain_xkcd:Community_portal/Technical#List_of_all_comics_incomplete.2Foverflowing|see above]]). then ran a python script to get the content of each page and check if it is broken (with a 2 sec delay to minimise server load) and saved the list if broken ones. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 13:34, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Note that you can view the comic by changing the URL from &amp;lt;code&amp;gt;index.php/...&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;index.php?title=...&amp;lt;/code&amp;gt; ([https://www.explainxkcd.com/wiki/index.php?title=58:_Why_Do_You_Love_Me%3F example]). —[[User:Galaktos|Galaktos]] ([[User talk:Galaktos|talk]]) 13:03, 14 May 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;All comics&amp;quot; from left sidebar is not updating ==&lt;br /&gt;
&lt;br /&gt;
https://www.explainxkcd.com/wiki/index.php/List_of_all_comics&lt;br /&gt;
&lt;br /&gt;
[https://imgur.com/a/J287JBz image]&lt;br /&gt;
&lt;br /&gt;
== Attention needed to some List pages  ==&lt;br /&gt;
&lt;br /&gt;
I just (mis)clicked on &amp;quot;All Comics&amp;quot;, and thought it looked odd.&lt;br /&gt;
DGBRTBot needs a prod, or something, given the current months-old state and commented prediction in https://www.explainxkcd.com/wiki/index.php?title=List_of_all_comics&amp;amp;action=history&lt;br /&gt;
&lt;br /&gt;
(Oh, and the [[List of all comics (full)]], which I then checked has a redlinked Category of &amp;quot;Pages where template include size is exceeded&amp;quot; and seems to have been previously given a badly-included &amp;quot;...and everything before #501&amp;quot;. Not sure if the first problem is easily solvable, but as I'm here I thought I'd mention it, and you could properly add 1-500 ''and'' 501-1000 to sort the Include Size issue, maybe?)&lt;br /&gt;
&lt;br /&gt;
I could be way off-piste, but as it looks like nobody has noticed anything yet I thought I'd at least raise the issue, and then leave the fixing to someone with a bit more Wiki-Fu..? [[Special:Contributions/162.158.155.120|162.158.155.120]] 20:48, 3 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:For [[List of all comics]], looks like [[User:DgbrtBOT|DgbrtBOT]] is working again, and [[User:Btx40]] already went back and added the missing entries, so that should be all good now.&lt;br /&gt;
:For [[List of all comics (full)]], not sure if I correctly understand what you mean by &amp;quot;''you could properly add 1-500 ''and'' 501-1000 to sort the Include Size issue''&amp;quot;?  But I think the &amp;quot;''badly-included '...and everything before #501' ''&amp;quot; you mentioned wasn't so much ''badly-inluded'' – its code looked correct to me – rather, the inclusion makes the page so big that it ''causes'' the page to exceed the &amp;quot;template include-size&amp;quot; limit.  See the following Wikipedia articles for more about how this &amp;quot;template include-size&amp;quot; limit works in MediaWiki:&lt;br /&gt;
:* {{w|Wikipedia:Template limits#Post-expand include size}}&lt;br /&gt;
:* {{w|Wikipedia:Post-expand include size}}&lt;br /&gt;
:So ''as a result of'' exceeding the limit, the parser ''excludes'' the template that caused the limit to be exceeded (i.e. it excludes the 1-500 list at the bottom of the page), so as to keep the page under the size limit; and instead of the ''actual'' content, the parser just inserts a ''link'' to the content.  And it so happens that in this case, the ''content'' includes the control-characters for constructing the table rows – so because those control characters are excluded along with the content, then the link shows up in the last existing cell of the table, and ''appears'' to be badly-included.&lt;br /&gt;
:I'm not sure how to fix it, but some options could be:&lt;br /&gt;
:* Somehow reduce the content of the page so that the full list of #1-to-#current doesn't exceed the limit.&lt;br /&gt;
:** Each &amp;quot;row&amp;quot; of the table produces about 700 characters in the resulting HTML; around 200 of that is the hidden &amp;quot;create&amp;quot; link (from [[Template:comicsrow]]) that I think ''would'' appear if the comic's page didn't exist yet.  I would say that at this point, since all the comics already have pages, then that &amp;quot;create&amp;quot; link is only useful for the most recent comic, and could probably be omitted to significantly reduce the size of the page.&lt;br /&gt;
:*** (Actually, it looks like DgbrtBOT might automatically create the page for each new comic, so the &amp;quot;create&amp;quot; link might not be needed ''at all'' anymore.)&lt;br /&gt;
:** There are some other elements that could be removed from each table row to save space, such as the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attributes of the links, etc.&lt;br /&gt;
:** Not sure if all of that would create enough headroom for the 1-500 list though?&lt;br /&gt;
:* Increase &amp;lt;code&amp;gt;$wgMaxArticleSize&amp;lt;/code&amp;gt; on the server?  ([https://www.mediawiki.org/wiki/Manual:$wgMaxArticleSize See here].)&lt;br /&gt;
:** Not sure of the risks of that; and in any case, it's only that one page that currently exceeds the limit, so may not be worth it.&lt;br /&gt;
:For now, I've added a note to the page explaining that 1-500 are missing and why, and I've tweaked the bottom of the table to make the link to 1-500 a bit more presentable in the meantime.&lt;br /&gt;
:– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 06:41, 3 October 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Strange error—maybe edit conflict? ==&lt;br /&gt;
&lt;br /&gt;
I happened to be looking at my edit history, and I noticed that something insane happened back in June: I made an edit to [[2319: Large Number Formats]], and it somehow combined my edit with someone else's. The entirety of my edit (as I crafted it) was confined to the article's categories; I added one and put the set in alphabetical order. But the edit, {{diff|193595|as it was logged}}, is a massive alteration, with all sorts of questionable changes. It was (rightly, I think) undone by [[User:Jkrstrt|Jkrstrt]] a couple days later. Did I somehow overlook an edit-conflict error and accept some (now anonymous) users edit? I can see myself making some kind of oversight at that time of night, but it seems antithetical to the wiki process to have an edit misattributed in this way. (I certainly don't like having that change connected with my name, but I also wonder how this intersects with important issues of public ownership integral to wiki communities.) I'd appreciate any insight fellow editors could provide. [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 22:24, 3 August 2020 (UTC)&lt;br /&gt;
:As I'm passing through, I shall note that I'm the IP that added the &amp;quot;(The 1971 transition[...]&amp;quot; paragraph you see 'added' there. It was actually part of a larger edite that was later (than my edit, earlier than yours) understandably removed for being irrelevent. During this {{diff|193424|5-day-earlier revision}}. But I had absolutely nothing to do with pretty much every other change in your above-logged diff, SFAICS from a quick skim, so honestly don't know why it features there. But hope this info is useful. [[Special:Contributions/162.158.159.66|162.158.159.66]] 23:05, 3 August 2020 (UTC)&lt;br /&gt;
::That's actually quite helpful because it caused me to go look at older versions of the article. It looks like my edit {{diff|193595&amp;amp;oldid=193386|used a very early version as a starting point}} (thereby reverting all changes made later). My best guess is that I had gone back to an old version because Randall changed this comic after it was published and was trying to convince myself that I wasn't crazy. No, not crazy, but spacey. Wikipedia puts a big red warning across the page when you're ending an old version, and this wiki uses only a bit of bold text—that apparently wasn't enough to draw my attention. Thanks! [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 01:33, 4 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Unable to view &amp;quot;what if?&amp;quot; page ==&lt;br /&gt;
&lt;br /&gt;
The link to the page for the [[what if?]] blog displays an error: &amp;quot;No input file specified.&amp;quot; [[User:JBYoshi|JBYoshi]] ([[User talk:JBYoshi|talk]]) 03:38, 21 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This also happens to me on [[1205: Is It Worth the Time?]] Must be something with the ?s in the titles. [[Special:Contributions/172.69.22.66|172.69.22.66]] 15:46, 25 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I've noticed that as well. I made a page in my userspace that redirects to the what if page, and for some reason that seems to work. ([[User:Blue screen of life/whatiflink|here is the link to the page]]) [[User:Blue screen of life|Blue screen of life]] ([[User talk:Blue screen of life|talk]]) 20:09, 31 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::I have also noticed this but it is not just on pages with questions marks. Both [[259]] and [[1705]] show the same thing. A full list (as of 22 June 2020) of the ones i found is in the last reply to my report found here [[#2138_page_issues]] [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 12:20, 22 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Both [[259]] and [[1705]] have an ({{w|E acute|e-with-accute-accent}}, Unicode U+00E9) in the URL, so for those pages, I wonder if that has anything to do with it?&lt;br /&gt;
::::For the &amp;quot;what if?&amp;quot; page, I had recently added a redirect from [[what if (blog)]] to get to it, and the [[What If]] disambiguation page has been updated with it, so at least we can get to it that way; and for the comic explanations, at least we can get to them by linking to their number-redirects (as [[58]] instead of [[58: Why Do You Love Me?]]); but not sure how to fix it overall.  At the following page, it suggests tweaking an {{w|Apache HTTP Server|Apache}} {{w|Rewrite engine|rewrite}} directive in {{w|.htaccess}} (or a {{w|Common Gateway Interface|CGI}} setting in {{w|PHP}} if it's running on {{w|Internet Information Services|IIS}}):&lt;br /&gt;
::::* https://www.mediawiki.org/wiki/Topic:Vmaw1tu5kkhyon0n&lt;br /&gt;
::::So maybe something about that has changed recently?  Documentation:&lt;br /&gt;
::::* [https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewriterule Apache mod_rewrite &amp;lt;code&amp;gt;RewriteRule&amp;lt;/code&amp;gt; directive]&lt;br /&gt;
::::* [https://www.php.net/manual/en/ini.core.php#ini.cgi.force-redirect php.ini &amp;lt;code&amp;gt;cgi.force_redirect&amp;lt;/code&amp;gt; directive]&lt;br /&gt;
::::Summarizing a few points from [[User talk:SlashMe#Homeopathic Wiki|this related discussion]]:&lt;br /&gt;
::::* Only one of the site's [https://explainxkcd.com/wiki/index.php/Special:ListUsers?group=sysop 10 administrators] has made recent edits ([[Special:Contributions/SlashMe|SlashMe]]).&lt;br /&gt;
::::* Neither of the site's [https://explainxkcd.com/wiki/index.php/Special:ListUsers?group=bureaucrat 2 bureaucrats] ([[Special:Contributions/Jeff|Jeff]] and [[Special:Contributions/Lcarsos|Lcarsos]]) have made any edits recently.&lt;br /&gt;
::::* For admin access to the ''server'' itself, my limited understanding is that [[Special:Contributions/Jeff|Jeff]] might actually own the server, but may have also given admin access to [[Special:Contributions/Dgbrt|Dgbrt]]; however, neither of them have made edits recently.&lt;br /&gt;
::::But &amp;quot;most recent edit&amp;quot; might not be a good indicator, so I wonder of some of these folks are still involved in the project?&lt;br /&gt;
::::– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 05:10, 29 September 2020 (UTC)&lt;br /&gt;
: Looks like it happens for any page that has a percent-encoding in the title. [[User:PoolloverNathan|PoolloverNathan]]&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[Special:Contributions/PoolloverNathan|s]][[User talk:PoolloverNathan|talk]] [[Wikipedia:WP:SEAOFBLUE|the blue seas]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt; 16:32, 16 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
=== Known broken pages ===&lt;br /&gt;
(Redirects work, whereas links to the actual page are broken.)&lt;br /&gt;
&lt;br /&gt;
Title containing e-accute-accent:&lt;br /&gt;
* [[259]] ↳ [[259: Clichéd Exchanges]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=259:_Clich%C3%A9d_Exchanges What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1705]] ↳ [[1705: Pokémon Go]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1705:_Pok%C3%A9mon_Go What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Title ending with question mark:&lt;br /&gt;
* &amp;lt;del&amp;gt;[[what if (blog)]] ↳ [[what if?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=What_If%3F What links here])&amp;lt;/small&amp;gt;&amp;lt;/del&amp;gt; &amp;lt;ins&amp;gt;fixed – content now exists at [[what if]], and [https://www.explainxkcd.com/wiki/index.php?title=Special:WhatLinksHere/what_if&amp;amp;limit=500 broken links] are in the process of being updated (see below)&amp;lt;/ins&amp;gt;&lt;br /&gt;
* [[58]] ↳ [[58: Why Do You Love Me?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=58:_Why_Do_You_Love_Me%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[111]] ↳ [[111: Firefox and Witchcraft - The Connection?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=111:_Firefox_and_Witchcraft_-_The_Connection%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1205]] ↳ [[1205: Is It Worth the Time?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1205:_Is_It_Worth_the_Time%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1841]] ↳ [[1841: Who?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1841:_Who%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1913]] ↳ [[1913: A ?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1913:_A_%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2065]] ↳ [[2065: Who Sends the First Text?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2065:_Who_Sends_the_First_Text%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2138]] ↳ [[2138: Wanna See the Code?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2138:_Wanna_See_the_Code%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2236]] ↳ [[2236: Is it Christmas?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2236:_Is_it_Christmas%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Moved ===&lt;br /&gt;
I moved the [[what if?]] page to the [[what if (blog)]] page which I then changed to simply [[what if]] to fix this issue and because anyone new to this site would type that any way to see it.&amp;lt;span&amp;gt; — [[User:Sqrt-1|The &amp;lt;b&amp;gt;𝗦𝗾𝗿𝘁-𝟭&amp;lt;/b&amp;gt;]] &amp;lt;sup&amp;gt;[[User talk:Sqrt-1|&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;talk&amp;lt;/span&amp;gt;]] [[Special:Contributions/Sqrt-1|&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;stalk&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt; 06:47, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Still trying to wrap my head around it – so just to summarize, we currently have:&lt;br /&gt;
:&lt;br /&gt;
:* '''[[whatif]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=whatif&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''redirects to'' '''[[what if?]]''' (see below)&lt;br /&gt;
:* '''[[What If?]]''' – page broken &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=What_If%3F&amp;amp;redirect=no no-redirect link]) ([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=What_If%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''also redirects to'' '''[[what if?]]''' – page broken &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;redirect=no no-redirect link]) ([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=what_if%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
:*** ↳ ''redirects to'' '''[[what if]] – actual content'''&lt;br /&gt;
:*** ''content manually moved from'' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;diff=198070&amp;amp;oldid=197859 diff])&amp;lt;/small&amp;gt; '''[[what if?]]''' ''to'' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if&amp;amp;diff=198071&amp;amp;oldid=197486 diff])&amp;lt;/small&amp;gt; '''[[what if (blog)]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if_(blog)&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt; (''[https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;action=history previous revision history] remains at'' '''[[what if?]]''')&lt;br /&gt;
:**** ⇒ ''moved to'' '''[[what if]] – actual content'''&lt;br /&gt;
:&lt;br /&gt;
:For completeness, we also have...&lt;br /&gt;
:&lt;br /&gt;
:* '''[[what if book]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if_book&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''redirects to'' '''[[what if#The book]] – actual content'''&lt;br /&gt;
:** Suggestion: for consistency, also add a '''[[what if (book)]]''' page that redirects here?&lt;br /&gt;
:&lt;br /&gt;
:...and the disambiguation page...&lt;br /&gt;
:&lt;br /&gt;
:* '''[[What If]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=What_If&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ⇒ ''moved to'' '''[[What If (disambiguation)]]''' – disambiguation page&lt;br /&gt;
:*** ''links to'' '''[[17: What If]]''' (↲ '''[[17]]''' redirects here &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=17&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;)&lt;br /&gt;
:*** ''links to'' '''[[what if]] – actual content'''&lt;br /&gt;
:*** Suggestion: mention the ''book'' here as well, and link to its section in the [[what if]] page?&lt;br /&gt;
:&lt;br /&gt;
:...and these troubleshooting pages from [[User:Blue screen of life]]:&lt;br /&gt;
:&lt;br /&gt;
:* '''[[User:Blue screen of life/redirecttest]]''' – test page &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=User:Blue_screen_of_life/redirecttest&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ⇒ ''moved to'' '''[[User:Blue screen of life/whatiflink]]''' – test page &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=User:Blue_screen_of_life/whatiflink&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:*** ↳ ''redirects to'' '''[[What If?]]''' (see above)&lt;br /&gt;
:&lt;br /&gt;
:Given that the actual content of the &amp;quot;what if?&amp;quot; article now lives at '''[[what if]]''', I've started updating pages &amp;lt;ins&amp;gt;(except for Talk pages)&amp;lt;/ins&amp;gt; to link directly there instead of the other redirect pages.  All that's left to do are pages that link to the '''[[what if?]]''' redirect-page (which is broken).  &amp;lt;del&amp;gt;Its [https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere/what_if%3F &amp;quot;What links here&amp;quot;] special page is broken too, so it's difficult to find what pages link there – but now that it redirects to the [[what if]] page, you can see them indirectly from ''that'' page's [https://www.explainxkcd.com/wiki/index.php?title=Special:WhatLinksHere/what_if&amp;amp;limit=500 &amp;quot;What links here&amp;quot;] special page.&amp;lt;/del&amp;gt;  &amp;lt;ins&amp;gt;[https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=what_if%3F These] are the pages that still link there.&amp;lt;/ins&amp;gt;  There are still a lot of them to go.&lt;br /&gt;
:&lt;br /&gt;
:Also, should the following redirect-pages be simplified to have them redirect straight to the new [[what if]] page, instead of redirecting through the intermediate '''[[what if?]]''' page (which itself redirects there anyway)?&lt;br /&gt;
:* '''[[whatif]]'''&lt;br /&gt;
:* '''[[What If?]]'''&lt;br /&gt;
:– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 17:20, 29 September 2020 (UTC)&lt;br /&gt;
:: Fixed the double redirects, don't ask me why we have so many pages for the same thing. [[User:PoolloverNathan|PoolloverNathan]]&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[Special:Contributions/PoolloverNathan|s]][[User talk:PoolloverNathan|talk]] [[Wikipedia:WP:SEAOFBLUE|the blue seas]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt; 16:29, 16 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion not displaying with comic ==&lt;br /&gt;
&lt;br /&gt;
I am using FireFox on a Win10 machine.  When I come to the site I can see the comic, explanation and transcript.  But the discussion section is hidden.  Even when logged in.&lt;br /&gt;
&lt;br /&gt;
Any ideas?&lt;br /&gt;
&lt;br /&gt;
: You say &amp;quot;when I come to the site&amp;quot;.  If the address bar says you are on Main_Page and you see the heading &amp;quot;Latest comic&amp;quot;, then it's simply working as designed.  Above the comic, click on &amp;quot;Go to this comic explanation&amp;quot; and you will see the comic plus discussion.&lt;br /&gt;
&lt;br /&gt;
: Also, Steve, please sign your comments every time, with four tildes.  That expands into your user name and a timestamp.  Like this -- [[User:JohnB|JohnB]] ([[User talk:JohnB|talk]]) 10:10, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Random page sometimes takes me to an invalid address ==&lt;br /&gt;
&lt;br /&gt;
Sometimes, when clicking on &amp;quot;Random page&amp;quot; in the left sidebar, the site will be blank apart from the text &amp;quot;No input file specified. &amp;quot;.&lt;br /&gt;
&lt;br /&gt;
An example of such an URL is: https://www.explainxkcd.com/wiki/index.php/111:_Firefox_and_Witchcraft_-_The_Connection%3F&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:I've noticed this happens for ''all'' URLs to comics that end in a question mark (or possibly any special character). Interestingly, this doesn't happen if you go to the comic from the search bar. [[User:Danish|Danish]] ([[User talk:Danish|talk]]) 23:04, 27 January 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bug on the main page ==&lt;br /&gt;
&lt;br /&gt;
Bug Enviroment(Might work on other enviroments):&lt;br /&gt;
Ubuntu 20.04LTS  &lt;br /&gt;
Firefox85.0  &lt;br /&gt;
2021.2.7  &lt;br /&gt;
&lt;br /&gt;
Bug:  &lt;br /&gt;
The front page reads: `Welcome, Main Page, to explain xkcd!` with `Main Page` formatted as a username,can someone fix this?&lt;br /&gt;
&lt;br /&gt;
[[User:Xkcdjerry|Xkcdjerry]] ([[User talk:Xkcdjerry|talk]]) 09:48, 7 February 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Occasional error via Cloudflare ==&lt;br /&gt;
Just a note that I'm getting Cloudflare errors of &amp;quot;origin not reachable&amp;quot; (sounds wrong to me, in my head it should be 'destination', but never mind) three times now in the last ten to fifteen minutes - of maybe a dozen general site-requests.&lt;br /&gt;
&lt;br /&gt;
I've also been getting seemingly .CSSless formatted pages over the past few days, which I've been putting down to slightly dodgy wifi at my end (not unknown) but if I'm getting Cloudflare's error cleanly then perhaps it's been entirely upstream/downstream/however-you'd-describe-the-Explain-server. (Obviously CSS resource requests, as with images, are additional HTTP calls, but I still lump it into the single site-request ''per page'' in my 'dozen' estimate above. No obviously lost images, though, in incomplete pages - not that can't be explained by .CSS non-following, anyway.)&lt;br /&gt;
&lt;br /&gt;
I had copy-buffered some of the exact info, but due to incompetence I recopied over it before coming here. If it happens again, I'll try to bring it over here. But (the way these things go) maybe it won't. FYI, though. [[Special:Contributions/141.101.98.52|141.101.98.52]] 12:04, 5 March 2021 (UTC)&lt;br /&gt;
: Not a Cloudfare error (looks like an error of the actual explainxkcd server) but every now and then (like just a few minutes ago) I get an error page that generally goes away if I immediately refresh. To whit:&lt;br /&gt;
 Service Unavailable&lt;br /&gt;
 The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.&lt;br /&gt;
 &lt;br /&gt;
 Additionally, a 503 Service Unavailable error was encountered while trying to use an ErrorDocument to handle the request.&lt;br /&gt;
: Not really a problem (occasionally happened while submitting an exit, and I have to confirm to the browser that I wish to repost the data, but this particular copied instance was through a more 'read-only' link-click, like most of the instances) but... in case someone finds this to be new and useful information... here you are! [[Special:Contributions/141.101.98.192|141.101.98.192]] 03:45, 12 March 2021 (UTC)&lt;br /&gt;
:OP, here, of the above 503 error report/casual mention. Obviously this is the same message that happened for an ''extended'' period of time over a number of days, but I've only just happened to find the site responding again and have not yet looked to see if it is explained as the same or different cause to the old intermittent issues (at root). I hope things are resolved from the major outage (server quota? bill payments? renewal/reconfiguration blips?) but wonder if I should report any future minor outages? I'm still smarting from the total loss of the fora.xkcd.com platform, a few years back, and while I'm not active enough here to consider a proper login (lurking as a freeloading anon-IP is good enough, usually, for my intellectual enjoyment, with all due apologies) I did have a slight pang of emptiness while it was out-of-order. [[Special:Contributions/141.101.99.79|141.101.99.79]] 15:48, 16 June 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Add TemplateData ==&lt;br /&gt;
&lt;br /&gt;
Add the {{mw|Extension:TemplateData|TemplateData}} extension to allow setting data for templates. This will help editors because they will be able to see the data of templates.&lt;br /&gt;
&lt;br /&gt;
== MediaWiki 1.30.0?! ==&lt;br /&gt;
&lt;br /&gt;
This wiki is [[Special:Version|currently]] on [[mw:MediaWiki 1.30|MediaWiki 1.30.0]] ([[mw:Release notes/1.30|release notes]]), the first of three releases of a version of MW that reached end-of-life in June of 2019 ([[mw:Version lifecycle]]). It's thus missing multiple important security updates from 1.30.1 and 1.30.2, not to mention the two years' worth of security updates since 1.30.x reached end-of-life. Even 1.31.x will be reaching end-of-life in just over a month.&lt;br /&gt;
&lt;br /&gt;
If the sysadmins here update to [[mw:MediaWiki 1.35|MediaWiki 1.35.2]] ([[mw:Release_notes/1.35|release notes]]), that version will be maintained till September of 2023, with only a few security updates in the meantime. I would '''strongly''' encourage y'all to update to 1.35.2; to promptly update if there's a .3, .4, etc.; and to make sure you switch to the next LTS release (which will presumably be 1.39) well in advance of September of '23. (Note that this will also require updating to PHP 7.3.19 or later.) [[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 07:17, 30 April 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Uptime ==&lt;br /&gt;
Did the website just go down? &amp;lt;span style=&amp;quot;text-shadow:0 0 8px black&amp;quot;&amp;gt;[[User:Beanie|&amp;lt;span style=&amp;quot;font-size:11pt;color:#dddddd&amp;quot;&amp;gt;Beanie&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; &amp;lt;sup&amp;gt;&amp;lt;span style=&amp;quot;text-shadow:0 0 7px #000000&amp;quot;&amp;gt;[[User talk:Beanie|&amp;lt;span style=&amp;quot;font-size:8pt;color:#dddddd&amp;quot;&amp;gt;talk&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&amp;lt;/sup&amp;gt; 13:06, 28 May 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
It was definitely down this weekend!   &lt;br /&gt;
https://www.reddit.com/r/xkcd/comments/nxrm65   &lt;br /&gt;
[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 16:21, 15 June 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic template lappend breaks for standalone comic links ==&lt;br /&gt;
&lt;br /&gt;
For example, https://xkcd.com/blue_eyes.html is changed to https://xkcd.com/blue_eyes.html/ which isn't valid [[Special:Contributions/172.69.90.15|172.69.90.15]] 15:51, 13 October 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Template here, I think it needs to be changed to solve this https://www.explainxkcd.com/wiki/index.php/Template:comic&lt;br /&gt;
&lt;br /&gt;
exkcd page here https://www.explainxkcd.com/wiki/index.php/Blue_Eyes&lt;br /&gt;
&lt;br /&gt;
== May not be your problem, but FYI. ==&lt;br /&gt;
&lt;br /&gt;
My typcal setup: Android tablet, with Chrome for Android (latest update), but also Firefox for Android (ditto), using default Gboard (likewise) for input.&lt;br /&gt;
&lt;br /&gt;
Occasionally (notably within the last few weeks/maybe a month or so), when going in to edit an explainxkcd page through Chrome (it's how I divide up my browsing), I'm getting the cursor in the textarea box which ''can'' be used to Cut/Copy/Paste (as applicable and useful), but the on-screen keyboard isn't popping up. Page is fully loaded (can be refreshed, doesn't have the &amp;quot;stop loading&amp;quot; alternative), can go back (page viewing) and try to go back to the page editor (often to same result). Sitting and waiting doesn't pop the keyboard up, either (sat there for minutes). Happens both on home wifi and mobile connection.&lt;br /&gt;
&lt;br /&gt;
If I transfer my attentions to the page to Firefox (copy URL, to use there... but I don't use that by default for expxkcd stuff) there's no problem, but then if I come back to Chrome again it seems to start working again ''anyway'' so not sure if it's just avoiding/flushing a  transient problem that would also initially crop up with Firefox if I used that more.&lt;br /&gt;
&lt;br /&gt;
Because editing is a different (mobile-optimised) process on Wikipedia and I can't be sure about any the equivalence of any other wiki out there (and it doesn't happen with anything else I regularly key into on Chrome) it's not something I've reproduced outwith this site, and of course desktop page-editing doesn't require touch-screen keyboard because there's a physical one.&lt;br /&gt;
&lt;br /&gt;
Not getting much feedback with Chrome (really can't get on with their bugrep processes, it's too huge a project to make headway, IME), not even tried to pester the Gboard team and I've not ''seen'' anything said on here about this being a site-issue (not sure how it could be, as it's outside the remit of the core web-page rendering process and more an Android or App level of incompetence), but I thought I'd make a note of it here for future reference. Make of it what you will. Annoying but not game-breaking. And I just wanted to vent a little. [[Special:Contributions/172.70.162.147|172.70.162.147]] 16:54, 25 December 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[special:interwiki]] ==&lt;br /&gt;
&lt;br /&gt;
where'd it go? [[Special:Contributions/172.69.68.200|172.69.68.200]] 05:07, 7 January 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Please update MediaWiki + AbuseFilter ==&lt;br /&gt;
&lt;br /&gt;
Seriously. Many scripts and such built for modern, supported versions of MW do not work here because it is so unbelievably undated. PinkAmpersand above basically covers the reason why. I also highly recommend adding the extension AbuseFilter (https://www.mediawiki.org/wiki/Extension:AbuseFilter) as it immensely makes removing vandalism easier (by straight up disallowing or blocking those that do, esp if it's like the current formulaic massive-replacement vandalism.) [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 00:48, 21 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ditto. I feel like the main problem is that the sole person who has access to the backend either doesn't have time to update, doesn't have interest, or doesn't have the technical knowledge necessary. But yes, I agree - updating and installing an extension to help control vandalism would help this wiki tremendously. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 20:09, 9 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== ↑ ? ==&lt;br /&gt;
&lt;br /&gt;
Why do some pages have ↑ at the very start? They can all be spotted by searching ↑ &lt;br /&gt;
Is it a technical thing, vandalism, some sort of glitch? Maybe I'm just uninformed or being an idiot.&lt;br /&gt;
:Edit logs tell me that an IP user manually reverting vandalism somehow inserted one or more extra characters while manually reverting vandalism. '''[[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;]] 13:59, 22 May 2022 (UTC)&lt;br /&gt;
::Should it be removed? It's not necessary and might be confusing for screenreaders... [[User:Mushrooms|Mushrooms]] ([[User talk:Mushrooms|talk]]) 09:00, 23 May 2022 (UTC)&lt;br /&gt;
:::Maybe not en-mass, I'd say. But I've dove in to delete a rogue leading &amp;lt;nowiki&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;/nowiki&amp;gt; tag left from a part of a prior vandalism (likewise, just before the {{template|comic}}-element) and I've promised myself that I'll remove any more that I spot (and now that arrow) in any future whole-page edit I make. Plus a small shopping-list of inessential but useful edits like making {{template|Citation needed}}s flow better when they're mispunctuated/etc.&lt;br /&gt;
:::But that's my solitary opinion. I'm sure hunting out and squishing this isn't a problem at all. I'm just balancing my own peculiar brand of OCD with what is somehow my also my own version of casual apathy towards other details. (Also, it probably looks better for a named account of recognised good standing to start editing potentially hundreds of pages in a session, rather than myself... potentially indistinguishable from the IP who seems to relish worn out memes in a general page-trashing.) [[Special:Contributions/162.158.159.121|162.158.159.121]] 12:20, 23 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Is there anything else we can do to prevent vandalism? ==&lt;br /&gt;
&lt;br /&gt;
There's been quite a significant uptick in vandalism recently, and I don't feel we have any effective tools to combat it. I believe one of the biggest issues here is due to the way logged-out editing works on this wiki. Blocks are completely ineffective at slowing vandals, and IP editors can vandalize with basically nothing we can do to thwart them other than revert-warring. '''Is there a better way?'''&lt;br /&gt;
&lt;br /&gt;
There's been some discussion of installing AbuseFilter, but I'm not sure anything became of it. We could disable logged-out editing, but that would likely be counterproductive as we get lots of legitimate contributions from logged-out users. If there's a way to switch to location-based IPs, we could rangeblock problematic users as well as proxies. Does anyone have any ideas? [[Special:Contributions/162.158.78.145|162.158.78.145]] 16:11, 1 June 2022 (UTC)&lt;br /&gt;
:I'm sort of making server side changes via telegraph so an extension is probably going to take a while to get installed. Takes a bunch of emails and followups to get single variables changed in the mediawiki settings file. There is an email verification option, and some edit frequency variables that could be set to make spam more time consuming. Don't love range blocks but wouldn't mind getting the CDN IPs dealt with so we can actually use the IP bans again. '''[[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;]] 17:16, 1 June 2022 (UTC)&lt;br /&gt;
::I'm very grateful that you're working on changes under the hood. What do you think is the  best way to deal with disruption in the meantime? [[User:Vandalbane|Vandalbane]] ([[User talk:Vandalbane|talk]]) 17:19, 1 June 2022 (UTC)&lt;br /&gt;
:::Could borrow a patrol bot like the ones people on main wikipedia have, could ask around. '''[[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;]] 18:53, 1 June 2022 (UTC)&lt;br /&gt;
::::There's not really a drop-in solution that you can use, especially since the server's MediaWiki version is not in sync with Wikipedia's (so a lot of the APIs etc have completely changed; when initially reverting vandalism I tried importing some scripts from enwiki but they failed as a result), but also because the bots have gotten pretty complex (using machine learning provided by the Wikimedia Foundation, for example). [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 03:56, 2 June 2022 (UTC)&lt;br /&gt;
:::::Oh I do notice mediawiki hasn't been upgraded in a while. Looks like new version of mediawiki should be dropping extremely imminently, would be nice timing for an upgrade '''[[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:45, 2 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Rollback ==&lt;br /&gt;
&lt;br /&gt;
Does the rollback permission exist on this wiki? [[User:Vandalbane|Vandalbane]] ([[User talk:Vandalbane|talk]]) 17:00, 1 June 2022 (UTC)&lt;br /&gt;
:The rollback permission of course exists but there's no group called &amp;quot;rollbacker&amp;quot; like you'd find on Wikipedia (limited to admins). You'd need the sysadmin to change the configuration to add one, which as established is not really an option right now. [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 03:58, 2 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What happened to custom JavaScript? ==&lt;br /&gt;
&lt;br /&gt;
I put some code in &amp;lt;code&amp;gt;[[User:Some user/common.js]]&amp;lt;/code&amp;gt;, but it is not alerting 'hi' every time I load a page. Why can't we execute JavaScript anymore? Is it in response to the [[Project:Crap|crapping]] incident? [[User:Some user|Some user]] ([[User talk:Some user|talk]]) 21:16, 27 June 2022 (UTC)&lt;br /&gt;
:Entirely because of that, yeah. '''[[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:51, 28 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== My IP  ==&lt;br /&gt;
&lt;br /&gt;
Why is my IP address a Cloudflare address in Norway? Is this a joke of some kind that I'm missing?&lt;br /&gt;
&lt;br /&gt;
Other wikis like Wikipedia are showing me my actual IP when I go to [[Special:MyContributions]], so I suspect this is a wiki misconfiguration. It changed again while I was typing this. [[Special:Contributions/162.158.222.194|162.158.222.194]] 16:55, 19 November 2022 (UTC)&lt;br /&gt;
:All IPs (as this one will be) are from Cloudflare gateway IPs, because that's the default IP that the Wiki understands as the source. Cloudflare mediates all the traffic, and perhaps to some advantage (not being privvy to the logs, I can only guess how much it insulates the true server from extreme problems, but I bet it does in some way).&lt;br /&gt;
:There have been suggestions before to change some setting (in the MediaWiki implementation? ...can't recall exactly) to have it pick up and use the IP that the gateway reports (in its meta-request) was the origin, but that's not been enacted for Idunnowhat reason.&lt;br /&gt;
:Because the black-box that is the Cloudflare traffic shapes in various ways, you will find that a single user will jump around 'apparent' IPs, and I've also been in the relatively embarassing situation of replying to another IP's info and finding that I've registered on the exact same IP so that it looks like I'm stooging myself, or something.&lt;br /&gt;
:On the whole, though, it's a harmless quirk. And given the trivial nature of deliberately spoofing origins (even on top of assuming you get an effectively static NAT from your ISP in the first place) I don't personally see it as a problem to 'solve' this. But neither would I complain if the 'fix' were implemented if this query reminds someone that they ''were'' going to try and do the necessary tweak.&lt;br /&gt;
:As a lay-answer, I hope that fills you in a little. ''If'' those who have more knowledge/control of the process want to add anything or correct me, I'm sure they'll do so as soon as they can, but here's a reply to keep you going for now... [[Special:Contributions/172.70.85.24|172.70.85.24]] 01:19, 20 November 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Main page in categories==&lt;br /&gt;
{{notice|'''This discussion is marked as duplicate.''' See [[#Main Page|this discussion]].}}&lt;br /&gt;
[[Main_Page]] was found wrongly appearing in some newly-created categories, such as [[:Category:Cosmology]]. Could you fix it? --[[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 17:49, 12 January 2023 (UTC)&lt;br /&gt;
:Never noticed this myself, but I'll take it as read. Before checking myself, I'm wondering if this could be when the main page 'inherits' tags from the Current Comic that it features. And thus solve itself (whilst gaining others) upon a newer Current Comic. (Must surely inherit &amp;quot;Monday Comics&amp;quot;/etc, on schedule every week.)&lt;br /&gt;
:If it is that, perhaps the solution lies in the details contained within https://m.mediawiki.org/wiki/Help:Categories#Categories_and_templates_(transcluded_pages)&lt;br /&gt;
:Or maybe I'm wrong about it. But I have no rights to edit (thus at least examine the 'code' of) the Main page, to check my snap theory, as with most people. [[Special:Contributions/172.70.162.46|172.70.162.46]] 19:21, 12 January 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
This happened again in [[:Category:Airplane banner]]. [[User:I27.O.O.I|I27.O.O.I]] ([[User talk:I27.O.O.I|talk]]) 09:00, 28 February 2023 (UTC)&lt;br /&gt;
:Yes, and it lasted as long as the latest comic was still one with particular categories. I don't intend to worry about it. If someone goes to a category that interests them and looks at the main page, as temporarily advertised, they're likely to find (as part of it) a comic which is indeed in that category. Doesn't sound like a big problem to me, except for determinin why some cats (e.g. Friday Comics) ''don't'' link to the Main page when they might be expected to...&lt;br /&gt;
:(PS, I know for sure that I27.O.O.I isn't the same person as ColofulGalaxy (and various others, beyond even those with the bloomin' obvious &amp;quot;CG&amp;quot; initials or other recent spoofs on the RFC1918 addresses), and I don't think I mind too much, but faking disagreements between your various IDs isn't helping, anyone... smells too much of trying to establish alibis in advance of your next attempt to vandalise the site with stupid stuff. And doesn't impress me, so I doubt it impresses anyone else either. As long as you're just doing sane things, however, I'll accept your little idiosyncracies.) [[Special:Contributions/162.158.74.32|162.158.74.32]] 19:37, 5 March 2023 (UTC)&lt;br /&gt;
:(PPS: You left your fingerprint on this latter attempt to 'rescue' [https://www.explainxkcd.com/wiki/index.php?title=Talk:2659:_Unreliable_Connection&amp;amp;curid=25530&amp;amp;diff=307289&amp;amp;oldid=307282 this page]. - Spammer a few minutes before midnight, my IP reversion happened shortly after. A little later &amp;quot;Elisabeth&amp;quot; then re-spammed (modified), then another IP immediately jumps on it to restore it but with the modified undo-summary line clearly indicating that some sort of a game is being played. Please don't, it's not clever.) [[Special:Contributions/172.70.90.34|172.70.90.34]] 02:22, 7 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
This doesn't happen to date categories, but it happens in manually added categories such as [[:Category:Statistics]]. [[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 21:49, 27 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Cannot create user page==&lt;br /&gt;
It says: There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. [[2659: Unreliable Connection]] ([[Talk:2659: Unreliable Connection|talk]]) 22:56, 26 March 2023 (UTC)&lt;br /&gt;
:(Removed alternative text in the link involved, to not hide behind trickery.) I think you know that there's no problem with [[2659: Unreliable Connection]] itself, except that it had become one of several pages targeted for spamming, the only one then locked down, then finding that the spammers just retargeted to its Talk page, etc.&lt;br /&gt;
:I'm torn between &amp;quot;not assuming bad faith&amp;quot; and &amp;quot;don't feed the trolls&amp;quot;, as competing principles, so I'm spelling out the situation. However much a tribute you might think it could be, I don't think there's a future in having a new username that's directly referencing a comic which has become so frequently seen in the recent history of this wiki's edits.&lt;br /&gt;
:Obviously any genuine contributions are more than welcome. So prove me wrong, why don't you? [[Special:Contributions/172.70.91.151|172.70.91.151]] 03:20, 27 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Could you help now?  [[User:Unreliable Connection|2659: Unreliable Connection]] ([[User talk:Unreliable Connection|talk]]) 09:13, 29 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I've created your talk page. I guess that what you intended is to have a backup or mirror page for comic [[2659]]. Am I right? [[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 20:16, 2 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Fanmade comics ==&lt;br /&gt;
A fanmade comic appeared on xkcd. Could you edit the template? [[Special:Contributions/172.69.23.100|172.69.23.100]] 07:21, 28 April 2023 (UTC)&lt;br /&gt;
:You're going to have to say more about it, at least for me. Apart from the Sandbox attempt to make a page, I haven't seen the comic you're describing anywhere. Certainly not anywhere official. Link, for our benefit? [[Special:Contributions/172.70.85.66|172.70.85.66]] 10:04, 28 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Why doesn't this code block work?==&lt;br /&gt;
Does anybody know why the code block at the end of [[Transcript on xkcd|this page]] doesn't work? I've tried everything and it still looks like plain text&lt;br /&gt;
&lt;br /&gt;
== Can't add RSS feed because of pubDate value on 27 Nov 2015 ==&lt;br /&gt;
&lt;br /&gt;
When I try to add the RSS feed in Nextcloud News feed reader I get an error &amp;lt;code&amp;gt;Impossible to convert date : Fri, 27 Nov 2015 17:24:34 Pacific Standard Time&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fexplainxkcd.com%2Frss.xml W3C Feed validation] says that &amp;lt;code&amp;gt;pubDate must be an RFC-822 date-time&amp;lt;/code&amp;gt; and points &amp;quot;Pacific Standard Time&amp;quot; portion as the cause of the error: &amp;lt;code&amp;gt;&amp;lt;pubDate&amp;gt;Fri, 27 Nov 2015 17:24:34 Pacific Standard Time&amp;lt;/pubDate&amp;gt;&amp;lt;/code&amp;gt;. Can you please fix the timestap for this?&lt;br /&gt;
&lt;br /&gt;
== Admin request posted here because of vandalism ==&lt;br /&gt;
&lt;br /&gt;
I can not currently access the admin requests page because it has been vandalized... can someone please protect the latest comic page (2805). There is some pretty childish vandalism going on there right now. Thanks!&lt;br /&gt;
:It's not the latest, seems like ALL. I went back to 2804, 2803, jumped back like 15 comics, all the same thing. To me the most offensive part is doing it with a nonsensical image. And why pipe it through Archive somehow? [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 02:33, 24 July 2023 (UTC)&lt;br /&gt;
::UGH. the vandals are back at it again... we need to lock xkcd pages @NiceGuy [[Special:Contributions/172.70.39.2|172.70.39.2]] 00:59, 25 July 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Way to contact the site hosters? ==&lt;br /&gt;
&lt;br /&gt;
As many have pointed out the software this wiki runs on is horribly outdated. WikiEditor also isn't here for some reason. Quite a bit of messages here have seen no action. Is there some kind of contact form to reach the hosters? {{unsigned|Aaron Liu|00:36, 10 October 2023}}&lt;br /&gt;
: There are various levels of admin who do intervene, as and when jecessary, but I understand that the (active) ones closest to the actual hosting level of intervention are not really ready to do the (increasingly greater) degree of uprooting necessary to get a &amp;quot;working&amp;quot; system to be &amp;quot;marginally better working&amp;quot;, by way of that very dangerous middle-ground of potentially being ruined entirely.&lt;br /&gt;
: I appreciate and anticipate the counter-arguments regarding letting it go totally unupdated, of course, just I've personally seen enough failures (participated in some, or been the actual invokee, myself) to be very sympathetic to the &amp;quot;if it aint (too) broke, don't fix it&amp;quot; tendency. But that inertia is not the only factor, of course, and the full motivations (or lack of them) of those involved is not for a lowly IP like me to explain, even if I think I know... [[Special:Contributions/172.69.195.42|172.69.195.42]] 01:24, 10 October 2023 (UTC)&lt;br /&gt;
:: Have they posted some sort of statement? It also is most definitely not “marginally” better working, compare the source editor to that of Wikipedia and look at topic subscription etc features. Not to mention a lot of security fixes haven’t been added and this version has reached EOL long ago. Updating also would not ruin this entirely…[[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 17:22, 12 October 2023 (UTC)&lt;br /&gt;
:: Some have also said that quite a bit of assistive scripts for modern versions don’t work. Visual Editor, while horrible, is still easier for new people to get started with. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 17:23, 12 October 2023 (UTC)&lt;br /&gt;
I've found a new reason: This wiki doesn't even allow loading userscripts! [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 01:34, 9 December 2023 (UTC)&lt;br /&gt;
:That might actually have been a conscious decition, after a 'certain user' caused chaos here, not so long ago. [[Special:Contributions/162.158.74.25|162.158.74.25]] 19:01, 9 December 2023 (UTC)&lt;br /&gt;
::It was about a year and a half ago. I'm sorry, I shouldn't have done that. [[Special:Contributions/172.68.174.143|172.68.174.143]] 06:41, 10 December 2023 (UTC)&lt;br /&gt;
::Huh? What happened? Is there a place to request gadgets then? [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 02:04, 10 December 2023 (UTC)&lt;br /&gt;
:::&amp;quot;What happened&amp;quot; involved automated vandalism (from someone who been doing it manually, then found the &amp;quot;better way&amp;quot;) though I couldn't tell you the exact details, there were automated 'unvandalism's made in response, and theusafBOT/etc does some of that still, in response to non-automated(/off-site scripted) vandalism/errors that it can actually catch before ordinary users (or IPs like me) can. But certainly a certain brand of scripting was turned off to curtail the 'high intensity' vandalism phase.&lt;br /&gt;
:::You're more or less in the best place to request things, right here. Whether updates, (re)adding functionalitu or tweaking site settings. Can't tell if those who ''can'' do these things can't or won't do them... Or are actually absent, instead of just not replying. The cavalry has been known to come running in when necessary (e.g. when &amp;quot;what happened&amp;quot; happened) so it could be any manner of non-response (until you get one). Not necessarily the best state of affairs, but better than being confirmed absentees.&lt;br /&gt;
::::I ran a bot to mass-edit pages by replacing their content with the word &amp;quot;crap&amp;quot; repeatedly. I was 15 then, and I thought it was funny. It wasn't. [[Special:Contributions/172.68.174.143|172.68.174.143]] 06:41, 10 December 2023 (UTC)&lt;br /&gt;
:::As an occasional but infrequent actual-Wikipedia editor, too, I must say that if the Visual Editor is what I currently have to use for that (at least as an anonIP when using a mobile device, which tends to be when I get the urge most) then I like the unaugmented editor here more. Straight up, honest, un'wizarded' interface, where you only have to get used to markup details and not a WYSIWYG editing environment (as well?). Not sure I'd be happy with an even ''more'' 'assistive' script imposed upon me, like I dislike modern generations of Windows (and 'user friendly' linux dists). So can I just ask that functional/visible changes of the kind you seem to be asking for, if made available, aren't overimposed/left as options rather than the default (or only) choice...? Ok, so I can (or would have to) adapt, but I'd rather not. Of course, I have no weight to pull in this matter, it's just an afterthought (even as I wish you good luck with raising an admin's eyebrow, in some useful manner). [[Special:Contributions/141.101.98.135|141.101.98.135]] 05:14, 10 December 2023 (UTC)&lt;br /&gt;
::::I am not asking for VisualEditor, which no one likes on Wikipedia either. For some blasted reason they made it edit HTML instead of Wikitext and it’s clunky and loads for a very long time.&lt;br /&gt;
::::I’m asking about the WikiEditor, aka Wikipedia’s source editor. In VE, click on the pen next to the publish button and click on “source editing”. That editor makes this one look like freaking Stone Age, syntax highlighting is especially a game-changer. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 16:03, 12 December 2023 (UTC)&lt;br /&gt;
: There’s also the annoying ReCaptcha v2 every single edit… it seems like it would be relatively easy to switch to v3 which only makes you do the challenge when you’ve visited a bit too much. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 16:32, 12 December 2023 (UTC)&lt;br /&gt;
:: Unfortunately, that would make things easier for someone who wanted to do mass vandalism like I did. If it didn't do it every time, someone could still edit quite quickly. [[Special:Contributions/172.68.174.192|172.68.174.192]] 18:32, 12 December 2023 (UTC)&lt;br /&gt;
::Well, I can tell you that it doesn't always demand that I fulfil more than a tickbox (most trouble I have is when it fails to connect to give me the tickbox (or respond with anything useful when I do), for which I'm forced into one or more Previews until it will. When it ''does'' ask me to do something about it, I do often get forced through two or more request to identify traffic lights, motorbikes, stairways, bridges, hills, tractors, buses, etc, etc, etc... But I think that's more the Tesla-training Algorithm being nust greedy for my attention than the Robot-sentry having a less casual attitude to my attempt to edit. (I believe I'm on a usually untroublesome source IP/Cloudflare gateway, but it could also depend on how many others try to do things via (part of) the same route. Very, very rarely I get Google Search requesting something similar of me ((It: &amp;quot;You have made a lot of searches&amp;quot;, me: &amp;quot;Of course I'll have play your little game, but this is my first lookup today...&amp;quot;)), which I'm sure isn't Cloudflared, so it might reach back to my ISP's gateway and what fellow users are currently getting up to.)&lt;br /&gt;
::As for the guy above (and you, Liu), can't speak for how well or badly others on your own 'choice' of gateways behave. Or yourselves. Luck of the draw? For the first part, at least. [[Special:Contributions/172.69.195.174|172.69.195.174]] 20:31, 12 December 2023 (UTC)&lt;br /&gt;
:::MediaWiki 1.40 automatically tags all edits that remove over 90% of page text with &amp;quot;mw-replaced&amp;quot;. You could block all edits in mainspace with that tag, either if MediaWiki has it or through the AbuseFilter extension. While I can complete the CAPTCHAs, it's very annoying to need to Captcha every edit on a place where the main focus is edits. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 03:06, 13 December 2023 (UTC)&lt;br /&gt;
:::Plus, v3 doesn't just do nothing. It tracks how your cursor moves to see if it's robotic, while v2 annoyingly gives you the challenge every time. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 20:01, 8 January 2024 (UTC)&lt;br /&gt;
::::Presumably for touchscreen control (like mine, right this moment), it does something else than track a nonexistent mouse-pointer's passage across the monitored elements of the display... ;) [[Special:Contributions/172.70.90.190|172.70.90.190]] 12:26, 9 January 2024 (UTC)&lt;br /&gt;
::There are a few MediaWiki plugins that help keep vandalism/spam under control without requiring users to solve a Captcha every time they make an edit. I use https://www.mediawiki.org/wiki/Extension:Moderation on the wiki I maintain, and it works very well. However, it does require that there be enough active moderators to approve edits, as it basically requires every single edit to be approved before it's posted. Thus, it also introduces some &amp;quot;lag&amp;quot; between when stuff is written and when it can be seen by others. I think it could work if the extension could be installed (I'm not even sure if it's supported on this version of MediaWiki) and if a good list of moderators could be put together. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 20:02, 9 February 2024 (UTC)&lt;br /&gt;
:::I disagree with requiring edits to be approved. Unless we have extremely high vandalism, just filtering out the above tags I mentioned and using ReCAPTCHA v3 would be enough. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 23:16, 16 February 2024 (UTC)&lt;br /&gt;
::::Ok, fair point. However, that wouldn't stop human vandalism, just vandalism from bots. I'm not sure how much human vandalism there is, though, so it might not even be a problem. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 12:35, 22 February 2024 (UTC)&lt;br /&gt;
:::::It's hard (for us 'civvies') to know how much bot-vandalism is stopped but [https://www.explainxkcd.com/wiki/index.php?title=Special:Log/newusers&amp;amp;offset=&amp;amp;limit=500&amp;amp;type=newusers&amp;amp;user= probably a lot], most of which we never see, with [https://www.explainxkcd.com/wiki/index.php?title=2503:_Memo_Spike_Connector&amp;amp;diff=335487&amp;amp;oldid=335486 occasional ones] we might see having be dealt with. (I'm guessing these things are rare (temporarily-)successful 'bots, because flesh-and-blood vandals wouldn't be occasionally doing essentially the same insta-reverted thing on a thematically-small set of pages, over several ''years'' without moving on. It has to be a lucky unattended script-based effort that just keeps trying the same things over and over with an easily revertible but tangible result happening only infrequently.)&lt;br /&gt;
:::::More obvious human vandalism tends to rumble on, with occasionally a spate of it as someone gets short-term kicks for it. Though some of them seem may repeat themself after a break. Friendly humans and friendly 'bots both tend to provide the main anti-vandalism responses fairly quickly, though, depending upon what kind of a mess they caused. I've seen worse places, definitely, and it's by no means a losing battle against chaos, just regular skermishes.&lt;br /&gt;
:::::Not wanting to tempt fate, of course. I guarantee that there'll be some fool that takes all this as a challenge, so I just have to trust to the Good Guys keeping on keeping on. [[Special:Contributions/172.70.90.71|172.70.90.71]] 14:21, 22 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
heyo, is there a way to add actual citations to explainxkcd instead of the template citation needed? couldn't find anything, but i'm pretty new here - thanks in advance. [[User:Nigga|Nigga]] ([[User talk:Nigga|talk]]) 21:47, 17 March 2024 (UTC)&lt;br /&gt;
:Not that I have much faith in your usernae lasting long (you're 'that guy', aren't you? ...in which case you know anyway), but for the sake of anyone else who needs to know:&lt;br /&gt;
:*If you mean &amp;quot;add an actual 'citation needed' tag&amp;quot;, then it's {{template|Actual citation needed}} that you'll use.&lt;br /&gt;
:*If you mean &amp;quot;add an actual citation link to somewhere&amp;quot;, then:&lt;br /&gt;
:** Link to URLs with [].&lt;br /&gt;
:*** A link such as [&amp;lt;url&amp;gt;] will give you a superscript-number link, which isn't pretty, IMO.&lt;br /&gt;
:*** A link such as [&amp;lt;url&amp;gt; &amp;lt;text&amp;gt;] (that's a space between the two) will link &amp;lt;text&amp;gt; to the URL, just work it into the sentence you're writing, fairly easy&lt;br /&gt;
:** Link to internal (or cross-wiki) pages with [[]].&lt;br /&gt;
:*** [[&amp;lt;page title&amp;gt;]] will make a literal link to &amp;lt;page title&amp;gt;.&lt;br /&gt;
:*** [[&amp;lt;page title&amp;gt;|&amp;lt;text&amp;gt;]] (with a pipe) is how you make the &amp;lt;text&amp;gt; your link.&lt;br /&gt;
:** You can use the last to link specifically to wikipedia's cross-site format, but for that it's best to use {{template|w}}&lt;br /&gt;
:*** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;page title&amp;gt;}}&amp;lt;/nowiki&amp;gt; (w-pipe...) uses the page title&lt;br /&gt;
:**** It will use the link as if the first character is uppercase, so you don't need to capitalise that. Other case-sensitivity is preserved.&lt;br /&gt;
:**** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;singular page title&amp;gt;}}s&amp;lt;/nowiki&amp;gt; will link the obvious pluralisation of the page title, just to save you effort&lt;br /&gt;
:*** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;page title&amp;gt;|&amp;lt;text&amp;gt;}}&amp;lt;/nowiki&amp;gt; (w-pipe and pipe) lets you use entirely alternate text.&lt;br /&gt;
:** There's also templates that shortcut (or make easier on the eye, or add appropriate warnings) for some other commonly referenced external sites, from xkcd's own what-if to TVTropes.&lt;br /&gt;
:...hope that helps everyone that doesn't already know these few simple bits as relate to wikis in general or this wiki in particular. [[Special:Contributions/172.71.242.218|172.71.242.218]] 22:24, 17 March 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Confirmation Email Bug ==&lt;br /&gt;
&lt;br /&gt;
Hi. I've been trying to get my email confirmed so that I can get pinged when pages are edited, but I just can't find it, even after trying multiple times. I use Gmail, and yes, I have checked my spam folder. Has anyone else had this issue? EDIT: I see that others have had this issue, but the admins haven't done any action to solve it, except for one sarcastic comment by Davidy22 back in 2014. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 00:43, 12 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Lack of Userpage ==&lt;br /&gt;
&lt;br /&gt;
Hey, I joined a few years ago, but I still do not have a Userpage. Can you make one for me? I do not have the permission to do so. [[User:GreyFox|GreyFox]] ([[User talk:GreyFox|talk]]) 22:47, 15 May 2024 (UTC)&lt;br /&gt;
:This is actually your very first post, after joining a bit more than a year ago (&amp;quot;18:35, 14 November 2023 User account GreyFox (talk | contribs) was created&amp;quot;). I'm sure someone can oblige (not me, for obvious reasons), but you've not done much to contribute (at least under this account), which would have then eventually brought you to the point where you ''can'' just self-create your Userpages/etc. So your request is a bit out of the blue.&lt;br /&gt;
:Just so long as we all know where we stand, though. [[Special:Contributions/172.69.194.227|172.69.194.227]] 09:42, 16 May 2024 (UTC)&lt;br /&gt;
::Oh, thanks! Do you know the exact number of edits I need to create it?&lt;br /&gt;
:::50 to be autoconfirmed. Also, please sign your comments. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:23, 16 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== server errors ==&lt;br /&gt;
is anyone else constantly getting 503 errors? [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 17:14, 21 May 2024 (UTC)&lt;br /&gt;
:yup, been seeing those all the time. Also seeing that the server is down a lot of time-it suggests me to Google for what I’m “looking for” [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:18, 21 May 2024 (UTC)&lt;br /&gt;
::503s are fairly common (often when I'm in a rush), and have been for... well, certainly years, maybe more than a decade (though more common during major vandalism/anti-vandalism surges). I had, however, noticed a recent blip (during the last day or so) of the Server Down/Try Google page that you refer to, which I haven't seen for a ''long'' time (not really sure when, but maybe five years or so ago). In fact, I probably got Cloudflare 'rejections' more, during aformentioned vandal-overloading.&lt;br /&gt;
::Without any access to the admin logs, I can only speculate as to what might be sparking it. But service (notwithstanding the brief page-refusals themselves) seems to be happily unaffected. [[Special:Contributions/172.70.160.249|172.70.160.249]] 20:29, 21 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Allow new users to edit their own page ==&lt;br /&gt;
&lt;br /&gt;
I found someone asking if we could change this in the proposals page (Community portal/Proposals: Allow Users to Edit their own talk page if not auto confimed (not a typo)). [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:39, 19 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Technical difficulties? ==&lt;br /&gt;
&lt;br /&gt;
I keep getting a message that says: &amp;quot;Sorry! This site is experiencing technical difficulties.Try waiting a few minutes and reloading. (Cannot access the database)&amp;quot;&lt;br /&gt;
It's happened a lot so I was wondering if there was a specific cause behind it and perhaps a way to fix it.&lt;br /&gt;
[[Special:Contributions/172.68.54.65|172.68.54.65]] 00:17, 17 September 2024 (UTC)&lt;br /&gt;
:yeah, I’ve been getting those errors too. I can’t even log into my account before it says that there’s an error again. I’ve been steadily receiving them for a couple months, but never like today. From Recent Changes, it doesn’t look like anyone is spamming the wiki, so maybe it’s an attack of some kind. You’ll need to contact the admins who have access to the server and can poke around, but good luck getting [[User:Davidy22]] or [[User:Jeff]] online. [[Special:Contributions/172.69.135.130|172.69.135.130]] 17:16, 17 September 2024 (UTC)&lt;br /&gt;
::update: I’ve been poking around a lot of websites, trying to see if the website is being attacked. The websites all say that the server is down. I’ll try to ask Jeff on this and pray that he checks his email. [[Special:Contributions/172.69.135.129|172.69.135.129]] 17:21, 17 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== the site is collapsing ==&lt;br /&gt;
503's are to be expected, but i've got them and the &amp;quot;Sorry! This site is experiencing technical difficulties. Try waiting a few minutes and reloading.&amp;quot; error way, way too much. it's actually getting really hard to edit stuff because of them. [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 01:58, 19 September 2024 (UTC)&lt;br /&gt;
:heck, i just got a 503 when posting this topic. also, load times are noticeably longer. and i'm getting &amp;quot;loss of session&amp;quot; errors when i try to edit... [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 02:02, 19 September 2024 (UTC)&lt;br /&gt;
::I’ve messaged Davidy22 and Jeff about it, hopefully they see it and reply. It looks fine right now, appears that it works horribly at times and fine later. Due to the on-off nature of it, I would suspect DDoS attacks, as a 503 error means that the server can’t process the request, which occurs with DDoS attacks. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:37, 19 September 2024 (UTC)&lt;br /&gt;
:::update: I’ve made a Reddit post, as I’ve seen Davidy22 active on Reddit and respond to older threads on r/xkcd. Hopefully they respond! [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:50, 24 September 2024 (UTC)&lt;br /&gt;
::::October update: Davidy22 responded to my emails and said that he has emailed Jeff multiple times. Apparently Jeff is ignoring his emails and not responding. I’ve been checking Jeff’s Twitter/X/Whatever once a week and it shows that he uses it semi-regularly. Apparently Jeff is a podcaster too? Anyways, nobody has really responded to me on r/xkcd, so I’m thinking of sending a DM to Jeff via Twitter. I have a to-do list for Jeff listed on my User Page, feel free to give any thoughts, proposals, comments on anything else you want him to do in this thread. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:46, 24 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== List of All Comics ==&lt;br /&gt;
&lt;br /&gt;
I think that FaviFake and I have accidentally broken the All comics page. When clicked, it brings you to the page List of all comics, which displays the comics 3000-3002 (as of right now) instead of the list of all comics (oops-my bad). How do we fix this? There’s also the page List of all comics (3000-3500), but the TheusafBOT ignores it. Can someone more technical help troubleshoot this problem? Again, sorry for making a muck of things. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:43, 24 October 2024 (UTC)&lt;br /&gt;
:Oh I'm sorry, I created a new topic for this and I didn't see this one. I noticed the [[List of all comics (3000-3500)]] today and scheduled it for deletion because we never make such a page until we have exactly 500 comics to put there. Also, the name is wrong, it should say 3001-3500.&lt;br /&gt;
:The page [[List of all comics]] is supposed to display comics 3001-3005, not all comics. You might be confusing it with [[List of all comics (full)]], which would work perfectly if [[List of all comics]] displayed the last 3 comics. I have no idea why the bot stopped updating it. Maybe it will work now that the wrong page is scheduled for deletion? [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:15, 31 October 2024&lt;br /&gt;
::Wait a second, why did you move the List of all comics to [[List of all comics (3000-3500)]]? It seemed to me like everything was working fine before you moved it [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:24, 31 October 2024 (UTC)&lt;br /&gt;
:::I was trying to copy the content to [[List of all comics (3000-3500)]], and accidentally broke it. Sorry! [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 16:48, 31 October 2024 (UTC)&lt;br /&gt;
::::Yeah I can confirm the content and the entire edit history was moved to the incorrectly-titled page that's now scheduled for deletion. I guess maybe we didn't really need the edit history on that page, but who knows.&lt;br /&gt;
::::Weirdly, the bot seems to have restored the page as it was and then stopped doing its thing. Since we're the only ones here, I suggest you manually create the missing rows for the new comics and we'll see if that works when the next comic drops. If it doesn't, I'll contact the maintainer and creator of the bot myself. Sounds good? :) [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:29, 31 October 2024 (UTC)&lt;br /&gt;
:::::Sir yes Sir! 🫡 [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 04:51, 1 November 2024 (UTC)&lt;br /&gt;
:::::: Great, thanks! I can also do it this afternoon if you don't have time. I realise my previous messages read like orders lol, they were supposed to be suggestions to try and fix the issue. [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 07:18, 1 November 2024&lt;br /&gt;
&lt;br /&gt;
== The [[List of all comics]] is no longer being updated automatically ==&lt;br /&gt;
&lt;br /&gt;
Hey everyone, I noticed the bot isn't updating this page anymore: [[List of all comics]]. There are supposed to be five comics in it but there are only two at the moment. Is this supposed to happen? [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:06, 31 October 2024&lt;br /&gt;
&lt;br /&gt;
== 2034: Equations error? ==&lt;br /&gt;
&lt;br /&gt;
One of the TeX math-thingies (sorry for the informal writing), is showing this error: &amp;quot;Failed to parse (Missing texvc executable. Please see math/README to configure.): \oint&amp;quot;. Idk why it's showing this, can someone fix this? [[Special:Contributions/108.162.237.48|108.162.237.48]] 19:25, 6 November 2024 (UTC)&lt;br /&gt;
:It's a long-standing error, to do with the background processes that turns the TeX-style markup into embedded images. All equations (or whatever it might be that the particular MathML was being used to render) that were originally given cached-imagery ''still work fine'', but it seems a later update made it so that if you adjust it at all (even slightly), it no longer has the route to produce the embedding cleanly.&lt;br /&gt;
:It can probably be solved by rolling back some module(s) that got refreshed quite some time ago, though the advised fix is to actually fully update them (and/or reconfigure the backend scripting) to work with all the newest versions of the original tools. Unfortunately, the people (or maybe person) who would do this is not too active at the moment (may also not be up to speed on everything, either, if it involves a bit of more tricky administration), so we're left with the occasional problem establishing the texvc handler.&lt;br /&gt;
:Not sure which page you're encountering this on, but sometimes if you look back in the edit history you can find a working version of the thing you're seeing go wrong. If it's an aesthetic difference (e.g. the presence or absence of a spacing character), you might be able to just restore the render-cached version and make do with it not looking ''quite'' right.&lt;br /&gt;
:If it's a necessary change that was made (e.g. &amp;quot;''dt''&amp;quot; instead of &amp;quot;''dx''&amp;quot;, which is definitely wrong the old way), or it seems never to have a valid render, then there's two obvious solutions:&lt;br /&gt;
:#Make your own image of it as it should be and (with a suitably auto-validated account, or via a handy external image hosting service and/or a more mature account here) get that embedded in place of the markup-source, or&lt;br /&gt;
:#Replicate its appearance in more basic (by standard) but complex (by source needed) markup. Combinations of basic wikimarkup and HTML can do most 'fiddly positional' things, see [[2614: 2]] for a numerator/denominator layout, for example.&lt;br /&gt;
:Not as 'simple' as TeX-markedup. But, on the other hand, the &amp;quot;\oint&amp;quot; symbol is &amp;quot;∮&amp;quot;, so perhaps all you need to do is copy'n'paste that actual unicode symbol to wherever you found the problem, and use that instead, and forgo the TeX version altogether? (Might not show on some displays, but probably enough to make it a minority issue.) [[Special:Contributions/172.70.90.105|172.70.90.105]] 22:50, 6 November 2024 (UTC)&lt;br /&gt;
:Had the brainwave that I could probable ''search'' for the offending \oint, actually. Did so, found [[2034: Equations]], noted that it was the only (current) rendering issue and therefore just did the pasting over myself. Looks good for me, but obviously might not help (but not make worse) others' viewing of it. [[Special:Contributions/172.69.195.54|172.69.195.54]] 22:58, 6 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
...Why didn't I think of just pasting the Unicode equivalent. I'm dumb, but thanks for fixing it. [[Special:Contributions/172.69.70.10|172.69.70.10]] 13:44, 8 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Esolang wiki bug ==&lt;br /&gt;
The &amp;quot;esolangs.org&amp;quot; wiki is also experiencing a similar bug. The server was repeatedly changing a particular user's signature in his posts. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 04:01, 29 November 2024 (UTC)&lt;br /&gt;
:Fucking bullshit. One, this doesn’t belong here and I’ve copied it into [[explain xkcd:Community portal/Technial|the Technical Community Portal]]. Two, I saw your talk page on [https://esolangs.org/wiki/User_talk:ColorfulGalaxy%27s_CA_discoveries esolangs.org], which you brought up this “bug”, which the local admin (who’s probably just as sick and tired of you as I am) called BS on. If the server was changing your sig to my sig, it would be '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''', not the sig that you faked in. You’re obviously seeking attention and are being abusive and childish. Please see the bottom of https://esolangs.org/wiki/Esolang:Introduce_yourself to see a full list of complaints. I will be asking Kynde to ban you and all of your alt (or shared) accounts. -tori [[Special:Contributions/162.158.167.98|162.158.167.98]] 05:36, 29 November 2024 (UTC)&lt;br /&gt;
::Additionally, the complaint doesn’t even make sense. The 2 wikis are running on different servers and different MediaWiki software and should in no shape or form be having the same bug across 2 different systems. Plus, why is the CAPTCHA in the esolang wiki so damn difficult? (Just a side note :3) -tori&lt;br /&gt;
:I just realized that they've changed '''my''' signature as well. That's strange. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 06:37, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Once again they suddenly redirected my username to the Main Page. And the bug even forgot to remove &amp;quot;User:&amp;quot;. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:05, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
:It's working normally now. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:06, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Technical&amp;diff=358194</id>
		<title>explain xkcd:Community portal/Technical</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Technical&amp;diff=358194"/>
				<updated>2024-11-29T13:06:04Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Esolang wiki bug */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;__NEWSECTIONLINK__&lt;br /&gt;
{{Community links}}&lt;br /&gt;
&lt;br /&gt;
{|-&lt;br /&gt;
|valign=&amp;quot;top&amp;quot; width=&amp;quot;100%&amp;quot;|[[File:Crystal Clear app package settings blue.png|left|120px]] &amp;lt;big&amp;gt;&amp;lt;big&amp;gt;&amp;lt;b&amp;gt;Technical&amp;lt;/b&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt;Technical issues ''about'' the [[explain xkcd]] wiki, including bug reports or MediaWiki extensions requests.&amp;lt;/i&amp;gt; {{AddNewSection|Page=Explain XKCD:Community portal/Technical|Text=&amp;lt;small&amp;gt;(+post)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
= Discussion Area =&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== We need more maintainers ==&lt;br /&gt;
&lt;br /&gt;
:''I'm moving a thread that Davidy22 started on my talk page. The gist is, we need more people with server-side access (especially mediawiki-savvy ones) so we can properly deal with several issues that have been plaguing the wiki for a while now, most notably spam, but also the image scaling problem, a possible extension for proper comments, clean urls, etc. Below is the original thread, please comment.'' --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:56, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could you set the permissions so that all anon users have to pass a captcha to edit? The spam has gotten obscene, and they've stopped posting links, so our current detection mechanisms aren't working anymore. [[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Davidy22|&amp;lt;tt&amp;gt;(talk)&amp;lt;/tt&amp;gt;]] 08:21, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I would love to have the ability to tweak the wiki more thoroughly, but currently Jeff's the only one with server access. To be honest, I am not terribly familiar with server-side mediawiki management, so I haven't asked Jeff for access, but it's clear we can't be dependent on a single person to do all the mediawiki config (and Jeff probably knows even less about mediawiki than I do). Are you by any chance acquainted with server-side mediawiki maintenance? I think we could present a good case for having someone else with access to a dev/prototype instance of this wiki on Jeff's server so we could at least experiment and tell him exactly what needs to be done. Thoughts? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:40, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I agree that we need more people that are empowered to actively fight spam. I think that we ought to promote Davidy22 to administrator also, so that he can delete pages and block spammers/vandals as he notices them rather than letting them pile up until yourself, IronyChef, or myself notice that there's work that needs done.&lt;br /&gt;
&lt;br /&gt;
::What I think we should do is break out rights into more groups than simply administrator and bureaucrat. I think that's too big of a jump, and that there should be some gradiation. I think we should add a moderator (mark pages as patrolled and rollback ability (as much as it's a sledgehammer when you really only need a ball-peen hammer)) position.&lt;br /&gt;
&lt;br /&gt;
::I think we also need a spam fighter position, but that might not be possible to implement. It should be a position that allows the person to delete pages with 1 or 2 edits (page creation, marked as spam, maybe as high as 3 or 4 for the bots that repeat edit certain pages) and block users with 1 or 2 edits. The real problem there is how to grant those super-powerful abilities without allowing them to lose their mind and go crazy and destroy the wiki. Of course, if we don't catch it early enough there's going to be those IPs that manage to get to six edits, and those will have to be squashed by a full admin. We will also need a way of tagging those spam accounts so when a full admin passes by they will also know to ban the IP address after a spam fighter has deleted all the pages it created.&lt;br /&gt;
&lt;br /&gt;
::Finally, we also need a more active bureaucrat so that we don't have to bug Jeff to promote admin's as well as future moderators and/or spam fighters, and recognize bot accounts as bot accounts. We also should find someone knowledgeable to help Jeff (and maybe he has little helpers) to maintain the actual server. I've done some PHP work, but I've never touched anything deep inside a wiki (I like Ruby and Rails much more). This is my first time gaining admin status on a wiki, so I have no idea what the extra dials and levers do/mean. I look up on the MediaWiki manual and Wikipedia help pages things that I think should be possible, and often times pages exist in places about doing these things, but I'm nowhere near being called knowledgeable. After I finish up some IRL work I'm currently tied up in, I intend to set up a VM webserver on my computers and run a mediawiki install so I can learn how to work (and not break) things without putting explain xkcd in jeopardy.&lt;br /&gt;
&lt;br /&gt;
::Another really wordy post from, [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]])  22:01, 29 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: From what I know, a moderator user group is possible, but not the spam fighter one. Then again, too many hierarchical levels may be too much for such a small body of regulars. Implementing the moderator group is easy, [[mw:Manual:User rights]] has the details (the &amp;quot;ninja&amp;quot; example and the &amp;quot;list of permissions&amp;quot; section should be enough for putting together the configuration commands to be added to the wiki's LocalSettings.php).&lt;br /&gt;
::: As for bureaucrats, I think it makes sense but it seems to me that Jeff only takes longer to perform changes that affect the server, as they understandably may take longer or be more complex (or break the wiki!). Bureaucrats' only difference from admins is that they can promote/demote other users, and this Jeff has been doing without delay, so perhaps there isn't a need for more bureaucrats at the moment. Please correct me if I'm wrong.&lt;br /&gt;
::: We do need more sysadmins (people with access to the server), though, for sure. This is a little tricky as none of us is comfortable enough to confidently make server changes in a mediawiki install. Jeff, how about putting the wiki in source control and giving two or three people access to it, so that any wrongdoings can be easily reverted? You could setup a git repository in the server and we could fork it locally to our machines, make tests and push the commits to the server repo whenever they're ready. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:20, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: This is good stuff.  I'm down with promoting more admins for spam fighting.  If they screw stuff up we can demote them if necessary.  I really haven't found a spam fighting extension that I think will be the best possible solution.  I'll keep looking as it may be a combination of things. Server access is much more complicated as it is not even my server and it is shared hosting.  I think that would be best to be accessed just by me. --[[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]]) 19:10, 19 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::: Regarding the server, I understand -- your position seems reasonable. In any case, I've been looking for extensions that may help taking some workload out of server actions and make more stuff configurable via the wiki itself. I'll report back if I find something usable.&lt;br /&gt;
::::: On another note, how do you feel about promoting more bureaucrats? I suggest Lcarsos who's been consistently active for the past few months. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 12:47, 4 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Personally I'd kind of like to go and make some changes myself. Come up with a nice short url pattern and set it up. Upgrade the wiki. etc... [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 02:44, 23 March 2013 (UTC)&lt;br /&gt;
:The shorter URL is being looked into, although Mediawiki strongly advises against it. As for upgrades to the wiki, monetary donations towards Jeff so he can buy better bit for the server would be appreciated. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 03:06, 23 March 2013 (UTC)&lt;br /&gt;
::MediaWiki does not advise against it. Half the code currently running short URLs in core was written by me. Same for the new standard for rewrite rules in the new guides. And the tool to automatically generate the config needed to apply short urls to a wiki. Short URLs are '''not''' advised against.&lt;br /&gt;
::We do however strongly advise against installing a wiki in &amp;lt;code&amp;gt;/wiki&amp;lt;/code&amp;gt;. Because you do '''not''' want to create &amp;lt;code&amp;gt;/wiki/$1&amp;lt;/code&amp;gt; style paths while your script path makes scripts look like &amp;lt;code&amp;gt;/wiki/index.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
::In this case my plan would be to move &amp;lt;code&amp;gt;/wiki&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;/w&amp;lt;/code&amp;gt; then come up with some other short url pattern like &amp;lt;code&amp;gt;/e/$1&amp;lt;/code&amp;gt;, some other path, or maybe &amp;lt;code&amp;gt;/$1&amp;lt;/code&amp;gt;.&lt;br /&gt;
::And setup some 301 redirects to redirect from the old urls to the new ones.&lt;br /&gt;
::And upgrading the version of MediaWiki so that it doesn't have security holes doesn't require server replacement. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 07:09, 23 March 2013 (UTC)&lt;br /&gt;
:::Ohwait, software upgrades. Uh. I knew you were talking about that. Yep. Definitely. The wiki recently had issues with running out of hard drive space, so that was all that was on my mind there.&lt;br /&gt;
:::Also, I thought you had been referring to [http://www.mediawiki.org/wiki/Manual:Wiki_in_site_root_directory this]. Whoop. Well, you could leave Jeff a message at his [[user talk:Jeff|talk page]] to get server access. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 08:05, 23 March 2013 (UTC)&lt;br /&gt;
::::I strongly support this. It's been far too long since we decided we'd want the short url scheme (&amp;lt;code&amp;gt;/$1&amp;lt;/code&amp;gt; seems like the best option since it would be simpler/cleaner and allow http://explainxkcd/1234 to point to the correct comic without any extra rewrite rules). While you're at it, I'm sure many would appreciate a look at the current situation with image resizing, which doesn't seem to be working for some reason. Installing [[mw:Extension:Comments|Extension:Comments]] would be awesome, too, as well as [[mw:Extension:Contribution Scores|Extension:Contribution Scores]] ([http://setiquest.org/wiki/index.php/Special:ContributionScores live example]). I'll ask Jeff to take a look at this thread. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 20:07, 23 March 2013 (UTC)&lt;br /&gt;
::::: [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) email me and I'll get you set up with whatever you need. All the suggestions sound good to me. --[[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]]) 00:10, 24 March 2013 (UTC)&lt;br /&gt;
::::: Also, the [[Special:ContributionScores|Contribution Scores]] are up.  I'm not even top 10 all time, I need to step up my game. Comments will take more work as it needs its own database. --[[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]]) 00:10, 24 March 2013 (UTC)&lt;br /&gt;
::::::Awesome! I did some styling changes to make it more interesting :) Let me know what you guys think about it! --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 20:32, 24 March 2013 (UTC)&lt;br /&gt;
:::::::Holy crud, what did you do when the wiki started to have almost double my lifetime score? '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 23:57, 24 March 2013 (UTC)&lt;br /&gt;
::::::::Hahahah :P I'm pretty sure I cheated a little, IIRC there was an image renaming operation for which I used [http://github.com/btongminh/mwclient mwclient] ;) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 03:22, 25 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Sort by numbers in categories ==&lt;br /&gt;
&lt;br /&gt;
I noticed that in [[:Category:Comics]] all comics are sorted correctly by numbers; but not in any subcategory. (I didn't really get the explanation of how it works on the comics page.) How to fix this? -- [[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 10:40, 22 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;The comics template uses a template called num4 that turns the number in the comic number field into a four-digit number. That's then passed as a parameter to the category link, and the comics category page sorts articles by those four-digit numbers instead of their actual names. If we wanted to do the same for other categories, we would have to type them all out as [[Category:Politics|0200]], or whatever the comic number is. I would rather wait for mediawiki to come out with an in-built feature to solve this.&amp;lt;/nowiki&amp;gt; [[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:28, 22 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Is there a reason that the template applies that directly to [[:Category:Comics]] and not as a default sortkey via DEFAULTSORT? &amp;amp;ndash;&amp;amp;nbsp;''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 12:10, 1 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: Good thinking. Using DEFAULTSORT oughta make it work for all categories. I'll give it a try. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 15:37, 1 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Resize ==&lt;br /&gt;
&lt;br /&gt;
I haven't been here (to edit) for a while, but have we still not addressed the bug that doesn't allow image resizing? I know most of us don't have access to that kind of lower-level coding on the site, but I think it's a bit of a notable issue that we can't display comics smaller than their actual size. [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 14:24, 21 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Take it up with [[User:Jeff]], but I suspect that adding your voice to the already insistent roaring that images are broken isn't going to inspire much change. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:08, 23 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incidental Ads ==&lt;br /&gt;
&lt;br /&gt;
as ive noticed i think you should check if someone has embeded some of your links with ads really annoying please fix&lt;br /&gt;
&lt;br /&gt;
--[[User:TheWeatherMan|TheWeatherMan]] ([[User talk:TheWeatherMan|talk]]) 14:00, 23 January 2013 (UTC)TheWeatherMan&lt;br /&gt;
&lt;br /&gt;
:Do you have any specific examples of this? By the way, using punctuation, capitalization, spell check, and complete sentences are more likely to get someone to help you. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:10, 23 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::There is known malware (both adware and viruses) that makes Wikipedia look like it has ads.  This wiki uses the same wiki software, so perhaps that malware affects our site too? &amp;amp;ndash;&amp;amp;nbsp;''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 05:42, 15 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==/wiki/==&lt;br /&gt;
Now that explainxkcd redirects straight to the wiki, could we take the /wiki/ out of the url? I'd also like the wiki's edit log to be purged to clean out the history and forget about past spam, but that's probably wishing for too much. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 04:06, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:But seriously, could the /wiki/ go? It'll screw with the spammers for a day or two, at the very least. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:37, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Newbie questions:  Comic dates, previous-and-next-comic buttons==&lt;br /&gt;
Just created the my first page, [[220: Philosophy]], but I could use a little guidance.  How do I find the date that an ''xkcd'' comic was originally posted, and how do I rig up the previous-comic and next-comic arrows on a page?  (Actually, I've noticed several pages that should have the arrows but don't.)  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 11:19, 28 January 2013 (UTC)&lt;br /&gt;
:Those arrows will automagically insert themselves when you make the adjacent comic explanations. There *is* a little backstage magic that needs to be taken care of, but we can do that for you. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:40, 28 January 2013 (UTC)&lt;br /&gt;
** OK.  How about the dates?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 11:41, 28 January 2013 (UTC)&lt;br /&gt;
:::Click on &amp;quot;All Comics&amp;quot; in the navbar on left-hand side of the site. The dates are in the form YYYY-MM-DD. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:56, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The comic template checks for the existence of the numerical redirect for the comic before and the comic after. If it finds the page to exist it will display the next/previous button as appropriate. So, by creating the redirects listed on the [[List of all comics]] (third column, only worry about the number and title links) future pages will automatically get the links created. Redirect pages look like &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#REDIRECT [[####: Comic Title]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and that's it ([http://www.explainxkcd.com/wiki/index.php?title=1143&amp;amp;redirect=no here] is a link to the redirect page with redirect disabled so you can look at the source to see what I'm talking about). That's all that needs to exist on the number and title redirects. If you feel up to creating them yourself, feel free, otherwise someone else goes through occasionally and mass adds all the missing redirects. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 17:55, 29 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Error message ==&lt;br /&gt;
&lt;br /&gt;
I've been getting this error message a lot the last cup'o days. When trying to access a page; when trying to save changes on a page. Any ideas on why? I'm getting it on both chrome and firefox.&lt;br /&gt;
::Database error&lt;br /&gt;
::A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
::(SQL query hidden) from within function &amp;quot;Revision::insertOn&amp;quot;. Database returned error &amp;quot;1142: INSERT command denied to user ::'dbo423085716'@'74.208.16.155' for :table 'text' (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
–[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 22:54, 18 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Every once in a while I get a SQL error being reported, but usually I can simply F5 and the page comes up. Every once in a while it seems like the server load is just so that somebody gets lucky enough to see the server error out. I don't think there's much we can do about this, other than move the wiki onto a more powerful server. But, there are no ads on this site, there is no revenue model, just a very kind person paying for hosting that keeps this site up. I'm more than willing to overlook a few hiccups for the continuing availability of explain xkcd. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 07:12, 23 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yeah, I get those too, but St. Nerol was talking about something that happened recently with the server running out of hard drive space and throwing SQL errors every time someone tried to make large edits. I had to find Jeff on twitter because I'd get SQL errors when I tried to edit his talk page. He's looking into history deletion plugins, to clear out our vast archives of deleted spam and obsoleted prototype comic templates. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 08:10, 23 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Install a caching reverse proxy to handle heavy load ==&lt;br /&gt;
&lt;br /&gt;
According to returned headers, this server runs from Apache directly. I would recommend setting up a reverse caching proxy in front of Apache to handle high traffic load (like, e.g. current load). The one I use is nginx (http://nginx.org/) -- admins, drop me an email if you need help setting it up [[User:Fry-kun|Fry-kun]] ([[User talk:Fry-kun|talk]]) 21:38, 26 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The standard software to use is either Squid or Varnish. Nginx is a bit too much of a webserver to be configured in the way MW needs iirc. Although nginx would help with serving the static assets. Unfortunately there will be a need to switch to a proper server first. The site seems to be hosted on shared hosting. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 04:59, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I had gotten burned before with both Squid and Varnish but Nginx had always kept my systems alive. It's extremely lightweight and works great to fix these kinds of problems. But, of course if it's a shared server where you can't use it, it won't help... [[User:Fry-kun|Fry-kun]] ([[User talk:Fry-kun|talk]]) 16:35, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Nginx is a great webserver. It'll serve out static pages much better than Apache. But the issue here isn't the webserver. It's PHP and all the work that the database needs to do on every request. Switching webservers won't get rid of that issue. Using squid/varnish a proper reverse proxying cache will allow complete pages to be cached and served directly to readers bypassing the webserver, php, and the database entirely on some requests. That'll reduce the load the site has to cope with. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 23:47, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== A couple of enwiki features implemented ==&lt;br /&gt;
&lt;br /&gt;
I have &amp;quot;imported&amp;quot; {{tl|disambig}} and the related [[:Category:Disambiguation pages|category]] for the [[Exoplanets‎‎|one page]] it was needed for (to avoid having a page that was uncategorised :-) ).&lt;br /&gt;
&lt;br /&gt;
I have also created {{tl|unsigned ip}} (and converted the one use of {{tl|unsigned}}) and applied it for a handful of existing uses of {{tl|unsigned}}. It hardly matters, but then it's also only three more characters to type for new uses.&lt;br /&gt;
&lt;br /&gt;
Importantly, however, I implore you to consider including the second datestamp parameter when applying either template -- it's actually the more useful information. I know it's a pain to convert times ''back'' to UTC, but, hey, most of you don't have to deal with a half hour timezone :-) [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 16:19, 13 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Urrggh, there's an option to make UTC the default display time. The template oughta be a little more automated, mebbe filling the time in automagically with five tildes if no date field is entered? The time will be a bit off when editors fill in the unsigned templates, but it'll be close enough to the actual value. '''[[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;]] 23:59, 13 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::No, especially while there's existing templates to adjust, where the &amp;quot;default&amp;quot; datestamp would be way out. If someone wants to fix a lot of the existing usage, setting their timezone to UTC is the simplest option. [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 09:14, 14 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== I've removed &amp;quot;add a comment!&amp;quot; from Discussion heading ==&lt;br /&gt;
&lt;br /&gt;
:''This thread has been moved to [[explain xkcd:Community portal/Proposals#I've removed &amp;quot;add a comment!&amp;quot; from Discussion heading|The proposals board]].''&lt;br /&gt;
&lt;br /&gt;
== Need password reset ==&lt;br /&gt;
&lt;br /&gt;
Sorry to bother you all, but I seem to have lost the password to this account and don't have an email set (which requires the password). I'm still logged in thanks to the &amp;quot;remember me&amp;quot; feature but after 30 days I'll lose access. This isn't fixable at the MediaWiki level; someone with access to the server mysql or whatever will need to change something. Is there such a person I can email with? [[User:Splainr|Splainr]] ([[User talk:Splainr|talk]]) 03:05, 15 April 2013 (UTC)&lt;br /&gt;
:I assume your browser isn't remembering it for you? [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 03:08, 15 April 2013 (UTC)&lt;br /&gt;
::Oh wow that was fast. Nope, neither Firefox not OSX keychain access know what it is. [[User:Splainr|Splainr]] ([[User talk:Splainr|talk]]) 15:18, 15 April 2013 (UTC)&lt;br /&gt;
: I'm not sure how to solve that problem, but I know account usurpation has been done for the single-login transition in Wikimedia wikis, so technically it should be doable. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 23:04, 16 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
See [[mw:Manual:Resetting passwords]]. --[[User:Mormegil|Mormegil]] ([[User talk:Mormegil|talk]]) 11:59, 15 May 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Analytics ==&lt;br /&gt;
&lt;br /&gt;
Recently I found out about WikiApiary, an interesting site that collects analytics from mediawiki wikis. I added explain xkcd. Check the stats that have been collected so far: http://wikiapiary.com/wiki/explain_xkcd --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 00:03, 17 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;External&amp;quot; hotlinking enabled to confirm issue with other car.jpg ==&lt;br /&gt;
&lt;br /&gt;
FYI I have [http://www.explainxkcd.com/wiki/index.php?title=MediaWiki:External_image_whitelist&amp;amp;oldid=34582 enabled] &amp;quot;external&amp;quot; hotlinking to this wiki's own images to show [[:File:other car.jpg]] can display correctly. See further notes about that issue [[File talk:other car.jpg|here]]. [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 14:32, 21 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:If the problem is lack of thumbnail generation, it should display correctly even without hotlinking, simply by using the original size, e.g.&lt;br /&gt;
:[[File:other car.jpg]]&lt;br /&gt;
:I'm not sure why it doesn't. In any case, this image hotlinking thing reminded me, would it be a good idea to use the images hosted at XKCD.com and only upload variants to the wiki (e.g. those at [[:Category:Helper comic images]]) and images Randall for some reason deleted from the server (e.g. images with typos)? This would reduce the load on the explainxkcd server and provide a better experience for viewers since xkcd is already optimized for high loads and actually openly provides the image urls for hotlinking. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 15:01, 21 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Seeing as [[User:Daddy]]'s upload has fixed the wiki always attempting to display the thumbnail version (which still don't work), I have disabled the &amp;quot;hotlinking&amp;quot; again.&lt;br /&gt;
&lt;br /&gt;
[[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 11:32, 22 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Redirect from explainxkcd.com/1234 ==&lt;br /&gt;
&lt;br /&gt;
It would be really cool if &amp;lt;code&amp;gt;http://www.explainxkcd.com/&amp;lt;number&amp;gt;&amp;lt;/code&amp;gt; redirected to the explain page for that number. That would allow people to get to the correct explanation by simply adding &amp;lt;code&amp;gt;explain&amp;lt;/code&amp;gt; to the comic url.&lt;br /&gt;
&lt;br /&gt;
If you are willing to do this, all you would need to do (assuming you run apache with mod_rewrite enabled) is put the following in &amp;lt;code&amp;gt;.htaccess&amp;lt;/code&amp;gt; in your web root:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
RewriteRule ^(\d+)/?$ /wiki/index.php?title=$1 [R,L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-[[User:Sionide21|Sionide21]] ([[User talk:Sionide21|talk]]) 22:28, 7 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yeah! I'm waiting for this. But admins seems to be rare here.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:44, 7 June 2013 (UTC)&lt;br /&gt;
::And it seems we both could help...--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:47, 7 June 2013 (UTC)&lt;br /&gt;
:::There are several admins here (in fact, I am, too), but what you are looking for is the sysop, the one with access to the server. Admins can delete/protect/undelete pages and block users etc. [[User:Jeff|Jeff]] is the only one that can change MediaWiki configuration or url rewriting... --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 17:08, 8 June 2013 (UTC)&lt;br /&gt;
::::Thanks for your information, so I will try to talk to [[User:Jeff|Jeff]]. BTW: Can you edit the main page? I still miss a link to the incomplete comics on the top.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 17:52, 8 June 2013 (UTC)&lt;br /&gt;
::::: At the top of the main page, there is a section that says ''&amp;quot;We have collaboratively explained 1189 xkcd comics, and only 33 (3%) remain. Add yours while there's a chance!&amp;quot;''. The word ''remain'' is already linked to the list. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 19:16, 8 June 2013 (UTC)&lt;br /&gt;
::::::I was talking about the 97% comics. There are still many incomplete pages and we have a category here on that.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:36, 8 June 2013 (UTC)&lt;br /&gt;
:::::::Ah, I see. Just did it; everyone: feel free to change the sentence, I'm not a native speaker. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 21:07, 8 June 2013 (UTC)&lt;br /&gt;
::::::::THANKS! I'm also not native English, I'm German. But this wiki is a great challenge to get more practice, even much more as if talking to common English natives.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:27, 8 June 2013 (UTC)&lt;br /&gt;
::::::::: This is something I want to do, so I'm putting this on my page, so I remember to add it to the .htaccess.  I'm not super familiar with the .htaccess rules, can I have this along with the other rules I have in my htaccess file? --[[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]]) 15:17, 22 October 2013 (UTC)&lt;br /&gt;
:::::::::: Yes, that rule will work alongside other rules --[[User:Sionide21|Sionide21]] ([[User talk:Sionide21|talk]]) 19:28, 27 October 2013 (UTC)&lt;br /&gt;
::::::::::: I've fixed this on our new host.  (I actually had the rule in there already, I just had it in the wrong order.) I'd love to promote this feature a bunch.  Any ideas how? --[[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]]) 02:33, 30 October 2013 (UTC)&lt;br /&gt;
:::::::::::: A sitenotice oughta do it. '''[[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;]] 03:43, 30 October 2013 (UTC)&lt;br /&gt;
:::::::::::: Woohoo, finally!!! Now if we could just have [[#We need more maintainers|clean URLs]] too, that'd be swell! ;) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 05:02, 14 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incomplete – motivation ==&lt;br /&gt;
&lt;br /&gt;
Is it possible to fix (or is there already) a way to add a motivation with the &amp;quot;incomplete&amp;quot;-tag? I tried &amp;lt;nowiki&amp;gt;{{incomplete|the title text needs explaining}}&amp;lt;/nowiki&amp;gt;, which made &amp;quot;edit it&amp;quot; in the banner link to the uncreated page &amp;quot;the title text...&amp;quot;... ––[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 12:16, 10 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You can use the &amp;lt;nowiki&amp;gt;{{notice|Your text...}}&amp;lt;/nowiki&amp;gt; template:&lt;br /&gt;
{{notice|Here is my notice.}}&lt;br /&gt;
:--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 17:30, 10 June 2013 (UTC)&lt;br /&gt;
::Thanks! I think that ideally most incomplete-notices shold carry a note on what's missing, but we aren't there, so this'll do for now. ––[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 10:21, 11 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Unable to Edit ==&lt;br /&gt;
&lt;br /&gt;
I cannot edit this latest comic's page. When I hit edit a screen appears which says &amp;quot;This page has been protected to prevent editing.&amp;quot; I've never edited before, but I'm annoyed by the improper use of the word candid. &amp;quot;It would be candid and unrealistic&amp;quot; would be better off in that sentence if candid was removed. How do I make it so I can edit the page, so I can remove this affront to the English language?&lt;br /&gt;
:I believe you are trying to edit the main page. You can click &amp;quot;Latest comic&amp;quot; in the left sidebar or the &amp;quot;Go to this comic&amp;quot; button in the top right corner of the grey box to go to the actual page for today's comic. '''[[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;]] 16:42, 1 July 2013 (UTC)&lt;br /&gt;
::That was the problem, thanks.--[[User:Holcma01|Holcma01]] ([[User talk:Holcma01|talk]]) 17:07, 1 July 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Banner ad placement ==&lt;br /&gt;
&lt;br /&gt;
On iPad and iPhone browsers, the banner ads obscure the top of the page.  This covers up some of the useful buttons up there, like LOGIN for example.  The workaround is to refresh the page.  Because the banner ad is the last thing to load, you have a brief window of maybe three seconds to find and click the link you need. [[User:Gardnertoo|Gardnertoo]] ([[User talk:Gardnertoo|talk]]) 20:24, 26 July 2013 (UTC)&lt;br /&gt;
: Fixed. --[[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]]) 21:12, 25 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bookmarklet for jumping to explainxkcd.com from xkcd.com ==&lt;br /&gt;
&lt;br /&gt;
I wrote a short {{w|bookmarklet}} for jumping from xkcd.com to explainxkcd.com. Bookmarklet form:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:var%20match%20%3D%20window.location.href.match(%2F%5Cd%2B%2F)%3B%0Avar%20suffix%20%3D%20match%20%3F%20%27%3Ftitle%3D%27%20%2B%20match%5B0%5D%20%3A%20%27%27%3B%0Awindow.location%20%3D%27http%3A%2F%2Fwww.explainxkcd.com%2Fwiki%2Findex.php%27%20%2B%20suffix%3B&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Decoded:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:var match = window.location.href.match(/\d+/);&lt;br /&gt;
var suffix = match ? '?title=' + match[0] : '';&lt;br /&gt;
window.location ='http://www.explainxkcd.com/wiki/index.php' + suffix;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you're on a numbered xkcd page, it will go to the accompanying explainxkcd.com page automatically.  If you're on the xkcd.com home page, it goes to the explainxkcd.com wiki home page. [[User:Mattflaschen|Mattflaschen]] ([[User talk:Mattflaschen|talk]]) 17:30, 19 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
To add this bookmarklet to your browser:&lt;br /&gt;
&lt;br /&gt;
# Copy the bookmarklet javascript (*not* the decoded version)&lt;br /&gt;
# Using your browsers bookmark manager, create a new bookmark&lt;br /&gt;
# Give the bookmark a meaningful name -- e.g. ExplainXKCD&lt;br /&gt;
# Paste the javascript in for the bookmark URL&lt;br /&gt;
# Save.&lt;br /&gt;
({{unsigned|Tomh}})&lt;br /&gt;
&lt;br /&gt;
:Thanks Mattflaschen and Tomh!  I've started collecting these helpful tools on a [[Browser helpers|new page]], to hopefully make them easier for others to find.  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 01:33, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Database Error ==&lt;br /&gt;
&lt;br /&gt;
I have NO IDEA where this should go, but&lt;br /&gt;
http://www.explainxkcd.com/wiki/index.php?title=1011&lt;br /&gt;
has the content&lt;br /&gt;
&lt;br /&gt;
Database error&lt;br /&gt;
A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
(SQL query hidden)&lt;br /&gt;
from within function &amp;quot;SqlBagOStuff::set&amp;quot;. Database returned error &amp;quot;1142: INSERT command denied to user 'dbo423085716'@'74.208.16.155' for table 'objectcache' (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Just thought I should report it.&lt;br /&gt;
&lt;br /&gt;
OOPS forgot sig. [[Special:Contributions/67.175.58.94|67.175.58.94]] 00:13, 23 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Edit: This has been fixed randomly. Never mind then. :X&lt;br /&gt;
&lt;br /&gt;
== [[mw:Extension:SyntaxHighlighter]] ==&lt;br /&gt;
&lt;br /&gt;
Could we maybe enable this? It would be helpful for some of the programming-heavy comics' explanations, e.g. [[1270|today's one]].[[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 17:02, 27 September 2013 (UTC)&lt;br /&gt;
: Done, PinkAmpersand. --[[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]]) 19:57, 28 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== It's not taking me to the main page ==&lt;br /&gt;
&lt;br /&gt;
If I type explainxkcd.com, it redirects me to http://www.explainxkcd.com/wiki which just shows a directory listing, rather than taking me to the main page (as I assume it's supposed to). [[User:Chridd|chridd]] ([[User talk:Chridd|talk]]) 02:07, 31 October 2013 (UTC)&lt;br /&gt;
:Thaat's not supposed to happen. I'm on it. '''[[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;]] 06:49, 31 October 2013 (UTC)&lt;br /&gt;
:Is it fixed for you now? '''[[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;]] 06:55, 31 October 2013 (UTC)&lt;br /&gt;
::Yes [[User:Chridd|chridd]] ([[User talk:Chridd|talk]]) 14:46, 31 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Logo in upper left corner missing ==&lt;br /&gt;
&lt;br /&gt;
The logo in the upper left corner is missing, probably because of a wrong redirect. The logo should be at http://www.explainxkcd.com/wiki/skins/common/images/explainxkcd.png, but this link takes me to the main page. The icons in the edit toolbar are missing, too, probably the same problem. You should exclude all \.png$ queries from redirects. --[[Special:Contributions/108.162.254.177|108.162.254.177]] 10:09, 31 October 2013 (UTC)&lt;br /&gt;
: Fixed that.  Sorry about that, it was an overzealous htaccess.  Thanks! --[[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]]) 15:45, 31 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Sidebar ad overhangs content in Firefox 25.0 ==&lt;br /&gt;
&lt;br /&gt;
The sidebar ad on each page overhangs the content frame slightly when I view this site in Firefox 25.0 on a Windows 7 Home Premium 64bit pc. I have started Firefox in safe mode with all add-ons disabled and it still happens. Site looks fine in IE 11. {{unsigned ip|173.245.56.79}}&lt;br /&gt;
:Have you tried hitting control-shift-R, or clearing your cache? That sounds like Firefox is disregarding part of our CSS for whatever reason. I'm running a very similar setup and I'm not getting these problems. Try giving it a wee bit of time and trying again. '''[[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;]] 17:27, 13 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:What's your monitor resolution and size of your Firefox window (maximized, 50/50 split, etc)? [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:24, 13 November 2013 (UTC)&lt;br /&gt;
::I'm really sure that scaling isn't the issue, I made the sidebar width definite. I'll check it again. '''[[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;]] 19:06, 13 November 2013 (UTC)&lt;br /&gt;
:::The sidebar has a fixed width defined at the CSS style sheet. Press F5 or CTRL-R to reload this style sheet. This happened to me in the past too. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:14, 13 November 2013 (UTC)&lt;br /&gt;
::::I changed the defined width to pixels instead of em, in the annoying edge-case that a browser uses a weird default font width. '''[[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;]] 19:24, 13 November 2013 (UTC)&lt;br /&gt;
:::::It looks fine now.--[[Special:Contributions/173.245.56.79|173.245.56.79]] 06:08, 18 November 2013 (UTC)&lt;br /&gt;
::::::Sidebar ad overhangs content in DuckDuckGo 7.67.1.2 for iOS 15.4.1, on iPhone 12. aka 'Your sidebar ad has been crushed into a cube. You have fifteen minutes to move your cube.'&lt;br /&gt;
&lt;br /&gt;
== Connection problems ==&lt;br /&gt;
&lt;br /&gt;
Whatever the new hoster does cost, you should get your money back. Sometimes the page doesn't load at all, or the menu is missing after the browser did finish after one or two minutes. The performance here is still annoying. That cloud seems to be a dead cloud. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:33, 11 January 2014 (UTC)&lt;br /&gt;
:It's easily more performant than our old service, and it holds up far better to traffic. I am inclined to say that it's a region specific issue, and I'll submit a ticket for that, but they've worked far better than flat shared hosting for the time that we've been using them. '''[[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;]] 00:01, 12 January 2014 (UTC)&lt;br /&gt;
::More detail: The message is an Error 522 (Connection timed out).&lt;br /&gt;
::*You (Browser, Working) &amp;lt;-&amp;gt; Amsterdam (CloudFlare, Working) &amp;lt;-&amp;gt; &amp;lt;nowiki&amp;gt;www.explainxkcd.com&amp;lt;/nowiki&amp;gt; (Host, '''Error''')&lt;br /&gt;
::In December the CloudFlare did belong to Frankfurt. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:35, 12 January 2014 (UTC)&lt;br /&gt;
:::I'm having still major problems to connect, only this this silly error message. ...and then it does work again. Still strange.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:58, 14 January 2014 (UTC)&lt;br /&gt;
:Today I've been getting a ''lot'' of these errors with Cloudflare.  (London-based CloudFlare, in my case.)  &amp;quot;Error 522 Ray ID: 2587581d8b8a350c • 2015-12-21 23:25:22 UTC&amp;quot; is just one of the IDs.  Not sure if you'd prefer another bit of the page info, instead, but the Ray ID looked unique enough to pinpoint debug info in the background.)  The suggestion is made that the web server is too busy at something or other. Anyway, just so you're aware.&lt;br /&gt;
:I had a look here, first, to see if anyone had mentioned anything (and found the above), so apologies if I'm not posting in the best bit of the best page. [[Special:Contributions/162.158.152.227|162.158.152.227]] 23:44, 21 December 2015 (UTC)&lt;br /&gt;
::It seems to be an occasional regional issue that cloudflare has with us. When I go to our server directly our site is still up, so something between us and cloudflare is failing. Not sure what though. '''[[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;]] 03:40, 22 December 2015 (UTC)&lt;br /&gt;
:Yesterday (and day before?) Cloudflare London insisted that the server was not responding. Not sure if that was an actual explain-server issue (not seen mention of it anywhere else, in a brief dig), only Cloudflare London being refused by the server (detecting and blanket filtering rogue traffic via my gateway) or some other issue. Meant to check for update timestamps on the latest comic article that coincided with my being unable to visit the site at the time.  But FYI, assuming the cause isn't already sorted out with no further actions needed and/or possible... [[Special:Contributions/162.158.155.92|162.158.155.92]] 16:02, 11 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wrong IP address shown ==&lt;br /&gt;
&lt;br /&gt;
All [http://www.explainxkcd.com/wiki/index.php?title=Special:RecentChanges&amp;amp;hideliu=1 edits by IPs] (well, at least all I checked, including my own edits) are recorded using IP addresses of CloudFlare ([http://www.utrace.de/whois/108.162.238.220 108.162.192.0/18], [http://www.utrace.de/whois/173.245.50.88 173.245.48.0/20] and some other ranges), i.e., it's not the address of the client, but of the server. This seems similar to [https://bugzilla.wikimedia.org/show_bug.cgi?id=56681]. --[[Special:Contributions/108.162.254.160|108.162.254.160]] 09:05, 29 January 2014 (UTC)&lt;br /&gt;
:That's something we're working on, but current limitations with our provider are making things sow for us. When they give us what we need, we can do it. '''[[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;]] 16:59, 29 January 2014 (UTC)&lt;br /&gt;
::Hmmpf! I just noticed this twelve months later and it's still the case... [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 01:59, 29 January 2015 (UTC)&lt;br /&gt;
:::Uurrrp a couple of holdups happened, I need to do this at some point. '''[[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:54, 29 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: I just noticed it as well [[Special:Contributions/162.158.252.197|162.158.252.197]] 04:20, 24 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
: CloudFlare is already providing the Real Ip address -- there are mods for Apache https://support.cloudflare.com/hc/en-us/articles/203656534-How-can-I-set-up-Apache-mod-CloudFlare- and Nginx https://support.cloudflare.com/hc/en-us/articles/200170706-How-do-I-restore-original-visitor-IP-with-Nginx-  or you can just pull it from the X-Forwarded-For HTTP header which proxy servers (like CloudFlare) typically puts the client IP address.   [[Special:Contributions/162.158.252.197|162.158.252.197]] 04:25, 24 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 1337 leads to...? === &lt;br /&gt;
&lt;br /&gt;
Current and latest comic page, 1337, unusually has a &amp;quot;Next&amp;quot; before there's even any 1338 page.  (It points to 1337.)  As a lowly IP, I don't feel I ought to delve too deep to see if it's a page template issue (possibly because &amp;quot;1337&amp;quot; is both a past title ''and'' the current number, maybe, although not too sure if that'd work out) or just because of manual editing.  But bringing it to general attention. (It may of course be an issue that does not even last beyond Wednesday, and comic number 1338's arrival, even without intervention.) [[Special:Contributions/141.101.99.7|141.101.99.7]] 13:40, 3 March 2014 (UTC)&lt;br /&gt;
:D'aww, and I wanted to be lazy too. I'll get to fixing it, an IP took it to himself to add stuff to the comic template and he removed the auto-hiding buttons. Imma fixy. '''[[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;]] 17:42, 3 March 2014 (UTC)&lt;br /&gt;
::I did revert some edits on that issue here, so for the first point it should work again. In general: The main page should not be affected like this and the test environment is called: Sandbox. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:43, 3 March 2014 (UTC)&lt;br /&gt;
:::The issue was fixed three hours before your autorevert. This is getting excessive. The next time you autorevert a large edit without testing or making an attempt to fix things yourself, expect a three-day ban. '''[[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;]] 22:41, 3 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== No confirmation email? ==&lt;br /&gt;
&lt;br /&gt;
I requested an email for confirmation when I registered. I got nothing, not in spam filter, not in trash, and definitely in not my inbox.&lt;br /&gt;
&lt;br /&gt;
Today, I requested another confirmation email. Again, nothing has appeared.&lt;br /&gt;
&lt;br /&gt;
Is it me? Is it my shampoo??? Enquiring minds want to know....&lt;br /&gt;
Thanks. [[User:Karenb|Karenb]] ([[User talk:Karenb|talk]]) 22:45, 20 March 2014 (UTC)&lt;br /&gt;
:Confirmation emails? What, are we a five-star hotel now?&lt;br /&gt;
:Jokes aside, is this a thing you really need? You should be autoconfirmed after editing for a while without getting blocked, but if you can put forward a good reason why we should add this in, I'll do it. '''[[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;]] 00:54, 21 March 2014 (UTC)&lt;br /&gt;
:::Not blocked! Trying to authenticate my email, which I thought was an automatic process. Does that feature not work? That would certainly explain the lack of autoresponse.... Cheers. KB [[User:Karenb|Karenb]] ([[User talk:Karenb|talk]]) 01:35, 21 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm having the same issue. I've requested several confirmation emails over the past few days. I have also tried changing and then resetting my email address. Nothing has worked so far, and it's not in any of my filtered inboxes. I can edit most pages. Will this fix itself even if I don't get an email? [[User:DownGoer|DownGoer]] ([[User talk:DownGoer|talk]]) 18:16, 26 June 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Because the people visiting here are probably the people that should see this==&lt;br /&gt;
After the server upgrades mentioned in the sitenotice, de.explainxkcd.com should exist. I'm not publicizing it yet, just want to get it up and work out implementation details before it goes fully live. Pls dun test during the downtime, there'll be plenty of time for that after it's live. '''[[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;]] 01:14, 21 March 2014 (UTC)&lt;br /&gt;
:Ok, so our server doesn't actually have the required dependencies to complete the upgrade, so that was slightly fruitless. Sorry about any downtime or inconvenience caused, I didn't add the German wiki again because I'm looking set up the parallel wikis on an up-to-date base. Sorry again for any inconvenience that may have caused, I'll make sure to be better prepared next time, and maybe actually succeed in performing the upgrade next time. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 02:02, 24 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Does anyone have image of Black Hat saying to Cueball &amp;quot;It's 'cause you're dumb&amp;quot; ?==&lt;br /&gt;
Guys, does anyone has this image? &lt;br /&gt;
I'm hosting Russian xkcd fanpage here - vk.com/xkcdoff and if someone would post it it would be very helpful. --[[User:KOTYAR|KOTYAR]] ([[User talk:KOTYAR|talk]]) 22:40, 24 March 2014 (UTC)&lt;br /&gt;
:I actually can't find it either. Shame, I liked that old thumbnail. I could probably photoshop up a new version if you really want one though. '''[[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:53, 26 March 2014 (UTC)&lt;br /&gt;
:&lt;br /&gt;
::[[File:explain xkcd blog header image.png|right]] Just going to the [[explain xkcd]] page and following [http://wayback.archive.org/web/20091026122109/http://www.explainxkcd.com/2009/07/03/extrapolating/ the first historic (internet-archived) link] allowed me to extract [http://wayback.archive.org/web/20110202213753im_/http://www.explainxkcd.com/wp-content/themes/lightword/images/header-image.png the requested &amp;quot;header-image.png&amp;quot;] &amp;lt;small&amp;gt;(the [http://www.explainxkcd.com/wp-content/themes/lightword/images/header-image.png corresponding image URL on the current site] gives nothing anymore... thank you, Internet Archive!)&amp;lt;/small&amp;gt;. Which I uploaded to the wiki here, for convenience and because it's part of this wiki's history, in a way, and also, cool. [[File:Face-smile.svg|20px|Smile|link=]] - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 10:39, 16 April 2014 (UTC) &amp;lt;small&amp;gt;(PS: also, [http://www.facebook.com/explainxkcd/photos/10150144122985214 facebook.com/explainxkcd/photos/10150144122985214]; but JPEG.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== expxkcd.com redirect not up-to-date ==&lt;br /&gt;
&lt;br /&gt;
By adding &amp;quot;exp&amp;quot; at the beginning of the URL one can easily switch from [http://xkcd.com/1234 xkcd.com/1234] to [http://expxkcd.com/1234 expxkcd.com/1234], which redirects to the corresponding explanation here, and that's nice. But right now, [http://expxkcd.com expxkcd.com] redirects to [[1355]] (at least for me), instead of [[1356]], the latest comic. Wouldn't it be better if expxkcd.com redirected to the [[Main Page]] instead (as does correctly [http://explainxkcd.com explainxkcd.com])? - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 10:55, 16 April 2014 (UTC)&lt;br /&gt;
:expxkcd is actually a thing that user [[user:grep]] was so kind to purchase and handle for us. I can forward this on to him for him to resolve, and give him the rewrite rules we use if he needs them. '''[[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;]] 11:12, 16 April 2014 (UTC)&lt;br /&gt;
:&lt;br /&gt;
::Nice, thank you for the quick forward to the right place. - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 11:31, 16 April 2014 (UTC)&lt;br /&gt;
:Yeah, the reason for that is that right now, I update it manually, which is obviously a really bad idea. I plan to change this pretty soon. I don't want it to go to the main page because the main page doesn't show the discussion, and comes along with all the other, regular main page stuff. Any rewrite rules wouldn't hurt, Davidy22. {{User:Grep/signature|12:04, 16 April 2014}}&lt;br /&gt;
::Hrm. Ours rules point towards the main page. We have no automatically updating page that always redirects to the latest comic, but you can use Mediawiki hooks to append the contents of the page [[Template:LATESTCOMIC]] to the end of our URL. '''[[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;]] 23:44, 17 April 2014 (UTC)&lt;br /&gt;
:::Sorry, I don't understand. My BOT will upload the next comic on time, unless it's some new chaos by Randall a BOT just can't handle. The LATESTCOMIC template is updated and so it seems only be an issue on that damn Cloud Service Cache. Even Randall's pages are affected. At &amp;quot;What-if&amp;quot; I still have to use &amp;lt;CTRL+R&amp;gt; to get the latest content. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 00:26, 18 April 2014 (UTC)&lt;br /&gt;
::::We're talking about a different thing related to shortened URLs. '''[[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;]] 02:24, 18 April 2014 (UTC)&lt;br /&gt;
:::That is an interesting idea, however I just made a script that automatically adds 1 every Monday, Wednesday, and Friday. I could have it grab the number from your page and do this once a day at something like 00:10 EST (because Randall sometimes does things on other days), that's a possibility as well (other times / intervals may also be done if you wish/want). {{User:Grep/signature|04:34, 02 May 2014}}&lt;br /&gt;
::::Our LATESTCOMIC page and Randall's xkcd json page should both have up-to-date comic numbers for you to pull. Ours is probably the better one to pull since your site is linking to us. '''[[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;]] 06:30, 2 May 2014 (UTC)&lt;br /&gt;
:::::The script now checks Template:LATESTCOMIC every 30 minutes to see if the comic has changed or not. If you wish, I &amp;lt;u&amp;gt;might&amp;lt;/u&amp;gt; be able narrow this down to 11PM-&amp;gt;6AM (for 30 minute checking) and then have it check every two hours at other times or something similar to that (if [http://www.freedesktop.org/software/systemd/man/systemd.time.html systemd.time] has a way to do it) {{User:Grep/signature|12:13, 09 May 2014}}&lt;br /&gt;
::::::I still do not see that problems. Please touch this wiki as less as needed, this is still the best choice. But there is still a big problem on the cache, an update on a picture lasts many hours. Some statements in &amp;quot;LocalSettings.php&amp;quot; should work, if not this wiki version is buggy. Problems should be solved at the cause and not be overridden by some additional scripts. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:51, 9 May 2014 (UTC)&lt;br /&gt;
:::::::We have ample bandwidth for a bot that only checks once every half-hour. The image caching issue is irrelevant to the current topic. '''[[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;]] 03:45, 10 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Explain xkcd upgraded to version 1.19.17 ==&lt;br /&gt;
&lt;br /&gt;
Woo! '''[[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;]] 17:59, 26 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The header seems to have broken, there is no longer a link to the explanation in it. [[Special:Contributions/173.245.56.154|173.245.56.154]] 22:00, 26 July 2014 (UTC)&lt;br /&gt;
:Which header are you talking about? All the links I can think of still seem to work. '''[[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;]] 02:13, 27 July 2014 (UTC)&lt;br /&gt;
:: It fixed itself shortly after I mentioned it. It was the incomplete explanation, the link to 428 was bold, but not a link. [[Special:Contributions/173.245.56.154|173.245.56.154]] 04:48, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
One of the ads is broken.&lt;br /&gt;
&lt;br /&gt;
[[File:brokenexplainxkcdad.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;[[User:MrGameZone|0100011101100001011011010110010101011010011011110110111001100101]] ([[User talk:MrGameZone|talk page]])&amp;lt;/small&amp;gt; 04:33, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ooh, thanks for catching that. Should be fixed now. '''[[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;]] 17:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Nice :) But is this update a preparation for an upcoming update to {{w|MediaWiki version history|one of the latest versions}}, or are we limited to 1.19 for some reason? I'm asking because 1.19 is only supported for {{w|mw:Version lifecycle#Version timeline|a few more months}}, and also because with newer versions we'd have access to some niceties -- for example, after version 1.20 the {{w|mw:Help:Magic words#Statistics|PAGESINCAT}} magic word accepts parameters, which would allow the count of explained comics in the main page to work using less hardcoded hacks. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 16:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Prior attempts to update the wiki have been prevented by the realization that Lunarpages doesn't give us quite as much control over our server share as we thought we had. Checking again, they seem to have upgraded the version of PHP on our server since we last attempted and failed to run one dumb update script, which should mean that it'll work next time we try it. The wiki also has quite a bit of user effort invested into it now, and I'm a little less ready to jump into .0~.3 releases than I would normally be on my own machine, so I upgraded down the LTS path that I knew would be safe. After the first ill-planned attempt, I've been eyeing the 1.23 LTS line for the next major jump, but I'm certainly not stepping into it while it's still relatively fresh. '''[[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;]] 17:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Sounds reasonable. Thanks for the details. I'll be looking forward to the next update :) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 18:52, 28 July 2014 (UTC)&lt;br /&gt;
::Just wanting to offer, I use ARP Networks for hosting, you should check them out if you want more control. {{unsigned ip|173.245.56.154}}&lt;br /&gt;
:::Hum, there's an option. I'll keep that in mind. '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
::::It wasn't me that posted that comment. But surprisingly enough anon and I have the same first two bytes in our IP addresses. Congrats on the version upgrade. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 05:31, 29 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why does the site say I'm blocking ads when I'm not? I do use AdBlock Plus, but it's turned off for this site. Screenshot [http://i1271.photobucket.com/albums/jj637/backagain2012/contra_zps3c6aa295.png here]. And while I'm here, that &amp;quot;unblock us&amp;quot; text has an error- the first &amp;quot;and&amp;quot; in the second sentence shouldn't be there. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 01:51, 29 July 2014 (UTC)&lt;br /&gt;
:The text only appears when the ads fail to load. The error message actually says noscript, which means that the Javascript that the ad box uses to fetch images isn't running. How long has this been happening for you? '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
::It just started. I came over here as soon as I noticed it. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 19:07, 29 July 2014 (UTC)&lt;br /&gt;
:::Have you recently made any changes to your browser? Does the problem persist when you hit CTRL+SHIFT+R? '''[[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;]] 12:43, 30 July 2014 (UTC)&lt;br /&gt;
::::Nope, no recent changes. And yes, the problem persists when I hit Ctrl+Shift+R. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 14:04, 30 July 2014 (UTC)&lt;br /&gt;
:::::I am genuinely puzzled. The message tells me that something is causing your browser to fail to load/run the Javascript that makes the ad render and report stats, so the problem could be anything that can cause that: noscript, outdated browser, experimentation. I don't know anything about your setup, and it works on my test machines, so I can't tell currently what's wrong. '''[[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;]] 03:10, 1 August 2014 (UTC)&lt;br /&gt;
:Do you have privoxy installed on your machine? (this is a long shot) [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 00:24, 3 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== If anything broke, complain here. ==&lt;br /&gt;
&lt;br /&gt;
There's a banner that says:&lt;br /&gt;
The wiki has been updated to stable mediawiki version 1.19.17. If anything broke, complain here.&lt;br /&gt;
&lt;br /&gt;
So...&lt;br /&gt;
&lt;br /&gt;
The following have broken:&lt;br /&gt;
Cars&lt;br /&gt;
My previous computer&lt;br /&gt;
A railroad train&lt;br /&gt;
Condoms&lt;br /&gt;
Etc.&lt;br /&gt;
&lt;br /&gt;
None of which has anything to do with this website.&lt;br /&gt;
&lt;br /&gt;
The banner should be made more specific before Randall sees it and does a comic mocking it.&lt;br /&gt;
&lt;br /&gt;
Or not. {{unsigned ip|173.245.48.80}}&lt;br /&gt;
:Well, there's always that one guy. Fixed. '''[[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;]] 05:05, 28 July 2014 (UTC)&lt;br /&gt;
::I don't see how you could have fixed that one guy.  Throttled, eliminated, insulted, blocked, etc.  But not fixed. [[User:Walenc|Walenc]] ([[User talk:Walenc|talk]]) 16:29, 28 July 2014 (UTC)&lt;br /&gt;
:::See sense 6 here: http://en.wiktionary.org/wiki/fix#Verb :P [[Special:Contributions/173.245.56.154|173.245.56.154]] 02:13, 29 July 2014 (UTC)&lt;br /&gt;
::::i bet you think yer so clever. just watch me take the site down. '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Misc Request... (|&amp;lt; &amp;lt; Prev Comic Next &amp;gt; &amp;gt;| format) ==&lt;br /&gt;
&lt;br /&gt;
I usually browse in a very small window and the menu buttons split kind of strangely (http://i.imgur.com/wPE7szZ.png). Would it be possible to replace the spaces with nonbreaking spaces? --[[Special:Contributions/173.245.56.202|173.245.56.202]] 15:13, 1 August 2014 (UTC)&lt;br /&gt;
:Annoyingly, the spaces that are giving you trouble can't be changed because they're text string inputs, and Mediawiki has no regular expression markup yet. Every other instance of formatting-critical spaces has been changed to non-breaking spaces though, thanks for the heads up! '''[[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;]] 18:13, 2 August 2014 (UTC)&lt;br /&gt;
:: I think I fixed this by adding a space between the buttons. Unfortunately, this only works as long as the comic is not as wide as the button bar. I guess this is because of the surrounding table. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 20:15, 2 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Not receiving password reset emails ==&lt;br /&gt;
&lt;br /&gt;
I've forgotten my password, and password reset is not working for me.  I went to [[Special:PasswordReset]], and had it send me a reset email.  However, I have not received the email.  I am sure that I have an email associated with my account, and it's confirmed. [[Special:Contributions/173.245.54.174|173.245.54.174]] 08:38, 18 August 2014 (UTC)&lt;br /&gt;
:Tested, password reset emails seem to work for me. Have you checked your spam folder? '''[[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;]] 18:04, 24 August 2014 (UTC)&lt;br /&gt;
::I checked in Gmail in &amp;quot;Mail &amp;amp; Spam &amp;amp; Trash&amp;quot;, and it still doesn't find it.  I tried a fresh reset, so we'll see if that comes through.  No luck after a minute or two.  [[Special:Contributions/108.162.216.71|108.162.216.71]] 04:59, 28 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==TOR Captcha==&lt;br /&gt;
&lt;br /&gt;
Hi, I use TOR. To access your website, cloudfare has made it such that I have to enter a captcha. This is very inconvenient, as your site is not the only one doing this. Can you please fix this issue? You should be able to see a guide here: https://tor.stackexchange.com/questions/599/cloudflares-captcha-screen-insurmountable . Thank you for taking the time to consider this. [[Special:Contributions/141.101.104.60|141.101.104.60]] 11:34, 13 September 2014 (UTC)&lt;br /&gt;
:Is it better now? '''[[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;]] 13:06, 13 September 2014 (UTC)&lt;br /&gt;
::Sorry, no. I still get the captcha. What did you try doing? [[Special:Contributions/108.162.216.87|108.162.216.87]] 22:09, 13 September 2014 (UTC)&lt;br /&gt;
:::Set the threat level threshold way up. Any further steps into cheap botnet territory. For your security, you may want to reconsider the nodes through which you're operating through. Also, why do you need to use Tor to visit us? '''[[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:17, 14 September 2014 (UTC)&lt;br /&gt;
::::Ah, okay, thanks, now I'm not getting the captcha. As for why I'm using Tor, I don't ''need'' to, but I'd rather do so just to be anonymous. I wouldn't have written if it were just your site, but since Cloudfare has made captchas the default setting for Tor, the internet is starting to become near unusable. So that everyday people aren't scared away from using Tor due to the perceived complexity of daily browsing, whenever I have to enter a captcha, I try to contact someone at the site to ask them to change the setting. [[Special:Contributions/108.162.216.82|108.162.216.82]] 06:52, 14 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Upgrade to the latest MediaWiki version? ==&lt;br /&gt;
&lt;br /&gt;
I think we should start trying to maintain a regular upgrade schedule of some sort. 6 months ago was the last time we've upgraded, and I think we should upgrade again. The impetus for this change would be for [https://www.mediawiki.org/wiki/Extension:Translate translation] [https://www.mediawiki.org/wiki/Extension:TranslationNotifications features], [https://www.mediawiki.org/wiki/Extension:Babel plus other multilinguality efforts that require the new versions of MediaWiki.] Localization efforts should be put into place, and the translate feature would work well for that. [[User:Chess|Chess]] ([[User talk:Chess|talk]]) 01:53, 12 November 2014 (UTC)&lt;br /&gt;
:Plans to upgrade only include LTS releases. That said though, the recent and unintentional server downtime was actually the result of a setup for a coming mediawiki upgrade, among other things. The plan is to upgrade to 1.23 sometime in the coming months, during the weekend after a satisfactory number of bugfix releases. We're very interested in setting up translations, although mediawiki in it's current form already supports translation; the extensions you linked are mostly quality-of-life additions. It's been delayed because the plan is to eliminate all incomplete comics first so that translators have a solid base to work from. '''[[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;]] 02:42, 12 November 2014 (UTC)&lt;br /&gt;
::Can I just be nitpicky and say that we last upgraded about 3.5 months ago, not 6? Thanks. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 03:17, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Fix HTTPS access ==&lt;br /&gt;
&lt;br /&gt;
explain xkcd is using Cloudflare which recently enabled HTTPS for all users, but when [https://explainxkcd.com accessing it via HTTPS] it returns [https://support.cloudflare.com/hc/en-us/articles/200171916-Error-521 error 521].&lt;br /&gt;
In order to fix this in addiction to the solution steps proposed by CloudFlare check if SSL settings are correct. {{unsigned ip|173.245.52.138}}&lt;br /&gt;
:On it '''[[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;]] 18:51, 13 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
HTTPS is working now, there just some mixed-content warnings, mostly on style tags which being active mixed content are blocked, but it's still a good improvement as it's possible to have more privacy when browsing explain xkcd.{{unsigned ip|188.114.99.35}}&lt;br /&gt;
&lt;br /&gt;
: Whoever has server access, can they try changing $wgServer ([[mediawikiwiki:Manual:$wgServer|Manual:$wgServer]]) to use a protocol relative url? As the manual page says, you may also want to set $wgCanonicalServer to a fully-qualified url (hopefully defaulting to https). [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 04:17, 29 October 2015 (UTC)&lt;br /&gt;
::Done. How's it now? '''[[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;]] 08:42, 31 October 2015 (UTC)&lt;br /&gt;
::: Much better! The styles and scripts are loaded now, and the page looks good. It's still not completely green https because it's loading some images over plain http, but my browser at least appears to be allowing them for now. If you want any more suggestions on technical issues, let me know. I currently maintain my own mediawiki installation with full https, cloudflare, and short urls. [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 20:27, 4 November 2015 (UTC)&lt;br /&gt;
::::Huh. Is it the ad images? The comic pictures *should* be also done over https, no? '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:10, 5 November 2015 (UTC)&lt;br /&gt;
::::: Yeah, one of them is the ad images (http://www.explainxkcd.com/wiki/lunarpages_160x600.jpg). Most of them are from [[MediaWiki:Common.css]], so you could just change all the urls on that css page to protocol-relative. The only other one I see is http://i.creativecommons.org/l/by-sa/3.0/88x31.png, which I think is set at [[mediawikiwiki:Manual:$wgFooterIcons|$wgFooterIcons]], but I'm not sure. All of them appear to be accessible over https, so just changing the links should work. [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 01:13, 6 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
If I replace xkcd with explainxkcd I get a very ugly CSS-less page in Chrome on Win7. If I change the https to http, the page works [[Special:Contributions/141.101.105.12|141.101.105.12]] 06:07, 3 September 2015 (UTC)&lt;br /&gt;
:Can you provide more information about your setup? Test a different browser? Unable to reproduce. '''[[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;]] 11:56, 3 September 2015 (UTC)&lt;br /&gt;
:: I can reproduce in Firefox. This is due to the mixed content blocker. Usually, it should only block active content (scripts) and maybe warn about passive content (stylesheets), but at least in Firefox, it is configurable to block both. But I cannot see why the stylesheets shouldn't be served via HTTPS.&lt;br /&gt;
:: Currently, the styles are referenced absolutely ([http://www.explainxkcd.com/wiki/load.php?debug=false&amp;amp;lang=de&amp;amp;modules=site&amp;amp;only=styles&amp;amp;skin=vector&amp;amp;* http://www.explainxkcd.com/wiki/...]), but they should rather by referenced domain-relative (&amp;lt;code&amp;gt;/wiki/...&amp;lt;/code&amp;gt;) or at least protocol-relative (&amp;lt;code&amp;gt;[//www.explainxkcd.com/wiki/load.php?debug=false&amp;amp;lang=de&amp;amp;modules=site&amp;amp;only=styles&amp;amp;skin=vector&amp;amp;* //www.explainxkcd.com/wiki/...]&amp;lt;/code&amp;gt;). --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:29, 3 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== RSS feed issue ==&lt;br /&gt;
&lt;br /&gt;
When attempting to access the feed for this wiki I'm told &amp;quot;Sorry. No feed found.&amp;quot; Is there some way that the feed can be restored to the satisfaction of Feedly? Could it be due to some [http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fexplainxkcd.com%2Frss.xml validation issues], or should I consider changing my news reader? [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 23:08, 7 January 2015 (UTC)&lt;br /&gt;
:Huh. The feed updates automatically with a script that I wrote a while ago, I'm very sure it passed more than this the last time I checked. Fixed a few things, left the one about the date because that's a pain to fix, and one that I can't figure out for the life of me. I think I fixed the line that was causing the actual problems though. Should update on feedly now. '''[[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;]] 01:52, 8 January 2015 (UTC)&lt;br /&gt;
::Hallelujah - the feed was mixed in with other geeky material and it only took me nearly 8 months to notice that nothing was coming through from here anymore. I'm premature with my thanks though. The [http://explainxkcd.com/rss.xml RSS link] in the navigation pane to the left still doesn't want to be understood by Feedly. By contrast, other feeds such as for latest changes can be picked up. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 02:04, 8 January 2015 (UTC)&lt;br /&gt;
:::Hrm. Sent an email to feedly about it, Just tested and I'm having similar issues with feedly. '''[[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;]] 02:17, 8 January 2015 (UTC)&lt;br /&gt;
::::It seems it's not just Feedly. When I use Chrome's [https://chrome.google.com/webstore/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp/related?hl=en RSS Feed Reader], that too also tells me &amp;quot;No posts here yet&amp;quot; followed by the an ever helpful &amp;quot;Chirp, chirp, chirp, chirp&amp;quot; [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 02:33, 8 January 2015 (UTC)&lt;br /&gt;
::::Could it be that it's just not valid XML? I see that it ends at line 236 with &amp;lt;/item&amp;gt; with no other closing tags, for example. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 03:18, 8 January 2015 (UTC)&lt;br /&gt;
:::::Ohwait a minute, the auto updater rips old entries off the bottom and that's where there's supposed to be a closing channel and RSS tag. well. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:19, 8 January 2015 (UTC)&lt;br /&gt;
It's good to know that the cause is now known - I'll let you (or someone else with the authority) get on with fixing things up :-) [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 07:46, 8 January 2015 (UTC)&lt;br /&gt;
:[http://feedly.com/i/subscription/feed/http://www.explainxkcd.com/rss.xml Hullo.] It's not perfect that only one specific formation of the URL works, but it's a start. '''[[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;]] 08:01, 8 January 2015 (UTC)&lt;br /&gt;
:: You sir do God's work - and that coming from a Dillahunty-following Atheist is saying something. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 08:11, 8 January 2015 (UTC)&lt;br /&gt;
My reader has been refusing to process the feed for the last few days. I finally un-busied enough to poke into why. When I looked at the source at [http://www.explainxkcd.com/rss.xml /rss.xml] I saw: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt;&lt;br /&gt;
	&amp;lt;title&amp;gt;1561: Water Phase Diagram&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;link&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/link&amp;gt;&lt;br /&gt;
	&amp;lt;pubDate&amp;gt;Thu, 06 Aug 2015 21:51:11 -0700&amp;lt;/pubDate&amp;gt;&lt;br /&gt;
	&amp;lt;guid isPermaLink=&amp;quot;true&amp;quot;&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/guid&amp;gt;&lt;br /&gt;
	&amp;lt;description&amp;gt;&amp;lt;![CDATA[&amp;lt;h2&amp;gt;1561: Water Phase Diagram&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;http://www.explainxkcd.com/1561&amp;quot;&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;]]&amp;gt;&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;/item&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I'm thinking that the script is broken. I could pro'ly come up with something workable, given the access. --[[User:Ericm301|Ericm301]] ([[User talk:Ericm301|talk]]) 16:50, 9 August 2015 (UTC)&lt;br /&gt;
:What on earth is happening here I don't even know. The script seems fine, I repaired the RSS file again manually. See if it malfunctions again today. '''[[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;]] 01:22, 10 August 2015 (UTC)&lt;br /&gt;
::Script is behaving very strangely. Today's update warped the feed file in a weird way, this doesn't usually happen. I'll test it on my machine to see what's happening. '''[[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;]] 13:56, 10 August 2015 (UTC)&lt;br /&gt;
It was fine for a minute (that must have been your edit), but now it's broke again. --[[User:Ericm301|Ericm301]] ([[User talk:Ericm301|talk]]) 19:53, 10 August 2015 (UTC)&lt;br /&gt;
:Alright, I figured out what was going on with the feed. There was a bit of code I had in the update script that trimmed off the last entry of the RSS file and when I recreated an empty file for the feed after the inexplicable wipe, I forgot to turn it off so it was still shaving off the end of the file. This time it should be working. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:34, 12 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Known appearances&amp;quot; character infobox fix? ==&lt;br /&gt;
&lt;br /&gt;
Currently, &amp;quot;Known appearances&amp;quot; in the characters infobox is broken as for some pages, when the character's category serves as it's own info page. (e.g. [[:Category:Red Spiders]], [[:Category:Sharks]], [[:Category:Squirrels]], [[:Category:Barrel]] etc.) Can this be fixed?--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 11:21, 29 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Fixed it myself. Just use template &amp;quot;Infobox character 2&amp;quot; instead of &amp;quot;Infobox character&amp;quot; when the character's category serves as it's own info page.--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 14:55, 31 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic 1505 (30 March 2015) isn't properly showing up, I think? ==&lt;br /&gt;
&lt;br /&gt;
Excuse me if I'm being a n00b, but [[1505]] is posted, and the page is extant, but it's not showing on the [[Main Page]] yet.  Is this supposed to happen, i.e. waiting for someone to put some content on the page, or did something break somewhere...? Again, sorry if I've just committed a massive derp.  [[Special:Contributions/173.245.56.189|173.245.56.189]] 04:38, 30 March 2015 (UTC)&lt;br /&gt;
:Should be showing up now. '''[[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;]] 09:38, 30 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== rendering problem ? ==&lt;br /&gt;
&lt;br /&gt;
To me, right now, with Windows Firefox 37.0.1, [[625: Collections]] looks like this:&lt;br /&gt;
&lt;br /&gt;
[[File:communityportal_technical_1504_collections.png]]&lt;br /&gt;
&lt;br /&gt;
There doesn't seem to be anything wrong with the source text.&lt;br /&gt;
&lt;br /&gt;
Here's the [[Main Page]] in Internet Explorer 8:&lt;br /&gt;
&lt;br /&gt;
[[File:communityportal_technical_1504_mainpage.png]]&lt;br /&gt;
&lt;br /&gt;
This is affecting everything?  Or just me? [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 03:31, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Okay, [[Special:Contributions/173.245.50.140|somebody]] was messing with [[Template:w]].  I reverted it to the previous editor's version, seemed to fix things. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 03:46, 6 April 2015 (UTC)&lt;br /&gt;
:On that note, they made a similar template that links to rationalwiki, but didn't use it at all in any pages. Huh. It's not even a very significant site. '''[[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;]] 05:52, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The IP [http://www.explainxkcd.com/wiki/index.php?title=301:_Limerick&amp;amp;oldid=84906&amp;amp;diff=88577 preferred the Rationalwiki article] on Poe's Law to the Wikipedia version, I guess.&lt;br /&gt;
::[[User:452]] did not approve. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:57, 6 April 2015 (UTC)&lt;br /&gt;
:::Given the fact that he broke Template:W, and [[Special:Contributions/173.245.50.140|didn't seem to know what he was doing]], I undid his other edits, sorry if this was inappropriate. -[[User:452|452]] ([[User talk:452|talk]]) 17:51, 15 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Main Page ==&lt;br /&gt;
&lt;br /&gt;
When categories are added to the latest comic, the Main Page is also categorized in those categories.--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 13:42, 15 April 2015 (UTC)&lt;br /&gt;
:The most obvious solution would be to put the categories inside &amp;lt;nowiki&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;/nowiki&amp;gt; tags, on every page. {{unsigned|143}}&lt;br /&gt;
::That's ugly and labor-intensive though. I think there's something we can do with string matching to fix it in a better way. '''[[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;]] 03:35, 16 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== #cscore doesn't work with #expr ==&lt;br /&gt;
&lt;br /&gt;
I can't use cscore with expr on my userpage.--{{User:17jiangz1/signature|10:30, 01 May 2015}}&lt;br /&gt;
&lt;br /&gt;
== 1545 page severely broken? ==&lt;br /&gt;
&lt;br /&gt;
The very tail end of the raw page source (using Internet Explorer) is&lt;br /&gt;
 &amp;quot;wgRedirectedFrom&amp;quot;:&amp;quot;1545&amp;quot;});&lt;br /&gt;
 }&amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;&lt;br /&gt;
...and then stops, obviously unfulfilled.  (I also snipped everything up until that unique-looking Redirection data, for brevity.)&lt;br /&gt;
&lt;br /&gt;
Compare that with the equivalent snippet from an adjacent page:&lt;br /&gt;
 &amp;quot;wgRedirectedFrom&amp;quot;:&amp;quot;1544&amp;quot;});&lt;br /&gt;
 }&amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;if(window.mw){&lt;br /&gt;
...and then continues with a working rest of the page.  (Also snipped, but this time both before ''and'' after.  I've kept it short while imagining I've given enough to ID the precise breakpoint though.)&lt;br /&gt;
&lt;br /&gt;
Same problem encountered when using &amp;quot;Next&amp;quot; link from 1544 or &amp;quot;Previous&amp;quot; link from 1546.  Page http://www.explainxkcd.com/wiki/index.php/List_of_all_comics ''itself'' suffers the exact same error. (Last wgVariable listed in LoaC page is ''&amp;quot;wgSearchNamespaces&amp;quot;:[0]'', instead, but still similarly ends after apparently the same close-script and open-script flagging point.)&lt;br /&gt;
&lt;br /&gt;
Does ''not'' go wrong in Mozilla-based browsers also on this machine (Firefox, Seamonkey).  Page sources for 1545 look exactly like the above 1544 snippet, as expected, with no obvious funny characters or 'Little Bobby Tables' anomalies, SFAICT.  In case it's a spurious downloading error that has ended up being cached, I've also &amp;quot;shift-refreshed&amp;quot; in my browser to force download.&lt;br /&gt;
&lt;br /&gt;
Utterly Baffling me, but FYI in case it's something someone needs to know about, although I'm hoping it's just local strangeness and not anything actually of significance.[[Special:Contributions/141.101.98.252|141.101.98.252]] 04:33, 5 July 2015 (UTC)&lt;br /&gt;
:Opened in Internet Explorer 11, it seems to appear for me. Are any site features being impacted by this bug? '''[[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;]] 15:44, 5 July 2015 (UTC)&lt;br /&gt;
::Nothing I was previously familiar enough with to spot an adverse effect.  Note that http://www.explainxkcd.com/wiki/index.php/1545:_Strengths_and_Weaknesses - the link I tried to get from the LoaC page (but only just now tried in non-IE!) works perfectly.  Even while the &amp;quot;/1545&amp;quot; (i.e. 'RedirectedFrom') version of the page ''continues'' to be truncated.  I can only assume that (despite attempts to force things anew), it's buggily-cached iteration.&lt;br /&gt;
::Hang on, that gives me an idea.  Which works.  I changed the 1545 page (change labelled as &amp;quot;Troubleshooting&amp;quot; in history) and... it opens perfectly.  Removed change (should probably have self-reverted, in hindesight, but suspect it'd be fixed anyway) and no further issue.  &amp;quot;List of all Comics&amp;quot; page still as broken (because I haven't forced it to update, and am not inclined to 'interfere' with it), but I shall check again after 1547 forces its own changes upon it.  Otherwise, consider this closed.  Sorry to bother you. &lt;br /&gt;
::TL;DR; problem solved.  Pretty much proven to be not even a site issue, I now think. [[Special:Contributions/141.101.98.252|141.101.98.252]] 21:38, 5 July 2015 (UTC)&lt;br /&gt;
::Ok, FYI, once 1547 'Solar System Questions' ''finally'' appeared, I check &amp;quot;List of all comics&amp;quot; page.  First of all a lot of &amp;quot;Waiting for page...&amp;quot; (uh oh), but then force-refreshed page (in the way that didn't work previously) and it loaded correctly. C'est finis. [[Special:Contributions/141.101.98.252|141.101.98.252]] 15:02, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[881]] loads as &amp;quot;database error&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
With this content:&lt;br /&gt;
Database error&lt;br /&gt;
A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
(SQL query hidden)&lt;br /&gt;
from within function &amp;quot;SqlBagOStuff::set&amp;quot;. Database returned error &amp;quot;1114: The table 'objectcache' is full (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
No other page gives me this error, just [[881]].--[[Special:Contributions/162.158.92.6|162.158.92.6]] 19:42, 2 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I just got this on 564 [[Special:Contributions/141.101.98.200|141.101.98.200]] 22:44, 2 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Database error ==&lt;br /&gt;
&lt;br /&gt;
I can't see [[:Category:Interactive_comics]] (&amp;lt;tt&amp;gt;1114: The table 'objectcache' is full (db423085716.db.1and1.com)&amp;lt;/tt&amp;gt;). [[Special:Contributions/199.27.128.105|199.27.128.105]] 00:18, 3 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== RSS missing ==&lt;br /&gt;
&lt;br /&gt;
Hey it looks like there's an issue with the rss feed, when you browse to the url on the right it just displays an empty page, not sure what's going on. [[User:Eluvatar|Eluvatar]] ([[User talk:Eluvatar|talk]]) 14:19, 3 August 2015 (UTC)&lt;br /&gt;
:Huh, in the last few hours the rss file was inexplicably wiped. I've restored the base of it, the bot should start populating the feed with new comics, but old ones are gone. '''[[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;]] 16:49, 3 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Extra Comics ==&lt;br /&gt;
&lt;br /&gt;
In extra comics, the header of the comic has &amp;quot;Expression error: Unrecognised punctuation character &amp;quot;{&amp;quot;.&amp;quot; such as in [[The Rise of Open Access]]. {{User:17jiangz1/signature|13:32, 13 September 2015}}&lt;br /&gt;
:{{done}} - It was because [[0]] was created, so the logic that #ifexist:0 should be false failed. I changed it to default to -2 when number  is not present, which will work as long as no one creates [[-1]]! [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 11:15, 14 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Explanations for all -4 comics! ==&lt;br /&gt;
&lt;br /&gt;
The main page header now contains this text:&lt;br /&gt;
&lt;br /&gt;
[http://i.imgur.com/p7VACbW.png We have an explanation for all -4 xkcd comics, and only 23 (1%) are incomplete. Help us finish them!]&lt;br /&gt;
&lt;br /&gt;
I'm assuming this is a bug. {{unsigned|Okofish|01:00, 15 September 2015}}&lt;br /&gt;
&lt;br /&gt;
: {{done}} It was a temporary artifact due to recent categorization changes. It's now fixed. Thanks for the quick report :) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 01:14, 15 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion pane missing on comic 1592? ==&lt;br /&gt;
&lt;br /&gt;
After checking the Discussion tab to make sure there ''was'' a Discussion, I thought that someone had removed the &amp;lt;nowiki&amp;gt;{{comic discussion}}&amp;lt;/nowiki&amp;gt; tag, and went into full-page edit to put it back.  But it's there.  Maybe it's just me, maybe it's just temporary, but FYI in case it isn't. [[Special:Contributions/141.101.75.185|141.101.75.185]] 15:06, 19 October 2015 (UTC)&lt;br /&gt;
:Fixed. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:21, 19 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha ==&lt;br /&gt;
&lt;br /&gt;
Captcha not appearing at all. Can't edit pages without turning off security settings (which were set to default). Chrome and &amp;quot;Edge&amp;quot; on Windows 10. Both yell at me about some components of the page being insecure.  15:48, 18 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Same issue with other browsers. reCAPTCHA won't load from an &amp;quot;insecure&amp;quot; resource when the wiki is accessed over HTTPS. [[User:TisTheAlmondTavern|TisTheAlmondTavern]] 15:07, 6 December 2016 (UTC)&lt;br /&gt;
::Oooh, I see. Alright, I'll get to fixing it now I know what the problem is. '''[[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;]] 01:00, 7 December 2016 (UTC)&lt;br /&gt;
Slight bug in the editing panel, when asked what webcomic we're talking about, it cannot be in all caps, it must be strict lowercase, despite appearances on xkcd.com. Could someone take a look at it? [[Special:Contributions/108.162.249.158|108.162.249.158]] 00:54, 5 November 2015 (UTC)&lt;br /&gt;
:It took me several months to figure out that &amp;quot;this wiki&amp;quot; is named &amp;quot;explain xkcd&amp;quot; and not &amp;quot;explainxkcd&amp;quot;. I spent those months answering two questions every time the &amp;quot;what's this wiki's name&amp;quot; question appeared (when I missed the answer, a different question appeared).--[[User:Jojonete|Jojonete]] ([[User talk:Jojonete|talk]]) 09:06, 5 November 2015 (UTC)&lt;br /&gt;
::I was sure both answers were correct, but never attempted to type explainxkcd, just in case. [[Special:Contributions/108.162.221.17|108.162.221.17]] 12:44, 5 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== wiki server clock has drifted - about 13 minutes fast ==&lt;br /&gt;
&lt;br /&gt;
As I type this, it is exactly 07:42:45 UTC. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:55, 14 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And thus timestamps here are 12 or 13 minutes off. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:59, 14 April 2015 (UTC)&lt;br /&gt;
:I see the same thing: 15:41:00 UTC now.... [[User:Nealmcb|Nealmcb]] ([[User talk:Nealmcb|talk]]) 15:54, 23 April 2015 (UTC)&lt;br /&gt;
::Huh. I'll look into it, when I get back home. '''[[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;]] 23:19, 23 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently it's 20 minutes fast. It's 21:00 UTC and it shows 21:20 (UTC). [[User:Xhfz|Xhfz]] ([[User talk:Xhfz|talk]]) 21:20, 14 July 2015 (UTC)&lt;br /&gt;
:Sorry bout the delay, was busy for a long bit, should be fixed now. '''[[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;]] 21:44, 26 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently it's 8 minutes fast. It's 20:56:00 UTC and it shows 21:03 UTC. [[Special:Contributions/108.162.221.17|108.162.221.17]] 21:03, 5 November 2015 (UTC)&lt;br /&gt;
:do we not have ntp on the server or something, gonna reset the clock again when i get back home. '''[[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;]] 00:33, 6 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Happening again: it's 11:33 UTC and the server has 11:48 UTC. [[Special:Contributions/141.101.75.161|141.101.75.161]] 11:49, 11 March 2016 (UTC)&lt;br /&gt;
:Fixed again, and I'm gonna have to check our NTP installation. 06:37, 18 March 2016 (UTC)&lt;br /&gt;
:Alright, changed some things, this shouldn't happen anymore. '''[[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;]] 06:38, 18 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The clock is about 13-14 minutes off again. It's currently 13:49 UTC. –''TisTheAlmondTavern'', 13:36, 17 January 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion template resources apparently missing ==&lt;br /&gt;
&lt;br /&gt;
As co-header (right-margin hugging text) to the Discussion section on all pages (or at least as many as I've just visited - and on multiple browsers, ''just in case''...) I'm getting the following, with the &amp;lt;&amp;gt;-tags being my own descriptive additions:&lt;br /&gt;
 &amp;lt;redlink&amp;gt;File:comment.png&amp;lt;/redlink&amp;gt; &amp;lt;validlink&amp;gt;add a comment!&amp;lt;/validlink&amp;gt; ⋅ &amp;lt;redlink&amp;gt;File:Icons-mini-action refresh blue.gif&amp;lt;/redlink&amp;gt; &amp;lt;validlink&amp;gt;refresh comments!Discussion&amp;lt;/validlink&amp;gt;&lt;br /&gt;
Looks like the PNG and GIF files concerned have been removed, or the links in the Discussion template broken/incorrectly redirected.&lt;br /&gt;
&lt;br /&gt;
(Sidenote: The character between the &amp;quot;add a comment!&amp;quot; and the &amp;quot;File: Icons-mini-action refresh blue.gif&amp;quot; that I've copied here verbatim (so doubtless appears correctly for everyone else who reads this) is an 'I don't have this character on my machine' character, for me, which is obviously entirely my fault for not downloading additional fonts that I'd need.  From cursory investigation, it appears to be essentially the same as &amp;quot;·&amp;quot;, Alt-0183, or HTML code '&amp;amp;amp;middot;', which ''would'' render on my machine and yet (if changed) shouldn't break on those where it currently works.  For your consideration, but not as vital.)&lt;br /&gt;
[[Special:Contributions/141.101.106.161|141.101.106.161]] 06:30, 7 November 2015 (UTC)&lt;br /&gt;
:ETA - Delving around further, [[:Category:Pages with broken file links]] seems to indicate it ''is'' a widespread problem at server-side, and not somehow solely my own (except for the Sidenote issue!).  And suggests a simple way to check that the issue is fixed (when suddenly the category is nowhere near as 'full'), and then discover any related ones that might need fixing (like the special Star Trek Into Darkness alternate version of the Discussion template). [[Special:Contributions/141.101.106.161|141.101.106.161]] 06:57, 7 November 2015 (UTC)&lt;br /&gt;
::Huh. I have a feeling I know what caused this, I'll get right on it. '''[[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;]] 16:23, 7 November 2015 (UTC)&lt;br /&gt;
:::I've seen some more of these cases, e.g. on [[explain xkcd:Community portal]]. I think these images are from Wikimedia Commons, maybe that integration broke somehow? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:33, 7 November 2015 (UTC)&lt;br /&gt;
::::i don't know what is even happening, the images seem to be fine now but they still show up as broken file links '''[[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;]] 02:04, 8 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Update captcha text? ==&lt;br /&gt;
&lt;br /&gt;
The text above the posting captcha says “type the two words” but reCaptcha often doesn't use two, and they're often not words. Example: http://i.imgur.com/TdM5n5O.png&lt;br /&gt;
&lt;br /&gt;
Maybe we could change it to something like “type the text”?&lt;br /&gt;
&lt;br /&gt;
[[User:P1h3r1e3d13|P1h3r1e3d13]] ([[User talk:P1h3r1e3d13|talk]]) 23:44, 2 March 2016 (UTC)&lt;br /&gt;
:So, the reCAPTCHA captchas are entirely provided by Google. If there's an error in it, it's likely Google's fault and a bug report should be sent in that direction instead. '''[[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;]] 00:23, 3 March 2016 (UTC)&lt;br /&gt;
::I noticed that before. It's not a bug in recaptcha, but rather in ConfirmEdit, file ReCaptcha/i18n/en.json to be exact. --[[Special:Contributions/162.158.90.217|162.158.90.217]]&lt;br /&gt;
:::Oh huh, hadn't thought of that. I'll fix that up then. '''[[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;]] 19:45, 3 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Stylesheets not working? ==&lt;br /&gt;
&lt;br /&gt;
It doesn't look like any of the site's CSS is loading for me. I have tried purging, adding useskins to the URL, and clearing my browser's cache, and webpage content remains in Times New Roman with no special styling. Headers and bold spans of text are bold, list items are bulleted, buttons are button-y, templates and my signature display with HTML-&amp;lt;tt&amp;gt;style&amp;lt;/tt&amp;gt;-attribute-level CSS, and so on, but that's the extent of it. Is this a belated April Fools' joke, or has something gone horribly wrong between the servers and my eyes? &amp;lt;span style=&amp;quot;background:#0064de;font-size:12px;padding:4px 12px;border-radius:8px;&amp;quot;&amp;gt;[[User talk:AgentMuffin|&amp;lt;span style=&amp;quot;color:#f0faff;&amp;quot;&amp;gt;~AgentMuffin&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:I made a similar post earlier -- it seems to have vanished down a black hole. I linked these screenshots: [http://i.imgur.com/smN1a45.png] [http://i.imgur.com/qdpxhdY.png]&lt;br /&gt;
:Note that there are no ads either! This could get to problem-level very fast. [[User:KangaroOS|Kangaro]][[User talk:KangaroOS|OS]] 01:28, 5 April 2016 (UTC)&lt;br /&gt;
::There are actually still ads, they're just shoved right at the bottom of the page. mysqld is clocking in at 40% cpu load, and mediawiki seems to be going into fallback mode and skipping stylesheets which is about what I'd expect from an april fools comic. '''[[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;]] 01:31, 5 April 2016 (UTC)&lt;br /&gt;
:::Ah, figured it was some sort of server overslow. For a while there I was getting a 503 error. [[User:KangaroOS|Kangaro]][[User talk:KangaroOS|OS]] 01:36, 5 April 2016 (UTC)&lt;br /&gt;
:::Well, perhaps you don't need another note about this, but I noted the 'stylesheetless' appearance myself, just now.  Except that it ''is'' styled, partially.  (When I choose to view by Style &amp;quot;No style&amp;quot;, it's even more not-Styled!)  Could be because a subset of styles aren't being loaded (so that the ones that ''are'' still loaded can only be identified from their enforced absence), but looks like you have this as much in hand as can be expected, so just FYI... [[Special:Contributions/141.101.98.137|141.101.98.137]] 04:13, 5 April 2016 (UTC)&lt;br /&gt;
::Have you tried switching the server off and back on ? ;-) Jokes apart, are there really so many users continuously polling ? It could be just a case of stale open connections. Really, a reboot might not hurt (although it may kill-off few sessions and you may get some angry posts, but at this point, it might be worth the try) Edit: Sorry, I was messing up the formatting while replying. I'm trying to fix it. But at this point, does it really matter? :P [[Special:Contributions/162.158.255.56|162.158.255.56]] 04:21, 5 April 2016 (UTC)&lt;br /&gt;
:::Alright guys, still having trouble with the load, but I've put a quick temporary hack in place to get the css working again for now. Fonts are a little off, I'll deal with that soon. '''[[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;]] 08:09, 5 April 2016 (UTC)&lt;br /&gt;
::::Did a little more work on things, styles should be working again but it's not great on the back end. I'm going to do some rooting around to see what went wrong. '''[[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;]] 00:07, 6 April 2016 (UTC)&lt;br /&gt;
:::::Cool.. This is pretty good. We're almost there.. The only things I can notice that are off are - (1) Category list at the end of the page (2) Contents block at the beginning of the page and (3) Edit buttons for individual sections. By the way, I'm curious, what exactly was broken ? I didn't expect you'd have to fix things here. I expected that since the issue was caused by excess server load, it would return back to normalcy automatically once things settle down a bit in couple of days after the offending comic was more or less explained. [[Special:Contributions/162.158.255.56|162.158.255.56]] 03:32, 6 April 2016 (UTC)&lt;br /&gt;
::::::A script responsible for picking user preferences and integrating css from pages like [[Mediawiki:common.css]] was failing to complete because of server load, so I gave it a helping hand and just had it insert a static stylesheet instead. I almost certainly missed a few spots though, because the wiki does not look right. '''[[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:43, 6 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
(resetting indent) Yes, things are still off. The text &amp;quot;Jump to: navigation, search&amp;quot; is at the top of every page, but it's useless because it links to stuff already at the top of the page. Edit summaries aren't italicized, the edit boxes don't use the whole window width, links are underlined, section edit links are too big, etc. I put the Wayback Machine to good use, and found the below set of archived pages, all using the proper style. Compare them with the current appearances of the pages, and you should see most, if not all, of the issues I've seen.&amp;lt;br&amp;gt;[http://web.archive.org/web/20160402151417/http://www.explainxkcd.com/wiki/index.php/Main_Page Main Page] | [http://web.archive.org/web/20150326134736/http://www.explainxkcd.com/wiki/index.php/Special:Contributions/NealCruco My contributions] | [http://web.archive.org/web/20150326170626/http://www.explainxkcd.com/wiki/index.php?title=1486:_Vacuum&amp;amp;action=edit The &amp;quot;edit&amp;quot; page for comic 1486] --[[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 21:50, 7 April 2016 (UTC)&lt;br /&gt;
::Is here nothing to be done about the missing styles? The tables still look horrible and there is not help when editing, for instance for signature etc. Colapsing of tables etc. also won't work which is a mess for some of the long explanations and tables [[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 11:56, 18 April 2016 (UTC)&lt;br /&gt;
HotCat also seems to be not working for adding categories. {{User:17jiangz1/signature|13:18, 25 April 2016}}&lt;br /&gt;
:Yeah, load.php is failing so all gadgets and user scripts are unavailable. :-( [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 14:42, 25 April 2016 (UTC)&lt;br /&gt;
::Alright, figured it out. It was a deal with file permissions, not sure how those got changed on April 1st. '''[[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;]] 18:59, 17 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic navigation buttons ==&lt;br /&gt;
&lt;br /&gt;
You know, the buttons that look like the ones on the xkcd site. Shouldn't they also highlight like the xkcd site? I thought maybe it was due to the above CSS issue, but the links to archive.org make it seem like it's just never worked.&lt;br /&gt;
&lt;br /&gt;
It just seems to me that, if we're going to go that far in mimicking the actual buttons, we should probably also mimic their a:hover settings. Shut off the box shadow, change the background to white, and the link color to #6E7B91.&lt;br /&gt;
&lt;br /&gt;
I've tested the following CSS, and it appears to work:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
li.plainlinks:hover, .no-link-underline &amp;gt; li:hover {&lt;br /&gt;
 	background-color: #FFF !important;&lt;br /&gt;
	box-shadow: none !important;&lt;br /&gt;
	-moz-box-shadow: none !important;&lt;br /&gt;
	-webkit-box-shadow: none !important; &lt;br /&gt;
}&lt;br /&gt;
li.plainlinks:hover &amp;gt; a &amp;gt; span, .no-link-underline &amp;gt; li:hover &amp;gt; a &amp;gt; span {&lt;br /&gt;
	color: #6E7B91 !important; &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Trlkly|Trlkly]] ([[User talk:Trlkly|talk]]) 09:14, 2 May 2016 (UTC)&lt;br /&gt;
:Seems like a decent addition. Thanks! '''[[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;]] 18:52, 1 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha trouble ==&lt;br /&gt;
&lt;br /&gt;
For about an hour, I wasn't able to edit a page or create an account when I was trying to, because the captcha was missing. I'm not sure if it was problem on this site or captcha but I thought I'd mention it.&lt;br /&gt;
--[[User:Anqied|Anqied]] ([[User talk:Anqied|talk]]) 08:34, 11 June 2016 (UTC)&lt;br /&gt;
:Recaptcha appears to work for me currently. Does it work now? It seems like they may have just gone down temporarily. '''[[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;]] 20:52, 11 June 2016 (UTC)&lt;br /&gt;
::I'm not certain this is the same issue, but I was just having a problem with the captcha for unregistered users trying to edit a page. I figured out that it's because you were trying to serve the captcha through HTTP even though the page was on HTTPS, so my browser was blocking the captcha. Changing to HTTP &amp;quot;fixed&amp;quot; the issue, but that shouldn't be the solution. [[Special:Contributions/108.162.215.187|108.162.215.187]] 16:45, 18 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== wrong IP ==&lt;br /&gt;
&lt;br /&gt;
[http://www.explainxkcd.com/wiki/index.php?title=632:_Suspicion&amp;amp;curid=3946&amp;amp;diff=122229&amp;amp;oldid=100180 My edition] was attributed to 141.101.104.60, whereas my real address is 88.156.226.213 according to [https://ipinfo.io]. Wikimedia sites (Wikipedias, Wiktionaries...) recognize my IP address properly. Someting strange is going on here. [[Special:Contributions/141.101.104.71|141.101.104.71]] 22:40, 21 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just a heads up that your website is incorrectly identifying the IP address of visitors as being from the CloudFlare server that is serving the page content to them. It would be best practice if you could explicitly look for the field &amp;quot;REMOTE_ADDR&amp;quot; rather than &amp;quot;X-FORWARDED-FOR&amp;quot; as the former is unaffected by the use of intermediate proxies.&lt;br /&gt;
PS My IP address should begin with 131.111. IP addresses beginning with 141.101 belong to Cloudflare London. [[Special:Contributions/141.101.98.5|141.101.98.5]] 21:08, 21 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
* This appears to still be an issue.  I just [http://www.explainxkcd.com/wiki/index.php?title=Talk:1787:_Voice_Commands&amp;amp;curid=19860&amp;amp;diff=133917&amp;amp;oldid=133916 posted] from [[Special:Contributions/172.72.47.40|172.72.47.40]], my work place and it's showing as [[Special:Contributions/108.162.238.11|108.162.238.11]].  Thanks.&lt;br /&gt;
&lt;br /&gt;
* FYI I just created this account and the &amp;quot;email address confirmation&amp;quot; email I received said the account was created by a Cloudflare IP (162.158.107.199), not my own. [[User:ExcarnateSojourner|ExcarnateSojourner]] ([[User talk:ExcarnateSojourner|talk]]) 15:09, 4 July 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha does not appear ==&lt;br /&gt;
&lt;br /&gt;
I am not a registered user (I just haven't bothered to make an account), so I have to complete a Captcha before saving any of my edits. However, I've found numerous times that the captcha does not show up when I hit [Save page]. The line of text introducing it (&amp;quot;To help protect against automated edit spam, please type the word you see in the box below:&amp;quot;) shows up, but the no actual captcha and thus no saved edits. '''Is this a known issue with Chrome?''' I managed to circumvent it by using IE (I assure you, it was the only other browser available), but I would much prefer to be able to edit ''explain xkcd'' pages in Chrome, my usual browser. {{unsigned ip|108.162.220.17}}&lt;br /&gt;
:What plugins do you have installed on chrome? Do you have Javascript enabled? I'll see what can be done if you have them off. '''[[User:D?avidy22|&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;]] 20:45, 20 July 2016 (UTC)&lt;br /&gt;
::I just figured out the problem and successfully edited a page.  I too tried IE after Chrome but still encountered the issue... to my consternation I noticed a new icon in the address-bar, 'Blocked content'.  (Apparently recaptcha is treated similarly to a pop-up.)  Interacting with this new button made the captcha appear.  I am in Chrome adding this comment, and after finding the similarly-functioning/corresponding button here, all is well [[Special:Contributions/108.162.237.247|108.162.237.247]] 18:39, 2 August 2016 (UTC)&lt;br /&gt;
::Hmph, I am likely a completely different user from the foregoing, but our IP addresses are similar and both reported as from Cloudflare in TX. [[Special:Contributions/108.162.237.247|108.162.237.247]] 18:42, 2 August 2016 (UTC)&lt;br /&gt;
::I would like to address this and also point out this is the only site where I've run into this problem; other wiki-based sites can load captcha fine. According to Chrome it's blocked because it's an &amp;quot;unsafe script&amp;quot;. [[Special:Contributions/141.101.107.84|141.101.107.84]] 08:54, 4 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wanted files ==&lt;br /&gt;
&lt;br /&gt;
[[Special:WantedFiles]]: 41 file is linked but nonexistent. &lt;br /&gt;
&lt;br /&gt;
Some on talk pages, user pages and project pages, but here is a list of those in main namespace:&lt;br /&gt;
# File:Apatosaurus scale mmartyniuk wiki.png&lt;br /&gt;
# File:Apidae - Eucera sp. (male).JPG&lt;br /&gt;
# File:Louisae.jpg&lt;br /&gt;
# File:Wet kookaburra 6674 Crop Edit.jpg&lt;br /&gt;
# File:MQ-1 Predator unmanned aircraft.jpg&lt;br /&gt;
# File:Bee orchids, Aller Brook Local Nature Reserve - geograph.org.uk - 833516.jpg&lt;br /&gt;
# File:Synhalonia nest 1.jpg&lt;br /&gt;
# File:Butterfly Voters View.jpg&lt;br /&gt;
# File:Fusca estacionado.jpg&lt;br /&gt;
# File:Ophrys apifera flower1.jpg&lt;br /&gt;
# File:Galilean moon Laplace resonance animation.gif&lt;br /&gt;
# File:PalmCellTower.jpg&lt;br /&gt;
# File:746 telephone in red.JPG&lt;br /&gt;
# File:Candidate Higgs Events in ATLAS and CMS.png&lt;br /&gt;
# File:Tommy Wiseau.jpg&lt;br /&gt;
# File:Google maps auto.jpg&lt;br /&gt;
# File:Velociraptor dinoguy2.jpg&lt;br /&gt;
# File:Acrocanthosaurus skeleton (1).jpg&lt;br /&gt;
# File:Vraptor-scale.png&lt;br /&gt;
# File:Alces alces elan trophee chateau Tanlay.jpg&lt;br /&gt;
# File:DBCooper.jpg&lt;br /&gt;
# File:Rick Astley - Pepsifest 2009.jpg&lt;br /&gt;
# File:Anonymous emblem.svg&lt;br /&gt;
# File:Eas new.svg&lt;br /&gt;
# File:John Cage and Michael Bach in Assissi 1992.jpg&lt;br /&gt;
I could not find why they were deleted and it's hard for me to argue for their presence in the articles. Being a newbie here, I would like to ask those who knows better to either undelete files, or upload them again, or delete file mentions from the explanations. Thanks --[[User:Ата|&amp;lt;span style=&amp;quot;color:SteelBlue&amp;quot;&amp;gt;Ата&amp;lt;/span&amp;gt;]]&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Ата|&amp;lt;span style=&amp;quot;color:#80A0FF&amp;quot;&amp;gt;(talk)&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 15:47, 8 August 2016 (UTC)&lt;br /&gt;
:I tend to clean up after myself, don't recognise these file names. I believe these happen when files get moved, feel free to cut dead file links wherever you find them if you find them unnecessary.'''[[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;]] 02:38, 10 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[827]]/[[1721]]: Business Idea ==&lt;br /&gt;
&lt;br /&gt;
See [[1721#Trivia]]. Randall has accidentally named both 1721 and 827 &amp;quot;Business Idea&amp;quot;. He fixed it by renaming 827 to &amp;quot;My Business Idea&amp;quot;. I tried to reproduce by renaming the file and wiki page for 827, but it now shows the old comic on both pages. Maybe CloudFlare caching? And idea (that's not a business idea) to fix this? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]])&lt;br /&gt;
:Cloudflare takes a little time to update changes to an image. For immediate results, you can create an image under a different name and use that while you wait for the old one to update. Otherwise, it should update within a few hours. Is it good for you now? '''[[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;]] 14:48, 18 August 2016 (UTC)&lt;br /&gt;
::Yes, it was resolved after a few hours. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 20:25, 18 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mobile CSS ==&lt;br /&gt;
&lt;br /&gt;
I've accessed this Wiki on my mobile device more often than previously and I couldn't find any discussion about this. Honestly, 50% of the reasons I'm adding this topic is about the discussion, the rest is about making it easier for people with narrower screens.&lt;br /&gt;
I understand that I am a new member on this Wiki and that altering [[Mediawiki:Common.css]] has site-wide effects (and I'm sure that there are some templates that won't agree with some of the options we have, even some tables, such as the one on [[893: 65 Years#Trivia]], will break a very narrow design).&lt;br /&gt;
&lt;br /&gt;
OK. Let me just ramble on about this, then. =)&lt;br /&gt;
There are some obvious (but not necessarily easier) options for mobile devices. [https://www.mediawiki.org/wiki/Manual:Mobiles,_tablets_and_responsive_design MediaWiki] lists a few Skins and Extensions. Not having ever had access to a Wiki's server, I have no idea how nerve-racking that is (or if it even makes sense for this Wiki). Even more obvious to some - and even harder to implement - is a mobile app (that I wouldn't use anyway).&lt;br /&gt;
&lt;br /&gt;
So, to bridge the time until maybe something more effective comes along, we ''could'' try to add some CSS ourselves. I'm no expert. But here are my thoughts.&lt;br /&gt;
*This is about all devices with narrow screens, not just phones. Let's say anything under 600px width is considered narrow.&lt;br /&gt;
*Most obviously, the font size should be affected. This has negative consequences for anything with fixed font size. And anything we forget. Basically, the sidebar, the search and anything else on top of each page can be massively smaller depending on the screen and fixing that won't be as easy.&lt;br /&gt;
*Of course we could disregard the sidebar, or rather, push it to the bottom (which is easy, it's artificially placed on the left instead of the bottom). There are a number of reasons why a lot of people wouldn't want that. One of those reasons is that the ads would basically disappear for anyone who doesn't scroll down. We would have to figure out where else we can put it, on the top maybe. On the plus side, we could have the entire width of the screen just for the article.&lt;br /&gt;
*Another thing that breaks the design regularly: comic images. We could make them fit. The navigation might be more challenging.&lt;br /&gt;
*There's a whole lot of paddings and margins to get rid of.&lt;br /&gt;
*Maybe make the search box a lot bigger?&lt;br /&gt;
&lt;br /&gt;
A short snippet for the comic images and for the font:&lt;br /&gt;
&lt;br /&gt;
 @media handheld,screen and (max-width: 600px),screen and (max-device-width: 600px){ /* because some mobile browsers like to work with a higher resolution than the resolution of the screen */&lt;br /&gt;
 &lt;br /&gt;
 #bodyContent{&lt;br /&gt;
 font-size:initial; /* resetting font to full size */&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 td &amp;gt; img{ /* maybe add a class for the table in [[Template:comic]] */&lt;br /&gt;
 display:block;&lt;br /&gt;
 margin:auto;&lt;br /&gt;
 max-width:100%; /* make image fit into box */&lt;br /&gt;
 height:auto;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
I don't know... What do you think?&lt;br /&gt;
Oh, also, Mediawiki says this can be added to [[Mediawiki:Mobile.css]] but I guess that is for extensions? We'd probably have to add that to [[Mediawiki:Common.css]] if we ever want to add it.&lt;br /&gt;
[[User:Ret Samys|Ret Samys]] ([[User talk:Ret Samys|talk]]) 16:21, 15 September 2016 (UTC)&lt;br /&gt;
:Getting on a plane soon, but I'll take a look at this when I get off and get moved in again. '''[[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;]] 14:07, 16 September 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== HTTPS Links Back to XKCD Interfere with Random Button ==&lt;br /&gt;
&lt;br /&gt;
''(I've moved this from &amp;quot;Proposals&amp;quot; to here, now realising this is the proper location.)''&lt;br /&gt;
&lt;br /&gt;
The Links back to the comics that are present just above the comic itself on the wiki pages (and adjacent to the next and previous links) provides an HTTPS link back to XKCD. However, this interferes with users who want to click that link, and then click &amp;lt;code&amp;gt;random&amp;lt;/code&amp;gt; - because &amp;lt;code&amp;gt;c.xkcd.com&amp;lt;/code&amp;gt; does NOT support HTTPS, and thus clicking &amp;lt;code&amp;gt;random&amp;lt;/code&amp;gt; after returning to xkcd from explainxkcd via the button on a comic's article does not work. These links should be switched back to HTTP.&lt;br /&gt;
&lt;br /&gt;
--[[User:9000 volts|9000 volts]] ([[User talk:9000 volts|talk]]) 22:53, 24 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:What makes you suspect &amp;lt;code&amp;gt;c.xkcd.com&amp;lt;/code&amp;gt; does not support SSL? It features a perfectly valid wildcard certificate from GeoTrust (currently valid from Dec 14 00:00:00 2016 GMT, so it should already have affected you), although it's different from the multi-site certificate from Fastly used on the comic and what-if.xkcd.com and, yet again, different from the Let's Encrypt ones used on the blag and store.&lt;br /&gt;
&lt;br /&gt;
:On the other hand, there is a compelling argument for HTTP links: Most interactive comics break with HTTPS. –''TisTheAlmondTavern'', 14:19, 17 January 2017 (UTC)&lt;br /&gt;
::I can't reproduce the issue with random comics, but the benefits of using SSL for links to a site that stores no user data probably don't outweigh the issues that some people seem to be having. Changed. '''[[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;]] 22:34, 10 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Retry for a live version&amp;quot; and stuff not responding ==&lt;br /&gt;
&lt;br /&gt;
Every now and then, I'd just be browsing around the site, then all of a sudden I'd run into an issue with it saying that there was an error with the explainxkcd.com host and that I would need to wait for the servers to restart. This is happening rather often for me, but goes away quickly. Sometimes, it happens on my own wiki pages too... weird. Other times, things would just freeze. Is it something on my end, or is it with the site? --[[User:JayRulesXKCD|JayRulesXKCD]] ([[User talk:JayRulesXKCD|talk]]) 14:05, 5 January 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Support for timezones? ==&lt;br /&gt;
&lt;br /&gt;
I live in the timezone PST, and because of that, the clock seems to be ahead of my time by about 7 hours and 40 minutes. Can someone add support for different timezones?&lt;br /&gt;
For example, at my time of posting, it is 7:56 PM on March 8, 2017. The time the wiki thinks it is is shown on my signature: [[User:625571b7-aa66-4f98-ac5c-92464cfb4ed8|625571b7-aa66-4f98-ac5c-92464cfb4ed8]] ([[User talk:625571b7-aa66-4f98-ac5c-92464cfb4ed8|talk]]) 03:40, 9 March 2017 (UTC)&lt;br /&gt;
:You can actually set your own time zone. Go to Preferences-&amp;gt;Date and Time, and there should be a time offset option for you to pick your time zone. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:36, 9 March 2017 (UTC)&lt;br /&gt;
::The thing is, I do have my time zone set to PST, but on the wiki it is still showing up as the wrong time. [[User:625571b7-aa66-4f98-ac5c-92464cfb4ed8|625571b7-aa66-4f98-ac5c-92464cfb4ed8]] ([[User talk:625571b7-aa66-4f98-ac5c-92464cfb4ed8|talk]]) 15:24, 9 March 2017 (UTC)&lt;br /&gt;
:::Oh, the timestamps recorded in signatures are in UTC for everyone. That doesn't change, because it makes it easier to follow the timeline of a conversation in a talk page. '''[[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;]] 17:24, 9 March 2017 (UTC)&lt;br /&gt;
::::Uhhh, the timestamp isn't UTC at all. My latest BOT upload was 06:02, 8 March 2017 CET or 05:02, 8 March 2017 UTC and it is recorded here as 04:45, 8 March 2017. So we still have an offset 17 minutes to the past. That's an old problem.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:33, 9 March 2017 (UTC)&lt;br /&gt;
:::::It is UTC, server inaccuracy doesn't change the time zone, it just makes it inaccurate. '''[[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;]] 19:13, 9 March 2017 (UTC)&lt;br /&gt;
::::::And even if you don't like me for this: The server time is currently UTC-00:17 and not UTC. This odd offset confuses users. But I know nobody can change this.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:36, 9 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mailserver-problem ==&lt;br /&gt;
&lt;br /&gt;
Hello, &amp;lt;br/&amp;gt;&lt;br /&gt;
I tried to reset my password today, but there is a problem with your mail-server: The sender-adress of your password-reset-mail is expla0@vps.explainxkcd.com, but the (sub-)domain vps.explainxkcd.com does not exists, and so the eMail is rejected by my mail-server (and most others too). Could that please be fixed? Thank you very much. --DaB.&lt;br /&gt;
&lt;br /&gt;
== When did InstantCommons get disabled? ==&lt;br /&gt;
&lt;br /&gt;
I was just about to add some photos of the ISS transiting the sun to [[1828|today's explanation]], but saw that it's no longer possible to just enter the names of {{w|c:|Wikimedia Commons}} photos and for them to render. I know of at least one explanation&amp;amp;mdash;[[1400]]&amp;amp;mdash;that previously had such images, but now just has redlinks. I presume that at some point someone must have disabled {{w|mw:InstantCommons|$wgUseInstantCommons}} in the config settings. May I ask what the reason for that was? And is there any chance that that could be reverted? Obviously there aren't a lot of articles where it makes sense to have Commons images up, but IMHO it's a useful feature to have for the rare occasion where it makes sense, like with today's comic. [[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 21:20, 24 April 2017 (UTC)&lt;br /&gt;
:'''Solved.''' You now can embed pictures from Commons like local files. The link &amp;lt;nowiki&amp;gt;[[File:DBCooper.jpg|thumb|Cooper]]&amp;lt;/nowiki&amp;gt; shows the picture from Commons because it doesn't exist here. There is no need to use a template. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:57, 25 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia template stopped working ==&lt;br /&gt;
&lt;br /&gt;
Some time ago the template used for links to Wikipedia stopped working correctly.  If you see here link to Halloween on Wikipedia, it works again:&lt;br /&gt;
{{w|Halloween}}. --[[User:JakubNarebski|JakubNarebski]] ([[User talk:JakubNarebski|talk]]) 22:21, 25 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Known issue, there's currently an anon doing boring vandalism. --[[Special:Contributions/108.162.241.172|108.162.241.172]] 22:37, 25 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CAPTCHA does not work for HTTPS visitors ==&lt;br /&gt;
&lt;br /&gt;
I am a fervent believer in encrypting everything (I am the crypto nut in [[1269: Privacy Opinions]]), and have configured the NoScript plugin to force the use of HTTPS instead of HTTP for all sites that aren't on a special list in my configs. Hence, I tend to visit sites on HTTPS that most people visit on unencrypted HTTP, discovering all the bugs in people's HTTPS implementations in the process...and this site is not exempt from the bugfinding.&lt;br /&gt;
&lt;br /&gt;
In order to edit pages, you need to enter a CAPTCHA. However, the script that makes this captcha work is fetched from Google over unencrypted http (the src tag in the script specifies http: not https:). When I visit this site over HTTPS, the use of active content served over unencrypted HTTP onto an encrypted page causes Firefox to have a spasm and block the script. Since Google fully supports HTTPS, the script's src tag should just be changed to say https: instead of http:, and that SHOULD fix it. Better yet, omit the protocol at all, and do something like:&lt;br /&gt;
&lt;br /&gt;
src=&amp;quot;//www.google.com/recaptcha/(rest of url)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Most modern browsers will interpret that as &amp;quot;fetch www.google.com/recaptcha/(rest of url) over the same protocol used to serve this page.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
(Sadly, NoScript is not smart enough to fix this by itself and just change the script's src to https: client-side...)&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/162.158.79.89|162.158.79.89]] 11:12, 20 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
The CAPTCHA also doesn't work for https while using Chrome. 01 September 2017&lt;br /&gt;
&lt;br /&gt;
== Deprecation of reCAPTCHA v1 ==&lt;br /&gt;
&lt;br /&gt;
The wiki currently uses reCAPTCHA v1 to validate users as human, which [https://developers.google.com/recaptcha/docs/faq#what-happens-to-recaptcha-v1 beginning in November will show public deprecation notices] and stop working altogether on March 31, 2018.&lt;br /&gt;
&lt;br /&gt;
Are there already plans to migrate to reCAPTCHA v2 or a different CAPTCHA algorithm? –[[User:TisTheAlmondTavern|TisTheAlmondTavern]] ([[User talk:TisTheAlmondTavern|talk]]) 20:05, 31 October 2017 (UTC) (wiki clock is several minutes late again, BTW)&lt;br /&gt;
&lt;br /&gt;
:I do intend to update the CAPTCHA, I got the email notice from Google. I've been away from the site for longer than I'd like, been busy but it looks like a bunch of stuff has piled up while I was gone. I'll try to fix what I can with the time I have. '''[[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;]] 03:38, 12 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Any update on this? It has &amp;lt;6 weeks of life left, and the user messaging has just got angrier. [[Special:Contributions/162.158.155.26|162.158.155.26]] 09:22, 20 February 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::10 days left. I wonder what happens then. Right now, it just says &amp;quot;V1 SHUTDOWN ON 2018-03-31&amp;quot; and expects me to type it as an answer. {{unsigned ip|172.68.110.46}}&lt;br /&gt;
&lt;br /&gt;
::::You can hit the refresh button and it will display an actual catch.  4 days before they shut it down. [[User:TheMageKing|TheMageKing]] ([[User talk:TheMageKing|talk]]) 12:22, 27 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Either the kludge of simply typing the message about shutdown still works, or the Captcha system is just not working: I'm not autoconfirmed here but I was able to edit today, 9 days after v1 presumably went &amp;quot;poof&amp;quot;. [[User:Yngvadottir|Yngvadottir]] ([[User talk:Yngvadottir|talk]]) 18:12, 9 April 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
The new reCAPTCHA v2 is now online. I apologize for the delay but many updates were required and I tried to keep the server downtime as short as possible. [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
== RSS bot stopped? ==&lt;br /&gt;
&lt;br /&gt;
The master RSS feed only goes up to 1912, although the wiki is already up to 1914. --[[Special:Contributions/141.101.105.18|141.101.105.18]] 11:20, 11 November 2017 (UTC)&lt;br /&gt;
:Sorry, been busy, the feed should be up and running again. '''[[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;]] 03:38, 12 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha doesn't work on my browser ==&lt;br /&gt;
&lt;br /&gt;
I can't make any edits to the comic pages because the captcha simply doesn't appear when I'm trying to edit the comic pages. {{unsigned|WilliamBrennan}}&lt;br /&gt;
:Please check your add blockers and activate JavaScript. [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hi &amp;amp; Thanks heaps! I finally created an account after years of pleasurable &amp;amp; enlightening explanations. It took me over 5 minutes to get past the Captcha, and I've seen a few in the last week registering for sites such as XDA-developers and the like. Not sure how it all works but it feels like it's set to &amp;quot;ultra-difficult&amp;quot; or some-such...and this is the place where things are *easy* for *stupid people* like me ;) Cheers &amp;amp; thanks again {{unsigned|Munchywok}}&lt;br /&gt;
:The Captcha is from Google (Big Brother...) and based on an sophisticated software in which you sometimes even don't have to solve it at all when it is convinced that you are a human. But it depends on your browser installation, especially your add ons. My best experience is using Google Chrome without any extensions. Firefox with extensions is the hell. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 09:25, 15 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== New High Resolution comics ==&lt;br /&gt;
&lt;br /&gt;
I've noticed Randall has been making the comics higher resolution to look good on HiDPI/Retina displays. But the copies on ExplainXKCD are the old low resolution copies.&lt;br /&gt;
&lt;br /&gt;
Perhaps we'll have to go through at some point and update these? {{unsigned ip|162.158.75.58}}&lt;br /&gt;
:I am aware of this. Randall started to provide two different resolutions at standard comics more than a year ago, and he also provides the larger resolutions to older comics since than. Technically the image tag provides links to two pictures and the browser decides based on the screen resolution what is shown. Since this wiki is now at the latest version the use of [https://www.mediawiki.org/wiki/Manual:$wgResponsiveImages $wgResponsiveImages] may be possible. But this has to be tested first. Stay tuned... [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Should the HTTP urls redirect to HTTPS? ==&lt;br /&gt;
&lt;br /&gt;
Not sure if this has been mentioned before, but shouldn't the HTTP urls be redirecting to HTTPS? Right now, the HTTP and HTTPS endpoints seem to have different login states, which is possibly confusing. I was stumped for a long time on why I couldn't login to my account, because I kept getting the error message &amp;quot;There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Go back to the previous page, reload that page and then try again.&amp;quot; And then I noticed the &amp;quot;Use secure connection&amp;quot; button, and when I clicked it, it took me to the HTTPS site where I was already logged in! But even now, if I go to an HTTP url, I'm still logged out there. [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 00:43, 21 August 2018 (UTC)&lt;br /&gt;
:Of course HTTP and HTTPS are different endpoints. Login via HTTPS and your credentials are encrypted and this will be never converted into plain text for HTTP. And I just successfully tested both connections with Google Chrome. Maybe we should redirect always to HTTPS like xkcd does, right now it's just your choice. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:46, 21 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Ah, I see. If I log in from the HTTP site, I'm logged in on both the HTTP and HTTPS sites. But if I login from the HTTPS site, then I'm only logged in on the HTTPS site, and not on the HTTP site. Furthermore, if I'm logged into the HTTPS site and I try to login from the HTTP site, I get the error message that I quote from above. Fair enough.&lt;br /&gt;
&lt;br /&gt;
::I guess one contribution to my confusion was the fact that the HTTPS site doesn't have the green padlock in Chrome. That would have made the difference between the HTTPS and HTTP site a bit more obvious. (I rarely type in the entire URL directly; I usually just let the Chrome address bar autocomplete do its job... and unfortunately that autocomplete takes me to the HTTP site, and I keep forgetting about that.) Right now, on any HTTPS page here, Chrome still says that it's insecure: &amp;quot;Attackers might be able to see the images you're looking at on this site and trick you by modifying them.&amp;quot; Firefox says something similar: &amp;quot;Parts of this page are not secure (such as images).&amp;quot; Perhaps someone should look into that? (I think it might be the ad image.) [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 03:09, 23 August 2018 (UTC)&lt;br /&gt;
:::Thanks for your remarks. I'm aware of this but the site isn't insecure, only a few local images and some from wikimedia are hard coded to a http link. It's not much so I'll fix it soon.&lt;br /&gt;
:::In general every http request should be redirected to https, but that's not trivial at our current environment. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:35, 23 August 2018 (UTC)&lt;br /&gt;
::::It took some time to find all the places of hard coded images via http (insecure) but now you should see the green secure remark in your browser when logging in via https. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 13:50, 24 August 2018 (UTC)&lt;br /&gt;
:::::in my holy opinion at least the login page should only be served securely. people are notoriously bad at not-reusing-passwords. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 12:23, 10 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just noting that basically every major site out there redirects from HTTP to HTTPS (including http://en.wikipedia.com, http://xkcd.com, http://stackoverflow.com, and even other wiki communities like http://wiki.puella-magi.net, http://en.touhouwiki.net/wiki/Touhou_Wiki, and http://wiki.documentfoundation.org). So it would really cool if we could get that redirect action happening on this site, too :) I was browsing the site today and I was just struck once again by how odd it was that I wasn't logged in, until I remembered that I was on the HTTP site, not the HTTPS site. A real user experience annoyance, if you ask me. [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 21:34, 19 October 2018 (UTC)&lt;br /&gt;
:Of course you're right. I still have other issues but this will be done soon. Stay tuned... --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:08, 20 October 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha too picky ==&lt;br /&gt;
&lt;br /&gt;
I just had to solve the &amp;quot;select all street signs&amp;quot; Captcha at least 10 times in a row. I never know when/whether to include slivers, backs of signs, sign posts, walk/wait lights. Captcha already doesn't follow my definition of street sign (I only call the sign that has the street name a &amp;quot;street sign&amp;quot;, but I realize what I call &amp;quot;road signs,&amp;quot; Captcha also calls &amp;quot;street signs&amp;quot; and I can adjust for that. But I haven't figured out the other issue yet, and I suspect Captcha is dinging me on choosing slivers. But that's only a guess, since it never tells you what you got wrong, it just gives you another Captcha. {{unsigned|Thisisnotatest}}&lt;br /&gt;
:My advice is installing Google Chrome and it works fine. Since that Captcha software is also from Google (Big Brother...) I believe that's on purpose. Firefox is the hell as you described; I'm not sure how it works at MS IE/Edge. In general you have to select not less than three and not more than four squares. But on Firefox, even when it seems definitely to be correct, the chance of getting an error message is more than 80%. You probably use FF. Nonetheless right now there are no other adequate Captcha tools supported by Mediawiki, the software this Wiki runs on. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:57, 27 August 2018 (UTC)&lt;br /&gt;
:I second this. Big Brother's Captchas on Firefox are nearly unsolvable (granted, I'm browsing with JS off and blocking 3rd party cookies). And recaptcha requires 1) JavaScript and 2) a connection to google. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 12:23, 10 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cannot create a user page ==&lt;br /&gt;
&lt;br /&gt;
i have tried to make a user page for myself and cannot seem to do it, i'm sorry if this has been addressed already, but i couldn't find it. [[User: Nintendo Mc]] ([[User talk:Nintendo Mc|talk]]) 13:07, 28 September 2018 (UTC)&lt;br /&gt;
:New user don't have the rights. Do some more edits and wait a few days until you can create new pages. Your user page is created by me for now. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 15:00, 28 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::'''Good Question!''' is there some place '''that everyone''' [who is cool] '''can find,''' that explains '''how many''' edits one has to do (and/or, '''how long''' one has to wait) in order to cause the&amp;lt;blockquote&amp;gt;[...] but you do not have permission to create this page.&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
::'''[error] message''' to ... '''&amp;quot;no longer&amp;quot; appear,''' when some limitation or rule is no longer blocking or &amp;quot;preventing&amp;quot; allowing creation -- by that user -- of his own '''&amp;quot;User:&amp;quot;''' page? (OR ... of ''her'' own '''&amp;quot;User talk:&amp;quot;''' page?) &lt;br /&gt;
&lt;br /&gt;
::I have done [https://www.explainxkcd.com/wiki/index.php/Special:Contributions/Mike_Schwartz very few edits] here, but ... a couple of them were almost '''3 years ago.''' &lt;br /&gt;
&lt;br /&gt;
::For what it's worth (FWIW), '''I did not plan to say much''' on my &amp;quot;User:&amp;quot; page here. Probably something like:  &lt;br /&gt;
::::This user is not a frequent flyer here on this Wiki (at &amp;quot;explainxkcd&amp;quot;); ...but he has done [https://en.wikipedia.org/wiki/Special:Contributions/Mike_Schwartz a 4-digit number of edits] on ''other'' Wikis ...mainly [https://en.wikipedia.org/wiki/Main_Page English Wikipedia] (&amp;quot;See also&amp;quot; his [https://en.wikipedia.org/wiki/User:Mike_Schwartz &amp;quot;User:&amp;quot; page] there.) &lt;br /&gt;
&lt;br /&gt;
::&amp;lt;big&amp;gt;&amp;lt;big&amp;gt;Any comments?&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt; Thanks for listening. --[[User:Mike Schwartz|Mike Schwartz]] ([[User talk:Mike Schwartz|talk]]) 07:43, 7 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::According to [[explain xkcd:Community portal/Admin requests#Permission request|here]] and [[:explain xkcd:Autoconfirmed users]], you need to accumulate 10 edits (as well as your account being active for at least 3? or 7? days), then you become an &amp;quot;autoconfirmed user&amp;quot; and gain the [[Special:ListGroupRights|right]] to create pages.  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 02:09, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Do you know if only edits count, or if talk contributions count too? [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:26, 19 June 2024 (UTC)&lt;br /&gt;
::::Wait. On [[:explain xkcd:Autoconfirmed users]] it says 50 edits, not 10. [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:51, 26 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Accessibility issues ==&lt;br /&gt;
&lt;br /&gt;
[First post - hello, everyone!]&lt;br /&gt;
&lt;br /&gt;
I have 15 years of experience of using MediaWiki, and have been heavily involved in some of the accessibility work on Wikipedia.&lt;br /&gt;
&lt;br /&gt;
When we use colons (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;), semicolons (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;), and asterisks (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;) to indent dialogue, discussions, etc we actually cause MediaWiki to generate HTML lists.&lt;br /&gt;
&lt;br /&gt;
If we leave a bank line between indented lines/ paragraphs, we cause the start of a new HTML list.&lt;br /&gt;
&lt;br /&gt;
Since the start of each list is read out by the kind of software used by (for example) people with severe visual impairments, this generates barrier to their use of the site. &lt;br /&gt;
&lt;br /&gt;
The solution is to not leave blank lines; to always indent replies by just one step; and to maintain consistency in the type of character used.&lt;br /&gt;
&lt;br /&gt;
You can see examples and more explanation at {{w|Wikipedia:Manual of Style/Accessibility#Lists}}&lt;br /&gt;
&lt;br /&gt;
Please consider adopting Wikipedia's recommended best practice for such lists, on this site. &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pigsonthewing|Andy Mabbett]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Pigsonthewing&amp;lt;/span&amp;gt;); [[User talk:Pigsonthewing|Talk to Andy]]; [[Special:Contributions/Pigsonthewing|Andy's edits]]&amp;lt;/span&amp;gt; 19:20, 5 November 2018 (UTC)&lt;br /&gt;
:Thanks for your input and welcome here. At first you should know that this Wiki doesn't follow every Wikipedia standard, but there is a --relatively new-- [[explain xkcd:Editor FAQ|FAQ]] and we should talk at that discussion page about any enhancements. And please consider to keep it short, a typical editor here isn't a Wikipedean and doesn't read tons of manuals.&lt;br /&gt;
:There are many ugly layouts here, most written before the FAQ did exist, but when I and others see them the explanation or transcript gets an incomplete tag for that reason. And the biggest problem in the past was the use of overwhelming tables.&lt;br /&gt;
:BTW: Using a new-newline for each sentence isn't also a nice layout. Never mind... --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:54, 5 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== suggest adding info to pages ==&lt;br /&gt;
&lt;br /&gt;
I see &amp;quot;Title text&amp;quot; here on explainxkcd, but not on the comic itself.  &lt;br /&gt;
&lt;br /&gt;
Eg. https://www.explainxkcd.com/wiki/index.php/1313:_Regex_Golf shows &amp;quot;Title text: /bu|[rn]t|[coy]e|[mtg]a|j|iso|n[hl]|[ae]d|lev|sh|[lnd]i|[po]o|ls/ matches the last names of elected US presidents but not their opponents.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I don't see that anywhere on https://xkcd.com/1313/  Why not? {{unsigned ip|172.68.174.106}}&lt;br /&gt;
&lt;br /&gt;
:First of all: Please sign your comments&lt;br /&gt;
:&amp;lt;s&amp;gt;Second: I am not sure this is the right place for such a question, so please do not wonder if someone removes it.&amp;lt;/s&amp;gt;&lt;br /&gt;
:And finally: the &amp;quot;title text&amp;quot; can be seen by hovering the mouse over the image on the &amp;quot;regular&amp;quot; xkcd page. Here it is made more visible by mentioning beneath the picture additionally. More details can be found at the page about the title text :) https://www.explainxkcd.com/wiki/index.php/title_text [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 15:09, 12 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
@[[User:Lupo|Lupo]], no honest comment will be removed here, even if it should be posted at the [[explain xkcd:Community portal/Miscellaneous|Miscellaneous]] section. @IP, the proper internal link is here: [[title text]], and I see that this wiki needs a simple page to explain all the terms and characters used in a general short way. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:43, 12 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mediawiki exception on some pages ==&lt;br /&gt;
&lt;br /&gt;
I get the following MedaiWiki exception on some of the pages:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MediaWiki internal error.&lt;br /&gt;
&lt;br /&gt;
Original exception: [0beebcc3efaec7ded86aea14] 2018-12-05 23:25:16: Fatal exception of type &amp;quot;MWException&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Exception caught inside exception handler.&lt;br /&gt;
&lt;br /&gt;
Set $wgShowExceptionDetails = true; at the bottom of LocalSettings.php to show detailed debugging information.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See for example sites https://www.explainxkcd.com/wiki/index.php/2034:_Equations or https://www.explainxkcd.com/wiki/index.php/User:Dgbrt&lt;br /&gt;
&lt;br /&gt;
[[User:Sztupy|Sztupy]] ([[User talk:Sztupy|talk]]) 23:29, 5 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Also having this. Seems to happen when “math” in Preferences-Appearance is set to “MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools)” [[User:DrMeepster|DrMeepster]] ([[User talk:DrMeepster|talk]]) 08:01, 8 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:New error: If that math option is set to “Latex source” than an error relating to the page-ruining setting replaces any latex code: Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response (&amp;quot;Math extension can not find Restbase URL. Please specify $wgMathFullRestbaseURL.&amp;quot;) from server &amp;quot;invalid&amp;quot;:): &amp;lt;LATEX CODE HERE&amp;gt; [[User:DrMeepster|DrMeepster]] ([[User talk:DrMeepster|talk]]) 07:50, 11 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Sorry for my late reply. I will check and solve this issue soon, right now only the plain PNG image setting does work. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:15, 15 February 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
: The problem appears to not be solved.  In addition to the above pages (which are still broken), I've noticed it on the following: https://www.explainxkcd.com/wiki/index.php/2292 and https://www.explainxkcd.com/wiki/index.php/2311.  The workaround of configuring my account to render math as PNG works, but someone with the knowledge and access to fix this needs to do so.  [[User:Shamino|Shamino]] ([[User talk:Shamino|talk]]) 13:43, 3 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== “All 2126 Comics have an Explanation” ==&lt;br /&gt;
&lt;br /&gt;
There are 2127 comics, and the main page seems to update automagically, so I’m not sure what the issue is. [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 15:58, 25 March 2019 (UTC)&lt;br /&gt;
:I think you posted this before the &amp;quot;new robot&amp;quot; comic came up? keep in mind that the number 404 is not linked to any comic. (There is an explain page for 404, but no comic 404. Therefore it is actually 1 comic less than you might think based on the number. On the other hand there are I think 2 or 3 additional special comics (not numbered), such as the latest entry to the 5 minute comic series, or the one about open source, etc. [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]])&lt;br /&gt;
::I posted after it came up. I know about the unnumbered comics, so assumed they didn’t count, but I always forget about 404. Accounting for the non-comic, all seems right in the world. Thanks Lupo. [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 14:01, 26 March 2019 (UTC)&lt;br /&gt;
:::Just checked and they just subtract 1 in the source code??????? [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 16:58, 12 April 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
&lt;br /&gt;
Hi, I'm working on a project focused on docs, and wondered if there's some API or database I can access to pinch some of the tagging info from this site?&lt;br /&gt;
Even something like Randall's /json.html data from each page would work. ''[[User:Toonarmycaptain]] ([[User talk:Toonarmycaptain]] forgot to sign this edit at 03:50, 14 May 2019 (UTC)''&lt;br /&gt;
&lt;br /&gt;
== Unwanted Link ==&lt;br /&gt;
&lt;br /&gt;
In [[1467: Email]], there are two links in the title text that should be normal text. It has happened several times in other pages, and it's annoying. How do I change links like that into regular text? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 07:41, 11 July 2019 (UTC)&lt;br /&gt;
:Not sure what you mean. Maybe it is a browser issue on your end? on my computer neither chrome nor internet explorer or edge interpret anything inside of &amp;quot;My New Year's resolution for 2014-54-12/30/14 Dec:12:1420001642 is to learn these stupid time formatting strings.&amp;quot; as a link... [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 08:00, 11 July 2019 (UTC)&lt;br /&gt;
::Just checked. iPad misinterpreting part of them as phone numbers, appeared as link. [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 09:29, 11 July 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha not working? ==&lt;br /&gt;
&lt;br /&gt;
I've been experiencing some problems when trying to solve captcha when posting comments and topics. It's gotten much harder than before, I fail a lot more often, and occasionally, when I finish it, it reloads the page with an &amp;quot;Incorrect or Missing Captcha&amp;quot; error, and forces me to retry. Has anybody else experienced this problem? Am I the only one with Captcha issues? '''Has it been working properly in recent times?'''[[Special:Contributions/108.162.241.244|108.162.241.244]] 18:40, 8 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== DgbrtBOT ==&lt;br /&gt;
&lt;br /&gt;
The bot seems to have been down since December 13, 2019, and Dgbrt hasn't made a single edit since March, 2019. He hasn't responded to the comments in DgbrtBOT's talk page, either. Is there any way for an someone to contact him? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 13:12, 1 January 2020 (UTC)&lt;br /&gt;
:The bot has resumed its extremely helpful work again this week, but no word yet on why it was MIA for a solid month. [[User:Ianrbibtitlht|Ianrbibtitlht]] ([[User talk:Ianrbibtitlht|talk]]) 14:06, 10 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Google Ads appearing all over the page ==&lt;br /&gt;
&lt;br /&gt;
Google seems to have changed something in AdSense again, and the ads have been appearing in random positions again since December, 2019. [https://wpadvancedads.com/adsense-in-random-positions-auto-ads/ This page] might have a solution? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 13:20, 1 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Links to xkcd pages sould be withoult &amp;quot;www.&amp;quot; part ==&lt;br /&gt;
&lt;br /&gt;
There is an issue with loading resources on pages, that are opened with &amp;quot;www.&amp;quot; part in URL.&lt;br /&gt;
For example commic [https://www.xkcd.com/1975/ 1975].&lt;br /&gt;
If viewed from https://www.xkcd.com/1975/, comic is not interactive. On the other hand, https://xkcd.com/1975/ works like a charm.&lt;br /&gt;
&lt;br /&gt;
Page failes to load resorces from https://xkcd.com/1975/alto/root with error caused by CORS policy:&lt;br /&gt;
&lt;br /&gt;
* Access to fetch at 'https://xkcd.com/1975/alto/root' from origin 'https://www.xkcd.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.&lt;br /&gt;
&lt;br /&gt;
All links to commics in headers (button ''Comic #1975 (April 1, 2018)'') include &amp;quot;www.&amp;quot; part, for example this explanation:&lt;br /&gt;
https://www.explainxkcd.com/wiki/index.php/1975:_Right_Click&lt;br /&gt;
&lt;br /&gt;
IMO links in headers (buttons ''Comic #xxx (date)'') should be updated to exclude &amp;quot;www.&amp;quot; part.&lt;br /&gt;
&lt;br /&gt;
== Can't create my userpage ==&lt;br /&gt;
&lt;br /&gt;
I just registered, and can't seem to edit/create my own userpage. I've been editing MediaWiki wikis for a very long time and it's currently part of my career, so I'm pretty sure I'm doing everything right. Is there a prerequisite number of edits or something before I can create my userpage? [[User:Equazcion|Equazcion]] ([[User talk:Equazcion|talk]]) 22:18, 6 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I do not know the answer to that, but ... if one of us finds out &amp;quot;sooner&amp;quot; than the other, then, let's &amp;quot;share&amp;quot; the answer. Yours might appear here, and mine ... might appear about eleven &amp;quot;sections&amp;quot; up, in this same &amp;quot;Technical&amp;quot; portal ... &amp;lt;s&amp;gt;at the URL&amp;lt;/s&amp;gt; in the section &amp;quot;[[explain_xkcd:Community_portal/Technical#Cannot_create_a_user_page|Cannot create a user page]].&amp;quot; (see [https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd%3ACommunity_portal%2FTechnical&amp;amp;type=revision&amp;amp;diff=190166&amp;amp;oldid=190127 the DIFF listing]...) &lt;br /&gt;
&lt;br /&gt;
:Maybe I should have &amp;quot;seconded the motion&amp;quot; '''here''', instead of adding my own question, -- which is very similar! -- to a different section, up '''there?''' Pardon me ... --[[User:Mike Schwartz|Mike Schwartz]] ([[User talk:Mike Schwartz|talk]]) 08:15, 7 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::[[explain_xkcd:Community_portal/Admin_requests#Permission_request]] might help. [[User:A(l)Chemist|AlChemist]] ([[User talk:A(l)Chemist|talk]]) 11:06, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Yes, according to that page, your account must be at least one week old, AND you must have made at least 10 edits.  There's a new page, [[:explain xkcd:Autoconfirmed users]], which says it's three days (rather than one week) and 10 edits – after that, you become an &amp;quot;autoconfirmed user&amp;quot;, and gain the right to create pages ([[Special:ListGroupRights|among other things]]).  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 02:01, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== List of all comics incomplete/overflowing ==&lt;br /&gt;
&lt;br /&gt;
The [[List_of_all_comics | List of all comics]] and the full list are incomplete, stopping with 2289. Taking a look at [[List_of_all_comics_(full) | List of all comics (full)]] nets that it belongs to the category 'Pages where template include size is exceeded', so I'm assuming it just hit the limit. I'm sadly not well versed in MediaWiki, so I have no idea what a workaround would look like&lt;br /&gt;
&lt;br /&gt;
== 2138 page issues ==&lt;br /&gt;
&lt;br /&gt;
This first came up when following a link from on of the other Code Quality pages.&lt;br /&gt;
&lt;br /&gt;
when you go to https://www.explainxkcd.com/wiki/index.php/2138:_Wanna_See_the_Code%3F you get a blank pag that says &amp;quot;No input file specified.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
however when you go to https://www.explainxkcd.com/wiki/index.php/2138 you get the actual page via redirect but when you reload the page it goes back to &amp;quot;No input file specified.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
not sure what causes this but i tested in chrome (incognito mode to avoid extensions), old edge (not chromium) and chrome iOS via mobile data. all test had the same result.&lt;br /&gt;
&lt;br /&gt;
sorry if this is the wrong place for this but not sure where else to put it. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 14:44, 21 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This problem seems to be common to all comics ending with a question mark: [[2236]], [[2138]], [[2065]], [[1841]], [[1205]]. My best guess is that the url is being interpreted as a query, but since there is nothing after the question mark this results in an error. Whether this is a new error or just hasn't been noticed before I don't know. Renaming the pages without the question mark could work, but would require every reference to these comics on the wiki to be updated. [[User:A(l)Chemist|AlChemist]] ([[User talk:A(l)Chemist|talk]]) 10:07, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::i think it is new, i recently (not sure when but after 2138 was released) went through the Code Quality series using the links and it worked fine then. i don't think it is being interpreted as a query because the question mark is encoded. i would amazed if it would still interpret this as a query because that would completely defeat the point of encoding the url in the first place. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 09:35, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::here is a full list of broken pages: [[58]], [[111]], [[259]], [[1205]], [[1705]], [[1841]], [[1913]], [[2065]], [[2138]], [[2236]]. i wrote a quick javascript to extract a full list of urls from [[List of all comics (full)]] (then added the recent ones manually, [[explain_xkcd:Community_portal/Technical#List_of_all_comics_incomplete.2Foverflowing|see above]]). then ran a python script to get the content of each page and check if it is broken (with a 2 sec delay to minimise server load) and saved the list if broken ones. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 13:34, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Note that you can view the comic by changing the URL from &amp;lt;code&amp;gt;index.php/...&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;index.php?title=...&amp;lt;/code&amp;gt; ([https://www.explainxkcd.com/wiki/index.php?title=58:_Why_Do_You_Love_Me%3F example]). —[[User:Galaktos|Galaktos]] ([[User talk:Galaktos|talk]]) 13:03, 14 May 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;All comics&amp;quot; from left sidebar is not updating ==&lt;br /&gt;
&lt;br /&gt;
https://www.explainxkcd.com/wiki/index.php/List_of_all_comics&lt;br /&gt;
&lt;br /&gt;
[https://imgur.com/a/J287JBz image]&lt;br /&gt;
&lt;br /&gt;
== Attention needed to some List pages  ==&lt;br /&gt;
&lt;br /&gt;
I just (mis)clicked on &amp;quot;All Comics&amp;quot;, and thought it looked odd.&lt;br /&gt;
DGBRTBot needs a prod, or something, given the current months-old state and commented prediction in https://www.explainxkcd.com/wiki/index.php?title=List_of_all_comics&amp;amp;action=history&lt;br /&gt;
&lt;br /&gt;
(Oh, and the [[List of all comics (full)]], which I then checked has a redlinked Category of &amp;quot;Pages where template include size is exceeded&amp;quot; and seems to have been previously given a badly-included &amp;quot;...and everything before #501&amp;quot;. Not sure if the first problem is easily solvable, but as I'm here I thought I'd mention it, and you could properly add 1-500 ''and'' 501-1000 to sort the Include Size issue, maybe?)&lt;br /&gt;
&lt;br /&gt;
I could be way off-piste, but as it looks like nobody has noticed anything yet I thought I'd at least raise the issue, and then leave the fixing to someone with a bit more Wiki-Fu..? [[Special:Contributions/162.158.155.120|162.158.155.120]] 20:48, 3 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:For [[List of all comics]], looks like [[User:DgbrtBOT|DgbrtBOT]] is working again, and [[User:Btx40]] already went back and added the missing entries, so that should be all good now.&lt;br /&gt;
:For [[List of all comics (full)]], not sure if I correctly understand what you mean by &amp;quot;''you could properly add 1-500 ''and'' 501-1000 to sort the Include Size issue''&amp;quot;?  But I think the &amp;quot;''badly-included '...and everything before #501' ''&amp;quot; you mentioned wasn't so much ''badly-inluded'' – its code looked correct to me – rather, the inclusion makes the page so big that it ''causes'' the page to exceed the &amp;quot;template include-size&amp;quot; limit.  See the following Wikipedia articles for more about how this &amp;quot;template include-size&amp;quot; limit works in MediaWiki:&lt;br /&gt;
:* {{w|Wikipedia:Template limits#Post-expand include size}}&lt;br /&gt;
:* {{w|Wikipedia:Post-expand include size}}&lt;br /&gt;
:So ''as a result of'' exceeding the limit, the parser ''excludes'' the template that caused the limit to be exceeded (i.e. it excludes the 1-500 list at the bottom of the page), so as to keep the page under the size limit; and instead of the ''actual'' content, the parser just inserts a ''link'' to the content.  And it so happens that in this case, the ''content'' includes the control-characters for constructing the table rows – so because those control characters are excluded along with the content, then the link shows up in the last existing cell of the table, and ''appears'' to be badly-included.&lt;br /&gt;
:I'm not sure how to fix it, but some options could be:&lt;br /&gt;
:* Somehow reduce the content of the page so that the full list of #1-to-#current doesn't exceed the limit.&lt;br /&gt;
:** Each &amp;quot;row&amp;quot; of the table produces about 700 characters in the resulting HTML; around 200 of that is the hidden &amp;quot;create&amp;quot; link (from [[Template:comicsrow]]) that I think ''would'' appear if the comic's page didn't exist yet.  I would say that at this point, since all the comics already have pages, then that &amp;quot;create&amp;quot; link is only useful for the most recent comic, and could probably be omitted to significantly reduce the size of the page.&lt;br /&gt;
:*** (Actually, it looks like DgbrtBOT might automatically create the page for each new comic, so the &amp;quot;create&amp;quot; link might not be needed ''at all'' anymore.)&lt;br /&gt;
:** There are some other elements that could be removed from each table row to save space, such as the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attributes of the links, etc.&lt;br /&gt;
:** Not sure if all of that would create enough headroom for the 1-500 list though?&lt;br /&gt;
:* Increase &amp;lt;code&amp;gt;$wgMaxArticleSize&amp;lt;/code&amp;gt; on the server?  ([https://www.mediawiki.org/wiki/Manual:$wgMaxArticleSize See here].)&lt;br /&gt;
:** Not sure of the risks of that; and in any case, it's only that one page that currently exceeds the limit, so may not be worth it.&lt;br /&gt;
:For now, I've added a note to the page explaining that 1-500 are missing and why, and I've tweaked the bottom of the table to make the link to 1-500 a bit more presentable in the meantime.&lt;br /&gt;
:– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 06:41, 3 October 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Strange error—maybe edit conflict? ==&lt;br /&gt;
&lt;br /&gt;
I happened to be looking at my edit history, and I noticed that something insane happened back in June: I made an edit to [[2319: Large Number Formats]], and it somehow combined my edit with someone else's. The entirety of my edit (as I crafted it) was confined to the article's categories; I added one and put the set in alphabetical order. But the edit, {{diff|193595|as it was logged}}, is a massive alteration, with all sorts of questionable changes. It was (rightly, I think) undone by [[User:Jkrstrt|Jkrstrt]] a couple days later. Did I somehow overlook an edit-conflict error and accept some (now anonymous) users edit? I can see myself making some kind of oversight at that time of night, but it seems antithetical to the wiki process to have an edit misattributed in this way. (I certainly don't like having that change connected with my name, but I also wonder how this intersects with important issues of public ownership integral to wiki communities.) I'd appreciate any insight fellow editors could provide. [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 22:24, 3 August 2020 (UTC)&lt;br /&gt;
:As I'm passing through, I shall note that I'm the IP that added the &amp;quot;(The 1971 transition[...]&amp;quot; paragraph you see 'added' there. It was actually part of a larger edite that was later (than my edit, earlier than yours) understandably removed for being irrelevent. During this {{diff|193424|5-day-earlier revision}}. But I had absolutely nothing to do with pretty much every other change in your above-logged diff, SFAICS from a quick skim, so honestly don't know why it features there. But hope this info is useful. [[Special:Contributions/162.158.159.66|162.158.159.66]] 23:05, 3 August 2020 (UTC)&lt;br /&gt;
::That's actually quite helpful because it caused me to go look at older versions of the article. It looks like my edit {{diff|193595&amp;amp;oldid=193386|used a very early version as a starting point}} (thereby reverting all changes made later). My best guess is that I had gone back to an old version because Randall changed this comic after it was published and was trying to convince myself that I wasn't crazy. No, not crazy, but spacey. Wikipedia puts a big red warning across the page when you're ending an old version, and this wiki uses only a bit of bold text—that apparently wasn't enough to draw my attention. Thanks! [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 01:33, 4 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Unable to view &amp;quot;what if?&amp;quot; page ==&lt;br /&gt;
&lt;br /&gt;
The link to the page for the [[what if?]] blog displays an error: &amp;quot;No input file specified.&amp;quot; [[User:JBYoshi|JBYoshi]] ([[User talk:JBYoshi|talk]]) 03:38, 21 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This also happens to me on [[1205: Is It Worth the Time?]] Must be something with the ?s in the titles. [[Special:Contributions/172.69.22.66|172.69.22.66]] 15:46, 25 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I've noticed that as well. I made a page in my userspace that redirects to the what if page, and for some reason that seems to work. ([[User:Blue screen of life/whatiflink|here is the link to the page]]) [[User:Blue screen of life|Blue screen of life]] ([[User talk:Blue screen of life|talk]]) 20:09, 31 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::I have also noticed this but it is not just on pages with questions marks. Both [[259]] and [[1705]] show the same thing. A full list (as of 22 June 2020) of the ones i found is in the last reply to my report found here [[#2138_page_issues]] [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 12:20, 22 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Both [[259]] and [[1705]] have an ({{w|E acute|e-with-accute-accent}}, Unicode U+00E9) in the URL, so for those pages, I wonder if that has anything to do with it?&lt;br /&gt;
::::For the &amp;quot;what if?&amp;quot; page, I had recently added a redirect from [[what if (blog)]] to get to it, and the [[What If]] disambiguation page has been updated with it, so at least we can get to it that way; and for the comic explanations, at least we can get to them by linking to their number-redirects (as [[58]] instead of [[58: Why Do You Love Me?]]); but not sure how to fix it overall.  At the following page, it suggests tweaking an {{w|Apache HTTP Server|Apache}} {{w|Rewrite engine|rewrite}} directive in {{w|.htaccess}} (or a {{w|Common Gateway Interface|CGI}} setting in {{w|PHP}} if it's running on {{w|Internet Information Services|IIS}}):&lt;br /&gt;
::::* https://www.mediawiki.org/wiki/Topic:Vmaw1tu5kkhyon0n&lt;br /&gt;
::::So maybe something about that has changed recently?  Documentation:&lt;br /&gt;
::::* [https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewriterule Apache mod_rewrite &amp;lt;code&amp;gt;RewriteRule&amp;lt;/code&amp;gt; directive]&lt;br /&gt;
::::* [https://www.php.net/manual/en/ini.core.php#ini.cgi.force-redirect php.ini &amp;lt;code&amp;gt;cgi.force_redirect&amp;lt;/code&amp;gt; directive]&lt;br /&gt;
::::Summarizing a few points from [[User talk:SlashMe#Homeopathic Wiki|this related discussion]]:&lt;br /&gt;
::::* Only one of the site's [https://explainxkcd.com/wiki/index.php/Special:ListUsers?group=sysop 10 administrators] has made recent edits ([[Special:Contributions/SlashMe|SlashMe]]).&lt;br /&gt;
::::* Neither of the site's [https://explainxkcd.com/wiki/index.php/Special:ListUsers?group=bureaucrat 2 bureaucrats] ([[Special:Contributions/Jeff|Jeff]] and [[Special:Contributions/Lcarsos|Lcarsos]]) have made any edits recently.&lt;br /&gt;
::::* For admin access to the ''server'' itself, my limited understanding is that [[Special:Contributions/Jeff|Jeff]] might actually own the server, but may have also given admin access to [[Special:Contributions/Dgbrt|Dgbrt]]; however, neither of them have made edits recently.&lt;br /&gt;
::::But &amp;quot;most recent edit&amp;quot; might not be a good indicator, so I wonder of some of these folks are still involved in the project?&lt;br /&gt;
::::– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 05:10, 29 September 2020 (UTC)&lt;br /&gt;
: Looks like it happens for any page that has a percent-encoding in the title. [[User:PoolloverNathan|PoolloverNathan]]&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[Special:Contributions/PoolloverNathan|s]][[User talk:PoolloverNathan|talk]] [[Wikipedia:WP:SEAOFBLUE|the blue seas]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt; 16:32, 16 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
=== Known broken pages ===&lt;br /&gt;
(Redirects work, whereas links to the actual page are broken.)&lt;br /&gt;
&lt;br /&gt;
Title containing e-accute-accent:&lt;br /&gt;
* [[259]] ↳ [[259: Clichéd Exchanges]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=259:_Clich%C3%A9d_Exchanges What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1705]] ↳ [[1705: Pokémon Go]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1705:_Pok%C3%A9mon_Go What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Title ending with question mark:&lt;br /&gt;
* &amp;lt;del&amp;gt;[[what if (blog)]] ↳ [[what if?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=What_If%3F What links here])&amp;lt;/small&amp;gt;&amp;lt;/del&amp;gt; &amp;lt;ins&amp;gt;fixed – content now exists at [[what if]], and [https://www.explainxkcd.com/wiki/index.php?title=Special:WhatLinksHere/what_if&amp;amp;limit=500 broken links] are in the process of being updated (see below)&amp;lt;/ins&amp;gt;&lt;br /&gt;
* [[58]] ↳ [[58: Why Do You Love Me?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=58:_Why_Do_You_Love_Me%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[111]] ↳ [[111: Firefox and Witchcraft - The Connection?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=111:_Firefox_and_Witchcraft_-_The_Connection%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1205]] ↳ [[1205: Is It Worth the Time?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1205:_Is_It_Worth_the_Time%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1841]] ↳ [[1841: Who?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1841:_Who%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1913]] ↳ [[1913: A ?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1913:_A_%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2065]] ↳ [[2065: Who Sends the First Text?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2065:_Who_Sends_the_First_Text%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2138]] ↳ [[2138: Wanna See the Code?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2138:_Wanna_See_the_Code%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2236]] ↳ [[2236: Is it Christmas?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2236:_Is_it_Christmas%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Moved ===&lt;br /&gt;
I moved the [[what if?]] page to the [[what if (blog)]] page which I then changed to simply [[what if]] to fix this issue and because anyone new to this site would type that any way to see it.&amp;lt;span&amp;gt; — [[User:Sqrt-1|The &amp;lt;b&amp;gt;𝗦𝗾𝗿𝘁-𝟭&amp;lt;/b&amp;gt;]] &amp;lt;sup&amp;gt;[[User talk:Sqrt-1|&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;talk&amp;lt;/span&amp;gt;]] [[Special:Contributions/Sqrt-1|&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;stalk&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt; 06:47, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Still trying to wrap my head around it – so just to summarize, we currently have:&lt;br /&gt;
:&lt;br /&gt;
:* '''[[whatif]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=whatif&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''redirects to'' '''[[what if?]]''' (see below)&lt;br /&gt;
:* '''[[What If?]]''' – page broken &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=What_If%3F&amp;amp;redirect=no no-redirect link]) ([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=What_If%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''also redirects to'' '''[[what if?]]''' – page broken &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;redirect=no no-redirect link]) ([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=what_if%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
:*** ↳ ''redirects to'' '''[[what if]] – actual content'''&lt;br /&gt;
:*** ''content manually moved from'' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;diff=198070&amp;amp;oldid=197859 diff])&amp;lt;/small&amp;gt; '''[[what if?]]''' ''to'' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if&amp;amp;diff=198071&amp;amp;oldid=197486 diff])&amp;lt;/small&amp;gt; '''[[what if (blog)]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if_(blog)&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt; (''[https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;action=history previous revision history] remains at'' '''[[what if?]]''')&lt;br /&gt;
:**** ⇒ ''moved to'' '''[[what if]] – actual content'''&lt;br /&gt;
:&lt;br /&gt;
:For completeness, we also have...&lt;br /&gt;
:&lt;br /&gt;
:* '''[[what if book]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if_book&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''redirects to'' '''[[what if#The book]] – actual content'''&lt;br /&gt;
:** Suggestion: for consistency, also add a '''[[what if (book)]]''' page that redirects here?&lt;br /&gt;
:&lt;br /&gt;
:...and the disambiguation page...&lt;br /&gt;
:&lt;br /&gt;
:* '''[[What If]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=What_If&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ⇒ ''moved to'' '''[[What If (disambiguation)]]''' – disambiguation page&lt;br /&gt;
:*** ''links to'' '''[[17: What If]]''' (↲ '''[[17]]''' redirects here &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=17&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;)&lt;br /&gt;
:*** ''links to'' '''[[what if]] – actual content'''&lt;br /&gt;
:*** Suggestion: mention the ''book'' here as well, and link to its section in the [[what if]] page?&lt;br /&gt;
:&lt;br /&gt;
:...and these troubleshooting pages from [[User:Blue screen of life]]:&lt;br /&gt;
:&lt;br /&gt;
:* '''[[User:Blue screen of life/redirecttest]]''' – test page &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=User:Blue_screen_of_life/redirecttest&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ⇒ ''moved to'' '''[[User:Blue screen of life/whatiflink]]''' – test page &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=User:Blue_screen_of_life/whatiflink&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:*** ↳ ''redirects to'' '''[[What If?]]''' (see above)&lt;br /&gt;
:&lt;br /&gt;
:Given that the actual content of the &amp;quot;what if?&amp;quot; article now lives at '''[[what if]]''', I've started updating pages &amp;lt;ins&amp;gt;(except for Talk pages)&amp;lt;/ins&amp;gt; to link directly there instead of the other redirect pages.  All that's left to do are pages that link to the '''[[what if?]]''' redirect-page (which is broken).  &amp;lt;del&amp;gt;Its [https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere/what_if%3F &amp;quot;What links here&amp;quot;] special page is broken too, so it's difficult to find what pages link there – but now that it redirects to the [[what if]] page, you can see them indirectly from ''that'' page's [https://www.explainxkcd.com/wiki/index.php?title=Special:WhatLinksHere/what_if&amp;amp;limit=500 &amp;quot;What links here&amp;quot;] special page.&amp;lt;/del&amp;gt;  &amp;lt;ins&amp;gt;[https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=what_if%3F These] are the pages that still link there.&amp;lt;/ins&amp;gt;  There are still a lot of them to go.&lt;br /&gt;
:&lt;br /&gt;
:Also, should the following redirect-pages be simplified to have them redirect straight to the new [[what if]] page, instead of redirecting through the intermediate '''[[what if?]]''' page (which itself redirects there anyway)?&lt;br /&gt;
:* '''[[whatif]]'''&lt;br /&gt;
:* '''[[What If?]]'''&lt;br /&gt;
:– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 17:20, 29 September 2020 (UTC)&lt;br /&gt;
:: Fixed the double redirects, don't ask me why we have so many pages for the same thing. [[User:PoolloverNathan|PoolloverNathan]]&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[Special:Contributions/PoolloverNathan|s]][[User talk:PoolloverNathan|talk]] [[Wikipedia:WP:SEAOFBLUE|the blue seas]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt; 16:29, 16 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion not displaying with comic ==&lt;br /&gt;
&lt;br /&gt;
I am using FireFox on a Win10 machine.  When I come to the site I can see the comic, explanation and transcript.  But the discussion section is hidden.  Even when logged in.&lt;br /&gt;
&lt;br /&gt;
Any ideas?&lt;br /&gt;
&lt;br /&gt;
: You say &amp;quot;when I come to the site&amp;quot;.  If the address bar says you are on Main_Page and you see the heading &amp;quot;Latest comic&amp;quot;, then it's simply working as designed.  Above the comic, click on &amp;quot;Go to this comic explanation&amp;quot; and you will see the comic plus discussion.&lt;br /&gt;
&lt;br /&gt;
: Also, Steve, please sign your comments every time, with four tildes.  That expands into your user name and a timestamp.  Like this -- [[User:JohnB|JohnB]] ([[User talk:JohnB|talk]]) 10:10, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Random page sometimes takes me to an invalid address ==&lt;br /&gt;
&lt;br /&gt;
Sometimes, when clicking on &amp;quot;Random page&amp;quot; in the left sidebar, the site will be blank apart from the text &amp;quot;No input file specified. &amp;quot;.&lt;br /&gt;
&lt;br /&gt;
An example of such an URL is: https://www.explainxkcd.com/wiki/index.php/111:_Firefox_and_Witchcraft_-_The_Connection%3F&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:I've noticed this happens for ''all'' URLs to comics that end in a question mark (or possibly any special character). Interestingly, this doesn't happen if you go to the comic from the search bar. [[User:Danish|Danish]] ([[User talk:Danish|talk]]) 23:04, 27 January 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bug on the main page ==&lt;br /&gt;
&lt;br /&gt;
Bug Enviroment(Might work on other enviroments):&lt;br /&gt;
Ubuntu 20.04LTS  &lt;br /&gt;
Firefox85.0  &lt;br /&gt;
2021.2.7  &lt;br /&gt;
&lt;br /&gt;
Bug:  &lt;br /&gt;
The front page reads: `Welcome, Main Page, to explain xkcd!` with `Main Page` formatted as a username,can someone fix this?&lt;br /&gt;
&lt;br /&gt;
[[User:Xkcdjerry|Xkcdjerry]] ([[User talk:Xkcdjerry|talk]]) 09:48, 7 February 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Occasional error via Cloudflare ==&lt;br /&gt;
Just a note that I'm getting Cloudflare errors of &amp;quot;origin not reachable&amp;quot; (sounds wrong to me, in my head it should be 'destination', but never mind) three times now in the last ten to fifteen minutes - of maybe a dozen general site-requests.&lt;br /&gt;
&lt;br /&gt;
I've also been getting seemingly .CSSless formatted pages over the past few days, which I've been putting down to slightly dodgy wifi at my end (not unknown) but if I'm getting Cloudflare's error cleanly then perhaps it's been entirely upstream/downstream/however-you'd-describe-the-Explain-server. (Obviously CSS resource requests, as with images, are additional HTTP calls, but I still lump it into the single site-request ''per page'' in my 'dozen' estimate above. No obviously lost images, though, in incomplete pages - not that can't be explained by .CSS non-following, anyway.)&lt;br /&gt;
&lt;br /&gt;
I had copy-buffered some of the exact info, but due to incompetence I recopied over it before coming here. If it happens again, I'll try to bring it over here. But (the way these things go) maybe it won't. FYI, though. [[Special:Contributions/141.101.98.52|141.101.98.52]] 12:04, 5 March 2021 (UTC)&lt;br /&gt;
: Not a Cloudfare error (looks like an error of the actual explainxkcd server) but every now and then (like just a few minutes ago) I get an error page that generally goes away if I immediately refresh. To whit:&lt;br /&gt;
 Service Unavailable&lt;br /&gt;
 The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.&lt;br /&gt;
 &lt;br /&gt;
 Additionally, a 503 Service Unavailable error was encountered while trying to use an ErrorDocument to handle the request.&lt;br /&gt;
: Not really a problem (occasionally happened while submitting an exit, and I have to confirm to the browser that I wish to repost the data, but this particular copied instance was through a more 'read-only' link-click, like most of the instances) but... in case someone finds this to be new and useful information... here you are! [[Special:Contributions/141.101.98.192|141.101.98.192]] 03:45, 12 March 2021 (UTC)&lt;br /&gt;
:OP, here, of the above 503 error report/casual mention. Obviously this is the same message that happened for an ''extended'' period of time over a number of days, but I've only just happened to find the site responding again and have not yet looked to see if it is explained as the same or different cause to the old intermittent issues (at root). I hope things are resolved from the major outage (server quota? bill payments? renewal/reconfiguration blips?) but wonder if I should report any future minor outages? I'm still smarting from the total loss of the fora.xkcd.com platform, a few years back, and while I'm not active enough here to consider a proper login (lurking as a freeloading anon-IP is good enough, usually, for my intellectual enjoyment, with all due apologies) I did have a slight pang of emptiness while it was out-of-order. [[Special:Contributions/141.101.99.79|141.101.99.79]] 15:48, 16 June 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Add TemplateData ==&lt;br /&gt;
&lt;br /&gt;
Add the {{mw|Extension:TemplateData|TemplateData}} extension to allow setting data for templates. This will help editors because they will be able to see the data of templates.&lt;br /&gt;
&lt;br /&gt;
== MediaWiki 1.30.0?! ==&lt;br /&gt;
&lt;br /&gt;
This wiki is [[Special:Version|currently]] on [[mw:MediaWiki 1.30|MediaWiki 1.30.0]] ([[mw:Release notes/1.30|release notes]]), the first of three releases of a version of MW that reached end-of-life in June of 2019 ([[mw:Version lifecycle]]). It's thus missing multiple important security updates from 1.30.1 and 1.30.2, not to mention the two years' worth of security updates since 1.30.x reached end-of-life. Even 1.31.x will be reaching end-of-life in just over a month.&lt;br /&gt;
&lt;br /&gt;
If the sysadmins here update to [[mw:MediaWiki 1.35|MediaWiki 1.35.2]] ([[mw:Release_notes/1.35|release notes]]), that version will be maintained till September of 2023, with only a few security updates in the meantime. I would '''strongly''' encourage y'all to update to 1.35.2; to promptly update if there's a .3, .4, etc.; and to make sure you switch to the next LTS release (which will presumably be 1.39) well in advance of September of '23. (Note that this will also require updating to PHP 7.3.19 or later.) [[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 07:17, 30 April 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Uptime ==&lt;br /&gt;
Did the website just go down? &amp;lt;span style=&amp;quot;text-shadow:0 0 8px black&amp;quot;&amp;gt;[[User:Beanie|&amp;lt;span style=&amp;quot;font-size:11pt;color:#dddddd&amp;quot;&amp;gt;Beanie&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; &amp;lt;sup&amp;gt;&amp;lt;span style=&amp;quot;text-shadow:0 0 7px #000000&amp;quot;&amp;gt;[[User talk:Beanie|&amp;lt;span style=&amp;quot;font-size:8pt;color:#dddddd&amp;quot;&amp;gt;talk&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&amp;lt;/sup&amp;gt; 13:06, 28 May 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
It was definitely down this weekend!   &lt;br /&gt;
https://www.reddit.com/r/xkcd/comments/nxrm65   &lt;br /&gt;
[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 16:21, 15 June 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic template lappend breaks for standalone comic links ==&lt;br /&gt;
&lt;br /&gt;
For example, https://xkcd.com/blue_eyes.html is changed to https://xkcd.com/blue_eyes.html/ which isn't valid [[Special:Contributions/172.69.90.15|172.69.90.15]] 15:51, 13 October 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Template here, I think it needs to be changed to solve this https://www.explainxkcd.com/wiki/index.php/Template:comic&lt;br /&gt;
&lt;br /&gt;
exkcd page here https://www.explainxkcd.com/wiki/index.php/Blue_Eyes&lt;br /&gt;
&lt;br /&gt;
== May not be your problem, but FYI. ==&lt;br /&gt;
&lt;br /&gt;
My typcal setup: Android tablet, with Chrome for Android (latest update), but also Firefox for Android (ditto), using default Gboard (likewise) for input.&lt;br /&gt;
&lt;br /&gt;
Occasionally (notably within the last few weeks/maybe a month or so), when going in to edit an explainxkcd page through Chrome (it's how I divide up my browsing), I'm getting the cursor in the textarea box which ''can'' be used to Cut/Copy/Paste (as applicable and useful), but the on-screen keyboard isn't popping up. Page is fully loaded (can be refreshed, doesn't have the &amp;quot;stop loading&amp;quot; alternative), can go back (page viewing) and try to go back to the page editor (often to same result). Sitting and waiting doesn't pop the keyboard up, either (sat there for minutes). Happens both on home wifi and mobile connection.&lt;br /&gt;
&lt;br /&gt;
If I transfer my attentions to the page to Firefox (copy URL, to use there... but I don't use that by default for expxkcd stuff) there's no problem, but then if I come back to Chrome again it seems to start working again ''anyway'' so not sure if it's just avoiding/flushing a  transient problem that would also initially crop up with Firefox if I used that more.&lt;br /&gt;
&lt;br /&gt;
Because editing is a different (mobile-optimised) process on Wikipedia and I can't be sure about any the equivalence of any other wiki out there (and it doesn't happen with anything else I regularly key into on Chrome) it's not something I've reproduced outwith this site, and of course desktop page-editing doesn't require touch-screen keyboard because there's a physical one.&lt;br /&gt;
&lt;br /&gt;
Not getting much feedback with Chrome (really can't get on with their bugrep processes, it's too huge a project to make headway, IME), not even tried to pester the Gboard team and I've not ''seen'' anything said on here about this being a site-issue (not sure how it could be, as it's outside the remit of the core web-page rendering process and more an Android or App level of incompetence), but I thought I'd make a note of it here for future reference. Make of it what you will. Annoying but not game-breaking. And I just wanted to vent a little. [[Special:Contributions/172.70.162.147|172.70.162.147]] 16:54, 25 December 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[special:interwiki]] ==&lt;br /&gt;
&lt;br /&gt;
where'd it go? [[Special:Contributions/172.69.68.200|172.69.68.200]] 05:07, 7 January 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Please update MediaWiki + AbuseFilter ==&lt;br /&gt;
&lt;br /&gt;
Seriously. Many scripts and such built for modern, supported versions of MW do not work here because it is so unbelievably undated. PinkAmpersand above basically covers the reason why. I also highly recommend adding the extension AbuseFilter (https://www.mediawiki.org/wiki/Extension:AbuseFilter) as it immensely makes removing vandalism easier (by straight up disallowing or blocking those that do, esp if it's like the current formulaic massive-replacement vandalism.) [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 00:48, 21 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ditto. I feel like the main problem is that the sole person who has access to the backend either doesn't have time to update, doesn't have interest, or doesn't have the technical knowledge necessary. But yes, I agree - updating and installing an extension to help control vandalism would help this wiki tremendously. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 20:09, 9 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== ↑ ? ==&lt;br /&gt;
&lt;br /&gt;
Why do some pages have ↑ at the very start? They can all be spotted by searching ↑ &lt;br /&gt;
Is it a technical thing, vandalism, some sort of glitch? Maybe I'm just uninformed or being an idiot.&lt;br /&gt;
:Edit logs tell me that an IP user manually reverting vandalism somehow inserted one or more extra characters while manually reverting vandalism. '''[[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;]] 13:59, 22 May 2022 (UTC)&lt;br /&gt;
::Should it be removed? It's not necessary and might be confusing for screenreaders... [[User:Mushrooms|Mushrooms]] ([[User talk:Mushrooms|talk]]) 09:00, 23 May 2022 (UTC)&lt;br /&gt;
:::Maybe not en-mass, I'd say. But I've dove in to delete a rogue leading &amp;lt;nowiki&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;/nowiki&amp;gt; tag left from a part of a prior vandalism (likewise, just before the {{template|comic}}-element) and I've promised myself that I'll remove any more that I spot (and now that arrow) in any future whole-page edit I make. Plus a small shopping-list of inessential but useful edits like making {{template|Citation needed}}s flow better when they're mispunctuated/etc.&lt;br /&gt;
:::But that's my solitary opinion. I'm sure hunting out and squishing this isn't a problem at all. I'm just balancing my own peculiar brand of OCD with what is somehow my also my own version of casual apathy towards other details. (Also, it probably looks better for a named account of recognised good standing to start editing potentially hundreds of pages in a session, rather than myself... potentially indistinguishable from the IP who seems to relish worn out memes in a general page-trashing.) [[Special:Contributions/162.158.159.121|162.158.159.121]] 12:20, 23 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Is there anything else we can do to prevent vandalism? ==&lt;br /&gt;
&lt;br /&gt;
There's been quite a significant uptick in vandalism recently, and I don't feel we have any effective tools to combat it. I believe one of the biggest issues here is due to the way logged-out editing works on this wiki. Blocks are completely ineffective at slowing vandals, and IP editors can vandalize with basically nothing we can do to thwart them other than revert-warring. '''Is there a better way?'''&lt;br /&gt;
&lt;br /&gt;
There's been some discussion of installing AbuseFilter, but I'm not sure anything became of it. We could disable logged-out editing, but that would likely be counterproductive as we get lots of legitimate contributions from logged-out users. If there's a way to switch to location-based IPs, we could rangeblock problematic users as well as proxies. Does anyone have any ideas? [[Special:Contributions/162.158.78.145|162.158.78.145]] 16:11, 1 June 2022 (UTC)&lt;br /&gt;
:I'm sort of making server side changes via telegraph so an extension is probably going to take a while to get installed. Takes a bunch of emails and followups to get single variables changed in the mediawiki settings file. There is an email verification option, and some edit frequency variables that could be set to make spam more time consuming. Don't love range blocks but wouldn't mind getting the CDN IPs dealt with so we can actually use the IP bans again. '''[[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;]] 17:16, 1 June 2022 (UTC)&lt;br /&gt;
::I'm very grateful that you're working on changes under the hood. What do you think is the  best way to deal with disruption in the meantime? [[User:Vandalbane|Vandalbane]] ([[User talk:Vandalbane|talk]]) 17:19, 1 June 2022 (UTC)&lt;br /&gt;
:::Could borrow a patrol bot like the ones people on main wikipedia have, could ask around. '''[[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;]] 18:53, 1 June 2022 (UTC)&lt;br /&gt;
::::There's not really a drop-in solution that you can use, especially since the server's MediaWiki version is not in sync with Wikipedia's (so a lot of the APIs etc have completely changed; when initially reverting vandalism I tried importing some scripts from enwiki but they failed as a result), but also because the bots have gotten pretty complex (using machine learning provided by the Wikimedia Foundation, for example). [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 03:56, 2 June 2022 (UTC)&lt;br /&gt;
:::::Oh I do notice mediawiki hasn't been upgraded in a while. Looks like new version of mediawiki should be dropping extremely imminently, would be nice timing for an upgrade '''[[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:45, 2 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Rollback ==&lt;br /&gt;
&lt;br /&gt;
Does the rollback permission exist on this wiki? [[User:Vandalbane|Vandalbane]] ([[User talk:Vandalbane|talk]]) 17:00, 1 June 2022 (UTC)&lt;br /&gt;
:The rollback permission of course exists but there's no group called &amp;quot;rollbacker&amp;quot; like you'd find on Wikipedia (limited to admins). You'd need the sysadmin to change the configuration to add one, which as established is not really an option right now. [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 03:58, 2 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What happened to custom JavaScript? ==&lt;br /&gt;
&lt;br /&gt;
I put some code in &amp;lt;code&amp;gt;[[User:Some user/common.js]]&amp;lt;/code&amp;gt;, but it is not alerting 'hi' every time I load a page. Why can't we execute JavaScript anymore? Is it in response to the [[Project:Crap|crapping]] incident? [[User:Some user|Some user]] ([[User talk:Some user|talk]]) 21:16, 27 June 2022 (UTC)&lt;br /&gt;
:Entirely because of that, yeah. '''[[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:51, 28 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== My IP  ==&lt;br /&gt;
&lt;br /&gt;
Why is my IP address a Cloudflare address in Norway? Is this a joke of some kind that I'm missing?&lt;br /&gt;
&lt;br /&gt;
Other wikis like Wikipedia are showing me my actual IP when I go to [[Special:MyContributions]], so I suspect this is a wiki misconfiguration. It changed again while I was typing this. [[Special:Contributions/162.158.222.194|162.158.222.194]] 16:55, 19 November 2022 (UTC)&lt;br /&gt;
:All IPs (as this one will be) are from Cloudflare gateway IPs, because that's the default IP that the Wiki understands as the source. Cloudflare mediates all the traffic, and perhaps to some advantage (not being privvy to the logs, I can only guess how much it insulates the true server from extreme problems, but I bet it does in some way).&lt;br /&gt;
:There have been suggestions before to change some setting (in the MediaWiki implementation? ...can't recall exactly) to have it pick up and use the IP that the gateway reports (in its meta-request) was the origin, but that's not been enacted for Idunnowhat reason.&lt;br /&gt;
:Because the black-box that is the Cloudflare traffic shapes in various ways, you will find that a single user will jump around 'apparent' IPs, and I've also been in the relatively embarassing situation of replying to another IP's info and finding that I've registered on the exact same IP so that it looks like I'm stooging myself, or something.&lt;br /&gt;
:On the whole, though, it's a harmless quirk. And given the trivial nature of deliberately spoofing origins (even on top of assuming you get an effectively static NAT from your ISP in the first place) I don't personally see it as a problem to 'solve' this. But neither would I complain if the 'fix' were implemented if this query reminds someone that they ''were'' going to try and do the necessary tweak.&lt;br /&gt;
:As a lay-answer, I hope that fills you in a little. ''If'' those who have more knowledge/control of the process want to add anything or correct me, I'm sure they'll do so as soon as they can, but here's a reply to keep you going for now... [[Special:Contributions/172.70.85.24|172.70.85.24]] 01:19, 20 November 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Main page in categories==&lt;br /&gt;
{{notice|'''This discussion is marked as duplicate.''' See [[#Main Page|this discussion]].}}&lt;br /&gt;
[[Main_Page]] was found wrongly appearing in some newly-created categories, such as [[:Category:Cosmology]]. Could you fix it? --[[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 17:49, 12 January 2023 (UTC)&lt;br /&gt;
:Never noticed this myself, but I'll take it as read. Before checking myself, I'm wondering if this could be when the main page 'inherits' tags from the Current Comic that it features. And thus solve itself (whilst gaining others) upon a newer Current Comic. (Must surely inherit &amp;quot;Monday Comics&amp;quot;/etc, on schedule every week.)&lt;br /&gt;
:If it is that, perhaps the solution lies in the details contained within https://m.mediawiki.org/wiki/Help:Categories#Categories_and_templates_(transcluded_pages)&lt;br /&gt;
:Or maybe I'm wrong about it. But I have no rights to edit (thus at least examine the 'code' of) the Main page, to check my snap theory, as with most people. [[Special:Contributions/172.70.162.46|172.70.162.46]] 19:21, 12 January 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
This happened again in [[:Category:Airplane banner]]. [[User:I27.O.O.I|I27.O.O.I]] ([[User talk:I27.O.O.I|talk]]) 09:00, 28 February 2023 (UTC)&lt;br /&gt;
:Yes, and it lasted as long as the latest comic was still one with particular categories. I don't intend to worry about it. If someone goes to a category that interests them and looks at the main page, as temporarily advertised, they're likely to find (as part of it) a comic which is indeed in that category. Doesn't sound like a big problem to me, except for determinin why some cats (e.g. Friday Comics) ''don't'' link to the Main page when they might be expected to...&lt;br /&gt;
:(PS, I know for sure that I27.O.O.I isn't the same person as ColofulGalaxy (and various others, beyond even those with the bloomin' obvious &amp;quot;CG&amp;quot; initials or other recent spoofs on the RFC1918 addresses), and I don't think I mind too much, but faking disagreements between your various IDs isn't helping, anyone... smells too much of trying to establish alibis in advance of your next attempt to vandalise the site with stupid stuff. And doesn't impress me, so I doubt it impresses anyone else either. As long as you're just doing sane things, however, I'll accept your little idiosyncracies.) [[Special:Contributions/162.158.74.32|162.158.74.32]] 19:37, 5 March 2023 (UTC)&lt;br /&gt;
:(PPS: You left your fingerprint on this latter attempt to 'rescue' [https://www.explainxkcd.com/wiki/index.php?title=Talk:2659:_Unreliable_Connection&amp;amp;curid=25530&amp;amp;diff=307289&amp;amp;oldid=307282 this page]. - Spammer a few minutes before midnight, my IP reversion happened shortly after. A little later &amp;quot;Elisabeth&amp;quot; then re-spammed (modified), then another IP immediately jumps on it to restore it but with the modified undo-summary line clearly indicating that some sort of a game is being played. Please don't, it's not clever.) [[Special:Contributions/172.70.90.34|172.70.90.34]] 02:22, 7 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
This doesn't happen to date categories, but it happens in manually added categories such as [[:Category:Statistics]]. [[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 21:49, 27 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Cannot create user page==&lt;br /&gt;
It says: There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. [[2659: Unreliable Connection]] ([[Talk:2659: Unreliable Connection|talk]]) 22:56, 26 March 2023 (UTC)&lt;br /&gt;
:(Removed alternative text in the link involved, to not hide behind trickery.) I think you know that there's no problem with [[2659: Unreliable Connection]] itself, except that it had become one of several pages targeted for spamming, the only one then locked down, then finding that the spammers just retargeted to its Talk page, etc.&lt;br /&gt;
:I'm torn between &amp;quot;not assuming bad faith&amp;quot; and &amp;quot;don't feed the trolls&amp;quot;, as competing principles, so I'm spelling out the situation. However much a tribute you might think it could be, I don't think there's a future in having a new username that's directly referencing a comic which has become so frequently seen in the recent history of this wiki's edits.&lt;br /&gt;
:Obviously any genuine contributions are more than welcome. So prove me wrong, why don't you? [[Special:Contributions/172.70.91.151|172.70.91.151]] 03:20, 27 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Could you help now?  [[User:Unreliable Connection|2659: Unreliable Connection]] ([[User talk:Unreliable Connection|talk]]) 09:13, 29 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I've created your talk page. I guess that what you intended is to have a backup or mirror page for comic [[2659]]. Am I right? [[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 20:16, 2 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Fanmade comics ==&lt;br /&gt;
A fanmade comic appeared on xkcd. Could you edit the template? [[Special:Contributions/172.69.23.100|172.69.23.100]] 07:21, 28 April 2023 (UTC)&lt;br /&gt;
:You're going to have to say more about it, at least for me. Apart from the Sandbox attempt to make a page, I haven't seen the comic you're describing anywhere. Certainly not anywhere official. Link, for our benefit? [[Special:Contributions/172.70.85.66|172.70.85.66]] 10:04, 28 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Why doesn't this code block work?==&lt;br /&gt;
Does anybody know why the code block at the end of [[Transcript on xkcd|this page]] doesn't work? I've tried everything and it still looks like plain text&lt;br /&gt;
&lt;br /&gt;
== Can't add RSS feed because of pubDate value on 27 Nov 2015 ==&lt;br /&gt;
&lt;br /&gt;
When I try to add the RSS feed in Nextcloud News feed reader I get an error &amp;lt;code&amp;gt;Impossible to convert date : Fri, 27 Nov 2015 17:24:34 Pacific Standard Time&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fexplainxkcd.com%2Frss.xml W3C Feed validation] says that &amp;lt;code&amp;gt;pubDate must be an RFC-822 date-time&amp;lt;/code&amp;gt; and points &amp;quot;Pacific Standard Time&amp;quot; portion as the cause of the error: &amp;lt;code&amp;gt;&amp;lt;pubDate&amp;gt;Fri, 27 Nov 2015 17:24:34 Pacific Standard Time&amp;lt;/pubDate&amp;gt;&amp;lt;/code&amp;gt;. Can you please fix the timestap for this?&lt;br /&gt;
&lt;br /&gt;
== Admin request posted here because of vandalism ==&lt;br /&gt;
&lt;br /&gt;
I can not currently access the admin requests page because it has been vandalized... can someone please protect the latest comic page (2805). There is some pretty childish vandalism going on there right now. Thanks!&lt;br /&gt;
:It's not the latest, seems like ALL. I went back to 2804, 2803, jumped back like 15 comics, all the same thing. To me the most offensive part is doing it with a nonsensical image. And why pipe it through Archive somehow? [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 02:33, 24 July 2023 (UTC)&lt;br /&gt;
::UGH. the vandals are back at it again... we need to lock xkcd pages @NiceGuy [[Special:Contributions/172.70.39.2|172.70.39.2]] 00:59, 25 July 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Way to contact the site hosters? ==&lt;br /&gt;
&lt;br /&gt;
As many have pointed out the software this wiki runs on is horribly outdated. WikiEditor also isn't here for some reason. Quite a bit of messages here have seen no action. Is there some kind of contact form to reach the hosters? {{unsigned|Aaron Liu|00:36, 10 October 2023}}&lt;br /&gt;
: There are various levels of admin who do intervene, as and when jecessary, but I understand that the (active) ones closest to the actual hosting level of intervention are not really ready to do the (increasingly greater) degree of uprooting necessary to get a &amp;quot;working&amp;quot; system to be &amp;quot;marginally better working&amp;quot;, by way of that very dangerous middle-ground of potentially being ruined entirely.&lt;br /&gt;
: I appreciate and anticipate the counter-arguments regarding letting it go totally unupdated, of course, just I've personally seen enough failures (participated in some, or been the actual invokee, myself) to be very sympathetic to the &amp;quot;if it aint (too) broke, don't fix it&amp;quot; tendency. But that inertia is not the only factor, of course, and the full motivations (or lack of them) of those involved is not for a lowly IP like me to explain, even if I think I know... [[Special:Contributions/172.69.195.42|172.69.195.42]] 01:24, 10 October 2023 (UTC)&lt;br /&gt;
:: Have they posted some sort of statement? It also is most definitely not “marginally” better working, compare the source editor to that of Wikipedia and look at topic subscription etc features. Not to mention a lot of security fixes haven’t been added and this version has reached EOL long ago. Updating also would not ruin this entirely…[[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 17:22, 12 October 2023 (UTC)&lt;br /&gt;
:: Some have also said that quite a bit of assistive scripts for modern versions don’t work. Visual Editor, while horrible, is still easier for new people to get started with. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 17:23, 12 October 2023 (UTC)&lt;br /&gt;
I've found a new reason: This wiki doesn't even allow loading userscripts! [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 01:34, 9 December 2023 (UTC)&lt;br /&gt;
:That might actually have been a conscious decition, after a 'certain user' caused chaos here, not so long ago. [[Special:Contributions/162.158.74.25|162.158.74.25]] 19:01, 9 December 2023 (UTC)&lt;br /&gt;
::It was about a year and a half ago. I'm sorry, I shouldn't have done that. [[Special:Contributions/172.68.174.143|172.68.174.143]] 06:41, 10 December 2023 (UTC)&lt;br /&gt;
::Huh? What happened? Is there a place to request gadgets then? [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 02:04, 10 December 2023 (UTC)&lt;br /&gt;
:::&amp;quot;What happened&amp;quot; involved automated vandalism (from someone who been doing it manually, then found the &amp;quot;better way&amp;quot;) though I couldn't tell you the exact details, there were automated 'unvandalism's made in response, and theusafBOT/etc does some of that still, in response to non-automated(/off-site scripted) vandalism/errors that it can actually catch before ordinary users (or IPs like me) can. But certainly a certain brand of scripting was turned off to curtail the 'high intensity' vandalism phase.&lt;br /&gt;
:::You're more or less in the best place to request things, right here. Whether updates, (re)adding functionalitu or tweaking site settings. Can't tell if those who ''can'' do these things can't or won't do them... Or are actually absent, instead of just not replying. The cavalry has been known to come running in when necessary (e.g. when &amp;quot;what happened&amp;quot; happened) so it could be any manner of non-response (until you get one). Not necessarily the best state of affairs, but better than being confirmed absentees.&lt;br /&gt;
::::I ran a bot to mass-edit pages by replacing their content with the word &amp;quot;crap&amp;quot; repeatedly. I was 15 then, and I thought it was funny. It wasn't. [[Special:Contributions/172.68.174.143|172.68.174.143]] 06:41, 10 December 2023 (UTC)&lt;br /&gt;
:::As an occasional but infrequent actual-Wikipedia editor, too, I must say that if the Visual Editor is what I currently have to use for that (at least as an anonIP when using a mobile device, which tends to be when I get the urge most) then I like the unaugmented editor here more. Straight up, honest, un'wizarded' interface, where you only have to get used to markup details and not a WYSIWYG editing environment (as well?). Not sure I'd be happy with an even ''more'' 'assistive' script imposed upon me, like I dislike modern generations of Windows (and 'user friendly' linux dists). So can I just ask that functional/visible changes of the kind you seem to be asking for, if made available, aren't overimposed/left as options rather than the default (or only) choice...? Ok, so I can (or would have to) adapt, but I'd rather not. Of course, I have no weight to pull in this matter, it's just an afterthought (even as I wish you good luck with raising an admin's eyebrow, in some useful manner). [[Special:Contributions/141.101.98.135|141.101.98.135]] 05:14, 10 December 2023 (UTC)&lt;br /&gt;
::::I am not asking for VisualEditor, which no one likes on Wikipedia either. For some blasted reason they made it edit HTML instead of Wikitext and it’s clunky and loads for a very long time.&lt;br /&gt;
::::I’m asking about the WikiEditor, aka Wikipedia’s source editor. In VE, click on the pen next to the publish button and click on “source editing”. That editor makes this one look like freaking Stone Age, syntax highlighting is especially a game-changer. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 16:03, 12 December 2023 (UTC)&lt;br /&gt;
: There’s also the annoying ReCaptcha v2 every single edit… it seems like it would be relatively easy to switch to v3 which only makes you do the challenge when you’ve visited a bit too much. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 16:32, 12 December 2023 (UTC)&lt;br /&gt;
:: Unfortunately, that would make things easier for someone who wanted to do mass vandalism like I did. If it didn't do it every time, someone could still edit quite quickly. [[Special:Contributions/172.68.174.192|172.68.174.192]] 18:32, 12 December 2023 (UTC)&lt;br /&gt;
::Well, I can tell you that it doesn't always demand that I fulfil more than a tickbox (most trouble I have is when it fails to connect to give me the tickbox (or respond with anything useful when I do), for which I'm forced into one or more Previews until it will. When it ''does'' ask me to do something about it, I do often get forced through two or more request to identify traffic lights, motorbikes, stairways, bridges, hills, tractors, buses, etc, etc, etc... But I think that's more the Tesla-training Algorithm being nust greedy for my attention than the Robot-sentry having a less casual attitude to my attempt to edit. (I believe I'm on a usually untroublesome source IP/Cloudflare gateway, but it could also depend on how many others try to do things via (part of) the same route. Very, very rarely I get Google Search requesting something similar of me ((It: &amp;quot;You have made a lot of searches&amp;quot;, me: &amp;quot;Of course I'll have play your little game, but this is my first lookup today...&amp;quot;)), which I'm sure isn't Cloudflared, so it might reach back to my ISP's gateway and what fellow users are currently getting up to.)&lt;br /&gt;
::As for the guy above (and you, Liu), can't speak for how well or badly others on your own 'choice' of gateways behave. Or yourselves. Luck of the draw? For the first part, at least. [[Special:Contributions/172.69.195.174|172.69.195.174]] 20:31, 12 December 2023 (UTC)&lt;br /&gt;
:::MediaWiki 1.40 automatically tags all edits that remove over 90% of page text with &amp;quot;mw-replaced&amp;quot;. You could block all edits in mainspace with that tag, either if MediaWiki has it or through the AbuseFilter extension. While I can complete the CAPTCHAs, it's very annoying to need to Captcha every edit on a place where the main focus is edits. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 03:06, 13 December 2023 (UTC)&lt;br /&gt;
:::Plus, v3 doesn't just do nothing. It tracks how your cursor moves to see if it's robotic, while v2 annoyingly gives you the challenge every time. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 20:01, 8 January 2024 (UTC)&lt;br /&gt;
::::Presumably for touchscreen control (like mine, right this moment), it does something else than track a nonexistent mouse-pointer's passage across the monitored elements of the display... ;) [[Special:Contributions/172.70.90.190|172.70.90.190]] 12:26, 9 January 2024 (UTC)&lt;br /&gt;
::There are a few MediaWiki plugins that help keep vandalism/spam under control without requiring users to solve a Captcha every time they make an edit. I use https://www.mediawiki.org/wiki/Extension:Moderation on the wiki I maintain, and it works very well. However, it does require that there be enough active moderators to approve edits, as it basically requires every single edit to be approved before it's posted. Thus, it also introduces some &amp;quot;lag&amp;quot; between when stuff is written and when it can be seen by others. I think it could work if the extension could be installed (I'm not even sure if it's supported on this version of MediaWiki) and if a good list of moderators could be put together. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 20:02, 9 February 2024 (UTC)&lt;br /&gt;
:::I disagree with requiring edits to be approved. Unless we have extremely high vandalism, just filtering out the above tags I mentioned and using ReCAPTCHA v3 would be enough. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 23:16, 16 February 2024 (UTC)&lt;br /&gt;
::::Ok, fair point. However, that wouldn't stop human vandalism, just vandalism from bots. I'm not sure how much human vandalism there is, though, so it might not even be a problem. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 12:35, 22 February 2024 (UTC)&lt;br /&gt;
:::::It's hard (for us 'civvies') to know how much bot-vandalism is stopped but [https://www.explainxkcd.com/wiki/index.php?title=Special:Log/newusers&amp;amp;offset=&amp;amp;limit=500&amp;amp;type=newusers&amp;amp;user= probably a lot], most of which we never see, with [https://www.explainxkcd.com/wiki/index.php?title=2503:_Memo_Spike_Connector&amp;amp;diff=335487&amp;amp;oldid=335486 occasional ones] we might see having be dealt with. (I'm guessing these things are rare (temporarily-)successful 'bots, because flesh-and-blood vandals wouldn't be occasionally doing essentially the same insta-reverted thing on a thematically-small set of pages, over several ''years'' without moving on. It has to be a lucky unattended script-based effort that just keeps trying the same things over and over with an easily revertible but tangible result happening only infrequently.)&lt;br /&gt;
:::::More obvious human vandalism tends to rumble on, with occasionally a spate of it as someone gets short-term kicks for it. Though some of them seem may repeat themself after a break. Friendly humans and friendly 'bots both tend to provide the main anti-vandalism responses fairly quickly, though, depending upon what kind of a mess they caused. I've seen worse places, definitely, and it's by no means a losing battle against chaos, just regular skermishes.&lt;br /&gt;
:::::Not wanting to tempt fate, of course. I guarantee that there'll be some fool that takes all this as a challenge, so I just have to trust to the Good Guys keeping on keeping on. [[Special:Contributions/172.70.90.71|172.70.90.71]] 14:21, 22 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
heyo, is there a way to add actual citations to explainxkcd instead of the template citation needed? couldn't find anything, but i'm pretty new here - thanks in advance. [[User:Nigga|Nigga]] ([[User talk:Nigga|talk]]) 21:47, 17 March 2024 (UTC)&lt;br /&gt;
:Not that I have much faith in your usernae lasting long (you're 'that guy', aren't you? ...in which case you know anyway), but for the sake of anyone else who needs to know:&lt;br /&gt;
:*If you mean &amp;quot;add an actual 'citation needed' tag&amp;quot;, then it's {{template|Actual citation needed}} that you'll use.&lt;br /&gt;
:*If you mean &amp;quot;add an actual citation link to somewhere&amp;quot;, then:&lt;br /&gt;
:** Link to URLs with [].&lt;br /&gt;
:*** A link such as [&amp;lt;url&amp;gt;] will give you a superscript-number link, which isn't pretty, IMO.&lt;br /&gt;
:*** A link such as [&amp;lt;url&amp;gt; &amp;lt;text&amp;gt;] (that's a space between the two) will link &amp;lt;text&amp;gt; to the URL, just work it into the sentence you're writing, fairly easy&lt;br /&gt;
:** Link to internal (or cross-wiki) pages with [[]].&lt;br /&gt;
:*** [[&amp;lt;page title&amp;gt;]] will make a literal link to &amp;lt;page title&amp;gt;.&lt;br /&gt;
:*** [[&amp;lt;page title&amp;gt;|&amp;lt;text&amp;gt;]] (with a pipe) is how you make the &amp;lt;text&amp;gt; your link.&lt;br /&gt;
:** You can use the last to link specifically to wikipedia's cross-site format, but for that it's best to use {{template|w}}&lt;br /&gt;
:*** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;page title&amp;gt;}}&amp;lt;/nowiki&amp;gt; (w-pipe...) uses the page title&lt;br /&gt;
:**** It will use the link as if the first character is uppercase, so you don't need to capitalise that. Other case-sensitivity is preserved.&lt;br /&gt;
:**** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;singular page title&amp;gt;}}s&amp;lt;/nowiki&amp;gt; will link the obvious pluralisation of the page title, just to save you effort&lt;br /&gt;
:*** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;page title&amp;gt;|&amp;lt;text&amp;gt;}}&amp;lt;/nowiki&amp;gt; (w-pipe and pipe) lets you use entirely alternate text.&lt;br /&gt;
:** There's also templates that shortcut (or make easier on the eye, or add appropriate warnings) for some other commonly referenced external sites, from xkcd's own what-if to TVTropes.&lt;br /&gt;
:...hope that helps everyone that doesn't already know these few simple bits as relate to wikis in general or this wiki in particular. [[Special:Contributions/172.71.242.218|172.71.242.218]] 22:24, 17 March 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Confirmation Email Bug ==&lt;br /&gt;
&lt;br /&gt;
Hi. I've been trying to get my email confirmed so that I can get pinged when pages are edited, but I just can't find it, even after trying multiple times. I use Gmail, and yes, I have checked my spam folder. Has anyone else had this issue? EDIT: I see that others have had this issue, but the admins haven't done any action to solve it, except for one sarcastic comment by Davidy22 back in 2014. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 00:43, 12 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Lack of Userpage ==&lt;br /&gt;
&lt;br /&gt;
Hey, I joined a few years ago, but I still do not have a Userpage. Can you make one for me? I do not have the permission to do so. [[User:GreyFox|GreyFox]] ([[User talk:GreyFox|talk]]) 22:47, 15 May 2024 (UTC)&lt;br /&gt;
:This is actually your very first post, after joining a bit more than a year ago (&amp;quot;18:35, 14 November 2023 User account GreyFox (talk | contribs) was created&amp;quot;). I'm sure someone can oblige (not me, for obvious reasons), but you've not done much to contribute (at least under this account), which would have then eventually brought you to the point where you ''can'' just self-create your Userpages/etc. So your request is a bit out of the blue.&lt;br /&gt;
:Just so long as we all know where we stand, though. [[Special:Contributions/172.69.194.227|172.69.194.227]] 09:42, 16 May 2024 (UTC)&lt;br /&gt;
::Oh, thanks! Do you know the exact number of edits I need to create it?&lt;br /&gt;
:::50 to be autoconfirmed. Also, please sign your comments. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:23, 16 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== server errors ==&lt;br /&gt;
is anyone else constantly getting 503 errors? [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 17:14, 21 May 2024 (UTC)&lt;br /&gt;
:yup, been seeing those all the time. Also seeing that the server is down a lot of time-it suggests me to Google for what I’m “looking for” [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:18, 21 May 2024 (UTC)&lt;br /&gt;
::503s are fairly common (often when I'm in a rush), and have been for... well, certainly years, maybe more than a decade (though more common during major vandalism/anti-vandalism surges). I had, however, noticed a recent blip (during the last day or so) of the Server Down/Try Google page that you refer to, which I haven't seen for a ''long'' time (not really sure when, but maybe five years or so ago). In fact, I probably got Cloudflare 'rejections' more, during aformentioned vandal-overloading.&lt;br /&gt;
::Without any access to the admin logs, I can only speculate as to what might be sparking it. But service (notwithstanding the brief page-refusals themselves) seems to be happily unaffected. [[Special:Contributions/172.70.160.249|172.70.160.249]] 20:29, 21 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Allow new users to edit their own page ==&lt;br /&gt;
&lt;br /&gt;
I found someone asking if we could change this in the proposals page (Community portal/Proposals: Allow Users to Edit their own talk page if not auto confimed (not a typo)). [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:39, 19 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Technical difficulties? ==&lt;br /&gt;
&lt;br /&gt;
I keep getting a message that says: &amp;quot;Sorry! This site is experiencing technical difficulties.Try waiting a few minutes and reloading. (Cannot access the database)&amp;quot;&lt;br /&gt;
It's happened a lot so I was wondering if there was a specific cause behind it and perhaps a way to fix it.&lt;br /&gt;
[[Special:Contributions/172.68.54.65|172.68.54.65]] 00:17, 17 September 2024 (UTC)&lt;br /&gt;
:yeah, I’ve been getting those errors too. I can’t even log into my account before it says that there’s an error again. I’ve been steadily receiving them for a couple months, but never like today. From Recent Changes, it doesn’t look like anyone is spamming the wiki, so maybe it’s an attack of some kind. You’ll need to contact the admins who have access to the server and can poke around, but good luck getting [[User:Davidy22]] or [[User:Jeff]] online. [[Special:Contributions/172.69.135.130|172.69.135.130]] 17:16, 17 September 2024 (UTC)&lt;br /&gt;
::update: I’ve been poking around a lot of websites, trying to see if the website is being attacked. The websites all say that the server is down. I’ll try to ask Jeff on this and pray that he checks his email. [[Special:Contributions/172.69.135.129|172.69.135.129]] 17:21, 17 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== the site is collapsing ==&lt;br /&gt;
503's are to be expected, but i've got them and the &amp;quot;Sorry! This site is experiencing technical difficulties. Try waiting a few minutes and reloading.&amp;quot; error way, way too much. it's actually getting really hard to edit stuff because of them. [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 01:58, 19 September 2024 (UTC)&lt;br /&gt;
:heck, i just got a 503 when posting this topic. also, load times are noticeably longer. and i'm getting &amp;quot;loss of session&amp;quot; errors when i try to edit... [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 02:02, 19 September 2024 (UTC)&lt;br /&gt;
::I’ve messaged Davidy22 and Jeff about it, hopefully they see it and reply. It looks fine right now, appears that it works horribly at times and fine later. Due to the on-off nature of it, I would suspect DDoS attacks, as a 503 error means that the server can’t process the request, which occurs with DDoS attacks. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:37, 19 September 2024 (UTC)&lt;br /&gt;
:::update: I’ve made a Reddit post, as I’ve seen Davidy22 active on Reddit and respond to older threads on r/xkcd. Hopefully they respond! [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:50, 24 September 2024 (UTC)&lt;br /&gt;
::::October update: Davidy22 responded to my emails and said that he has emailed Jeff multiple times. Apparently Jeff is ignoring his emails and not responding. I’ve been checking Jeff’s Twitter/X/Whatever once a week and it shows that he uses it semi-regularly. Apparently Jeff is a podcaster too? Anyways, nobody has really responded to me on r/xkcd, so I’m thinking of sending a DM to Jeff via Twitter. I have a to-do list for Jeff listed on my User Page, feel free to give any thoughts, proposals, comments on anything else you want him to do in this thread. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:46, 24 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== List of All Comics ==&lt;br /&gt;
&lt;br /&gt;
I think that FaviFake and I have accidentally broken the All comics page. When clicked, it brings you to the page List of all comics, which displays the comics 3000-3002 (as of right now) instead of the list of all comics (oops-my bad). How do we fix this? There’s also the page List of all comics (3000-3500), but the TheusafBOT ignores it. Can someone more technical help troubleshoot this problem? Again, sorry for making a muck of things. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:43, 24 October 2024 (UTC)&lt;br /&gt;
:Oh I'm sorry, I created a new topic for this and I didn't see this one. I noticed the [[List of all comics (3000-3500)]] today and scheduled it for deletion because we never make such a page until we have exactly 500 comics to put there. Also, the name is wrong, it should say 3001-3500.&lt;br /&gt;
:The page [[List of all comics]] is supposed to display comics 3001-3005, not all comics. You might be confusing it with [[List of all comics (full)]], which would work perfectly if [[List of all comics]] displayed the last 3 comics. I have no idea why the bot stopped updating it. Maybe it will work now that the wrong page is scheduled for deletion? [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:15, 31 October 2024&lt;br /&gt;
::Wait a second, why did you move the List of all comics to [[List of all comics (3000-3500)]]? It seemed to me like everything was working fine before you moved it [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:24, 31 October 2024 (UTC)&lt;br /&gt;
:::I was trying to copy the content to [[List of all comics (3000-3500)]], and accidentally broke it. Sorry! [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 16:48, 31 October 2024 (UTC)&lt;br /&gt;
::::Yeah I can confirm the content and the entire edit history was moved to the incorrectly-titled page that's now scheduled for deletion. I guess maybe we didn't really need the edit history on that page, but who knows.&lt;br /&gt;
::::Weirdly, the bot seems to have restored the page as it was and then stopped doing its thing. Since we're the only ones here, I suggest you manually create the missing rows for the new comics and we'll see if that works when the next comic drops. If it doesn't, I'll contact the maintainer and creator of the bot myself. Sounds good? :) [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:29, 31 October 2024 (UTC)&lt;br /&gt;
:::::Sir yes Sir! 🫡 [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 04:51, 1 November 2024 (UTC)&lt;br /&gt;
:::::: Great, thanks! I can also do it this afternoon if you don't have time. I realise my previous messages read like orders lol, they were supposed to be suggestions to try and fix the issue. [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 07:18, 1 November 2024&lt;br /&gt;
&lt;br /&gt;
== The [[List of all comics]] is no longer being updated automatically ==&lt;br /&gt;
&lt;br /&gt;
Hey everyone, I noticed the bot isn't updating this page anymore: [[List of all comics]]. There are supposed to be five comics in it but there are only two at the moment. Is this supposed to happen? [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:06, 31 October 2024&lt;br /&gt;
&lt;br /&gt;
== 2034: Equations error? ==&lt;br /&gt;
&lt;br /&gt;
One of the TeX math-thingies (sorry for the informal writing), is showing this error: &amp;quot;Failed to parse (Missing texvc executable. Please see math/README to configure.): \oint&amp;quot;. Idk why it's showing this, can someone fix this? [[Special:Contributions/108.162.237.48|108.162.237.48]] 19:25, 6 November 2024 (UTC)&lt;br /&gt;
:It's a long-standing error, to do with the background processes that turns the TeX-style markup into embedded images. All equations (or whatever it might be that the particular MathML was being used to render) that were originally given cached-imagery ''still work fine'', but it seems a later update made it so that if you adjust it at all (even slightly), it no longer has the route to produce the embedding cleanly.&lt;br /&gt;
:It can probably be solved by rolling back some module(s) that got refreshed quite some time ago, though the advised fix is to actually fully update them (and/or reconfigure the backend scripting) to work with all the newest versions of the original tools. Unfortunately, the people (or maybe person) who would do this is not too active at the moment (may also not be up to speed on everything, either, if it involves a bit of more tricky administration), so we're left with the occasional problem establishing the texvc handler.&lt;br /&gt;
:Not sure which page you're encountering this on, but sometimes if you look back in the edit history you can find a working version of the thing you're seeing go wrong. If it's an aesthetic difference (e.g. the presence or absence of a spacing character), you might be able to just restore the render-cached version and make do with it not looking ''quite'' right.&lt;br /&gt;
:If it's a necessary change that was made (e.g. &amp;quot;''dt''&amp;quot; instead of &amp;quot;''dx''&amp;quot;, which is definitely wrong the old way), or it seems never to have a valid render, then there's two obvious solutions:&lt;br /&gt;
:#Make your own image of it as it should be and (with a suitably auto-validated account, or via a handy external image hosting service and/or a more mature account here) get that embedded in place of the markup-source, or&lt;br /&gt;
:#Replicate its appearance in more basic (by standard) but complex (by source needed) markup. Combinations of basic wikimarkup and HTML can do most 'fiddly positional' things, see [[2614: 2]] for a numerator/denominator layout, for example.&lt;br /&gt;
:Not as 'simple' as TeX-markedup. But, on the other hand, the &amp;quot;\oint&amp;quot; symbol is &amp;quot;∮&amp;quot;, so perhaps all you need to do is copy'n'paste that actual unicode symbol to wherever you found the problem, and use that instead, and forgo the TeX version altogether? (Might not show on some displays, but probably enough to make it a minority issue.) [[Special:Contributions/172.70.90.105|172.70.90.105]] 22:50, 6 November 2024 (UTC)&lt;br /&gt;
:Had the brainwave that I could probable ''search'' for the offending \oint, actually. Did so, found [[2034: Equations]], noted that it was the only (current) rendering issue and therefore just did the pasting over myself. Looks good for me, but obviously might not help (but not make worse) others' viewing of it. [[Special:Contributions/172.69.195.54|172.69.195.54]] 22:58, 6 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
...Why didn't I think of just pasting the Unicode equivalent. I'm dumb, but thanks for fixing it. [[Special:Contributions/172.69.70.10|172.69.70.10]] 13:44, 8 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Esolang wiki bug ==&lt;br /&gt;
The &amp;quot;esolangs.org&amp;quot; wiki is also experiencing a similar bug. The server was repeatedly changing a particular user's signature in his posts. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 04:01, 29 November 2024 (UTC)&lt;br /&gt;
:Fucking bullshit. One, this doesn’t belong here and I’ve copied it into [[explain xkcd:Community portal/Technial|the Technical Community Portal]]. Two, I saw your talk page on [https://esolangs.org/wiki/User_talk:ColorfulGalaxy%27s_CA_discoveries esolangs.org], which you brought up this “bug”, which the local admin (who’s probably just as sick and tired of you as I am) called BS on. If the server was changing your sig to my sig, it would be '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''', not the sig that you faked in. You’re obviously seeking attention and are being abusive and childish. Please see the bottom of https://esolangs.org/wiki/Esolang:Introduce_yourself to see a full list of complaints. I will be asking Kynde to ban you and all of your alt (or shared) accounts. -tori [[Special:Contributions/162.158.167.98|162.158.167.98]] 05:36, 29 November 2024 (UTC)&lt;br /&gt;
::Additionally, the complaint doesn’t even make sense. The 2 wikis are running on different servers and different MediaWiki software and should in no shape or form be having the same bug across 2 different systems. Plus, why is the CAPTCHA in the esolang wiki so damn difficult? (Just a side note :3) -tori&lt;br /&gt;
:I just realized that they've changed '''my''' signature as well. That's strange. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 06:37, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Once again they suddenly redirected my username to the Main Page. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:05, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
:It's working normally now. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:06, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Technical&amp;diff=358193</id>
		<title>explain xkcd:Community portal/Technical</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Technical&amp;diff=358193"/>
				<updated>2024-11-29T13:05:26Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Esolang wiki bug */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;__NEWSECTIONLINK__&lt;br /&gt;
{{Community links}}&lt;br /&gt;
&lt;br /&gt;
{|-&lt;br /&gt;
|valign=&amp;quot;top&amp;quot; width=&amp;quot;100%&amp;quot;|[[File:Crystal Clear app package settings blue.png|left|120px]] &amp;lt;big&amp;gt;&amp;lt;big&amp;gt;&amp;lt;b&amp;gt;Technical&amp;lt;/b&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt;Technical issues ''about'' the [[explain xkcd]] wiki, including bug reports or MediaWiki extensions requests.&amp;lt;/i&amp;gt; {{AddNewSection|Page=Explain XKCD:Community portal/Technical|Text=&amp;lt;small&amp;gt;(+post)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
= Discussion Area =&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== We need more maintainers ==&lt;br /&gt;
&lt;br /&gt;
:''I'm moving a thread that Davidy22 started on my talk page. The gist is, we need more people with server-side access (especially mediawiki-savvy ones) so we can properly deal with several issues that have been plaguing the wiki for a while now, most notably spam, but also the image scaling problem, a possible extension for proper comments, clean urls, etc. Below is the original thread, please comment.'' --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:56, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could you set the permissions so that all anon users have to pass a captcha to edit? The spam has gotten obscene, and they've stopped posting links, so our current detection mechanisms aren't working anymore. [[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Davidy22|&amp;lt;tt&amp;gt;(talk)&amp;lt;/tt&amp;gt;]] 08:21, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I would love to have the ability to tweak the wiki more thoroughly, but currently Jeff's the only one with server access. To be honest, I am not terribly familiar with server-side mediawiki management, so I haven't asked Jeff for access, but it's clear we can't be dependent on a single person to do all the mediawiki config (and Jeff probably knows even less about mediawiki than I do). Are you by any chance acquainted with server-side mediawiki maintenance? I think we could present a good case for having someone else with access to a dev/prototype instance of this wiki on Jeff's server so we could at least experiment and tell him exactly what needs to be done. Thoughts? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:40, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I agree that we need more people that are empowered to actively fight spam. I think that we ought to promote Davidy22 to administrator also, so that he can delete pages and block spammers/vandals as he notices them rather than letting them pile up until yourself, IronyChef, or myself notice that there's work that needs done.&lt;br /&gt;
&lt;br /&gt;
::What I think we should do is break out rights into more groups than simply administrator and bureaucrat. I think that's too big of a jump, and that there should be some gradiation. I think we should add a moderator (mark pages as patrolled and rollback ability (as much as it's a sledgehammer when you really only need a ball-peen hammer)) position.&lt;br /&gt;
&lt;br /&gt;
::I think we also need a spam fighter position, but that might not be possible to implement. It should be a position that allows the person to delete pages with 1 or 2 edits (page creation, marked as spam, maybe as high as 3 or 4 for the bots that repeat edit certain pages) and block users with 1 or 2 edits. The real problem there is how to grant those super-powerful abilities without allowing them to lose their mind and go crazy and destroy the wiki. Of course, if we don't catch it early enough there's going to be those IPs that manage to get to six edits, and those will have to be squashed by a full admin. We will also need a way of tagging those spam accounts so when a full admin passes by they will also know to ban the IP address after a spam fighter has deleted all the pages it created.&lt;br /&gt;
&lt;br /&gt;
::Finally, we also need a more active bureaucrat so that we don't have to bug Jeff to promote admin's as well as future moderators and/or spam fighters, and recognize bot accounts as bot accounts. We also should find someone knowledgeable to help Jeff (and maybe he has little helpers) to maintain the actual server. I've done some PHP work, but I've never touched anything deep inside a wiki (I like Ruby and Rails much more). This is my first time gaining admin status on a wiki, so I have no idea what the extra dials and levers do/mean. I look up on the MediaWiki manual and Wikipedia help pages things that I think should be possible, and often times pages exist in places about doing these things, but I'm nowhere near being called knowledgeable. After I finish up some IRL work I'm currently tied up in, I intend to set up a VM webserver on my computers and run a mediawiki install so I can learn how to work (and not break) things without putting explain xkcd in jeopardy.&lt;br /&gt;
&lt;br /&gt;
::Another really wordy post from, [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]])  22:01, 29 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: From what I know, a moderator user group is possible, but not the spam fighter one. Then again, too many hierarchical levels may be too much for such a small body of regulars. Implementing the moderator group is easy, [[mw:Manual:User rights]] has the details (the &amp;quot;ninja&amp;quot; example and the &amp;quot;list of permissions&amp;quot; section should be enough for putting together the configuration commands to be added to the wiki's LocalSettings.php).&lt;br /&gt;
::: As for bureaucrats, I think it makes sense but it seems to me that Jeff only takes longer to perform changes that affect the server, as they understandably may take longer or be more complex (or break the wiki!). Bureaucrats' only difference from admins is that they can promote/demote other users, and this Jeff has been doing without delay, so perhaps there isn't a need for more bureaucrats at the moment. Please correct me if I'm wrong.&lt;br /&gt;
::: We do need more sysadmins (people with access to the server), though, for sure. This is a little tricky as none of us is comfortable enough to confidently make server changes in a mediawiki install. Jeff, how about putting the wiki in source control and giving two or three people access to it, so that any wrongdoings can be easily reverted? You could setup a git repository in the server and we could fork it locally to our machines, make tests and push the commits to the server repo whenever they're ready. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:20, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: This is good stuff.  I'm down with promoting more admins for spam fighting.  If they screw stuff up we can demote them if necessary.  I really haven't found a spam fighting extension that I think will be the best possible solution.  I'll keep looking as it may be a combination of things. Server access is much more complicated as it is not even my server and it is shared hosting.  I think that would be best to be accessed just by me. --[[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]]) 19:10, 19 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::: Regarding the server, I understand -- your position seems reasonable. In any case, I've been looking for extensions that may help taking some workload out of server actions and make more stuff configurable via the wiki itself. I'll report back if I find something usable.&lt;br /&gt;
::::: On another note, how do you feel about promoting more bureaucrats? I suggest Lcarsos who's been consistently active for the past few months. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 12:47, 4 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Personally I'd kind of like to go and make some changes myself. Come up with a nice short url pattern and set it up. Upgrade the wiki. etc... [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 02:44, 23 March 2013 (UTC)&lt;br /&gt;
:The shorter URL is being looked into, although Mediawiki strongly advises against it. As for upgrades to the wiki, monetary donations towards Jeff so he can buy better bit for the server would be appreciated. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 03:06, 23 March 2013 (UTC)&lt;br /&gt;
::MediaWiki does not advise against it. Half the code currently running short URLs in core was written by me. Same for the new standard for rewrite rules in the new guides. And the tool to automatically generate the config needed to apply short urls to a wiki. Short URLs are '''not''' advised against.&lt;br /&gt;
::We do however strongly advise against installing a wiki in &amp;lt;code&amp;gt;/wiki&amp;lt;/code&amp;gt;. Because you do '''not''' want to create &amp;lt;code&amp;gt;/wiki/$1&amp;lt;/code&amp;gt; style paths while your script path makes scripts look like &amp;lt;code&amp;gt;/wiki/index.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
::In this case my plan would be to move &amp;lt;code&amp;gt;/wiki&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;/w&amp;lt;/code&amp;gt; then come up with some other short url pattern like &amp;lt;code&amp;gt;/e/$1&amp;lt;/code&amp;gt;, some other path, or maybe &amp;lt;code&amp;gt;/$1&amp;lt;/code&amp;gt;.&lt;br /&gt;
::And setup some 301 redirects to redirect from the old urls to the new ones.&lt;br /&gt;
::And upgrading the version of MediaWiki so that it doesn't have security holes doesn't require server replacement. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 07:09, 23 March 2013 (UTC)&lt;br /&gt;
:::Ohwait, software upgrades. Uh. I knew you were talking about that. Yep. Definitely. The wiki recently had issues with running out of hard drive space, so that was all that was on my mind there.&lt;br /&gt;
:::Also, I thought you had been referring to [http://www.mediawiki.org/wiki/Manual:Wiki_in_site_root_directory this]. Whoop. Well, you could leave Jeff a message at his [[user talk:Jeff|talk page]] to get server access. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 08:05, 23 March 2013 (UTC)&lt;br /&gt;
::::I strongly support this. It's been far too long since we decided we'd want the short url scheme (&amp;lt;code&amp;gt;/$1&amp;lt;/code&amp;gt; seems like the best option since it would be simpler/cleaner and allow http://explainxkcd/1234 to point to the correct comic without any extra rewrite rules). While you're at it, I'm sure many would appreciate a look at the current situation with image resizing, which doesn't seem to be working for some reason. Installing [[mw:Extension:Comments|Extension:Comments]] would be awesome, too, as well as [[mw:Extension:Contribution Scores|Extension:Contribution Scores]] ([http://setiquest.org/wiki/index.php/Special:ContributionScores live example]). I'll ask Jeff to take a look at this thread. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 20:07, 23 March 2013 (UTC)&lt;br /&gt;
::::: [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) email me and I'll get you set up with whatever you need. All the suggestions sound good to me. --[[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]]) 00:10, 24 March 2013 (UTC)&lt;br /&gt;
::::: Also, the [[Special:ContributionScores|Contribution Scores]] are up.  I'm not even top 10 all time, I need to step up my game. Comments will take more work as it needs its own database. --[[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]]) 00:10, 24 March 2013 (UTC)&lt;br /&gt;
::::::Awesome! I did some styling changes to make it more interesting :) Let me know what you guys think about it! --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 20:32, 24 March 2013 (UTC)&lt;br /&gt;
:::::::Holy crud, what did you do when the wiki started to have almost double my lifetime score? '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 23:57, 24 March 2013 (UTC)&lt;br /&gt;
::::::::Hahahah :P I'm pretty sure I cheated a little, IIRC there was an image renaming operation for which I used [http://github.com/btongminh/mwclient mwclient] ;) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 03:22, 25 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Sort by numbers in categories ==&lt;br /&gt;
&lt;br /&gt;
I noticed that in [[:Category:Comics]] all comics are sorted correctly by numbers; but not in any subcategory. (I didn't really get the explanation of how it works on the comics page.) How to fix this? -- [[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 10:40, 22 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;The comics template uses a template called num4 that turns the number in the comic number field into a four-digit number. That's then passed as a parameter to the category link, and the comics category page sorts articles by those four-digit numbers instead of their actual names. If we wanted to do the same for other categories, we would have to type them all out as [[Category:Politics|0200]], or whatever the comic number is. I would rather wait for mediawiki to come out with an in-built feature to solve this.&amp;lt;/nowiki&amp;gt; [[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:28, 22 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Is there a reason that the template applies that directly to [[:Category:Comics]] and not as a default sortkey via DEFAULTSORT? &amp;amp;ndash;&amp;amp;nbsp;''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 12:10, 1 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: Good thinking. Using DEFAULTSORT oughta make it work for all categories. I'll give it a try. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 15:37, 1 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Resize ==&lt;br /&gt;
&lt;br /&gt;
I haven't been here (to edit) for a while, but have we still not addressed the bug that doesn't allow image resizing? I know most of us don't have access to that kind of lower-level coding on the site, but I think it's a bit of a notable issue that we can't display comics smaller than their actual size. [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 14:24, 21 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Take it up with [[User:Jeff]], but I suspect that adding your voice to the already insistent roaring that images are broken isn't going to inspire much change. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:08, 23 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incidental Ads ==&lt;br /&gt;
&lt;br /&gt;
as ive noticed i think you should check if someone has embeded some of your links with ads really annoying please fix&lt;br /&gt;
&lt;br /&gt;
--[[User:TheWeatherMan|TheWeatherMan]] ([[User talk:TheWeatherMan|talk]]) 14:00, 23 January 2013 (UTC)TheWeatherMan&lt;br /&gt;
&lt;br /&gt;
:Do you have any specific examples of this? By the way, using punctuation, capitalization, spell check, and complete sentences are more likely to get someone to help you. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:10, 23 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::There is known malware (both adware and viruses) that makes Wikipedia look like it has ads.  This wiki uses the same wiki software, so perhaps that malware affects our site too? &amp;amp;ndash;&amp;amp;nbsp;''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 05:42, 15 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==/wiki/==&lt;br /&gt;
Now that explainxkcd redirects straight to the wiki, could we take the /wiki/ out of the url? I'd also like the wiki's edit log to be purged to clean out the history and forget about past spam, but that's probably wishing for too much. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 04:06, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:But seriously, could the /wiki/ go? It'll screw with the spammers for a day or two, at the very least. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:37, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Newbie questions:  Comic dates, previous-and-next-comic buttons==&lt;br /&gt;
Just created the my first page, [[220: Philosophy]], but I could use a little guidance.  How do I find the date that an ''xkcd'' comic was originally posted, and how do I rig up the previous-comic and next-comic arrows on a page?  (Actually, I've noticed several pages that should have the arrows but don't.)  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 11:19, 28 January 2013 (UTC)&lt;br /&gt;
:Those arrows will automagically insert themselves when you make the adjacent comic explanations. There *is* a little backstage magic that needs to be taken care of, but we can do that for you. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:40, 28 January 2013 (UTC)&lt;br /&gt;
** OK.  How about the dates?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 11:41, 28 January 2013 (UTC)&lt;br /&gt;
:::Click on &amp;quot;All Comics&amp;quot; in the navbar on left-hand side of the site. The dates are in the form YYYY-MM-DD. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:56, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The comic template checks for the existence of the numerical redirect for the comic before and the comic after. If it finds the page to exist it will display the next/previous button as appropriate. So, by creating the redirects listed on the [[List of all comics]] (third column, only worry about the number and title links) future pages will automatically get the links created. Redirect pages look like &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#REDIRECT [[####: Comic Title]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and that's it ([http://www.explainxkcd.com/wiki/index.php?title=1143&amp;amp;redirect=no here] is a link to the redirect page with redirect disabled so you can look at the source to see what I'm talking about). That's all that needs to exist on the number and title redirects. If you feel up to creating them yourself, feel free, otherwise someone else goes through occasionally and mass adds all the missing redirects. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 17:55, 29 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Error message ==&lt;br /&gt;
&lt;br /&gt;
I've been getting this error message a lot the last cup'o days. When trying to access a page; when trying to save changes on a page. Any ideas on why? I'm getting it on both chrome and firefox.&lt;br /&gt;
::Database error&lt;br /&gt;
::A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
::(SQL query hidden) from within function &amp;quot;Revision::insertOn&amp;quot;. Database returned error &amp;quot;1142: INSERT command denied to user ::'dbo423085716'@'74.208.16.155' for :table 'text' (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
–[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 22:54, 18 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Every once in a while I get a SQL error being reported, but usually I can simply F5 and the page comes up. Every once in a while it seems like the server load is just so that somebody gets lucky enough to see the server error out. I don't think there's much we can do about this, other than move the wiki onto a more powerful server. But, there are no ads on this site, there is no revenue model, just a very kind person paying for hosting that keeps this site up. I'm more than willing to overlook a few hiccups for the continuing availability of explain xkcd. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 07:12, 23 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yeah, I get those too, but St. Nerol was talking about something that happened recently with the server running out of hard drive space and throwing SQL errors every time someone tried to make large edits. I had to find Jeff on twitter because I'd get SQL errors when I tried to edit his talk page. He's looking into history deletion plugins, to clear out our vast archives of deleted spam and obsoleted prototype comic templates. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 08:10, 23 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Install a caching reverse proxy to handle heavy load ==&lt;br /&gt;
&lt;br /&gt;
According to returned headers, this server runs from Apache directly. I would recommend setting up a reverse caching proxy in front of Apache to handle high traffic load (like, e.g. current load). The one I use is nginx (http://nginx.org/) -- admins, drop me an email if you need help setting it up [[User:Fry-kun|Fry-kun]] ([[User talk:Fry-kun|talk]]) 21:38, 26 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The standard software to use is either Squid or Varnish. Nginx is a bit too much of a webserver to be configured in the way MW needs iirc. Although nginx would help with serving the static assets. Unfortunately there will be a need to switch to a proper server first. The site seems to be hosted on shared hosting. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 04:59, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I had gotten burned before with both Squid and Varnish but Nginx had always kept my systems alive. It's extremely lightweight and works great to fix these kinds of problems. But, of course if it's a shared server where you can't use it, it won't help... [[User:Fry-kun|Fry-kun]] ([[User talk:Fry-kun|talk]]) 16:35, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Nginx is a great webserver. It'll serve out static pages much better than Apache. But the issue here isn't the webserver. It's PHP and all the work that the database needs to do on every request. Switching webservers won't get rid of that issue. Using squid/varnish a proper reverse proxying cache will allow complete pages to be cached and served directly to readers bypassing the webserver, php, and the database entirely on some requests. That'll reduce the load the site has to cope with. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 23:47, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== A couple of enwiki features implemented ==&lt;br /&gt;
&lt;br /&gt;
I have &amp;quot;imported&amp;quot; {{tl|disambig}} and the related [[:Category:Disambiguation pages|category]] for the [[Exoplanets‎‎|one page]] it was needed for (to avoid having a page that was uncategorised :-) ).&lt;br /&gt;
&lt;br /&gt;
I have also created {{tl|unsigned ip}} (and converted the one use of {{tl|unsigned}}) and applied it for a handful of existing uses of {{tl|unsigned}}. It hardly matters, but then it's also only three more characters to type for new uses.&lt;br /&gt;
&lt;br /&gt;
Importantly, however, I implore you to consider including the second datestamp parameter when applying either template -- it's actually the more useful information. I know it's a pain to convert times ''back'' to UTC, but, hey, most of you don't have to deal with a half hour timezone :-) [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 16:19, 13 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Urrggh, there's an option to make UTC the default display time. The template oughta be a little more automated, mebbe filling the time in automagically with five tildes if no date field is entered? The time will be a bit off when editors fill in the unsigned templates, but it'll be close enough to the actual value. '''[[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;]] 23:59, 13 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::No, especially while there's existing templates to adjust, where the &amp;quot;default&amp;quot; datestamp would be way out. If someone wants to fix a lot of the existing usage, setting their timezone to UTC is the simplest option. [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 09:14, 14 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== I've removed &amp;quot;add a comment!&amp;quot; from Discussion heading ==&lt;br /&gt;
&lt;br /&gt;
:''This thread has been moved to [[explain xkcd:Community portal/Proposals#I've removed &amp;quot;add a comment!&amp;quot; from Discussion heading|The proposals board]].''&lt;br /&gt;
&lt;br /&gt;
== Need password reset ==&lt;br /&gt;
&lt;br /&gt;
Sorry to bother you all, but I seem to have lost the password to this account and don't have an email set (which requires the password). I'm still logged in thanks to the &amp;quot;remember me&amp;quot; feature but after 30 days I'll lose access. This isn't fixable at the MediaWiki level; someone with access to the server mysql or whatever will need to change something. Is there such a person I can email with? [[User:Splainr|Splainr]] ([[User talk:Splainr|talk]]) 03:05, 15 April 2013 (UTC)&lt;br /&gt;
:I assume your browser isn't remembering it for you? [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 03:08, 15 April 2013 (UTC)&lt;br /&gt;
::Oh wow that was fast. Nope, neither Firefox not OSX keychain access know what it is. [[User:Splainr|Splainr]] ([[User talk:Splainr|talk]]) 15:18, 15 April 2013 (UTC)&lt;br /&gt;
: I'm not sure how to solve that problem, but I know account usurpation has been done for the single-login transition in Wikimedia wikis, so technically it should be doable. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 23:04, 16 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
See [[mw:Manual:Resetting passwords]]. --[[User:Mormegil|Mormegil]] ([[User talk:Mormegil|talk]]) 11:59, 15 May 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Analytics ==&lt;br /&gt;
&lt;br /&gt;
Recently I found out about WikiApiary, an interesting site that collects analytics from mediawiki wikis. I added explain xkcd. Check the stats that have been collected so far: http://wikiapiary.com/wiki/explain_xkcd --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 00:03, 17 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;External&amp;quot; hotlinking enabled to confirm issue with other car.jpg ==&lt;br /&gt;
&lt;br /&gt;
FYI I have [http://www.explainxkcd.com/wiki/index.php?title=MediaWiki:External_image_whitelist&amp;amp;oldid=34582 enabled] &amp;quot;external&amp;quot; hotlinking to this wiki's own images to show [[:File:other car.jpg]] can display correctly. See further notes about that issue [[File talk:other car.jpg|here]]. [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 14:32, 21 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:If the problem is lack of thumbnail generation, it should display correctly even without hotlinking, simply by using the original size, e.g.&lt;br /&gt;
:[[File:other car.jpg]]&lt;br /&gt;
:I'm not sure why it doesn't. In any case, this image hotlinking thing reminded me, would it be a good idea to use the images hosted at XKCD.com and only upload variants to the wiki (e.g. those at [[:Category:Helper comic images]]) and images Randall for some reason deleted from the server (e.g. images with typos)? This would reduce the load on the explainxkcd server and provide a better experience for viewers since xkcd is already optimized for high loads and actually openly provides the image urls for hotlinking. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 15:01, 21 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Seeing as [[User:Daddy]]'s upload has fixed the wiki always attempting to display the thumbnail version (which still don't work), I have disabled the &amp;quot;hotlinking&amp;quot; again.&lt;br /&gt;
&lt;br /&gt;
[[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 11:32, 22 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Redirect from explainxkcd.com/1234 ==&lt;br /&gt;
&lt;br /&gt;
It would be really cool if &amp;lt;code&amp;gt;http://www.explainxkcd.com/&amp;lt;number&amp;gt;&amp;lt;/code&amp;gt; redirected to the explain page for that number. That would allow people to get to the correct explanation by simply adding &amp;lt;code&amp;gt;explain&amp;lt;/code&amp;gt; to the comic url.&lt;br /&gt;
&lt;br /&gt;
If you are willing to do this, all you would need to do (assuming you run apache with mod_rewrite enabled) is put the following in &amp;lt;code&amp;gt;.htaccess&amp;lt;/code&amp;gt; in your web root:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
RewriteRule ^(\d+)/?$ /wiki/index.php?title=$1 [R,L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-[[User:Sionide21|Sionide21]] ([[User talk:Sionide21|talk]]) 22:28, 7 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yeah! I'm waiting for this. But admins seems to be rare here.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:44, 7 June 2013 (UTC)&lt;br /&gt;
::And it seems we both could help...--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:47, 7 June 2013 (UTC)&lt;br /&gt;
:::There are several admins here (in fact, I am, too), but what you are looking for is the sysop, the one with access to the server. Admins can delete/protect/undelete pages and block users etc. [[User:Jeff|Jeff]] is the only one that can change MediaWiki configuration or url rewriting... --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 17:08, 8 June 2013 (UTC)&lt;br /&gt;
::::Thanks for your information, so I will try to talk to [[User:Jeff|Jeff]]. BTW: Can you edit the main page? I still miss a link to the incomplete comics on the top.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 17:52, 8 June 2013 (UTC)&lt;br /&gt;
::::: At the top of the main page, there is a section that says ''&amp;quot;We have collaboratively explained 1189 xkcd comics, and only 33 (3%) remain. Add yours while there's a chance!&amp;quot;''. The word ''remain'' is already linked to the list. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 19:16, 8 June 2013 (UTC)&lt;br /&gt;
::::::I was talking about the 97% comics. There are still many incomplete pages and we have a category here on that.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:36, 8 June 2013 (UTC)&lt;br /&gt;
:::::::Ah, I see. Just did it; everyone: feel free to change the sentence, I'm not a native speaker. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 21:07, 8 June 2013 (UTC)&lt;br /&gt;
::::::::THANKS! I'm also not native English, I'm German. But this wiki is a great challenge to get more practice, even much more as if talking to common English natives.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:27, 8 June 2013 (UTC)&lt;br /&gt;
::::::::: This is something I want to do, so I'm putting this on my page, so I remember to add it to the .htaccess.  I'm not super familiar with the .htaccess rules, can I have this along with the other rules I have in my htaccess file? --[[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]]) 15:17, 22 October 2013 (UTC)&lt;br /&gt;
:::::::::: Yes, that rule will work alongside other rules --[[User:Sionide21|Sionide21]] ([[User talk:Sionide21|talk]]) 19:28, 27 October 2013 (UTC)&lt;br /&gt;
::::::::::: I've fixed this on our new host.  (I actually had the rule in there already, I just had it in the wrong order.) I'd love to promote this feature a bunch.  Any ideas how? --[[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]]) 02:33, 30 October 2013 (UTC)&lt;br /&gt;
:::::::::::: A sitenotice oughta do it. '''[[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;]] 03:43, 30 October 2013 (UTC)&lt;br /&gt;
:::::::::::: Woohoo, finally!!! Now if we could just have [[#We need more maintainers|clean URLs]] too, that'd be swell! ;) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 05:02, 14 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incomplete – motivation ==&lt;br /&gt;
&lt;br /&gt;
Is it possible to fix (or is there already) a way to add a motivation with the &amp;quot;incomplete&amp;quot;-tag? I tried &amp;lt;nowiki&amp;gt;{{incomplete|the title text needs explaining}}&amp;lt;/nowiki&amp;gt;, which made &amp;quot;edit it&amp;quot; in the banner link to the uncreated page &amp;quot;the title text...&amp;quot;... ––[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 12:16, 10 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You can use the &amp;lt;nowiki&amp;gt;{{notice|Your text...}}&amp;lt;/nowiki&amp;gt; template:&lt;br /&gt;
{{notice|Here is my notice.}}&lt;br /&gt;
:--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 17:30, 10 June 2013 (UTC)&lt;br /&gt;
::Thanks! I think that ideally most incomplete-notices shold carry a note on what's missing, but we aren't there, so this'll do for now. ––[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 10:21, 11 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Unable to Edit ==&lt;br /&gt;
&lt;br /&gt;
I cannot edit this latest comic's page. When I hit edit a screen appears which says &amp;quot;This page has been protected to prevent editing.&amp;quot; I've never edited before, but I'm annoyed by the improper use of the word candid. &amp;quot;It would be candid and unrealistic&amp;quot; would be better off in that sentence if candid was removed. How do I make it so I can edit the page, so I can remove this affront to the English language?&lt;br /&gt;
:I believe you are trying to edit the main page. You can click &amp;quot;Latest comic&amp;quot; in the left sidebar or the &amp;quot;Go to this comic&amp;quot; button in the top right corner of the grey box to go to the actual page for today's comic. '''[[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;]] 16:42, 1 July 2013 (UTC)&lt;br /&gt;
::That was the problem, thanks.--[[User:Holcma01|Holcma01]] ([[User talk:Holcma01|talk]]) 17:07, 1 July 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Banner ad placement ==&lt;br /&gt;
&lt;br /&gt;
On iPad and iPhone browsers, the banner ads obscure the top of the page.  This covers up some of the useful buttons up there, like LOGIN for example.  The workaround is to refresh the page.  Because the banner ad is the last thing to load, you have a brief window of maybe three seconds to find and click the link you need. [[User:Gardnertoo|Gardnertoo]] ([[User talk:Gardnertoo|talk]]) 20:24, 26 July 2013 (UTC)&lt;br /&gt;
: Fixed. --[[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]]) 21:12, 25 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bookmarklet for jumping to explainxkcd.com from xkcd.com ==&lt;br /&gt;
&lt;br /&gt;
I wrote a short {{w|bookmarklet}} for jumping from xkcd.com to explainxkcd.com. Bookmarklet form:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:var%20match%20%3D%20window.location.href.match(%2F%5Cd%2B%2F)%3B%0Avar%20suffix%20%3D%20match%20%3F%20%27%3Ftitle%3D%27%20%2B%20match%5B0%5D%20%3A%20%27%27%3B%0Awindow.location%20%3D%27http%3A%2F%2Fwww.explainxkcd.com%2Fwiki%2Findex.php%27%20%2B%20suffix%3B&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Decoded:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:var match = window.location.href.match(/\d+/);&lt;br /&gt;
var suffix = match ? '?title=' + match[0] : '';&lt;br /&gt;
window.location ='http://www.explainxkcd.com/wiki/index.php' + suffix;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you're on a numbered xkcd page, it will go to the accompanying explainxkcd.com page automatically.  If you're on the xkcd.com home page, it goes to the explainxkcd.com wiki home page. [[User:Mattflaschen|Mattflaschen]] ([[User talk:Mattflaschen|talk]]) 17:30, 19 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
To add this bookmarklet to your browser:&lt;br /&gt;
&lt;br /&gt;
# Copy the bookmarklet javascript (*not* the decoded version)&lt;br /&gt;
# Using your browsers bookmark manager, create a new bookmark&lt;br /&gt;
# Give the bookmark a meaningful name -- e.g. ExplainXKCD&lt;br /&gt;
# Paste the javascript in for the bookmark URL&lt;br /&gt;
# Save.&lt;br /&gt;
({{unsigned|Tomh}})&lt;br /&gt;
&lt;br /&gt;
:Thanks Mattflaschen and Tomh!  I've started collecting these helpful tools on a [[Browser helpers|new page]], to hopefully make them easier for others to find.  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 01:33, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Database Error ==&lt;br /&gt;
&lt;br /&gt;
I have NO IDEA where this should go, but&lt;br /&gt;
http://www.explainxkcd.com/wiki/index.php?title=1011&lt;br /&gt;
has the content&lt;br /&gt;
&lt;br /&gt;
Database error&lt;br /&gt;
A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
(SQL query hidden)&lt;br /&gt;
from within function &amp;quot;SqlBagOStuff::set&amp;quot;. Database returned error &amp;quot;1142: INSERT command denied to user 'dbo423085716'@'74.208.16.155' for table 'objectcache' (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Just thought I should report it.&lt;br /&gt;
&lt;br /&gt;
OOPS forgot sig. [[Special:Contributions/67.175.58.94|67.175.58.94]] 00:13, 23 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Edit: This has been fixed randomly. Never mind then. :X&lt;br /&gt;
&lt;br /&gt;
== [[mw:Extension:SyntaxHighlighter]] ==&lt;br /&gt;
&lt;br /&gt;
Could we maybe enable this? It would be helpful for some of the programming-heavy comics' explanations, e.g. [[1270|today's one]].[[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 17:02, 27 September 2013 (UTC)&lt;br /&gt;
: Done, PinkAmpersand. --[[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]]) 19:57, 28 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== It's not taking me to the main page ==&lt;br /&gt;
&lt;br /&gt;
If I type explainxkcd.com, it redirects me to http://www.explainxkcd.com/wiki which just shows a directory listing, rather than taking me to the main page (as I assume it's supposed to). [[User:Chridd|chridd]] ([[User talk:Chridd|talk]]) 02:07, 31 October 2013 (UTC)&lt;br /&gt;
:Thaat's not supposed to happen. I'm on it. '''[[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;]] 06:49, 31 October 2013 (UTC)&lt;br /&gt;
:Is it fixed for you now? '''[[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;]] 06:55, 31 October 2013 (UTC)&lt;br /&gt;
::Yes [[User:Chridd|chridd]] ([[User talk:Chridd|talk]]) 14:46, 31 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Logo in upper left corner missing ==&lt;br /&gt;
&lt;br /&gt;
The logo in the upper left corner is missing, probably because of a wrong redirect. The logo should be at http://www.explainxkcd.com/wiki/skins/common/images/explainxkcd.png, but this link takes me to the main page. The icons in the edit toolbar are missing, too, probably the same problem. You should exclude all \.png$ queries from redirects. --[[Special:Contributions/108.162.254.177|108.162.254.177]] 10:09, 31 October 2013 (UTC)&lt;br /&gt;
: Fixed that.  Sorry about that, it was an overzealous htaccess.  Thanks! --[[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]]) 15:45, 31 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Sidebar ad overhangs content in Firefox 25.0 ==&lt;br /&gt;
&lt;br /&gt;
The sidebar ad on each page overhangs the content frame slightly when I view this site in Firefox 25.0 on a Windows 7 Home Premium 64bit pc. I have started Firefox in safe mode with all add-ons disabled and it still happens. Site looks fine in IE 11. {{unsigned ip|173.245.56.79}}&lt;br /&gt;
:Have you tried hitting control-shift-R, or clearing your cache? That sounds like Firefox is disregarding part of our CSS for whatever reason. I'm running a very similar setup and I'm not getting these problems. Try giving it a wee bit of time and trying again. '''[[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;]] 17:27, 13 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:What's your monitor resolution and size of your Firefox window (maximized, 50/50 split, etc)? [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:24, 13 November 2013 (UTC)&lt;br /&gt;
::I'm really sure that scaling isn't the issue, I made the sidebar width definite. I'll check it again. '''[[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;]] 19:06, 13 November 2013 (UTC)&lt;br /&gt;
:::The sidebar has a fixed width defined at the CSS style sheet. Press F5 or CTRL-R to reload this style sheet. This happened to me in the past too. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:14, 13 November 2013 (UTC)&lt;br /&gt;
::::I changed the defined width to pixels instead of em, in the annoying edge-case that a browser uses a weird default font width. '''[[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;]] 19:24, 13 November 2013 (UTC)&lt;br /&gt;
:::::It looks fine now.--[[Special:Contributions/173.245.56.79|173.245.56.79]] 06:08, 18 November 2013 (UTC)&lt;br /&gt;
::::::Sidebar ad overhangs content in DuckDuckGo 7.67.1.2 for iOS 15.4.1, on iPhone 12. aka 'Your sidebar ad has been crushed into a cube. You have fifteen minutes to move your cube.'&lt;br /&gt;
&lt;br /&gt;
== Connection problems ==&lt;br /&gt;
&lt;br /&gt;
Whatever the new hoster does cost, you should get your money back. Sometimes the page doesn't load at all, or the menu is missing after the browser did finish after one or two minutes. The performance here is still annoying. That cloud seems to be a dead cloud. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:33, 11 January 2014 (UTC)&lt;br /&gt;
:It's easily more performant than our old service, and it holds up far better to traffic. I am inclined to say that it's a region specific issue, and I'll submit a ticket for that, but they've worked far better than flat shared hosting for the time that we've been using them. '''[[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;]] 00:01, 12 January 2014 (UTC)&lt;br /&gt;
::More detail: The message is an Error 522 (Connection timed out).&lt;br /&gt;
::*You (Browser, Working) &amp;lt;-&amp;gt; Amsterdam (CloudFlare, Working) &amp;lt;-&amp;gt; &amp;lt;nowiki&amp;gt;www.explainxkcd.com&amp;lt;/nowiki&amp;gt; (Host, '''Error''')&lt;br /&gt;
::In December the CloudFlare did belong to Frankfurt. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:35, 12 January 2014 (UTC)&lt;br /&gt;
:::I'm having still major problems to connect, only this this silly error message. ...and then it does work again. Still strange.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:58, 14 January 2014 (UTC)&lt;br /&gt;
:Today I've been getting a ''lot'' of these errors with Cloudflare.  (London-based CloudFlare, in my case.)  &amp;quot;Error 522 Ray ID: 2587581d8b8a350c • 2015-12-21 23:25:22 UTC&amp;quot; is just one of the IDs.  Not sure if you'd prefer another bit of the page info, instead, but the Ray ID looked unique enough to pinpoint debug info in the background.)  The suggestion is made that the web server is too busy at something or other. Anyway, just so you're aware.&lt;br /&gt;
:I had a look here, first, to see if anyone had mentioned anything (and found the above), so apologies if I'm not posting in the best bit of the best page. [[Special:Contributions/162.158.152.227|162.158.152.227]] 23:44, 21 December 2015 (UTC)&lt;br /&gt;
::It seems to be an occasional regional issue that cloudflare has with us. When I go to our server directly our site is still up, so something between us and cloudflare is failing. Not sure what though. '''[[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;]] 03:40, 22 December 2015 (UTC)&lt;br /&gt;
:Yesterday (and day before?) Cloudflare London insisted that the server was not responding. Not sure if that was an actual explain-server issue (not seen mention of it anywhere else, in a brief dig), only Cloudflare London being refused by the server (detecting and blanket filtering rogue traffic via my gateway) or some other issue. Meant to check for update timestamps on the latest comic article that coincided with my being unable to visit the site at the time.  But FYI, assuming the cause isn't already sorted out with no further actions needed and/or possible... [[Special:Contributions/162.158.155.92|162.158.155.92]] 16:02, 11 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wrong IP address shown ==&lt;br /&gt;
&lt;br /&gt;
All [http://www.explainxkcd.com/wiki/index.php?title=Special:RecentChanges&amp;amp;hideliu=1 edits by IPs] (well, at least all I checked, including my own edits) are recorded using IP addresses of CloudFlare ([http://www.utrace.de/whois/108.162.238.220 108.162.192.0/18], [http://www.utrace.de/whois/173.245.50.88 173.245.48.0/20] and some other ranges), i.e., it's not the address of the client, but of the server. This seems similar to [https://bugzilla.wikimedia.org/show_bug.cgi?id=56681]. --[[Special:Contributions/108.162.254.160|108.162.254.160]] 09:05, 29 January 2014 (UTC)&lt;br /&gt;
:That's something we're working on, but current limitations with our provider are making things sow for us. When they give us what we need, we can do it. '''[[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;]] 16:59, 29 January 2014 (UTC)&lt;br /&gt;
::Hmmpf! I just noticed this twelve months later and it's still the case... [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 01:59, 29 January 2015 (UTC)&lt;br /&gt;
:::Uurrrp a couple of holdups happened, I need to do this at some point. '''[[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:54, 29 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: I just noticed it as well [[Special:Contributions/162.158.252.197|162.158.252.197]] 04:20, 24 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
: CloudFlare is already providing the Real Ip address -- there are mods for Apache https://support.cloudflare.com/hc/en-us/articles/203656534-How-can-I-set-up-Apache-mod-CloudFlare- and Nginx https://support.cloudflare.com/hc/en-us/articles/200170706-How-do-I-restore-original-visitor-IP-with-Nginx-  or you can just pull it from the X-Forwarded-For HTTP header which proxy servers (like CloudFlare) typically puts the client IP address.   [[Special:Contributions/162.158.252.197|162.158.252.197]] 04:25, 24 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 1337 leads to...? === &lt;br /&gt;
&lt;br /&gt;
Current and latest comic page, 1337, unusually has a &amp;quot;Next&amp;quot; before there's even any 1338 page.  (It points to 1337.)  As a lowly IP, I don't feel I ought to delve too deep to see if it's a page template issue (possibly because &amp;quot;1337&amp;quot; is both a past title ''and'' the current number, maybe, although not too sure if that'd work out) or just because of manual editing.  But bringing it to general attention. (It may of course be an issue that does not even last beyond Wednesday, and comic number 1338's arrival, even without intervention.) [[Special:Contributions/141.101.99.7|141.101.99.7]] 13:40, 3 March 2014 (UTC)&lt;br /&gt;
:D'aww, and I wanted to be lazy too. I'll get to fixing it, an IP took it to himself to add stuff to the comic template and he removed the auto-hiding buttons. Imma fixy. '''[[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;]] 17:42, 3 March 2014 (UTC)&lt;br /&gt;
::I did revert some edits on that issue here, so for the first point it should work again. In general: The main page should not be affected like this and the test environment is called: Sandbox. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:43, 3 March 2014 (UTC)&lt;br /&gt;
:::The issue was fixed three hours before your autorevert. This is getting excessive. The next time you autorevert a large edit without testing or making an attempt to fix things yourself, expect a three-day ban. '''[[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;]] 22:41, 3 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== No confirmation email? ==&lt;br /&gt;
&lt;br /&gt;
I requested an email for confirmation when I registered. I got nothing, not in spam filter, not in trash, and definitely in not my inbox.&lt;br /&gt;
&lt;br /&gt;
Today, I requested another confirmation email. Again, nothing has appeared.&lt;br /&gt;
&lt;br /&gt;
Is it me? Is it my shampoo??? Enquiring minds want to know....&lt;br /&gt;
Thanks. [[User:Karenb|Karenb]] ([[User talk:Karenb|talk]]) 22:45, 20 March 2014 (UTC)&lt;br /&gt;
:Confirmation emails? What, are we a five-star hotel now?&lt;br /&gt;
:Jokes aside, is this a thing you really need? You should be autoconfirmed after editing for a while without getting blocked, but if you can put forward a good reason why we should add this in, I'll do it. '''[[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;]] 00:54, 21 March 2014 (UTC)&lt;br /&gt;
:::Not blocked! Trying to authenticate my email, which I thought was an automatic process. Does that feature not work? That would certainly explain the lack of autoresponse.... Cheers. KB [[User:Karenb|Karenb]] ([[User talk:Karenb|talk]]) 01:35, 21 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm having the same issue. I've requested several confirmation emails over the past few days. I have also tried changing and then resetting my email address. Nothing has worked so far, and it's not in any of my filtered inboxes. I can edit most pages. Will this fix itself even if I don't get an email? [[User:DownGoer|DownGoer]] ([[User talk:DownGoer|talk]]) 18:16, 26 June 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Because the people visiting here are probably the people that should see this==&lt;br /&gt;
After the server upgrades mentioned in the sitenotice, de.explainxkcd.com should exist. I'm not publicizing it yet, just want to get it up and work out implementation details before it goes fully live. Pls dun test during the downtime, there'll be plenty of time for that after it's live. '''[[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;]] 01:14, 21 March 2014 (UTC)&lt;br /&gt;
:Ok, so our server doesn't actually have the required dependencies to complete the upgrade, so that was slightly fruitless. Sorry about any downtime or inconvenience caused, I didn't add the German wiki again because I'm looking set up the parallel wikis on an up-to-date base. Sorry again for any inconvenience that may have caused, I'll make sure to be better prepared next time, and maybe actually succeed in performing the upgrade next time. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 02:02, 24 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Does anyone have image of Black Hat saying to Cueball &amp;quot;It's 'cause you're dumb&amp;quot; ?==&lt;br /&gt;
Guys, does anyone has this image? &lt;br /&gt;
I'm hosting Russian xkcd fanpage here - vk.com/xkcdoff and if someone would post it it would be very helpful. --[[User:KOTYAR|KOTYAR]] ([[User talk:KOTYAR|talk]]) 22:40, 24 March 2014 (UTC)&lt;br /&gt;
:I actually can't find it either. Shame, I liked that old thumbnail. I could probably photoshop up a new version if you really want one though. '''[[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:53, 26 March 2014 (UTC)&lt;br /&gt;
:&lt;br /&gt;
::[[File:explain xkcd blog header image.png|right]] Just going to the [[explain xkcd]] page and following [http://wayback.archive.org/web/20091026122109/http://www.explainxkcd.com/2009/07/03/extrapolating/ the first historic (internet-archived) link] allowed me to extract [http://wayback.archive.org/web/20110202213753im_/http://www.explainxkcd.com/wp-content/themes/lightword/images/header-image.png the requested &amp;quot;header-image.png&amp;quot;] &amp;lt;small&amp;gt;(the [http://www.explainxkcd.com/wp-content/themes/lightword/images/header-image.png corresponding image URL on the current site] gives nothing anymore... thank you, Internet Archive!)&amp;lt;/small&amp;gt;. Which I uploaded to the wiki here, for convenience and because it's part of this wiki's history, in a way, and also, cool. [[File:Face-smile.svg|20px|Smile|link=]] - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 10:39, 16 April 2014 (UTC) &amp;lt;small&amp;gt;(PS: also, [http://www.facebook.com/explainxkcd/photos/10150144122985214 facebook.com/explainxkcd/photos/10150144122985214]; but JPEG.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== expxkcd.com redirect not up-to-date ==&lt;br /&gt;
&lt;br /&gt;
By adding &amp;quot;exp&amp;quot; at the beginning of the URL one can easily switch from [http://xkcd.com/1234 xkcd.com/1234] to [http://expxkcd.com/1234 expxkcd.com/1234], which redirects to the corresponding explanation here, and that's nice. But right now, [http://expxkcd.com expxkcd.com] redirects to [[1355]] (at least for me), instead of [[1356]], the latest comic. Wouldn't it be better if expxkcd.com redirected to the [[Main Page]] instead (as does correctly [http://explainxkcd.com explainxkcd.com])? - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 10:55, 16 April 2014 (UTC)&lt;br /&gt;
:expxkcd is actually a thing that user [[user:grep]] was so kind to purchase and handle for us. I can forward this on to him for him to resolve, and give him the rewrite rules we use if he needs them. '''[[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;]] 11:12, 16 April 2014 (UTC)&lt;br /&gt;
:&lt;br /&gt;
::Nice, thank you for the quick forward to the right place. - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 11:31, 16 April 2014 (UTC)&lt;br /&gt;
:Yeah, the reason for that is that right now, I update it manually, which is obviously a really bad idea. I plan to change this pretty soon. I don't want it to go to the main page because the main page doesn't show the discussion, and comes along with all the other, regular main page stuff. Any rewrite rules wouldn't hurt, Davidy22. {{User:Grep/signature|12:04, 16 April 2014}}&lt;br /&gt;
::Hrm. Ours rules point towards the main page. We have no automatically updating page that always redirects to the latest comic, but you can use Mediawiki hooks to append the contents of the page [[Template:LATESTCOMIC]] to the end of our URL. '''[[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;]] 23:44, 17 April 2014 (UTC)&lt;br /&gt;
:::Sorry, I don't understand. My BOT will upload the next comic on time, unless it's some new chaos by Randall a BOT just can't handle. The LATESTCOMIC template is updated and so it seems only be an issue on that damn Cloud Service Cache. Even Randall's pages are affected. At &amp;quot;What-if&amp;quot; I still have to use &amp;lt;CTRL+R&amp;gt; to get the latest content. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 00:26, 18 April 2014 (UTC)&lt;br /&gt;
::::We're talking about a different thing related to shortened URLs. '''[[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;]] 02:24, 18 April 2014 (UTC)&lt;br /&gt;
:::That is an interesting idea, however I just made a script that automatically adds 1 every Monday, Wednesday, and Friday. I could have it grab the number from your page and do this once a day at something like 00:10 EST (because Randall sometimes does things on other days), that's a possibility as well (other times / intervals may also be done if you wish/want). {{User:Grep/signature|04:34, 02 May 2014}}&lt;br /&gt;
::::Our LATESTCOMIC page and Randall's xkcd json page should both have up-to-date comic numbers for you to pull. Ours is probably the better one to pull since your site is linking to us. '''[[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;]] 06:30, 2 May 2014 (UTC)&lt;br /&gt;
:::::The script now checks Template:LATESTCOMIC every 30 minutes to see if the comic has changed or not. If you wish, I &amp;lt;u&amp;gt;might&amp;lt;/u&amp;gt; be able narrow this down to 11PM-&amp;gt;6AM (for 30 minute checking) and then have it check every two hours at other times or something similar to that (if [http://www.freedesktop.org/software/systemd/man/systemd.time.html systemd.time] has a way to do it) {{User:Grep/signature|12:13, 09 May 2014}}&lt;br /&gt;
::::::I still do not see that problems. Please touch this wiki as less as needed, this is still the best choice. But there is still a big problem on the cache, an update on a picture lasts many hours. Some statements in &amp;quot;LocalSettings.php&amp;quot; should work, if not this wiki version is buggy. Problems should be solved at the cause and not be overridden by some additional scripts. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:51, 9 May 2014 (UTC)&lt;br /&gt;
:::::::We have ample bandwidth for a bot that only checks once every half-hour. The image caching issue is irrelevant to the current topic. '''[[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;]] 03:45, 10 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Explain xkcd upgraded to version 1.19.17 ==&lt;br /&gt;
&lt;br /&gt;
Woo! '''[[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;]] 17:59, 26 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The header seems to have broken, there is no longer a link to the explanation in it. [[Special:Contributions/173.245.56.154|173.245.56.154]] 22:00, 26 July 2014 (UTC)&lt;br /&gt;
:Which header are you talking about? All the links I can think of still seem to work. '''[[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;]] 02:13, 27 July 2014 (UTC)&lt;br /&gt;
:: It fixed itself shortly after I mentioned it. It was the incomplete explanation, the link to 428 was bold, but not a link. [[Special:Contributions/173.245.56.154|173.245.56.154]] 04:48, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
One of the ads is broken.&lt;br /&gt;
&lt;br /&gt;
[[File:brokenexplainxkcdad.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;[[User:MrGameZone|0100011101100001011011010110010101011010011011110110111001100101]] ([[User talk:MrGameZone|talk page]])&amp;lt;/small&amp;gt; 04:33, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ooh, thanks for catching that. Should be fixed now. '''[[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;]] 17:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Nice :) But is this update a preparation for an upcoming update to {{w|MediaWiki version history|one of the latest versions}}, or are we limited to 1.19 for some reason? I'm asking because 1.19 is only supported for {{w|mw:Version lifecycle#Version timeline|a few more months}}, and also because with newer versions we'd have access to some niceties -- for example, after version 1.20 the {{w|mw:Help:Magic words#Statistics|PAGESINCAT}} magic word accepts parameters, which would allow the count of explained comics in the main page to work using less hardcoded hacks. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 16:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Prior attempts to update the wiki have been prevented by the realization that Lunarpages doesn't give us quite as much control over our server share as we thought we had. Checking again, they seem to have upgraded the version of PHP on our server since we last attempted and failed to run one dumb update script, which should mean that it'll work next time we try it. The wiki also has quite a bit of user effort invested into it now, and I'm a little less ready to jump into .0~.3 releases than I would normally be on my own machine, so I upgraded down the LTS path that I knew would be safe. After the first ill-planned attempt, I've been eyeing the 1.23 LTS line for the next major jump, but I'm certainly not stepping into it while it's still relatively fresh. '''[[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;]] 17:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Sounds reasonable. Thanks for the details. I'll be looking forward to the next update :) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 18:52, 28 July 2014 (UTC)&lt;br /&gt;
::Just wanting to offer, I use ARP Networks for hosting, you should check them out if you want more control. {{unsigned ip|173.245.56.154}}&lt;br /&gt;
:::Hum, there's an option. I'll keep that in mind. '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
::::It wasn't me that posted that comment. But surprisingly enough anon and I have the same first two bytes in our IP addresses. Congrats on the version upgrade. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 05:31, 29 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why does the site say I'm blocking ads when I'm not? I do use AdBlock Plus, but it's turned off for this site. Screenshot [http://i1271.photobucket.com/albums/jj637/backagain2012/contra_zps3c6aa295.png here]. And while I'm here, that &amp;quot;unblock us&amp;quot; text has an error- the first &amp;quot;and&amp;quot; in the second sentence shouldn't be there. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 01:51, 29 July 2014 (UTC)&lt;br /&gt;
:The text only appears when the ads fail to load. The error message actually says noscript, which means that the Javascript that the ad box uses to fetch images isn't running. How long has this been happening for you? '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
::It just started. I came over here as soon as I noticed it. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 19:07, 29 July 2014 (UTC)&lt;br /&gt;
:::Have you recently made any changes to your browser? Does the problem persist when you hit CTRL+SHIFT+R? '''[[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;]] 12:43, 30 July 2014 (UTC)&lt;br /&gt;
::::Nope, no recent changes. And yes, the problem persists when I hit Ctrl+Shift+R. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 14:04, 30 July 2014 (UTC)&lt;br /&gt;
:::::I am genuinely puzzled. The message tells me that something is causing your browser to fail to load/run the Javascript that makes the ad render and report stats, so the problem could be anything that can cause that: noscript, outdated browser, experimentation. I don't know anything about your setup, and it works on my test machines, so I can't tell currently what's wrong. '''[[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;]] 03:10, 1 August 2014 (UTC)&lt;br /&gt;
:Do you have privoxy installed on your machine? (this is a long shot) [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 00:24, 3 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== If anything broke, complain here. ==&lt;br /&gt;
&lt;br /&gt;
There's a banner that says:&lt;br /&gt;
The wiki has been updated to stable mediawiki version 1.19.17. If anything broke, complain here.&lt;br /&gt;
&lt;br /&gt;
So...&lt;br /&gt;
&lt;br /&gt;
The following have broken:&lt;br /&gt;
Cars&lt;br /&gt;
My previous computer&lt;br /&gt;
A railroad train&lt;br /&gt;
Condoms&lt;br /&gt;
Etc.&lt;br /&gt;
&lt;br /&gt;
None of which has anything to do with this website.&lt;br /&gt;
&lt;br /&gt;
The banner should be made more specific before Randall sees it and does a comic mocking it.&lt;br /&gt;
&lt;br /&gt;
Or not. {{unsigned ip|173.245.48.80}}&lt;br /&gt;
:Well, there's always that one guy. Fixed. '''[[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;]] 05:05, 28 July 2014 (UTC)&lt;br /&gt;
::I don't see how you could have fixed that one guy.  Throttled, eliminated, insulted, blocked, etc.  But not fixed. [[User:Walenc|Walenc]] ([[User talk:Walenc|talk]]) 16:29, 28 July 2014 (UTC)&lt;br /&gt;
:::See sense 6 here: http://en.wiktionary.org/wiki/fix#Verb :P [[Special:Contributions/173.245.56.154|173.245.56.154]] 02:13, 29 July 2014 (UTC)&lt;br /&gt;
::::i bet you think yer so clever. just watch me take the site down. '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Misc Request... (|&amp;lt; &amp;lt; Prev Comic Next &amp;gt; &amp;gt;| format) ==&lt;br /&gt;
&lt;br /&gt;
I usually browse in a very small window and the menu buttons split kind of strangely (http://i.imgur.com/wPE7szZ.png). Would it be possible to replace the spaces with nonbreaking spaces? --[[Special:Contributions/173.245.56.202|173.245.56.202]] 15:13, 1 August 2014 (UTC)&lt;br /&gt;
:Annoyingly, the spaces that are giving you trouble can't be changed because they're text string inputs, and Mediawiki has no regular expression markup yet. Every other instance of formatting-critical spaces has been changed to non-breaking spaces though, thanks for the heads up! '''[[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;]] 18:13, 2 August 2014 (UTC)&lt;br /&gt;
:: I think I fixed this by adding a space between the buttons. Unfortunately, this only works as long as the comic is not as wide as the button bar. I guess this is because of the surrounding table. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 20:15, 2 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Not receiving password reset emails ==&lt;br /&gt;
&lt;br /&gt;
I've forgotten my password, and password reset is not working for me.  I went to [[Special:PasswordReset]], and had it send me a reset email.  However, I have not received the email.  I am sure that I have an email associated with my account, and it's confirmed. [[Special:Contributions/173.245.54.174|173.245.54.174]] 08:38, 18 August 2014 (UTC)&lt;br /&gt;
:Tested, password reset emails seem to work for me. Have you checked your spam folder? '''[[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;]] 18:04, 24 August 2014 (UTC)&lt;br /&gt;
::I checked in Gmail in &amp;quot;Mail &amp;amp; Spam &amp;amp; Trash&amp;quot;, and it still doesn't find it.  I tried a fresh reset, so we'll see if that comes through.  No luck after a minute or two.  [[Special:Contributions/108.162.216.71|108.162.216.71]] 04:59, 28 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==TOR Captcha==&lt;br /&gt;
&lt;br /&gt;
Hi, I use TOR. To access your website, cloudfare has made it such that I have to enter a captcha. This is very inconvenient, as your site is not the only one doing this. Can you please fix this issue? You should be able to see a guide here: https://tor.stackexchange.com/questions/599/cloudflares-captcha-screen-insurmountable . Thank you for taking the time to consider this. [[Special:Contributions/141.101.104.60|141.101.104.60]] 11:34, 13 September 2014 (UTC)&lt;br /&gt;
:Is it better now? '''[[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;]] 13:06, 13 September 2014 (UTC)&lt;br /&gt;
::Sorry, no. I still get the captcha. What did you try doing? [[Special:Contributions/108.162.216.87|108.162.216.87]] 22:09, 13 September 2014 (UTC)&lt;br /&gt;
:::Set the threat level threshold way up. Any further steps into cheap botnet territory. For your security, you may want to reconsider the nodes through which you're operating through. Also, why do you need to use Tor to visit us? '''[[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:17, 14 September 2014 (UTC)&lt;br /&gt;
::::Ah, okay, thanks, now I'm not getting the captcha. As for why I'm using Tor, I don't ''need'' to, but I'd rather do so just to be anonymous. I wouldn't have written if it were just your site, but since Cloudfare has made captchas the default setting for Tor, the internet is starting to become near unusable. So that everyday people aren't scared away from using Tor due to the perceived complexity of daily browsing, whenever I have to enter a captcha, I try to contact someone at the site to ask them to change the setting. [[Special:Contributions/108.162.216.82|108.162.216.82]] 06:52, 14 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Upgrade to the latest MediaWiki version? ==&lt;br /&gt;
&lt;br /&gt;
I think we should start trying to maintain a regular upgrade schedule of some sort. 6 months ago was the last time we've upgraded, and I think we should upgrade again. The impetus for this change would be for [https://www.mediawiki.org/wiki/Extension:Translate translation] [https://www.mediawiki.org/wiki/Extension:TranslationNotifications features], [https://www.mediawiki.org/wiki/Extension:Babel plus other multilinguality efforts that require the new versions of MediaWiki.] Localization efforts should be put into place, and the translate feature would work well for that. [[User:Chess|Chess]] ([[User talk:Chess|talk]]) 01:53, 12 November 2014 (UTC)&lt;br /&gt;
:Plans to upgrade only include LTS releases. That said though, the recent and unintentional server downtime was actually the result of a setup for a coming mediawiki upgrade, among other things. The plan is to upgrade to 1.23 sometime in the coming months, during the weekend after a satisfactory number of bugfix releases. We're very interested in setting up translations, although mediawiki in it's current form already supports translation; the extensions you linked are mostly quality-of-life additions. It's been delayed because the plan is to eliminate all incomplete comics first so that translators have a solid base to work from. '''[[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;]] 02:42, 12 November 2014 (UTC)&lt;br /&gt;
::Can I just be nitpicky and say that we last upgraded about 3.5 months ago, not 6? Thanks. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 03:17, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Fix HTTPS access ==&lt;br /&gt;
&lt;br /&gt;
explain xkcd is using Cloudflare which recently enabled HTTPS for all users, but when [https://explainxkcd.com accessing it via HTTPS] it returns [https://support.cloudflare.com/hc/en-us/articles/200171916-Error-521 error 521].&lt;br /&gt;
In order to fix this in addiction to the solution steps proposed by CloudFlare check if SSL settings are correct. {{unsigned ip|173.245.52.138}}&lt;br /&gt;
:On it '''[[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;]] 18:51, 13 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
HTTPS is working now, there just some mixed-content warnings, mostly on style tags which being active mixed content are blocked, but it's still a good improvement as it's possible to have more privacy when browsing explain xkcd.{{unsigned ip|188.114.99.35}}&lt;br /&gt;
&lt;br /&gt;
: Whoever has server access, can they try changing $wgServer ([[mediawikiwiki:Manual:$wgServer|Manual:$wgServer]]) to use a protocol relative url? As the manual page says, you may also want to set $wgCanonicalServer to a fully-qualified url (hopefully defaulting to https). [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 04:17, 29 October 2015 (UTC)&lt;br /&gt;
::Done. How's it now? '''[[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;]] 08:42, 31 October 2015 (UTC)&lt;br /&gt;
::: Much better! The styles and scripts are loaded now, and the page looks good. It's still not completely green https because it's loading some images over plain http, but my browser at least appears to be allowing them for now. If you want any more suggestions on technical issues, let me know. I currently maintain my own mediawiki installation with full https, cloudflare, and short urls. [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 20:27, 4 November 2015 (UTC)&lt;br /&gt;
::::Huh. Is it the ad images? The comic pictures *should* be also done over https, no? '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:10, 5 November 2015 (UTC)&lt;br /&gt;
::::: Yeah, one of them is the ad images (http://www.explainxkcd.com/wiki/lunarpages_160x600.jpg). Most of them are from [[MediaWiki:Common.css]], so you could just change all the urls on that css page to protocol-relative. The only other one I see is http://i.creativecommons.org/l/by-sa/3.0/88x31.png, which I think is set at [[mediawikiwiki:Manual:$wgFooterIcons|$wgFooterIcons]], but I'm not sure. All of them appear to be accessible over https, so just changing the links should work. [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 01:13, 6 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
If I replace xkcd with explainxkcd I get a very ugly CSS-less page in Chrome on Win7. If I change the https to http, the page works [[Special:Contributions/141.101.105.12|141.101.105.12]] 06:07, 3 September 2015 (UTC)&lt;br /&gt;
:Can you provide more information about your setup? Test a different browser? Unable to reproduce. '''[[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;]] 11:56, 3 September 2015 (UTC)&lt;br /&gt;
:: I can reproduce in Firefox. This is due to the mixed content blocker. Usually, it should only block active content (scripts) and maybe warn about passive content (stylesheets), but at least in Firefox, it is configurable to block both. But I cannot see why the stylesheets shouldn't be served via HTTPS.&lt;br /&gt;
:: Currently, the styles are referenced absolutely ([http://www.explainxkcd.com/wiki/load.php?debug=false&amp;amp;lang=de&amp;amp;modules=site&amp;amp;only=styles&amp;amp;skin=vector&amp;amp;* http://www.explainxkcd.com/wiki/...]), but they should rather by referenced domain-relative (&amp;lt;code&amp;gt;/wiki/...&amp;lt;/code&amp;gt;) or at least protocol-relative (&amp;lt;code&amp;gt;[//www.explainxkcd.com/wiki/load.php?debug=false&amp;amp;lang=de&amp;amp;modules=site&amp;amp;only=styles&amp;amp;skin=vector&amp;amp;* //www.explainxkcd.com/wiki/...]&amp;lt;/code&amp;gt;). --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:29, 3 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== RSS feed issue ==&lt;br /&gt;
&lt;br /&gt;
When attempting to access the feed for this wiki I'm told &amp;quot;Sorry. No feed found.&amp;quot; Is there some way that the feed can be restored to the satisfaction of Feedly? Could it be due to some [http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fexplainxkcd.com%2Frss.xml validation issues], or should I consider changing my news reader? [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 23:08, 7 January 2015 (UTC)&lt;br /&gt;
:Huh. The feed updates automatically with a script that I wrote a while ago, I'm very sure it passed more than this the last time I checked. Fixed a few things, left the one about the date because that's a pain to fix, and one that I can't figure out for the life of me. I think I fixed the line that was causing the actual problems though. Should update on feedly now. '''[[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;]] 01:52, 8 January 2015 (UTC)&lt;br /&gt;
::Hallelujah - the feed was mixed in with other geeky material and it only took me nearly 8 months to notice that nothing was coming through from here anymore. I'm premature with my thanks though. The [http://explainxkcd.com/rss.xml RSS link] in the navigation pane to the left still doesn't want to be understood by Feedly. By contrast, other feeds such as for latest changes can be picked up. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 02:04, 8 January 2015 (UTC)&lt;br /&gt;
:::Hrm. Sent an email to feedly about it, Just tested and I'm having similar issues with feedly. '''[[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;]] 02:17, 8 January 2015 (UTC)&lt;br /&gt;
::::It seems it's not just Feedly. When I use Chrome's [https://chrome.google.com/webstore/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp/related?hl=en RSS Feed Reader], that too also tells me &amp;quot;No posts here yet&amp;quot; followed by the an ever helpful &amp;quot;Chirp, chirp, chirp, chirp&amp;quot; [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 02:33, 8 January 2015 (UTC)&lt;br /&gt;
::::Could it be that it's just not valid XML? I see that it ends at line 236 with &amp;lt;/item&amp;gt; with no other closing tags, for example. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 03:18, 8 January 2015 (UTC)&lt;br /&gt;
:::::Ohwait a minute, the auto updater rips old entries off the bottom and that's where there's supposed to be a closing channel and RSS tag. well. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:19, 8 January 2015 (UTC)&lt;br /&gt;
It's good to know that the cause is now known - I'll let you (or someone else with the authority) get on with fixing things up :-) [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 07:46, 8 January 2015 (UTC)&lt;br /&gt;
:[http://feedly.com/i/subscription/feed/http://www.explainxkcd.com/rss.xml Hullo.] It's not perfect that only one specific formation of the URL works, but it's a start. '''[[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;]] 08:01, 8 January 2015 (UTC)&lt;br /&gt;
:: You sir do God's work - and that coming from a Dillahunty-following Atheist is saying something. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 08:11, 8 January 2015 (UTC)&lt;br /&gt;
My reader has been refusing to process the feed for the last few days. I finally un-busied enough to poke into why. When I looked at the source at [http://www.explainxkcd.com/rss.xml /rss.xml] I saw: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt;&lt;br /&gt;
	&amp;lt;title&amp;gt;1561: Water Phase Diagram&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;link&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/link&amp;gt;&lt;br /&gt;
	&amp;lt;pubDate&amp;gt;Thu, 06 Aug 2015 21:51:11 -0700&amp;lt;/pubDate&amp;gt;&lt;br /&gt;
	&amp;lt;guid isPermaLink=&amp;quot;true&amp;quot;&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/guid&amp;gt;&lt;br /&gt;
	&amp;lt;description&amp;gt;&amp;lt;![CDATA[&amp;lt;h2&amp;gt;1561: Water Phase Diagram&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;http://www.explainxkcd.com/1561&amp;quot;&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;]]&amp;gt;&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;/item&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I'm thinking that the script is broken. I could pro'ly come up with something workable, given the access. --[[User:Ericm301|Ericm301]] ([[User talk:Ericm301|talk]]) 16:50, 9 August 2015 (UTC)&lt;br /&gt;
:What on earth is happening here I don't even know. The script seems fine, I repaired the RSS file again manually. See if it malfunctions again today. '''[[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;]] 01:22, 10 August 2015 (UTC)&lt;br /&gt;
::Script is behaving very strangely. Today's update warped the feed file in a weird way, this doesn't usually happen. I'll test it on my machine to see what's happening. '''[[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;]] 13:56, 10 August 2015 (UTC)&lt;br /&gt;
It was fine for a minute (that must have been your edit), but now it's broke again. --[[User:Ericm301|Ericm301]] ([[User talk:Ericm301|talk]]) 19:53, 10 August 2015 (UTC)&lt;br /&gt;
:Alright, I figured out what was going on with the feed. There was a bit of code I had in the update script that trimmed off the last entry of the RSS file and when I recreated an empty file for the feed after the inexplicable wipe, I forgot to turn it off so it was still shaving off the end of the file. This time it should be working. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:34, 12 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Known appearances&amp;quot; character infobox fix? ==&lt;br /&gt;
&lt;br /&gt;
Currently, &amp;quot;Known appearances&amp;quot; in the characters infobox is broken as for some pages, when the character's category serves as it's own info page. (e.g. [[:Category:Red Spiders]], [[:Category:Sharks]], [[:Category:Squirrels]], [[:Category:Barrel]] etc.) Can this be fixed?--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 11:21, 29 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Fixed it myself. Just use template &amp;quot;Infobox character 2&amp;quot; instead of &amp;quot;Infobox character&amp;quot; when the character's category serves as it's own info page.--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 14:55, 31 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic 1505 (30 March 2015) isn't properly showing up, I think? ==&lt;br /&gt;
&lt;br /&gt;
Excuse me if I'm being a n00b, but [[1505]] is posted, and the page is extant, but it's not showing on the [[Main Page]] yet.  Is this supposed to happen, i.e. waiting for someone to put some content on the page, or did something break somewhere...? Again, sorry if I've just committed a massive derp.  [[Special:Contributions/173.245.56.189|173.245.56.189]] 04:38, 30 March 2015 (UTC)&lt;br /&gt;
:Should be showing up now. '''[[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;]] 09:38, 30 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== rendering problem ? ==&lt;br /&gt;
&lt;br /&gt;
To me, right now, with Windows Firefox 37.0.1, [[625: Collections]] looks like this:&lt;br /&gt;
&lt;br /&gt;
[[File:communityportal_technical_1504_collections.png]]&lt;br /&gt;
&lt;br /&gt;
There doesn't seem to be anything wrong with the source text.&lt;br /&gt;
&lt;br /&gt;
Here's the [[Main Page]] in Internet Explorer 8:&lt;br /&gt;
&lt;br /&gt;
[[File:communityportal_technical_1504_mainpage.png]]&lt;br /&gt;
&lt;br /&gt;
This is affecting everything?  Or just me? [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 03:31, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Okay, [[Special:Contributions/173.245.50.140|somebody]] was messing with [[Template:w]].  I reverted it to the previous editor's version, seemed to fix things. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 03:46, 6 April 2015 (UTC)&lt;br /&gt;
:On that note, they made a similar template that links to rationalwiki, but didn't use it at all in any pages. Huh. It's not even a very significant site. '''[[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;]] 05:52, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The IP [http://www.explainxkcd.com/wiki/index.php?title=301:_Limerick&amp;amp;oldid=84906&amp;amp;diff=88577 preferred the Rationalwiki article] on Poe's Law to the Wikipedia version, I guess.&lt;br /&gt;
::[[User:452]] did not approve. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:57, 6 April 2015 (UTC)&lt;br /&gt;
:::Given the fact that he broke Template:W, and [[Special:Contributions/173.245.50.140|didn't seem to know what he was doing]], I undid his other edits, sorry if this was inappropriate. -[[User:452|452]] ([[User talk:452|talk]]) 17:51, 15 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Main Page ==&lt;br /&gt;
&lt;br /&gt;
When categories are added to the latest comic, the Main Page is also categorized in those categories.--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 13:42, 15 April 2015 (UTC)&lt;br /&gt;
:The most obvious solution would be to put the categories inside &amp;lt;nowiki&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;/nowiki&amp;gt; tags, on every page. {{unsigned|143}}&lt;br /&gt;
::That's ugly and labor-intensive though. I think there's something we can do with string matching to fix it in a better way. '''[[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;]] 03:35, 16 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== #cscore doesn't work with #expr ==&lt;br /&gt;
&lt;br /&gt;
I can't use cscore with expr on my userpage.--{{User:17jiangz1/signature|10:30, 01 May 2015}}&lt;br /&gt;
&lt;br /&gt;
== 1545 page severely broken? ==&lt;br /&gt;
&lt;br /&gt;
The very tail end of the raw page source (using Internet Explorer) is&lt;br /&gt;
 &amp;quot;wgRedirectedFrom&amp;quot;:&amp;quot;1545&amp;quot;});&lt;br /&gt;
 }&amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;&lt;br /&gt;
...and then stops, obviously unfulfilled.  (I also snipped everything up until that unique-looking Redirection data, for brevity.)&lt;br /&gt;
&lt;br /&gt;
Compare that with the equivalent snippet from an adjacent page:&lt;br /&gt;
 &amp;quot;wgRedirectedFrom&amp;quot;:&amp;quot;1544&amp;quot;});&lt;br /&gt;
 }&amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;if(window.mw){&lt;br /&gt;
...and then continues with a working rest of the page.  (Also snipped, but this time both before ''and'' after.  I've kept it short while imagining I've given enough to ID the precise breakpoint though.)&lt;br /&gt;
&lt;br /&gt;
Same problem encountered when using &amp;quot;Next&amp;quot; link from 1544 or &amp;quot;Previous&amp;quot; link from 1546.  Page http://www.explainxkcd.com/wiki/index.php/List_of_all_comics ''itself'' suffers the exact same error. (Last wgVariable listed in LoaC page is ''&amp;quot;wgSearchNamespaces&amp;quot;:[0]'', instead, but still similarly ends after apparently the same close-script and open-script flagging point.)&lt;br /&gt;
&lt;br /&gt;
Does ''not'' go wrong in Mozilla-based browsers also on this machine (Firefox, Seamonkey).  Page sources for 1545 look exactly like the above 1544 snippet, as expected, with no obvious funny characters or 'Little Bobby Tables' anomalies, SFAICT.  In case it's a spurious downloading error that has ended up being cached, I've also &amp;quot;shift-refreshed&amp;quot; in my browser to force download.&lt;br /&gt;
&lt;br /&gt;
Utterly Baffling me, but FYI in case it's something someone needs to know about, although I'm hoping it's just local strangeness and not anything actually of significance.[[Special:Contributions/141.101.98.252|141.101.98.252]] 04:33, 5 July 2015 (UTC)&lt;br /&gt;
:Opened in Internet Explorer 11, it seems to appear for me. Are any site features being impacted by this bug? '''[[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;]] 15:44, 5 July 2015 (UTC)&lt;br /&gt;
::Nothing I was previously familiar enough with to spot an adverse effect.  Note that http://www.explainxkcd.com/wiki/index.php/1545:_Strengths_and_Weaknesses - the link I tried to get from the LoaC page (but only just now tried in non-IE!) works perfectly.  Even while the &amp;quot;/1545&amp;quot; (i.e. 'RedirectedFrom') version of the page ''continues'' to be truncated.  I can only assume that (despite attempts to force things anew), it's buggily-cached iteration.&lt;br /&gt;
::Hang on, that gives me an idea.  Which works.  I changed the 1545 page (change labelled as &amp;quot;Troubleshooting&amp;quot; in history) and... it opens perfectly.  Removed change (should probably have self-reverted, in hindesight, but suspect it'd be fixed anyway) and no further issue.  &amp;quot;List of all Comics&amp;quot; page still as broken (because I haven't forced it to update, and am not inclined to 'interfere' with it), but I shall check again after 1547 forces its own changes upon it.  Otherwise, consider this closed.  Sorry to bother you. &lt;br /&gt;
::TL;DR; problem solved.  Pretty much proven to be not even a site issue, I now think. [[Special:Contributions/141.101.98.252|141.101.98.252]] 21:38, 5 July 2015 (UTC)&lt;br /&gt;
::Ok, FYI, once 1547 'Solar System Questions' ''finally'' appeared, I check &amp;quot;List of all comics&amp;quot; page.  First of all a lot of &amp;quot;Waiting for page...&amp;quot; (uh oh), but then force-refreshed page (in the way that didn't work previously) and it loaded correctly. C'est finis. [[Special:Contributions/141.101.98.252|141.101.98.252]] 15:02, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[881]] loads as &amp;quot;database error&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
With this content:&lt;br /&gt;
Database error&lt;br /&gt;
A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
(SQL query hidden)&lt;br /&gt;
from within function &amp;quot;SqlBagOStuff::set&amp;quot;. Database returned error &amp;quot;1114: The table 'objectcache' is full (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
No other page gives me this error, just [[881]].--[[Special:Contributions/162.158.92.6|162.158.92.6]] 19:42, 2 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I just got this on 564 [[Special:Contributions/141.101.98.200|141.101.98.200]] 22:44, 2 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Database error ==&lt;br /&gt;
&lt;br /&gt;
I can't see [[:Category:Interactive_comics]] (&amp;lt;tt&amp;gt;1114: The table 'objectcache' is full (db423085716.db.1and1.com)&amp;lt;/tt&amp;gt;). [[Special:Contributions/199.27.128.105|199.27.128.105]] 00:18, 3 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== RSS missing ==&lt;br /&gt;
&lt;br /&gt;
Hey it looks like there's an issue with the rss feed, when you browse to the url on the right it just displays an empty page, not sure what's going on. [[User:Eluvatar|Eluvatar]] ([[User talk:Eluvatar|talk]]) 14:19, 3 August 2015 (UTC)&lt;br /&gt;
:Huh, in the last few hours the rss file was inexplicably wiped. I've restored the base of it, the bot should start populating the feed with new comics, but old ones are gone. '''[[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;]] 16:49, 3 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Extra Comics ==&lt;br /&gt;
&lt;br /&gt;
In extra comics, the header of the comic has &amp;quot;Expression error: Unrecognised punctuation character &amp;quot;{&amp;quot;.&amp;quot; such as in [[The Rise of Open Access]]. {{User:17jiangz1/signature|13:32, 13 September 2015}}&lt;br /&gt;
:{{done}} - It was because [[0]] was created, so the logic that #ifexist:0 should be false failed. I changed it to default to -2 when number  is not present, which will work as long as no one creates [[-1]]! [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 11:15, 14 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Explanations for all -4 comics! ==&lt;br /&gt;
&lt;br /&gt;
The main page header now contains this text:&lt;br /&gt;
&lt;br /&gt;
[http://i.imgur.com/p7VACbW.png We have an explanation for all -4 xkcd comics, and only 23 (1%) are incomplete. Help us finish them!]&lt;br /&gt;
&lt;br /&gt;
I'm assuming this is a bug. {{unsigned|Okofish|01:00, 15 September 2015}}&lt;br /&gt;
&lt;br /&gt;
: {{done}} It was a temporary artifact due to recent categorization changes. It's now fixed. Thanks for the quick report :) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 01:14, 15 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion pane missing on comic 1592? ==&lt;br /&gt;
&lt;br /&gt;
After checking the Discussion tab to make sure there ''was'' a Discussion, I thought that someone had removed the &amp;lt;nowiki&amp;gt;{{comic discussion}}&amp;lt;/nowiki&amp;gt; tag, and went into full-page edit to put it back.  But it's there.  Maybe it's just me, maybe it's just temporary, but FYI in case it isn't. [[Special:Contributions/141.101.75.185|141.101.75.185]] 15:06, 19 October 2015 (UTC)&lt;br /&gt;
:Fixed. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:21, 19 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha ==&lt;br /&gt;
&lt;br /&gt;
Captcha not appearing at all. Can't edit pages without turning off security settings (which were set to default). Chrome and &amp;quot;Edge&amp;quot; on Windows 10. Both yell at me about some components of the page being insecure.  15:48, 18 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Same issue with other browsers. reCAPTCHA won't load from an &amp;quot;insecure&amp;quot; resource when the wiki is accessed over HTTPS. [[User:TisTheAlmondTavern|TisTheAlmondTavern]] 15:07, 6 December 2016 (UTC)&lt;br /&gt;
::Oooh, I see. Alright, I'll get to fixing it now I know what the problem is. '''[[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;]] 01:00, 7 December 2016 (UTC)&lt;br /&gt;
Slight bug in the editing panel, when asked what webcomic we're talking about, it cannot be in all caps, it must be strict lowercase, despite appearances on xkcd.com. Could someone take a look at it? [[Special:Contributions/108.162.249.158|108.162.249.158]] 00:54, 5 November 2015 (UTC)&lt;br /&gt;
:It took me several months to figure out that &amp;quot;this wiki&amp;quot; is named &amp;quot;explain xkcd&amp;quot; and not &amp;quot;explainxkcd&amp;quot;. I spent those months answering two questions every time the &amp;quot;what's this wiki's name&amp;quot; question appeared (when I missed the answer, a different question appeared).--[[User:Jojonete|Jojonete]] ([[User talk:Jojonete|talk]]) 09:06, 5 November 2015 (UTC)&lt;br /&gt;
::I was sure both answers were correct, but never attempted to type explainxkcd, just in case. [[Special:Contributions/108.162.221.17|108.162.221.17]] 12:44, 5 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== wiki server clock has drifted - about 13 minutes fast ==&lt;br /&gt;
&lt;br /&gt;
As I type this, it is exactly 07:42:45 UTC. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:55, 14 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And thus timestamps here are 12 or 13 minutes off. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:59, 14 April 2015 (UTC)&lt;br /&gt;
:I see the same thing: 15:41:00 UTC now.... [[User:Nealmcb|Nealmcb]] ([[User talk:Nealmcb|talk]]) 15:54, 23 April 2015 (UTC)&lt;br /&gt;
::Huh. I'll look into it, when I get back home. '''[[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;]] 23:19, 23 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently it's 20 minutes fast. It's 21:00 UTC and it shows 21:20 (UTC). [[User:Xhfz|Xhfz]] ([[User talk:Xhfz|talk]]) 21:20, 14 July 2015 (UTC)&lt;br /&gt;
:Sorry bout the delay, was busy for a long bit, should be fixed now. '''[[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;]] 21:44, 26 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently it's 8 minutes fast. It's 20:56:00 UTC and it shows 21:03 UTC. [[Special:Contributions/108.162.221.17|108.162.221.17]] 21:03, 5 November 2015 (UTC)&lt;br /&gt;
:do we not have ntp on the server or something, gonna reset the clock again when i get back home. '''[[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;]] 00:33, 6 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Happening again: it's 11:33 UTC and the server has 11:48 UTC. [[Special:Contributions/141.101.75.161|141.101.75.161]] 11:49, 11 March 2016 (UTC)&lt;br /&gt;
:Fixed again, and I'm gonna have to check our NTP installation. 06:37, 18 March 2016 (UTC)&lt;br /&gt;
:Alright, changed some things, this shouldn't happen anymore. '''[[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;]] 06:38, 18 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The clock is about 13-14 minutes off again. It's currently 13:49 UTC. –''TisTheAlmondTavern'', 13:36, 17 January 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion template resources apparently missing ==&lt;br /&gt;
&lt;br /&gt;
As co-header (right-margin hugging text) to the Discussion section on all pages (or at least as many as I've just visited - and on multiple browsers, ''just in case''...) I'm getting the following, with the &amp;lt;&amp;gt;-tags being my own descriptive additions:&lt;br /&gt;
 &amp;lt;redlink&amp;gt;File:comment.png&amp;lt;/redlink&amp;gt; &amp;lt;validlink&amp;gt;add a comment!&amp;lt;/validlink&amp;gt; ⋅ &amp;lt;redlink&amp;gt;File:Icons-mini-action refresh blue.gif&amp;lt;/redlink&amp;gt; &amp;lt;validlink&amp;gt;refresh comments!Discussion&amp;lt;/validlink&amp;gt;&lt;br /&gt;
Looks like the PNG and GIF files concerned have been removed, or the links in the Discussion template broken/incorrectly redirected.&lt;br /&gt;
&lt;br /&gt;
(Sidenote: The character between the &amp;quot;add a comment!&amp;quot; and the &amp;quot;File: Icons-mini-action refresh blue.gif&amp;quot; that I've copied here verbatim (so doubtless appears correctly for everyone else who reads this) is an 'I don't have this character on my machine' character, for me, which is obviously entirely my fault for not downloading additional fonts that I'd need.  From cursory investigation, it appears to be essentially the same as &amp;quot;·&amp;quot;, Alt-0183, or HTML code '&amp;amp;amp;middot;', which ''would'' render on my machine and yet (if changed) shouldn't break on those where it currently works.  For your consideration, but not as vital.)&lt;br /&gt;
[[Special:Contributions/141.101.106.161|141.101.106.161]] 06:30, 7 November 2015 (UTC)&lt;br /&gt;
:ETA - Delving around further, [[:Category:Pages with broken file links]] seems to indicate it ''is'' a widespread problem at server-side, and not somehow solely my own (except for the Sidenote issue!).  And suggests a simple way to check that the issue is fixed (when suddenly the category is nowhere near as 'full'), and then discover any related ones that might need fixing (like the special Star Trek Into Darkness alternate version of the Discussion template). [[Special:Contributions/141.101.106.161|141.101.106.161]] 06:57, 7 November 2015 (UTC)&lt;br /&gt;
::Huh. I have a feeling I know what caused this, I'll get right on it. '''[[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;]] 16:23, 7 November 2015 (UTC)&lt;br /&gt;
:::I've seen some more of these cases, e.g. on [[explain xkcd:Community portal]]. I think these images are from Wikimedia Commons, maybe that integration broke somehow? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:33, 7 November 2015 (UTC)&lt;br /&gt;
::::i don't know what is even happening, the images seem to be fine now but they still show up as broken file links '''[[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;]] 02:04, 8 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Update captcha text? ==&lt;br /&gt;
&lt;br /&gt;
The text above the posting captcha says “type the two words” but reCaptcha often doesn't use two, and they're often not words. Example: http://i.imgur.com/TdM5n5O.png&lt;br /&gt;
&lt;br /&gt;
Maybe we could change it to something like “type the text”?&lt;br /&gt;
&lt;br /&gt;
[[User:P1h3r1e3d13|P1h3r1e3d13]] ([[User talk:P1h3r1e3d13|talk]]) 23:44, 2 March 2016 (UTC)&lt;br /&gt;
:So, the reCAPTCHA captchas are entirely provided by Google. If there's an error in it, it's likely Google's fault and a bug report should be sent in that direction instead. '''[[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;]] 00:23, 3 March 2016 (UTC)&lt;br /&gt;
::I noticed that before. It's not a bug in recaptcha, but rather in ConfirmEdit, file ReCaptcha/i18n/en.json to be exact. --[[Special:Contributions/162.158.90.217|162.158.90.217]]&lt;br /&gt;
:::Oh huh, hadn't thought of that. I'll fix that up then. '''[[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;]] 19:45, 3 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Stylesheets not working? ==&lt;br /&gt;
&lt;br /&gt;
It doesn't look like any of the site's CSS is loading for me. I have tried purging, adding useskins to the URL, and clearing my browser's cache, and webpage content remains in Times New Roman with no special styling. Headers and bold spans of text are bold, list items are bulleted, buttons are button-y, templates and my signature display with HTML-&amp;lt;tt&amp;gt;style&amp;lt;/tt&amp;gt;-attribute-level CSS, and so on, but that's the extent of it. Is this a belated April Fools' joke, or has something gone horribly wrong between the servers and my eyes? &amp;lt;span style=&amp;quot;background:#0064de;font-size:12px;padding:4px 12px;border-radius:8px;&amp;quot;&amp;gt;[[User talk:AgentMuffin|&amp;lt;span style=&amp;quot;color:#f0faff;&amp;quot;&amp;gt;~AgentMuffin&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:I made a similar post earlier -- it seems to have vanished down a black hole. I linked these screenshots: [http://i.imgur.com/smN1a45.png] [http://i.imgur.com/qdpxhdY.png]&lt;br /&gt;
:Note that there are no ads either! This could get to problem-level very fast. [[User:KangaroOS|Kangaro]][[User talk:KangaroOS|OS]] 01:28, 5 April 2016 (UTC)&lt;br /&gt;
::There are actually still ads, they're just shoved right at the bottom of the page. mysqld is clocking in at 40% cpu load, and mediawiki seems to be going into fallback mode and skipping stylesheets which is about what I'd expect from an april fools comic. '''[[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;]] 01:31, 5 April 2016 (UTC)&lt;br /&gt;
:::Ah, figured it was some sort of server overslow. For a while there I was getting a 503 error. [[User:KangaroOS|Kangaro]][[User talk:KangaroOS|OS]] 01:36, 5 April 2016 (UTC)&lt;br /&gt;
:::Well, perhaps you don't need another note about this, but I noted the 'stylesheetless' appearance myself, just now.  Except that it ''is'' styled, partially.  (When I choose to view by Style &amp;quot;No style&amp;quot;, it's even more not-Styled!)  Could be because a subset of styles aren't being loaded (so that the ones that ''are'' still loaded can only be identified from their enforced absence), but looks like you have this as much in hand as can be expected, so just FYI... [[Special:Contributions/141.101.98.137|141.101.98.137]] 04:13, 5 April 2016 (UTC)&lt;br /&gt;
::Have you tried switching the server off and back on ? ;-) Jokes apart, are there really so many users continuously polling ? It could be just a case of stale open connections. Really, a reboot might not hurt (although it may kill-off few sessions and you may get some angry posts, but at this point, it might be worth the try) Edit: Sorry, I was messing up the formatting while replying. I'm trying to fix it. But at this point, does it really matter? :P [[Special:Contributions/162.158.255.56|162.158.255.56]] 04:21, 5 April 2016 (UTC)&lt;br /&gt;
:::Alright guys, still having trouble with the load, but I've put a quick temporary hack in place to get the css working again for now. Fonts are a little off, I'll deal with that soon. '''[[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;]] 08:09, 5 April 2016 (UTC)&lt;br /&gt;
::::Did a little more work on things, styles should be working again but it's not great on the back end. I'm going to do some rooting around to see what went wrong. '''[[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;]] 00:07, 6 April 2016 (UTC)&lt;br /&gt;
:::::Cool.. This is pretty good. We're almost there.. The only things I can notice that are off are - (1) Category list at the end of the page (2) Contents block at the beginning of the page and (3) Edit buttons for individual sections. By the way, I'm curious, what exactly was broken ? I didn't expect you'd have to fix things here. I expected that since the issue was caused by excess server load, it would return back to normalcy automatically once things settle down a bit in couple of days after the offending comic was more or less explained. [[Special:Contributions/162.158.255.56|162.158.255.56]] 03:32, 6 April 2016 (UTC)&lt;br /&gt;
::::::A script responsible for picking user preferences and integrating css from pages like [[Mediawiki:common.css]] was failing to complete because of server load, so I gave it a helping hand and just had it insert a static stylesheet instead. I almost certainly missed a few spots though, because the wiki does not look right. '''[[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:43, 6 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
(resetting indent) Yes, things are still off. The text &amp;quot;Jump to: navigation, search&amp;quot; is at the top of every page, but it's useless because it links to stuff already at the top of the page. Edit summaries aren't italicized, the edit boxes don't use the whole window width, links are underlined, section edit links are too big, etc. I put the Wayback Machine to good use, and found the below set of archived pages, all using the proper style. Compare them with the current appearances of the pages, and you should see most, if not all, of the issues I've seen.&amp;lt;br&amp;gt;[http://web.archive.org/web/20160402151417/http://www.explainxkcd.com/wiki/index.php/Main_Page Main Page] | [http://web.archive.org/web/20150326134736/http://www.explainxkcd.com/wiki/index.php/Special:Contributions/NealCruco My contributions] | [http://web.archive.org/web/20150326170626/http://www.explainxkcd.com/wiki/index.php?title=1486:_Vacuum&amp;amp;action=edit The &amp;quot;edit&amp;quot; page for comic 1486] --[[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 21:50, 7 April 2016 (UTC)&lt;br /&gt;
::Is here nothing to be done about the missing styles? The tables still look horrible and there is not help when editing, for instance for signature etc. Colapsing of tables etc. also won't work which is a mess for some of the long explanations and tables [[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 11:56, 18 April 2016 (UTC)&lt;br /&gt;
HotCat also seems to be not working for adding categories. {{User:17jiangz1/signature|13:18, 25 April 2016}}&lt;br /&gt;
:Yeah, load.php is failing so all gadgets and user scripts are unavailable. :-( [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 14:42, 25 April 2016 (UTC)&lt;br /&gt;
::Alright, figured it out. It was a deal with file permissions, not sure how those got changed on April 1st. '''[[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;]] 18:59, 17 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic navigation buttons ==&lt;br /&gt;
&lt;br /&gt;
You know, the buttons that look like the ones on the xkcd site. Shouldn't they also highlight like the xkcd site? I thought maybe it was due to the above CSS issue, but the links to archive.org make it seem like it's just never worked.&lt;br /&gt;
&lt;br /&gt;
It just seems to me that, if we're going to go that far in mimicking the actual buttons, we should probably also mimic their a:hover settings. Shut off the box shadow, change the background to white, and the link color to #6E7B91.&lt;br /&gt;
&lt;br /&gt;
I've tested the following CSS, and it appears to work:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
li.plainlinks:hover, .no-link-underline &amp;gt; li:hover {&lt;br /&gt;
 	background-color: #FFF !important;&lt;br /&gt;
	box-shadow: none !important;&lt;br /&gt;
	-moz-box-shadow: none !important;&lt;br /&gt;
	-webkit-box-shadow: none !important; &lt;br /&gt;
}&lt;br /&gt;
li.plainlinks:hover &amp;gt; a &amp;gt; span, .no-link-underline &amp;gt; li:hover &amp;gt; a &amp;gt; span {&lt;br /&gt;
	color: #6E7B91 !important; &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Trlkly|Trlkly]] ([[User talk:Trlkly|talk]]) 09:14, 2 May 2016 (UTC)&lt;br /&gt;
:Seems like a decent addition. Thanks! '''[[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;]] 18:52, 1 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha trouble ==&lt;br /&gt;
&lt;br /&gt;
For about an hour, I wasn't able to edit a page or create an account when I was trying to, because the captcha was missing. I'm not sure if it was problem on this site or captcha but I thought I'd mention it.&lt;br /&gt;
--[[User:Anqied|Anqied]] ([[User talk:Anqied|talk]]) 08:34, 11 June 2016 (UTC)&lt;br /&gt;
:Recaptcha appears to work for me currently. Does it work now? It seems like they may have just gone down temporarily. '''[[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;]] 20:52, 11 June 2016 (UTC)&lt;br /&gt;
::I'm not certain this is the same issue, but I was just having a problem with the captcha for unregistered users trying to edit a page. I figured out that it's because you were trying to serve the captcha through HTTP even though the page was on HTTPS, so my browser was blocking the captcha. Changing to HTTP &amp;quot;fixed&amp;quot; the issue, but that shouldn't be the solution. [[Special:Contributions/108.162.215.187|108.162.215.187]] 16:45, 18 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== wrong IP ==&lt;br /&gt;
&lt;br /&gt;
[http://www.explainxkcd.com/wiki/index.php?title=632:_Suspicion&amp;amp;curid=3946&amp;amp;diff=122229&amp;amp;oldid=100180 My edition] was attributed to 141.101.104.60, whereas my real address is 88.156.226.213 according to [https://ipinfo.io]. Wikimedia sites (Wikipedias, Wiktionaries...) recognize my IP address properly. Someting strange is going on here. [[Special:Contributions/141.101.104.71|141.101.104.71]] 22:40, 21 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just a heads up that your website is incorrectly identifying the IP address of visitors as being from the CloudFlare server that is serving the page content to them. It would be best practice if you could explicitly look for the field &amp;quot;REMOTE_ADDR&amp;quot; rather than &amp;quot;X-FORWARDED-FOR&amp;quot; as the former is unaffected by the use of intermediate proxies.&lt;br /&gt;
PS My IP address should begin with 131.111. IP addresses beginning with 141.101 belong to Cloudflare London. [[Special:Contributions/141.101.98.5|141.101.98.5]] 21:08, 21 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
* This appears to still be an issue.  I just [http://www.explainxkcd.com/wiki/index.php?title=Talk:1787:_Voice_Commands&amp;amp;curid=19860&amp;amp;diff=133917&amp;amp;oldid=133916 posted] from [[Special:Contributions/172.72.47.40|172.72.47.40]], my work place and it's showing as [[Special:Contributions/108.162.238.11|108.162.238.11]].  Thanks.&lt;br /&gt;
&lt;br /&gt;
* FYI I just created this account and the &amp;quot;email address confirmation&amp;quot; email I received said the account was created by a Cloudflare IP (162.158.107.199), not my own. [[User:ExcarnateSojourner|ExcarnateSojourner]] ([[User talk:ExcarnateSojourner|talk]]) 15:09, 4 July 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha does not appear ==&lt;br /&gt;
&lt;br /&gt;
I am not a registered user (I just haven't bothered to make an account), so I have to complete a Captcha before saving any of my edits. However, I've found numerous times that the captcha does not show up when I hit [Save page]. The line of text introducing it (&amp;quot;To help protect against automated edit spam, please type the word you see in the box below:&amp;quot;) shows up, but the no actual captcha and thus no saved edits. '''Is this a known issue with Chrome?''' I managed to circumvent it by using IE (I assure you, it was the only other browser available), but I would much prefer to be able to edit ''explain xkcd'' pages in Chrome, my usual browser. {{unsigned ip|108.162.220.17}}&lt;br /&gt;
:What plugins do you have installed on chrome? Do you have Javascript enabled? I'll see what can be done if you have them off. '''[[User:D?avidy22|&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;]] 20:45, 20 July 2016 (UTC)&lt;br /&gt;
::I just figured out the problem and successfully edited a page.  I too tried IE after Chrome but still encountered the issue... to my consternation I noticed a new icon in the address-bar, 'Blocked content'.  (Apparently recaptcha is treated similarly to a pop-up.)  Interacting with this new button made the captcha appear.  I am in Chrome adding this comment, and after finding the similarly-functioning/corresponding button here, all is well [[Special:Contributions/108.162.237.247|108.162.237.247]] 18:39, 2 August 2016 (UTC)&lt;br /&gt;
::Hmph, I am likely a completely different user from the foregoing, but our IP addresses are similar and both reported as from Cloudflare in TX. [[Special:Contributions/108.162.237.247|108.162.237.247]] 18:42, 2 August 2016 (UTC)&lt;br /&gt;
::I would like to address this and also point out this is the only site where I've run into this problem; other wiki-based sites can load captcha fine. According to Chrome it's blocked because it's an &amp;quot;unsafe script&amp;quot;. [[Special:Contributions/141.101.107.84|141.101.107.84]] 08:54, 4 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wanted files ==&lt;br /&gt;
&lt;br /&gt;
[[Special:WantedFiles]]: 41 file is linked but nonexistent. &lt;br /&gt;
&lt;br /&gt;
Some on talk pages, user pages and project pages, but here is a list of those in main namespace:&lt;br /&gt;
# File:Apatosaurus scale mmartyniuk wiki.png&lt;br /&gt;
# File:Apidae - Eucera sp. (male).JPG&lt;br /&gt;
# File:Louisae.jpg&lt;br /&gt;
# File:Wet kookaburra 6674 Crop Edit.jpg&lt;br /&gt;
# File:MQ-1 Predator unmanned aircraft.jpg&lt;br /&gt;
# File:Bee orchids, Aller Brook Local Nature Reserve - geograph.org.uk - 833516.jpg&lt;br /&gt;
# File:Synhalonia nest 1.jpg&lt;br /&gt;
# File:Butterfly Voters View.jpg&lt;br /&gt;
# File:Fusca estacionado.jpg&lt;br /&gt;
# File:Ophrys apifera flower1.jpg&lt;br /&gt;
# File:Galilean moon Laplace resonance animation.gif&lt;br /&gt;
# File:PalmCellTower.jpg&lt;br /&gt;
# File:746 telephone in red.JPG&lt;br /&gt;
# File:Candidate Higgs Events in ATLAS and CMS.png&lt;br /&gt;
# File:Tommy Wiseau.jpg&lt;br /&gt;
# File:Google maps auto.jpg&lt;br /&gt;
# File:Velociraptor dinoguy2.jpg&lt;br /&gt;
# File:Acrocanthosaurus skeleton (1).jpg&lt;br /&gt;
# File:Vraptor-scale.png&lt;br /&gt;
# File:Alces alces elan trophee chateau Tanlay.jpg&lt;br /&gt;
# File:DBCooper.jpg&lt;br /&gt;
# File:Rick Astley - Pepsifest 2009.jpg&lt;br /&gt;
# File:Anonymous emblem.svg&lt;br /&gt;
# File:Eas new.svg&lt;br /&gt;
# File:John Cage and Michael Bach in Assissi 1992.jpg&lt;br /&gt;
I could not find why they were deleted and it's hard for me to argue for their presence in the articles. Being a newbie here, I would like to ask those who knows better to either undelete files, or upload them again, or delete file mentions from the explanations. Thanks --[[User:Ата|&amp;lt;span style=&amp;quot;color:SteelBlue&amp;quot;&amp;gt;Ата&amp;lt;/span&amp;gt;]]&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Ата|&amp;lt;span style=&amp;quot;color:#80A0FF&amp;quot;&amp;gt;(talk)&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 15:47, 8 August 2016 (UTC)&lt;br /&gt;
:I tend to clean up after myself, don't recognise these file names. I believe these happen when files get moved, feel free to cut dead file links wherever you find them if you find them unnecessary.'''[[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;]] 02:38, 10 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[827]]/[[1721]]: Business Idea ==&lt;br /&gt;
&lt;br /&gt;
See [[1721#Trivia]]. Randall has accidentally named both 1721 and 827 &amp;quot;Business Idea&amp;quot;. He fixed it by renaming 827 to &amp;quot;My Business Idea&amp;quot;. I tried to reproduce by renaming the file and wiki page for 827, but it now shows the old comic on both pages. Maybe CloudFlare caching? And idea (that's not a business idea) to fix this? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]])&lt;br /&gt;
:Cloudflare takes a little time to update changes to an image. For immediate results, you can create an image under a different name and use that while you wait for the old one to update. Otherwise, it should update within a few hours. Is it good for you now? '''[[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;]] 14:48, 18 August 2016 (UTC)&lt;br /&gt;
::Yes, it was resolved after a few hours. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 20:25, 18 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mobile CSS ==&lt;br /&gt;
&lt;br /&gt;
I've accessed this Wiki on my mobile device more often than previously and I couldn't find any discussion about this. Honestly, 50% of the reasons I'm adding this topic is about the discussion, the rest is about making it easier for people with narrower screens.&lt;br /&gt;
I understand that I am a new member on this Wiki and that altering [[Mediawiki:Common.css]] has site-wide effects (and I'm sure that there are some templates that won't agree with some of the options we have, even some tables, such as the one on [[893: 65 Years#Trivia]], will break a very narrow design).&lt;br /&gt;
&lt;br /&gt;
OK. Let me just ramble on about this, then. =)&lt;br /&gt;
There are some obvious (but not necessarily easier) options for mobile devices. [https://www.mediawiki.org/wiki/Manual:Mobiles,_tablets_and_responsive_design MediaWiki] lists a few Skins and Extensions. Not having ever had access to a Wiki's server, I have no idea how nerve-racking that is (or if it even makes sense for this Wiki). Even more obvious to some - and even harder to implement - is a mobile app (that I wouldn't use anyway).&lt;br /&gt;
&lt;br /&gt;
So, to bridge the time until maybe something more effective comes along, we ''could'' try to add some CSS ourselves. I'm no expert. But here are my thoughts.&lt;br /&gt;
*This is about all devices with narrow screens, not just phones. Let's say anything under 600px width is considered narrow.&lt;br /&gt;
*Most obviously, the font size should be affected. This has negative consequences for anything with fixed font size. And anything we forget. Basically, the sidebar, the search and anything else on top of each page can be massively smaller depending on the screen and fixing that won't be as easy.&lt;br /&gt;
*Of course we could disregard the sidebar, or rather, push it to the bottom (which is easy, it's artificially placed on the left instead of the bottom). There are a number of reasons why a lot of people wouldn't want that. One of those reasons is that the ads would basically disappear for anyone who doesn't scroll down. We would have to figure out where else we can put it, on the top maybe. On the plus side, we could have the entire width of the screen just for the article.&lt;br /&gt;
*Another thing that breaks the design regularly: comic images. We could make them fit. The navigation might be more challenging.&lt;br /&gt;
*There's a whole lot of paddings and margins to get rid of.&lt;br /&gt;
*Maybe make the search box a lot bigger?&lt;br /&gt;
&lt;br /&gt;
A short snippet for the comic images and for the font:&lt;br /&gt;
&lt;br /&gt;
 @media handheld,screen and (max-width: 600px),screen and (max-device-width: 600px){ /* because some mobile browsers like to work with a higher resolution than the resolution of the screen */&lt;br /&gt;
 &lt;br /&gt;
 #bodyContent{&lt;br /&gt;
 font-size:initial; /* resetting font to full size */&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 td &amp;gt; img{ /* maybe add a class for the table in [[Template:comic]] */&lt;br /&gt;
 display:block;&lt;br /&gt;
 margin:auto;&lt;br /&gt;
 max-width:100%; /* make image fit into box */&lt;br /&gt;
 height:auto;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
I don't know... What do you think?&lt;br /&gt;
Oh, also, Mediawiki says this can be added to [[Mediawiki:Mobile.css]] but I guess that is for extensions? We'd probably have to add that to [[Mediawiki:Common.css]] if we ever want to add it.&lt;br /&gt;
[[User:Ret Samys|Ret Samys]] ([[User talk:Ret Samys|talk]]) 16:21, 15 September 2016 (UTC)&lt;br /&gt;
:Getting on a plane soon, but I'll take a look at this when I get off and get moved in again. '''[[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;]] 14:07, 16 September 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== HTTPS Links Back to XKCD Interfere with Random Button ==&lt;br /&gt;
&lt;br /&gt;
''(I've moved this from &amp;quot;Proposals&amp;quot; to here, now realising this is the proper location.)''&lt;br /&gt;
&lt;br /&gt;
The Links back to the comics that are present just above the comic itself on the wiki pages (and adjacent to the next and previous links) provides an HTTPS link back to XKCD. However, this interferes with users who want to click that link, and then click &amp;lt;code&amp;gt;random&amp;lt;/code&amp;gt; - because &amp;lt;code&amp;gt;c.xkcd.com&amp;lt;/code&amp;gt; does NOT support HTTPS, and thus clicking &amp;lt;code&amp;gt;random&amp;lt;/code&amp;gt; after returning to xkcd from explainxkcd via the button on a comic's article does not work. These links should be switched back to HTTP.&lt;br /&gt;
&lt;br /&gt;
--[[User:9000 volts|9000 volts]] ([[User talk:9000 volts|talk]]) 22:53, 24 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:What makes you suspect &amp;lt;code&amp;gt;c.xkcd.com&amp;lt;/code&amp;gt; does not support SSL? It features a perfectly valid wildcard certificate from GeoTrust (currently valid from Dec 14 00:00:00 2016 GMT, so it should already have affected you), although it's different from the multi-site certificate from Fastly used on the comic and what-if.xkcd.com and, yet again, different from the Let's Encrypt ones used on the blag and store.&lt;br /&gt;
&lt;br /&gt;
:On the other hand, there is a compelling argument for HTTP links: Most interactive comics break with HTTPS. –''TisTheAlmondTavern'', 14:19, 17 January 2017 (UTC)&lt;br /&gt;
::I can't reproduce the issue with random comics, but the benefits of using SSL for links to a site that stores no user data probably don't outweigh the issues that some people seem to be having. Changed. '''[[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;]] 22:34, 10 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Retry for a live version&amp;quot; and stuff not responding ==&lt;br /&gt;
&lt;br /&gt;
Every now and then, I'd just be browsing around the site, then all of a sudden I'd run into an issue with it saying that there was an error with the explainxkcd.com host and that I would need to wait for the servers to restart. This is happening rather often for me, but goes away quickly. Sometimes, it happens on my own wiki pages too... weird. Other times, things would just freeze. Is it something on my end, or is it with the site? --[[User:JayRulesXKCD|JayRulesXKCD]] ([[User talk:JayRulesXKCD|talk]]) 14:05, 5 January 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Support for timezones? ==&lt;br /&gt;
&lt;br /&gt;
I live in the timezone PST, and because of that, the clock seems to be ahead of my time by about 7 hours and 40 minutes. Can someone add support for different timezones?&lt;br /&gt;
For example, at my time of posting, it is 7:56 PM on March 8, 2017. The time the wiki thinks it is is shown on my signature: [[User:625571b7-aa66-4f98-ac5c-92464cfb4ed8|625571b7-aa66-4f98-ac5c-92464cfb4ed8]] ([[User talk:625571b7-aa66-4f98-ac5c-92464cfb4ed8|talk]]) 03:40, 9 March 2017 (UTC)&lt;br /&gt;
:You can actually set your own time zone. Go to Preferences-&amp;gt;Date and Time, and there should be a time offset option for you to pick your time zone. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:36, 9 March 2017 (UTC)&lt;br /&gt;
::The thing is, I do have my time zone set to PST, but on the wiki it is still showing up as the wrong time. [[User:625571b7-aa66-4f98-ac5c-92464cfb4ed8|625571b7-aa66-4f98-ac5c-92464cfb4ed8]] ([[User talk:625571b7-aa66-4f98-ac5c-92464cfb4ed8|talk]]) 15:24, 9 March 2017 (UTC)&lt;br /&gt;
:::Oh, the timestamps recorded in signatures are in UTC for everyone. That doesn't change, because it makes it easier to follow the timeline of a conversation in a talk page. '''[[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;]] 17:24, 9 March 2017 (UTC)&lt;br /&gt;
::::Uhhh, the timestamp isn't UTC at all. My latest BOT upload was 06:02, 8 March 2017 CET or 05:02, 8 March 2017 UTC and it is recorded here as 04:45, 8 March 2017. So we still have an offset 17 minutes to the past. That's an old problem.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:33, 9 March 2017 (UTC)&lt;br /&gt;
:::::It is UTC, server inaccuracy doesn't change the time zone, it just makes it inaccurate. '''[[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;]] 19:13, 9 March 2017 (UTC)&lt;br /&gt;
::::::And even if you don't like me for this: The server time is currently UTC-00:17 and not UTC. This odd offset confuses users. But I know nobody can change this.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:36, 9 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mailserver-problem ==&lt;br /&gt;
&lt;br /&gt;
Hello, &amp;lt;br/&amp;gt;&lt;br /&gt;
I tried to reset my password today, but there is a problem with your mail-server: The sender-adress of your password-reset-mail is expla0@vps.explainxkcd.com, but the (sub-)domain vps.explainxkcd.com does not exists, and so the eMail is rejected by my mail-server (and most others too). Could that please be fixed? Thank you very much. --DaB.&lt;br /&gt;
&lt;br /&gt;
== When did InstantCommons get disabled? ==&lt;br /&gt;
&lt;br /&gt;
I was just about to add some photos of the ISS transiting the sun to [[1828|today's explanation]], but saw that it's no longer possible to just enter the names of {{w|c:|Wikimedia Commons}} photos and for them to render. I know of at least one explanation&amp;amp;mdash;[[1400]]&amp;amp;mdash;that previously had such images, but now just has redlinks. I presume that at some point someone must have disabled {{w|mw:InstantCommons|$wgUseInstantCommons}} in the config settings. May I ask what the reason for that was? And is there any chance that that could be reverted? Obviously there aren't a lot of articles where it makes sense to have Commons images up, but IMHO it's a useful feature to have for the rare occasion where it makes sense, like with today's comic. [[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 21:20, 24 April 2017 (UTC)&lt;br /&gt;
:'''Solved.''' You now can embed pictures from Commons like local files. The link &amp;lt;nowiki&amp;gt;[[File:DBCooper.jpg|thumb|Cooper]]&amp;lt;/nowiki&amp;gt; shows the picture from Commons because it doesn't exist here. There is no need to use a template. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:57, 25 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia template stopped working ==&lt;br /&gt;
&lt;br /&gt;
Some time ago the template used for links to Wikipedia stopped working correctly.  If you see here link to Halloween on Wikipedia, it works again:&lt;br /&gt;
{{w|Halloween}}. --[[User:JakubNarebski|JakubNarebski]] ([[User talk:JakubNarebski|talk]]) 22:21, 25 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Known issue, there's currently an anon doing boring vandalism. --[[Special:Contributions/108.162.241.172|108.162.241.172]] 22:37, 25 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CAPTCHA does not work for HTTPS visitors ==&lt;br /&gt;
&lt;br /&gt;
I am a fervent believer in encrypting everything (I am the crypto nut in [[1269: Privacy Opinions]]), and have configured the NoScript plugin to force the use of HTTPS instead of HTTP for all sites that aren't on a special list in my configs. Hence, I tend to visit sites on HTTPS that most people visit on unencrypted HTTP, discovering all the bugs in people's HTTPS implementations in the process...and this site is not exempt from the bugfinding.&lt;br /&gt;
&lt;br /&gt;
In order to edit pages, you need to enter a CAPTCHA. However, the script that makes this captcha work is fetched from Google over unencrypted http (the src tag in the script specifies http: not https:). When I visit this site over HTTPS, the use of active content served over unencrypted HTTP onto an encrypted page causes Firefox to have a spasm and block the script. Since Google fully supports HTTPS, the script's src tag should just be changed to say https: instead of http:, and that SHOULD fix it. Better yet, omit the protocol at all, and do something like:&lt;br /&gt;
&lt;br /&gt;
src=&amp;quot;//www.google.com/recaptcha/(rest of url)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Most modern browsers will interpret that as &amp;quot;fetch www.google.com/recaptcha/(rest of url) over the same protocol used to serve this page.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
(Sadly, NoScript is not smart enough to fix this by itself and just change the script's src to https: client-side...)&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/162.158.79.89|162.158.79.89]] 11:12, 20 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
The CAPTCHA also doesn't work for https while using Chrome. 01 September 2017&lt;br /&gt;
&lt;br /&gt;
== Deprecation of reCAPTCHA v1 ==&lt;br /&gt;
&lt;br /&gt;
The wiki currently uses reCAPTCHA v1 to validate users as human, which [https://developers.google.com/recaptcha/docs/faq#what-happens-to-recaptcha-v1 beginning in November will show public deprecation notices] and stop working altogether on March 31, 2018.&lt;br /&gt;
&lt;br /&gt;
Are there already plans to migrate to reCAPTCHA v2 or a different CAPTCHA algorithm? –[[User:TisTheAlmondTavern|TisTheAlmondTavern]] ([[User talk:TisTheAlmondTavern|talk]]) 20:05, 31 October 2017 (UTC) (wiki clock is several minutes late again, BTW)&lt;br /&gt;
&lt;br /&gt;
:I do intend to update the CAPTCHA, I got the email notice from Google. I've been away from the site for longer than I'd like, been busy but it looks like a bunch of stuff has piled up while I was gone. I'll try to fix what I can with the time I have. '''[[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;]] 03:38, 12 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Any update on this? It has &amp;lt;6 weeks of life left, and the user messaging has just got angrier. [[Special:Contributions/162.158.155.26|162.158.155.26]] 09:22, 20 February 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::10 days left. I wonder what happens then. Right now, it just says &amp;quot;V1 SHUTDOWN ON 2018-03-31&amp;quot; and expects me to type it as an answer. {{unsigned ip|172.68.110.46}}&lt;br /&gt;
&lt;br /&gt;
::::You can hit the refresh button and it will display an actual catch.  4 days before they shut it down. [[User:TheMageKing|TheMageKing]] ([[User talk:TheMageKing|talk]]) 12:22, 27 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Either the kludge of simply typing the message about shutdown still works, or the Captcha system is just not working: I'm not autoconfirmed here but I was able to edit today, 9 days after v1 presumably went &amp;quot;poof&amp;quot;. [[User:Yngvadottir|Yngvadottir]] ([[User talk:Yngvadottir|talk]]) 18:12, 9 April 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
The new reCAPTCHA v2 is now online. I apologize for the delay but many updates were required and I tried to keep the server downtime as short as possible. [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
== RSS bot stopped? ==&lt;br /&gt;
&lt;br /&gt;
The master RSS feed only goes up to 1912, although the wiki is already up to 1914. --[[Special:Contributions/141.101.105.18|141.101.105.18]] 11:20, 11 November 2017 (UTC)&lt;br /&gt;
:Sorry, been busy, the feed should be up and running again. '''[[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;]] 03:38, 12 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha doesn't work on my browser ==&lt;br /&gt;
&lt;br /&gt;
I can't make any edits to the comic pages because the captcha simply doesn't appear when I'm trying to edit the comic pages. {{unsigned|WilliamBrennan}}&lt;br /&gt;
:Please check your add blockers and activate JavaScript. [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hi &amp;amp; Thanks heaps! I finally created an account after years of pleasurable &amp;amp; enlightening explanations. It took me over 5 minutes to get past the Captcha, and I've seen a few in the last week registering for sites such as XDA-developers and the like. Not sure how it all works but it feels like it's set to &amp;quot;ultra-difficult&amp;quot; or some-such...and this is the place where things are *easy* for *stupid people* like me ;) Cheers &amp;amp; thanks again {{unsigned|Munchywok}}&lt;br /&gt;
:The Captcha is from Google (Big Brother...) and based on an sophisticated software in which you sometimes even don't have to solve it at all when it is convinced that you are a human. But it depends on your browser installation, especially your add ons. My best experience is using Google Chrome without any extensions. Firefox with extensions is the hell. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 09:25, 15 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== New High Resolution comics ==&lt;br /&gt;
&lt;br /&gt;
I've noticed Randall has been making the comics higher resolution to look good on HiDPI/Retina displays. But the copies on ExplainXKCD are the old low resolution copies.&lt;br /&gt;
&lt;br /&gt;
Perhaps we'll have to go through at some point and update these? {{unsigned ip|162.158.75.58}}&lt;br /&gt;
:I am aware of this. Randall started to provide two different resolutions at standard comics more than a year ago, and he also provides the larger resolutions to older comics since than. Technically the image tag provides links to two pictures and the browser decides based on the screen resolution what is shown. Since this wiki is now at the latest version the use of [https://www.mediawiki.org/wiki/Manual:$wgResponsiveImages $wgResponsiveImages] may be possible. But this has to be tested first. Stay tuned... [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Should the HTTP urls redirect to HTTPS? ==&lt;br /&gt;
&lt;br /&gt;
Not sure if this has been mentioned before, but shouldn't the HTTP urls be redirecting to HTTPS? Right now, the HTTP and HTTPS endpoints seem to have different login states, which is possibly confusing. I was stumped for a long time on why I couldn't login to my account, because I kept getting the error message &amp;quot;There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Go back to the previous page, reload that page and then try again.&amp;quot; And then I noticed the &amp;quot;Use secure connection&amp;quot; button, and when I clicked it, it took me to the HTTPS site where I was already logged in! But even now, if I go to an HTTP url, I'm still logged out there. [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 00:43, 21 August 2018 (UTC)&lt;br /&gt;
:Of course HTTP and HTTPS are different endpoints. Login via HTTPS and your credentials are encrypted and this will be never converted into plain text for HTTP. And I just successfully tested both connections with Google Chrome. Maybe we should redirect always to HTTPS like xkcd does, right now it's just your choice. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:46, 21 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Ah, I see. If I log in from the HTTP site, I'm logged in on both the HTTP and HTTPS sites. But if I login from the HTTPS site, then I'm only logged in on the HTTPS site, and not on the HTTP site. Furthermore, if I'm logged into the HTTPS site and I try to login from the HTTP site, I get the error message that I quote from above. Fair enough.&lt;br /&gt;
&lt;br /&gt;
::I guess one contribution to my confusion was the fact that the HTTPS site doesn't have the green padlock in Chrome. That would have made the difference between the HTTPS and HTTP site a bit more obvious. (I rarely type in the entire URL directly; I usually just let the Chrome address bar autocomplete do its job... and unfortunately that autocomplete takes me to the HTTP site, and I keep forgetting about that.) Right now, on any HTTPS page here, Chrome still says that it's insecure: &amp;quot;Attackers might be able to see the images you're looking at on this site and trick you by modifying them.&amp;quot; Firefox says something similar: &amp;quot;Parts of this page are not secure (such as images).&amp;quot; Perhaps someone should look into that? (I think it might be the ad image.) [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 03:09, 23 August 2018 (UTC)&lt;br /&gt;
:::Thanks for your remarks. I'm aware of this but the site isn't insecure, only a few local images and some from wikimedia are hard coded to a http link. It's not much so I'll fix it soon.&lt;br /&gt;
:::In general every http request should be redirected to https, but that's not trivial at our current environment. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:35, 23 August 2018 (UTC)&lt;br /&gt;
::::It took some time to find all the places of hard coded images via http (insecure) but now you should see the green secure remark in your browser when logging in via https. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 13:50, 24 August 2018 (UTC)&lt;br /&gt;
:::::in my holy opinion at least the login page should only be served securely. people are notoriously bad at not-reusing-passwords. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 12:23, 10 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just noting that basically every major site out there redirects from HTTP to HTTPS (including http://en.wikipedia.com, http://xkcd.com, http://stackoverflow.com, and even other wiki communities like http://wiki.puella-magi.net, http://en.touhouwiki.net/wiki/Touhou_Wiki, and http://wiki.documentfoundation.org). So it would really cool if we could get that redirect action happening on this site, too :) I was browsing the site today and I was just struck once again by how odd it was that I wasn't logged in, until I remembered that I was on the HTTP site, not the HTTPS site. A real user experience annoyance, if you ask me. [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 21:34, 19 October 2018 (UTC)&lt;br /&gt;
:Of course you're right. I still have other issues but this will be done soon. Stay tuned... --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:08, 20 October 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha too picky ==&lt;br /&gt;
&lt;br /&gt;
I just had to solve the &amp;quot;select all street signs&amp;quot; Captcha at least 10 times in a row. I never know when/whether to include slivers, backs of signs, sign posts, walk/wait lights. Captcha already doesn't follow my definition of street sign (I only call the sign that has the street name a &amp;quot;street sign&amp;quot;, but I realize what I call &amp;quot;road signs,&amp;quot; Captcha also calls &amp;quot;street signs&amp;quot; and I can adjust for that. But I haven't figured out the other issue yet, and I suspect Captcha is dinging me on choosing slivers. But that's only a guess, since it never tells you what you got wrong, it just gives you another Captcha. {{unsigned|Thisisnotatest}}&lt;br /&gt;
:My advice is installing Google Chrome and it works fine. Since that Captcha software is also from Google (Big Brother...) I believe that's on purpose. Firefox is the hell as you described; I'm not sure how it works at MS IE/Edge. In general you have to select not less than three and not more than four squares. But on Firefox, even when it seems definitely to be correct, the chance of getting an error message is more than 80%. You probably use FF. Nonetheless right now there are no other adequate Captcha tools supported by Mediawiki, the software this Wiki runs on. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:57, 27 August 2018 (UTC)&lt;br /&gt;
:I second this. Big Brother's Captchas on Firefox are nearly unsolvable (granted, I'm browsing with JS off and blocking 3rd party cookies). And recaptcha requires 1) JavaScript and 2) a connection to google. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 12:23, 10 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cannot create a user page ==&lt;br /&gt;
&lt;br /&gt;
i have tried to make a user page for myself and cannot seem to do it, i'm sorry if this has been addressed already, but i couldn't find it. [[User: Nintendo Mc]] ([[User talk:Nintendo Mc|talk]]) 13:07, 28 September 2018 (UTC)&lt;br /&gt;
:New user don't have the rights. Do some more edits and wait a few days until you can create new pages. Your user page is created by me for now. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 15:00, 28 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::'''Good Question!''' is there some place '''that everyone''' [who is cool] '''can find,''' that explains '''how many''' edits one has to do (and/or, '''how long''' one has to wait) in order to cause the&amp;lt;blockquote&amp;gt;[...] but you do not have permission to create this page.&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
::'''[error] message''' to ... '''&amp;quot;no longer&amp;quot; appear,''' when some limitation or rule is no longer blocking or &amp;quot;preventing&amp;quot; allowing creation -- by that user -- of his own '''&amp;quot;User:&amp;quot;''' page? (OR ... of ''her'' own '''&amp;quot;User talk:&amp;quot;''' page?) &lt;br /&gt;
&lt;br /&gt;
::I have done [https://www.explainxkcd.com/wiki/index.php/Special:Contributions/Mike_Schwartz very few edits] here, but ... a couple of them were almost '''3 years ago.''' &lt;br /&gt;
&lt;br /&gt;
::For what it's worth (FWIW), '''I did not plan to say much''' on my &amp;quot;User:&amp;quot; page here. Probably something like:  &lt;br /&gt;
::::This user is not a frequent flyer here on this Wiki (at &amp;quot;explainxkcd&amp;quot;); ...but he has done [https://en.wikipedia.org/wiki/Special:Contributions/Mike_Schwartz a 4-digit number of edits] on ''other'' Wikis ...mainly [https://en.wikipedia.org/wiki/Main_Page English Wikipedia] (&amp;quot;See also&amp;quot; his [https://en.wikipedia.org/wiki/User:Mike_Schwartz &amp;quot;User:&amp;quot; page] there.) &lt;br /&gt;
&lt;br /&gt;
::&amp;lt;big&amp;gt;&amp;lt;big&amp;gt;Any comments?&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt; Thanks for listening. --[[User:Mike Schwartz|Mike Schwartz]] ([[User talk:Mike Schwartz|talk]]) 07:43, 7 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::According to [[explain xkcd:Community portal/Admin requests#Permission request|here]] and [[:explain xkcd:Autoconfirmed users]], you need to accumulate 10 edits (as well as your account being active for at least 3? or 7? days), then you become an &amp;quot;autoconfirmed user&amp;quot; and gain the [[Special:ListGroupRights|right]] to create pages.  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 02:09, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Do you know if only edits count, or if talk contributions count too? [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:26, 19 June 2024 (UTC)&lt;br /&gt;
::::Wait. On [[:explain xkcd:Autoconfirmed users]] it says 50 edits, not 10. [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:51, 26 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Accessibility issues ==&lt;br /&gt;
&lt;br /&gt;
[First post - hello, everyone!]&lt;br /&gt;
&lt;br /&gt;
I have 15 years of experience of using MediaWiki, and have been heavily involved in some of the accessibility work on Wikipedia.&lt;br /&gt;
&lt;br /&gt;
When we use colons (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;), semicolons (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;), and asterisks (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;) to indent dialogue, discussions, etc we actually cause MediaWiki to generate HTML lists.&lt;br /&gt;
&lt;br /&gt;
If we leave a bank line between indented lines/ paragraphs, we cause the start of a new HTML list.&lt;br /&gt;
&lt;br /&gt;
Since the start of each list is read out by the kind of software used by (for example) people with severe visual impairments, this generates barrier to their use of the site. &lt;br /&gt;
&lt;br /&gt;
The solution is to not leave blank lines; to always indent replies by just one step; and to maintain consistency in the type of character used.&lt;br /&gt;
&lt;br /&gt;
You can see examples and more explanation at {{w|Wikipedia:Manual of Style/Accessibility#Lists}}&lt;br /&gt;
&lt;br /&gt;
Please consider adopting Wikipedia's recommended best practice for such lists, on this site. &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pigsonthewing|Andy Mabbett]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Pigsonthewing&amp;lt;/span&amp;gt;); [[User talk:Pigsonthewing|Talk to Andy]]; [[Special:Contributions/Pigsonthewing|Andy's edits]]&amp;lt;/span&amp;gt; 19:20, 5 November 2018 (UTC)&lt;br /&gt;
:Thanks for your input and welcome here. At first you should know that this Wiki doesn't follow every Wikipedia standard, but there is a --relatively new-- [[explain xkcd:Editor FAQ|FAQ]] and we should talk at that discussion page about any enhancements. And please consider to keep it short, a typical editor here isn't a Wikipedean and doesn't read tons of manuals.&lt;br /&gt;
:There are many ugly layouts here, most written before the FAQ did exist, but when I and others see them the explanation or transcript gets an incomplete tag for that reason. And the biggest problem in the past was the use of overwhelming tables.&lt;br /&gt;
:BTW: Using a new-newline for each sentence isn't also a nice layout. Never mind... --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:54, 5 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== suggest adding info to pages ==&lt;br /&gt;
&lt;br /&gt;
I see &amp;quot;Title text&amp;quot; here on explainxkcd, but not on the comic itself.  &lt;br /&gt;
&lt;br /&gt;
Eg. https://www.explainxkcd.com/wiki/index.php/1313:_Regex_Golf shows &amp;quot;Title text: /bu|[rn]t|[coy]e|[mtg]a|j|iso|n[hl]|[ae]d|lev|sh|[lnd]i|[po]o|ls/ matches the last names of elected US presidents but not their opponents.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I don't see that anywhere on https://xkcd.com/1313/  Why not? {{unsigned ip|172.68.174.106}}&lt;br /&gt;
&lt;br /&gt;
:First of all: Please sign your comments&lt;br /&gt;
:&amp;lt;s&amp;gt;Second: I am not sure this is the right place for such a question, so please do not wonder if someone removes it.&amp;lt;/s&amp;gt;&lt;br /&gt;
:And finally: the &amp;quot;title text&amp;quot; can be seen by hovering the mouse over the image on the &amp;quot;regular&amp;quot; xkcd page. Here it is made more visible by mentioning beneath the picture additionally. More details can be found at the page about the title text :) https://www.explainxkcd.com/wiki/index.php/title_text [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 15:09, 12 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
@[[User:Lupo|Lupo]], no honest comment will be removed here, even if it should be posted at the [[explain xkcd:Community portal/Miscellaneous|Miscellaneous]] section. @IP, the proper internal link is here: [[title text]], and I see that this wiki needs a simple page to explain all the terms and characters used in a general short way. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:43, 12 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mediawiki exception on some pages ==&lt;br /&gt;
&lt;br /&gt;
I get the following MedaiWiki exception on some of the pages:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MediaWiki internal error.&lt;br /&gt;
&lt;br /&gt;
Original exception: [0beebcc3efaec7ded86aea14] 2018-12-05 23:25:16: Fatal exception of type &amp;quot;MWException&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Exception caught inside exception handler.&lt;br /&gt;
&lt;br /&gt;
Set $wgShowExceptionDetails = true; at the bottom of LocalSettings.php to show detailed debugging information.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See for example sites https://www.explainxkcd.com/wiki/index.php/2034:_Equations or https://www.explainxkcd.com/wiki/index.php/User:Dgbrt&lt;br /&gt;
&lt;br /&gt;
[[User:Sztupy|Sztupy]] ([[User talk:Sztupy|talk]]) 23:29, 5 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Also having this. Seems to happen when “math” in Preferences-Appearance is set to “MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools)” [[User:DrMeepster|DrMeepster]] ([[User talk:DrMeepster|talk]]) 08:01, 8 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:New error: If that math option is set to “Latex source” than an error relating to the page-ruining setting replaces any latex code: Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response (&amp;quot;Math extension can not find Restbase URL. Please specify $wgMathFullRestbaseURL.&amp;quot;) from server &amp;quot;invalid&amp;quot;:): &amp;lt;LATEX CODE HERE&amp;gt; [[User:DrMeepster|DrMeepster]] ([[User talk:DrMeepster|talk]]) 07:50, 11 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Sorry for my late reply. I will check and solve this issue soon, right now only the plain PNG image setting does work. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:15, 15 February 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
: The problem appears to not be solved.  In addition to the above pages (which are still broken), I've noticed it on the following: https://www.explainxkcd.com/wiki/index.php/2292 and https://www.explainxkcd.com/wiki/index.php/2311.  The workaround of configuring my account to render math as PNG works, but someone with the knowledge and access to fix this needs to do so.  [[User:Shamino|Shamino]] ([[User talk:Shamino|talk]]) 13:43, 3 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== “All 2126 Comics have an Explanation” ==&lt;br /&gt;
&lt;br /&gt;
There are 2127 comics, and the main page seems to update automagically, so I’m not sure what the issue is. [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 15:58, 25 March 2019 (UTC)&lt;br /&gt;
:I think you posted this before the &amp;quot;new robot&amp;quot; comic came up? keep in mind that the number 404 is not linked to any comic. (There is an explain page for 404, but no comic 404. Therefore it is actually 1 comic less than you might think based on the number. On the other hand there are I think 2 or 3 additional special comics (not numbered), such as the latest entry to the 5 minute comic series, or the one about open source, etc. [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]])&lt;br /&gt;
::I posted after it came up. I know about the unnumbered comics, so assumed they didn’t count, but I always forget about 404. Accounting for the non-comic, all seems right in the world. Thanks Lupo. [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 14:01, 26 March 2019 (UTC)&lt;br /&gt;
:::Just checked and they just subtract 1 in the source code??????? [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 16:58, 12 April 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
&lt;br /&gt;
Hi, I'm working on a project focused on docs, and wondered if there's some API or database I can access to pinch some of the tagging info from this site?&lt;br /&gt;
Even something like Randall's /json.html data from each page would work. ''[[User:Toonarmycaptain]] ([[User talk:Toonarmycaptain]] forgot to sign this edit at 03:50, 14 May 2019 (UTC)''&lt;br /&gt;
&lt;br /&gt;
== Unwanted Link ==&lt;br /&gt;
&lt;br /&gt;
In [[1467: Email]], there are two links in the title text that should be normal text. It has happened several times in other pages, and it's annoying. How do I change links like that into regular text? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 07:41, 11 July 2019 (UTC)&lt;br /&gt;
:Not sure what you mean. Maybe it is a browser issue on your end? on my computer neither chrome nor internet explorer or edge interpret anything inside of &amp;quot;My New Year's resolution for 2014-54-12/30/14 Dec:12:1420001642 is to learn these stupid time formatting strings.&amp;quot; as a link... [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 08:00, 11 July 2019 (UTC)&lt;br /&gt;
::Just checked. iPad misinterpreting part of them as phone numbers, appeared as link. [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 09:29, 11 July 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha not working? ==&lt;br /&gt;
&lt;br /&gt;
I've been experiencing some problems when trying to solve captcha when posting comments and topics. It's gotten much harder than before, I fail a lot more often, and occasionally, when I finish it, it reloads the page with an &amp;quot;Incorrect or Missing Captcha&amp;quot; error, and forces me to retry. Has anybody else experienced this problem? Am I the only one with Captcha issues? '''Has it been working properly in recent times?'''[[Special:Contributions/108.162.241.244|108.162.241.244]] 18:40, 8 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== DgbrtBOT ==&lt;br /&gt;
&lt;br /&gt;
The bot seems to have been down since December 13, 2019, and Dgbrt hasn't made a single edit since March, 2019. He hasn't responded to the comments in DgbrtBOT's talk page, either. Is there any way for an someone to contact him? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 13:12, 1 January 2020 (UTC)&lt;br /&gt;
:The bot has resumed its extremely helpful work again this week, but no word yet on why it was MIA for a solid month. [[User:Ianrbibtitlht|Ianrbibtitlht]] ([[User talk:Ianrbibtitlht|talk]]) 14:06, 10 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Google Ads appearing all over the page ==&lt;br /&gt;
&lt;br /&gt;
Google seems to have changed something in AdSense again, and the ads have been appearing in random positions again since December, 2019. [https://wpadvancedads.com/adsense-in-random-positions-auto-ads/ This page] might have a solution? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 13:20, 1 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Links to xkcd pages sould be withoult &amp;quot;www.&amp;quot; part ==&lt;br /&gt;
&lt;br /&gt;
There is an issue with loading resources on pages, that are opened with &amp;quot;www.&amp;quot; part in URL.&lt;br /&gt;
For example commic [https://www.xkcd.com/1975/ 1975].&lt;br /&gt;
If viewed from https://www.xkcd.com/1975/, comic is not interactive. On the other hand, https://xkcd.com/1975/ works like a charm.&lt;br /&gt;
&lt;br /&gt;
Page failes to load resorces from https://xkcd.com/1975/alto/root with error caused by CORS policy:&lt;br /&gt;
&lt;br /&gt;
* Access to fetch at 'https://xkcd.com/1975/alto/root' from origin 'https://www.xkcd.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.&lt;br /&gt;
&lt;br /&gt;
All links to commics in headers (button ''Comic #1975 (April 1, 2018)'') include &amp;quot;www.&amp;quot; part, for example this explanation:&lt;br /&gt;
https://www.explainxkcd.com/wiki/index.php/1975:_Right_Click&lt;br /&gt;
&lt;br /&gt;
IMO links in headers (buttons ''Comic #xxx (date)'') should be updated to exclude &amp;quot;www.&amp;quot; part.&lt;br /&gt;
&lt;br /&gt;
== Can't create my userpage ==&lt;br /&gt;
&lt;br /&gt;
I just registered, and can't seem to edit/create my own userpage. I've been editing MediaWiki wikis for a very long time and it's currently part of my career, so I'm pretty sure I'm doing everything right. Is there a prerequisite number of edits or something before I can create my userpage? [[User:Equazcion|Equazcion]] ([[User talk:Equazcion|talk]]) 22:18, 6 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I do not know the answer to that, but ... if one of us finds out &amp;quot;sooner&amp;quot; than the other, then, let's &amp;quot;share&amp;quot; the answer. Yours might appear here, and mine ... might appear about eleven &amp;quot;sections&amp;quot; up, in this same &amp;quot;Technical&amp;quot; portal ... &amp;lt;s&amp;gt;at the URL&amp;lt;/s&amp;gt; in the section &amp;quot;[[explain_xkcd:Community_portal/Technical#Cannot_create_a_user_page|Cannot create a user page]].&amp;quot; (see [https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd%3ACommunity_portal%2FTechnical&amp;amp;type=revision&amp;amp;diff=190166&amp;amp;oldid=190127 the DIFF listing]...) &lt;br /&gt;
&lt;br /&gt;
:Maybe I should have &amp;quot;seconded the motion&amp;quot; '''here''', instead of adding my own question, -- which is very similar! -- to a different section, up '''there?''' Pardon me ... --[[User:Mike Schwartz|Mike Schwartz]] ([[User talk:Mike Schwartz|talk]]) 08:15, 7 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::[[explain_xkcd:Community_portal/Admin_requests#Permission_request]] might help. [[User:A(l)Chemist|AlChemist]] ([[User talk:A(l)Chemist|talk]]) 11:06, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Yes, according to that page, your account must be at least one week old, AND you must have made at least 10 edits.  There's a new page, [[:explain xkcd:Autoconfirmed users]], which says it's three days (rather than one week) and 10 edits – after that, you become an &amp;quot;autoconfirmed user&amp;quot;, and gain the right to create pages ([[Special:ListGroupRights|among other things]]).  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 02:01, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== List of all comics incomplete/overflowing ==&lt;br /&gt;
&lt;br /&gt;
The [[List_of_all_comics | List of all comics]] and the full list are incomplete, stopping with 2289. Taking a look at [[List_of_all_comics_(full) | List of all comics (full)]] nets that it belongs to the category 'Pages where template include size is exceeded', so I'm assuming it just hit the limit. I'm sadly not well versed in MediaWiki, so I have no idea what a workaround would look like&lt;br /&gt;
&lt;br /&gt;
== 2138 page issues ==&lt;br /&gt;
&lt;br /&gt;
This first came up when following a link from on of the other Code Quality pages.&lt;br /&gt;
&lt;br /&gt;
when you go to https://www.explainxkcd.com/wiki/index.php/2138:_Wanna_See_the_Code%3F you get a blank pag that says &amp;quot;No input file specified.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
however when you go to https://www.explainxkcd.com/wiki/index.php/2138 you get the actual page via redirect but when you reload the page it goes back to &amp;quot;No input file specified.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
not sure what causes this but i tested in chrome (incognito mode to avoid extensions), old edge (not chromium) and chrome iOS via mobile data. all test had the same result.&lt;br /&gt;
&lt;br /&gt;
sorry if this is the wrong place for this but not sure where else to put it. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 14:44, 21 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This problem seems to be common to all comics ending with a question mark: [[2236]], [[2138]], [[2065]], [[1841]], [[1205]]. My best guess is that the url is being interpreted as a query, but since there is nothing after the question mark this results in an error. Whether this is a new error or just hasn't been noticed before I don't know. Renaming the pages without the question mark could work, but would require every reference to these comics on the wiki to be updated. [[User:A(l)Chemist|AlChemist]] ([[User talk:A(l)Chemist|talk]]) 10:07, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::i think it is new, i recently (not sure when but after 2138 was released) went through the Code Quality series using the links and it worked fine then. i don't think it is being interpreted as a query because the question mark is encoded. i would amazed if it would still interpret this as a query because that would completely defeat the point of encoding the url in the first place. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 09:35, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::here is a full list of broken pages: [[58]], [[111]], [[259]], [[1205]], [[1705]], [[1841]], [[1913]], [[2065]], [[2138]], [[2236]]. i wrote a quick javascript to extract a full list of urls from [[List of all comics (full)]] (then added the recent ones manually, [[explain_xkcd:Community_portal/Technical#List_of_all_comics_incomplete.2Foverflowing|see above]]). then ran a python script to get the content of each page and check if it is broken (with a 2 sec delay to minimise server load) and saved the list if broken ones. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 13:34, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Note that you can view the comic by changing the URL from &amp;lt;code&amp;gt;index.php/...&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;index.php?title=...&amp;lt;/code&amp;gt; ([https://www.explainxkcd.com/wiki/index.php?title=58:_Why_Do_You_Love_Me%3F example]). —[[User:Galaktos|Galaktos]] ([[User talk:Galaktos|talk]]) 13:03, 14 May 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;All comics&amp;quot; from left sidebar is not updating ==&lt;br /&gt;
&lt;br /&gt;
https://www.explainxkcd.com/wiki/index.php/List_of_all_comics&lt;br /&gt;
&lt;br /&gt;
[https://imgur.com/a/J287JBz image]&lt;br /&gt;
&lt;br /&gt;
== Attention needed to some List pages  ==&lt;br /&gt;
&lt;br /&gt;
I just (mis)clicked on &amp;quot;All Comics&amp;quot;, and thought it looked odd.&lt;br /&gt;
DGBRTBot needs a prod, or something, given the current months-old state and commented prediction in https://www.explainxkcd.com/wiki/index.php?title=List_of_all_comics&amp;amp;action=history&lt;br /&gt;
&lt;br /&gt;
(Oh, and the [[List of all comics (full)]], which I then checked has a redlinked Category of &amp;quot;Pages where template include size is exceeded&amp;quot; and seems to have been previously given a badly-included &amp;quot;...and everything before #501&amp;quot;. Not sure if the first problem is easily solvable, but as I'm here I thought I'd mention it, and you could properly add 1-500 ''and'' 501-1000 to sort the Include Size issue, maybe?)&lt;br /&gt;
&lt;br /&gt;
I could be way off-piste, but as it looks like nobody has noticed anything yet I thought I'd at least raise the issue, and then leave the fixing to someone with a bit more Wiki-Fu..? [[Special:Contributions/162.158.155.120|162.158.155.120]] 20:48, 3 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:For [[List of all comics]], looks like [[User:DgbrtBOT|DgbrtBOT]] is working again, and [[User:Btx40]] already went back and added the missing entries, so that should be all good now.&lt;br /&gt;
:For [[List of all comics (full)]], not sure if I correctly understand what you mean by &amp;quot;''you could properly add 1-500 ''and'' 501-1000 to sort the Include Size issue''&amp;quot;?  But I think the &amp;quot;''badly-included '...and everything before #501' ''&amp;quot; you mentioned wasn't so much ''badly-inluded'' – its code looked correct to me – rather, the inclusion makes the page so big that it ''causes'' the page to exceed the &amp;quot;template include-size&amp;quot; limit.  See the following Wikipedia articles for more about how this &amp;quot;template include-size&amp;quot; limit works in MediaWiki:&lt;br /&gt;
:* {{w|Wikipedia:Template limits#Post-expand include size}}&lt;br /&gt;
:* {{w|Wikipedia:Post-expand include size}}&lt;br /&gt;
:So ''as a result of'' exceeding the limit, the parser ''excludes'' the template that caused the limit to be exceeded (i.e. it excludes the 1-500 list at the bottom of the page), so as to keep the page under the size limit; and instead of the ''actual'' content, the parser just inserts a ''link'' to the content.  And it so happens that in this case, the ''content'' includes the control-characters for constructing the table rows – so because those control characters are excluded along with the content, then the link shows up in the last existing cell of the table, and ''appears'' to be badly-included.&lt;br /&gt;
:I'm not sure how to fix it, but some options could be:&lt;br /&gt;
:* Somehow reduce the content of the page so that the full list of #1-to-#current doesn't exceed the limit.&lt;br /&gt;
:** Each &amp;quot;row&amp;quot; of the table produces about 700 characters in the resulting HTML; around 200 of that is the hidden &amp;quot;create&amp;quot; link (from [[Template:comicsrow]]) that I think ''would'' appear if the comic's page didn't exist yet.  I would say that at this point, since all the comics already have pages, then that &amp;quot;create&amp;quot; link is only useful for the most recent comic, and could probably be omitted to significantly reduce the size of the page.&lt;br /&gt;
:*** (Actually, it looks like DgbrtBOT might automatically create the page for each new comic, so the &amp;quot;create&amp;quot; link might not be needed ''at all'' anymore.)&lt;br /&gt;
:** There are some other elements that could be removed from each table row to save space, such as the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attributes of the links, etc.&lt;br /&gt;
:** Not sure if all of that would create enough headroom for the 1-500 list though?&lt;br /&gt;
:* Increase &amp;lt;code&amp;gt;$wgMaxArticleSize&amp;lt;/code&amp;gt; on the server?  ([https://www.mediawiki.org/wiki/Manual:$wgMaxArticleSize See here].)&lt;br /&gt;
:** Not sure of the risks of that; and in any case, it's only that one page that currently exceeds the limit, so may not be worth it.&lt;br /&gt;
:For now, I've added a note to the page explaining that 1-500 are missing and why, and I've tweaked the bottom of the table to make the link to 1-500 a bit more presentable in the meantime.&lt;br /&gt;
:– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 06:41, 3 October 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Strange error—maybe edit conflict? ==&lt;br /&gt;
&lt;br /&gt;
I happened to be looking at my edit history, and I noticed that something insane happened back in June: I made an edit to [[2319: Large Number Formats]], and it somehow combined my edit with someone else's. The entirety of my edit (as I crafted it) was confined to the article's categories; I added one and put the set in alphabetical order. But the edit, {{diff|193595|as it was logged}}, is a massive alteration, with all sorts of questionable changes. It was (rightly, I think) undone by [[User:Jkrstrt|Jkrstrt]] a couple days later. Did I somehow overlook an edit-conflict error and accept some (now anonymous) users edit? I can see myself making some kind of oversight at that time of night, but it seems antithetical to the wiki process to have an edit misattributed in this way. (I certainly don't like having that change connected with my name, but I also wonder how this intersects with important issues of public ownership integral to wiki communities.) I'd appreciate any insight fellow editors could provide. [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 22:24, 3 August 2020 (UTC)&lt;br /&gt;
:As I'm passing through, I shall note that I'm the IP that added the &amp;quot;(The 1971 transition[...]&amp;quot; paragraph you see 'added' there. It was actually part of a larger edite that was later (than my edit, earlier than yours) understandably removed for being irrelevent. During this {{diff|193424|5-day-earlier revision}}. But I had absolutely nothing to do with pretty much every other change in your above-logged diff, SFAICS from a quick skim, so honestly don't know why it features there. But hope this info is useful. [[Special:Contributions/162.158.159.66|162.158.159.66]] 23:05, 3 August 2020 (UTC)&lt;br /&gt;
::That's actually quite helpful because it caused me to go look at older versions of the article. It looks like my edit {{diff|193595&amp;amp;oldid=193386|used a very early version as a starting point}} (thereby reverting all changes made later). My best guess is that I had gone back to an old version because Randall changed this comic after it was published and was trying to convince myself that I wasn't crazy. No, not crazy, but spacey. Wikipedia puts a big red warning across the page when you're ending an old version, and this wiki uses only a bit of bold text—that apparently wasn't enough to draw my attention. Thanks! [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 01:33, 4 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Unable to view &amp;quot;what if?&amp;quot; page ==&lt;br /&gt;
&lt;br /&gt;
The link to the page for the [[what if?]] blog displays an error: &amp;quot;No input file specified.&amp;quot; [[User:JBYoshi|JBYoshi]] ([[User talk:JBYoshi|talk]]) 03:38, 21 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This also happens to me on [[1205: Is It Worth the Time?]] Must be something with the ?s in the titles. [[Special:Contributions/172.69.22.66|172.69.22.66]] 15:46, 25 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I've noticed that as well. I made a page in my userspace that redirects to the what if page, and for some reason that seems to work. ([[User:Blue screen of life/whatiflink|here is the link to the page]]) [[User:Blue screen of life|Blue screen of life]] ([[User talk:Blue screen of life|talk]]) 20:09, 31 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::I have also noticed this but it is not just on pages with questions marks. Both [[259]] and [[1705]] show the same thing. A full list (as of 22 June 2020) of the ones i found is in the last reply to my report found here [[#2138_page_issues]] [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 12:20, 22 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Both [[259]] and [[1705]] have an ({{w|E acute|e-with-accute-accent}}, Unicode U+00E9) in the URL, so for those pages, I wonder if that has anything to do with it?&lt;br /&gt;
::::For the &amp;quot;what if?&amp;quot; page, I had recently added a redirect from [[what if (blog)]] to get to it, and the [[What If]] disambiguation page has been updated with it, so at least we can get to it that way; and for the comic explanations, at least we can get to them by linking to their number-redirects (as [[58]] instead of [[58: Why Do You Love Me?]]); but not sure how to fix it overall.  At the following page, it suggests tweaking an {{w|Apache HTTP Server|Apache}} {{w|Rewrite engine|rewrite}} directive in {{w|.htaccess}} (or a {{w|Common Gateway Interface|CGI}} setting in {{w|PHP}} if it's running on {{w|Internet Information Services|IIS}}):&lt;br /&gt;
::::* https://www.mediawiki.org/wiki/Topic:Vmaw1tu5kkhyon0n&lt;br /&gt;
::::So maybe something about that has changed recently?  Documentation:&lt;br /&gt;
::::* [https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewriterule Apache mod_rewrite &amp;lt;code&amp;gt;RewriteRule&amp;lt;/code&amp;gt; directive]&lt;br /&gt;
::::* [https://www.php.net/manual/en/ini.core.php#ini.cgi.force-redirect php.ini &amp;lt;code&amp;gt;cgi.force_redirect&amp;lt;/code&amp;gt; directive]&lt;br /&gt;
::::Summarizing a few points from [[User talk:SlashMe#Homeopathic Wiki|this related discussion]]:&lt;br /&gt;
::::* Only one of the site's [https://explainxkcd.com/wiki/index.php/Special:ListUsers?group=sysop 10 administrators] has made recent edits ([[Special:Contributions/SlashMe|SlashMe]]).&lt;br /&gt;
::::* Neither of the site's [https://explainxkcd.com/wiki/index.php/Special:ListUsers?group=bureaucrat 2 bureaucrats] ([[Special:Contributions/Jeff|Jeff]] and [[Special:Contributions/Lcarsos|Lcarsos]]) have made any edits recently.&lt;br /&gt;
::::* For admin access to the ''server'' itself, my limited understanding is that [[Special:Contributions/Jeff|Jeff]] might actually own the server, but may have also given admin access to [[Special:Contributions/Dgbrt|Dgbrt]]; however, neither of them have made edits recently.&lt;br /&gt;
::::But &amp;quot;most recent edit&amp;quot; might not be a good indicator, so I wonder of some of these folks are still involved in the project?&lt;br /&gt;
::::– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 05:10, 29 September 2020 (UTC)&lt;br /&gt;
: Looks like it happens for any page that has a percent-encoding in the title. [[User:PoolloverNathan|PoolloverNathan]]&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[Special:Contributions/PoolloverNathan|s]][[User talk:PoolloverNathan|talk]] [[Wikipedia:WP:SEAOFBLUE|the blue seas]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt; 16:32, 16 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
=== Known broken pages ===&lt;br /&gt;
(Redirects work, whereas links to the actual page are broken.)&lt;br /&gt;
&lt;br /&gt;
Title containing e-accute-accent:&lt;br /&gt;
* [[259]] ↳ [[259: Clichéd Exchanges]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=259:_Clich%C3%A9d_Exchanges What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1705]] ↳ [[1705: Pokémon Go]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1705:_Pok%C3%A9mon_Go What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Title ending with question mark:&lt;br /&gt;
* &amp;lt;del&amp;gt;[[what if (blog)]] ↳ [[what if?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=What_If%3F What links here])&amp;lt;/small&amp;gt;&amp;lt;/del&amp;gt; &amp;lt;ins&amp;gt;fixed – content now exists at [[what if]], and [https://www.explainxkcd.com/wiki/index.php?title=Special:WhatLinksHere/what_if&amp;amp;limit=500 broken links] are in the process of being updated (see below)&amp;lt;/ins&amp;gt;&lt;br /&gt;
* [[58]] ↳ [[58: Why Do You Love Me?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=58:_Why_Do_You_Love_Me%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[111]] ↳ [[111: Firefox and Witchcraft - The Connection?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=111:_Firefox_and_Witchcraft_-_The_Connection%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1205]] ↳ [[1205: Is It Worth the Time?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1205:_Is_It_Worth_the_Time%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1841]] ↳ [[1841: Who?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1841:_Who%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1913]] ↳ [[1913: A ?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1913:_A_%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2065]] ↳ [[2065: Who Sends the First Text?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2065:_Who_Sends_the_First_Text%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2138]] ↳ [[2138: Wanna See the Code?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2138:_Wanna_See_the_Code%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2236]] ↳ [[2236: Is it Christmas?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2236:_Is_it_Christmas%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Moved ===&lt;br /&gt;
I moved the [[what if?]] page to the [[what if (blog)]] page which I then changed to simply [[what if]] to fix this issue and because anyone new to this site would type that any way to see it.&amp;lt;span&amp;gt; — [[User:Sqrt-1|The &amp;lt;b&amp;gt;𝗦𝗾𝗿𝘁-𝟭&amp;lt;/b&amp;gt;]] &amp;lt;sup&amp;gt;[[User talk:Sqrt-1|&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;talk&amp;lt;/span&amp;gt;]] [[Special:Contributions/Sqrt-1|&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;stalk&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt; 06:47, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Still trying to wrap my head around it – so just to summarize, we currently have:&lt;br /&gt;
:&lt;br /&gt;
:* '''[[whatif]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=whatif&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''redirects to'' '''[[what if?]]''' (see below)&lt;br /&gt;
:* '''[[What If?]]''' – page broken &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=What_If%3F&amp;amp;redirect=no no-redirect link]) ([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=What_If%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''also redirects to'' '''[[what if?]]''' – page broken &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;redirect=no no-redirect link]) ([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=what_if%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
:*** ↳ ''redirects to'' '''[[what if]] – actual content'''&lt;br /&gt;
:*** ''content manually moved from'' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;diff=198070&amp;amp;oldid=197859 diff])&amp;lt;/small&amp;gt; '''[[what if?]]''' ''to'' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if&amp;amp;diff=198071&amp;amp;oldid=197486 diff])&amp;lt;/small&amp;gt; '''[[what if (blog)]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if_(blog)&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt; (''[https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;action=history previous revision history] remains at'' '''[[what if?]]''')&lt;br /&gt;
:**** ⇒ ''moved to'' '''[[what if]] – actual content'''&lt;br /&gt;
:&lt;br /&gt;
:For completeness, we also have...&lt;br /&gt;
:&lt;br /&gt;
:* '''[[what if book]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if_book&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''redirects to'' '''[[what if#The book]] – actual content'''&lt;br /&gt;
:** Suggestion: for consistency, also add a '''[[what if (book)]]''' page that redirects here?&lt;br /&gt;
:&lt;br /&gt;
:...and the disambiguation page...&lt;br /&gt;
:&lt;br /&gt;
:* '''[[What If]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=What_If&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ⇒ ''moved to'' '''[[What If (disambiguation)]]''' – disambiguation page&lt;br /&gt;
:*** ''links to'' '''[[17: What If]]''' (↲ '''[[17]]''' redirects here &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=17&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;)&lt;br /&gt;
:*** ''links to'' '''[[what if]] – actual content'''&lt;br /&gt;
:*** Suggestion: mention the ''book'' here as well, and link to its section in the [[what if]] page?&lt;br /&gt;
:&lt;br /&gt;
:...and these troubleshooting pages from [[User:Blue screen of life]]:&lt;br /&gt;
:&lt;br /&gt;
:* '''[[User:Blue screen of life/redirecttest]]''' – test page &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=User:Blue_screen_of_life/redirecttest&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ⇒ ''moved to'' '''[[User:Blue screen of life/whatiflink]]''' – test page &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=User:Blue_screen_of_life/whatiflink&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:*** ↳ ''redirects to'' '''[[What If?]]''' (see above)&lt;br /&gt;
:&lt;br /&gt;
:Given that the actual content of the &amp;quot;what if?&amp;quot; article now lives at '''[[what if]]''', I've started updating pages &amp;lt;ins&amp;gt;(except for Talk pages)&amp;lt;/ins&amp;gt; to link directly there instead of the other redirect pages.  All that's left to do are pages that link to the '''[[what if?]]''' redirect-page (which is broken).  &amp;lt;del&amp;gt;Its [https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere/what_if%3F &amp;quot;What links here&amp;quot;] special page is broken too, so it's difficult to find what pages link there – but now that it redirects to the [[what if]] page, you can see them indirectly from ''that'' page's [https://www.explainxkcd.com/wiki/index.php?title=Special:WhatLinksHere/what_if&amp;amp;limit=500 &amp;quot;What links here&amp;quot;] special page.&amp;lt;/del&amp;gt;  &amp;lt;ins&amp;gt;[https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=what_if%3F These] are the pages that still link there.&amp;lt;/ins&amp;gt;  There are still a lot of them to go.&lt;br /&gt;
:&lt;br /&gt;
:Also, should the following redirect-pages be simplified to have them redirect straight to the new [[what if]] page, instead of redirecting through the intermediate '''[[what if?]]''' page (which itself redirects there anyway)?&lt;br /&gt;
:* '''[[whatif]]'''&lt;br /&gt;
:* '''[[What If?]]'''&lt;br /&gt;
:– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 17:20, 29 September 2020 (UTC)&lt;br /&gt;
:: Fixed the double redirects, don't ask me why we have so many pages for the same thing. [[User:PoolloverNathan|PoolloverNathan]]&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[Special:Contributions/PoolloverNathan|s]][[User talk:PoolloverNathan|talk]] [[Wikipedia:WP:SEAOFBLUE|the blue seas]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt; 16:29, 16 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion not displaying with comic ==&lt;br /&gt;
&lt;br /&gt;
I am using FireFox on a Win10 machine.  When I come to the site I can see the comic, explanation and transcript.  But the discussion section is hidden.  Even when logged in.&lt;br /&gt;
&lt;br /&gt;
Any ideas?&lt;br /&gt;
&lt;br /&gt;
: You say &amp;quot;when I come to the site&amp;quot;.  If the address bar says you are on Main_Page and you see the heading &amp;quot;Latest comic&amp;quot;, then it's simply working as designed.  Above the comic, click on &amp;quot;Go to this comic explanation&amp;quot; and you will see the comic plus discussion.&lt;br /&gt;
&lt;br /&gt;
: Also, Steve, please sign your comments every time, with four tildes.  That expands into your user name and a timestamp.  Like this -- [[User:JohnB|JohnB]] ([[User talk:JohnB|talk]]) 10:10, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Random page sometimes takes me to an invalid address ==&lt;br /&gt;
&lt;br /&gt;
Sometimes, when clicking on &amp;quot;Random page&amp;quot; in the left sidebar, the site will be blank apart from the text &amp;quot;No input file specified. &amp;quot;.&lt;br /&gt;
&lt;br /&gt;
An example of such an URL is: https://www.explainxkcd.com/wiki/index.php/111:_Firefox_and_Witchcraft_-_The_Connection%3F&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:I've noticed this happens for ''all'' URLs to comics that end in a question mark (or possibly any special character). Interestingly, this doesn't happen if you go to the comic from the search bar. [[User:Danish|Danish]] ([[User talk:Danish|talk]]) 23:04, 27 January 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bug on the main page ==&lt;br /&gt;
&lt;br /&gt;
Bug Enviroment(Might work on other enviroments):&lt;br /&gt;
Ubuntu 20.04LTS  &lt;br /&gt;
Firefox85.0  &lt;br /&gt;
2021.2.7  &lt;br /&gt;
&lt;br /&gt;
Bug:  &lt;br /&gt;
The front page reads: `Welcome, Main Page, to explain xkcd!` with `Main Page` formatted as a username,can someone fix this?&lt;br /&gt;
&lt;br /&gt;
[[User:Xkcdjerry|Xkcdjerry]] ([[User talk:Xkcdjerry|talk]]) 09:48, 7 February 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Occasional error via Cloudflare ==&lt;br /&gt;
Just a note that I'm getting Cloudflare errors of &amp;quot;origin not reachable&amp;quot; (sounds wrong to me, in my head it should be 'destination', but never mind) three times now in the last ten to fifteen minutes - of maybe a dozen general site-requests.&lt;br /&gt;
&lt;br /&gt;
I've also been getting seemingly .CSSless formatted pages over the past few days, which I've been putting down to slightly dodgy wifi at my end (not unknown) but if I'm getting Cloudflare's error cleanly then perhaps it's been entirely upstream/downstream/however-you'd-describe-the-Explain-server. (Obviously CSS resource requests, as with images, are additional HTTP calls, but I still lump it into the single site-request ''per page'' in my 'dozen' estimate above. No obviously lost images, though, in incomplete pages - not that can't be explained by .CSS non-following, anyway.)&lt;br /&gt;
&lt;br /&gt;
I had copy-buffered some of the exact info, but due to incompetence I recopied over it before coming here. If it happens again, I'll try to bring it over here. But (the way these things go) maybe it won't. FYI, though. [[Special:Contributions/141.101.98.52|141.101.98.52]] 12:04, 5 March 2021 (UTC)&lt;br /&gt;
: Not a Cloudfare error (looks like an error of the actual explainxkcd server) but every now and then (like just a few minutes ago) I get an error page that generally goes away if I immediately refresh. To whit:&lt;br /&gt;
 Service Unavailable&lt;br /&gt;
 The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.&lt;br /&gt;
 &lt;br /&gt;
 Additionally, a 503 Service Unavailable error was encountered while trying to use an ErrorDocument to handle the request.&lt;br /&gt;
: Not really a problem (occasionally happened while submitting an exit, and I have to confirm to the browser that I wish to repost the data, but this particular copied instance was through a more 'read-only' link-click, like most of the instances) but... in case someone finds this to be new and useful information... here you are! [[Special:Contributions/141.101.98.192|141.101.98.192]] 03:45, 12 March 2021 (UTC)&lt;br /&gt;
:OP, here, of the above 503 error report/casual mention. Obviously this is the same message that happened for an ''extended'' period of time over a number of days, but I've only just happened to find the site responding again and have not yet looked to see if it is explained as the same or different cause to the old intermittent issues (at root). I hope things are resolved from the major outage (server quota? bill payments? renewal/reconfiguration blips?) but wonder if I should report any future minor outages? I'm still smarting from the total loss of the fora.xkcd.com platform, a few years back, and while I'm not active enough here to consider a proper login (lurking as a freeloading anon-IP is good enough, usually, for my intellectual enjoyment, with all due apologies) I did have a slight pang of emptiness while it was out-of-order. [[Special:Contributions/141.101.99.79|141.101.99.79]] 15:48, 16 June 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Add TemplateData ==&lt;br /&gt;
&lt;br /&gt;
Add the {{mw|Extension:TemplateData|TemplateData}} extension to allow setting data for templates. This will help editors because they will be able to see the data of templates.&lt;br /&gt;
&lt;br /&gt;
== MediaWiki 1.30.0?! ==&lt;br /&gt;
&lt;br /&gt;
This wiki is [[Special:Version|currently]] on [[mw:MediaWiki 1.30|MediaWiki 1.30.0]] ([[mw:Release notes/1.30|release notes]]), the first of three releases of a version of MW that reached end-of-life in June of 2019 ([[mw:Version lifecycle]]). It's thus missing multiple important security updates from 1.30.1 and 1.30.2, not to mention the two years' worth of security updates since 1.30.x reached end-of-life. Even 1.31.x will be reaching end-of-life in just over a month.&lt;br /&gt;
&lt;br /&gt;
If the sysadmins here update to [[mw:MediaWiki 1.35|MediaWiki 1.35.2]] ([[mw:Release_notes/1.35|release notes]]), that version will be maintained till September of 2023, with only a few security updates in the meantime. I would '''strongly''' encourage y'all to update to 1.35.2; to promptly update if there's a .3, .4, etc.; and to make sure you switch to the next LTS release (which will presumably be 1.39) well in advance of September of '23. (Note that this will also require updating to PHP 7.3.19 or later.) [[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 07:17, 30 April 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Uptime ==&lt;br /&gt;
Did the website just go down? &amp;lt;span style=&amp;quot;text-shadow:0 0 8px black&amp;quot;&amp;gt;[[User:Beanie|&amp;lt;span style=&amp;quot;font-size:11pt;color:#dddddd&amp;quot;&amp;gt;Beanie&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; &amp;lt;sup&amp;gt;&amp;lt;span style=&amp;quot;text-shadow:0 0 7px #000000&amp;quot;&amp;gt;[[User talk:Beanie|&amp;lt;span style=&amp;quot;font-size:8pt;color:#dddddd&amp;quot;&amp;gt;talk&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&amp;lt;/sup&amp;gt; 13:06, 28 May 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
It was definitely down this weekend!   &lt;br /&gt;
https://www.reddit.com/r/xkcd/comments/nxrm65   &lt;br /&gt;
[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 16:21, 15 June 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic template lappend breaks for standalone comic links ==&lt;br /&gt;
&lt;br /&gt;
For example, https://xkcd.com/blue_eyes.html is changed to https://xkcd.com/blue_eyes.html/ which isn't valid [[Special:Contributions/172.69.90.15|172.69.90.15]] 15:51, 13 October 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Template here, I think it needs to be changed to solve this https://www.explainxkcd.com/wiki/index.php/Template:comic&lt;br /&gt;
&lt;br /&gt;
exkcd page here https://www.explainxkcd.com/wiki/index.php/Blue_Eyes&lt;br /&gt;
&lt;br /&gt;
== May not be your problem, but FYI. ==&lt;br /&gt;
&lt;br /&gt;
My typcal setup: Android tablet, with Chrome for Android (latest update), but also Firefox for Android (ditto), using default Gboard (likewise) for input.&lt;br /&gt;
&lt;br /&gt;
Occasionally (notably within the last few weeks/maybe a month or so), when going in to edit an explainxkcd page through Chrome (it's how I divide up my browsing), I'm getting the cursor in the textarea box which ''can'' be used to Cut/Copy/Paste (as applicable and useful), but the on-screen keyboard isn't popping up. Page is fully loaded (can be refreshed, doesn't have the &amp;quot;stop loading&amp;quot; alternative), can go back (page viewing) and try to go back to the page editor (often to same result). Sitting and waiting doesn't pop the keyboard up, either (sat there for minutes). Happens both on home wifi and mobile connection.&lt;br /&gt;
&lt;br /&gt;
If I transfer my attentions to the page to Firefox (copy URL, to use there... but I don't use that by default for expxkcd stuff) there's no problem, but then if I come back to Chrome again it seems to start working again ''anyway'' so not sure if it's just avoiding/flushing a  transient problem that would also initially crop up with Firefox if I used that more.&lt;br /&gt;
&lt;br /&gt;
Because editing is a different (mobile-optimised) process on Wikipedia and I can't be sure about any the equivalence of any other wiki out there (and it doesn't happen with anything else I regularly key into on Chrome) it's not something I've reproduced outwith this site, and of course desktop page-editing doesn't require touch-screen keyboard because there's a physical one.&lt;br /&gt;
&lt;br /&gt;
Not getting much feedback with Chrome (really can't get on with their bugrep processes, it's too huge a project to make headway, IME), not even tried to pester the Gboard team and I've not ''seen'' anything said on here about this being a site-issue (not sure how it could be, as it's outside the remit of the core web-page rendering process and more an Android or App level of incompetence), but I thought I'd make a note of it here for future reference. Make of it what you will. Annoying but not game-breaking. And I just wanted to vent a little. [[Special:Contributions/172.70.162.147|172.70.162.147]] 16:54, 25 December 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[special:interwiki]] ==&lt;br /&gt;
&lt;br /&gt;
where'd it go? [[Special:Contributions/172.69.68.200|172.69.68.200]] 05:07, 7 January 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Please update MediaWiki + AbuseFilter ==&lt;br /&gt;
&lt;br /&gt;
Seriously. Many scripts and such built for modern, supported versions of MW do not work here because it is so unbelievably undated. PinkAmpersand above basically covers the reason why. I also highly recommend adding the extension AbuseFilter (https://www.mediawiki.org/wiki/Extension:AbuseFilter) as it immensely makes removing vandalism easier (by straight up disallowing or blocking those that do, esp if it's like the current formulaic massive-replacement vandalism.) [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 00:48, 21 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ditto. I feel like the main problem is that the sole person who has access to the backend either doesn't have time to update, doesn't have interest, or doesn't have the technical knowledge necessary. But yes, I agree - updating and installing an extension to help control vandalism would help this wiki tremendously. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 20:09, 9 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== ↑ ? ==&lt;br /&gt;
&lt;br /&gt;
Why do some pages have ↑ at the very start? They can all be spotted by searching ↑ &lt;br /&gt;
Is it a technical thing, vandalism, some sort of glitch? Maybe I'm just uninformed or being an idiot.&lt;br /&gt;
:Edit logs tell me that an IP user manually reverting vandalism somehow inserted one or more extra characters while manually reverting vandalism. '''[[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;]] 13:59, 22 May 2022 (UTC)&lt;br /&gt;
::Should it be removed? It's not necessary and might be confusing for screenreaders... [[User:Mushrooms|Mushrooms]] ([[User talk:Mushrooms|talk]]) 09:00, 23 May 2022 (UTC)&lt;br /&gt;
:::Maybe not en-mass, I'd say. But I've dove in to delete a rogue leading &amp;lt;nowiki&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;/nowiki&amp;gt; tag left from a part of a prior vandalism (likewise, just before the {{template|comic}}-element) and I've promised myself that I'll remove any more that I spot (and now that arrow) in any future whole-page edit I make. Plus a small shopping-list of inessential but useful edits like making {{template|Citation needed}}s flow better when they're mispunctuated/etc.&lt;br /&gt;
:::But that's my solitary opinion. I'm sure hunting out and squishing this isn't a problem at all. I'm just balancing my own peculiar brand of OCD with what is somehow my also my own version of casual apathy towards other details. (Also, it probably looks better for a named account of recognised good standing to start editing potentially hundreds of pages in a session, rather than myself... potentially indistinguishable from the IP who seems to relish worn out memes in a general page-trashing.) [[Special:Contributions/162.158.159.121|162.158.159.121]] 12:20, 23 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Is there anything else we can do to prevent vandalism? ==&lt;br /&gt;
&lt;br /&gt;
There's been quite a significant uptick in vandalism recently, and I don't feel we have any effective tools to combat it. I believe one of the biggest issues here is due to the way logged-out editing works on this wiki. Blocks are completely ineffective at slowing vandals, and IP editors can vandalize with basically nothing we can do to thwart them other than revert-warring. '''Is there a better way?'''&lt;br /&gt;
&lt;br /&gt;
There's been some discussion of installing AbuseFilter, but I'm not sure anything became of it. We could disable logged-out editing, but that would likely be counterproductive as we get lots of legitimate contributions from logged-out users. If there's a way to switch to location-based IPs, we could rangeblock problematic users as well as proxies. Does anyone have any ideas? [[Special:Contributions/162.158.78.145|162.158.78.145]] 16:11, 1 June 2022 (UTC)&lt;br /&gt;
:I'm sort of making server side changes via telegraph so an extension is probably going to take a while to get installed. Takes a bunch of emails and followups to get single variables changed in the mediawiki settings file. There is an email verification option, and some edit frequency variables that could be set to make spam more time consuming. Don't love range blocks but wouldn't mind getting the CDN IPs dealt with so we can actually use the IP bans again. '''[[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;]] 17:16, 1 June 2022 (UTC)&lt;br /&gt;
::I'm very grateful that you're working on changes under the hood. What do you think is the  best way to deal with disruption in the meantime? [[User:Vandalbane|Vandalbane]] ([[User talk:Vandalbane|talk]]) 17:19, 1 June 2022 (UTC)&lt;br /&gt;
:::Could borrow a patrol bot like the ones people on main wikipedia have, could ask around. '''[[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;]] 18:53, 1 June 2022 (UTC)&lt;br /&gt;
::::There's not really a drop-in solution that you can use, especially since the server's MediaWiki version is not in sync with Wikipedia's (so a lot of the APIs etc have completely changed; when initially reverting vandalism I tried importing some scripts from enwiki but they failed as a result), but also because the bots have gotten pretty complex (using machine learning provided by the Wikimedia Foundation, for example). [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 03:56, 2 June 2022 (UTC)&lt;br /&gt;
:::::Oh I do notice mediawiki hasn't been upgraded in a while. Looks like new version of mediawiki should be dropping extremely imminently, would be nice timing for an upgrade '''[[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:45, 2 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Rollback ==&lt;br /&gt;
&lt;br /&gt;
Does the rollback permission exist on this wiki? [[User:Vandalbane|Vandalbane]] ([[User talk:Vandalbane|talk]]) 17:00, 1 June 2022 (UTC)&lt;br /&gt;
:The rollback permission of course exists but there's no group called &amp;quot;rollbacker&amp;quot; like you'd find on Wikipedia (limited to admins). You'd need the sysadmin to change the configuration to add one, which as established is not really an option right now. [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 03:58, 2 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What happened to custom JavaScript? ==&lt;br /&gt;
&lt;br /&gt;
I put some code in &amp;lt;code&amp;gt;[[User:Some user/common.js]]&amp;lt;/code&amp;gt;, but it is not alerting 'hi' every time I load a page. Why can't we execute JavaScript anymore? Is it in response to the [[Project:Crap|crapping]] incident? [[User:Some user|Some user]] ([[User talk:Some user|talk]]) 21:16, 27 June 2022 (UTC)&lt;br /&gt;
:Entirely because of that, yeah. '''[[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:51, 28 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== My IP  ==&lt;br /&gt;
&lt;br /&gt;
Why is my IP address a Cloudflare address in Norway? Is this a joke of some kind that I'm missing?&lt;br /&gt;
&lt;br /&gt;
Other wikis like Wikipedia are showing me my actual IP when I go to [[Special:MyContributions]], so I suspect this is a wiki misconfiguration. It changed again while I was typing this. [[Special:Contributions/162.158.222.194|162.158.222.194]] 16:55, 19 November 2022 (UTC)&lt;br /&gt;
:All IPs (as this one will be) are from Cloudflare gateway IPs, because that's the default IP that the Wiki understands as the source. Cloudflare mediates all the traffic, and perhaps to some advantage (not being privvy to the logs, I can only guess how much it insulates the true server from extreme problems, but I bet it does in some way).&lt;br /&gt;
:There have been suggestions before to change some setting (in the MediaWiki implementation? ...can't recall exactly) to have it pick up and use the IP that the gateway reports (in its meta-request) was the origin, but that's not been enacted for Idunnowhat reason.&lt;br /&gt;
:Because the black-box that is the Cloudflare traffic shapes in various ways, you will find that a single user will jump around 'apparent' IPs, and I've also been in the relatively embarassing situation of replying to another IP's info and finding that I've registered on the exact same IP so that it looks like I'm stooging myself, or something.&lt;br /&gt;
:On the whole, though, it's a harmless quirk. And given the trivial nature of deliberately spoofing origins (even on top of assuming you get an effectively static NAT from your ISP in the first place) I don't personally see it as a problem to 'solve' this. But neither would I complain if the 'fix' were implemented if this query reminds someone that they ''were'' going to try and do the necessary tweak.&lt;br /&gt;
:As a lay-answer, I hope that fills you in a little. ''If'' those who have more knowledge/control of the process want to add anything or correct me, I'm sure they'll do so as soon as they can, but here's a reply to keep you going for now... [[Special:Contributions/172.70.85.24|172.70.85.24]] 01:19, 20 November 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Main page in categories==&lt;br /&gt;
{{notice|'''This discussion is marked as duplicate.''' See [[#Main Page|this discussion]].}}&lt;br /&gt;
[[Main_Page]] was found wrongly appearing in some newly-created categories, such as [[:Category:Cosmology]]. Could you fix it? --[[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 17:49, 12 January 2023 (UTC)&lt;br /&gt;
:Never noticed this myself, but I'll take it as read. Before checking myself, I'm wondering if this could be when the main page 'inherits' tags from the Current Comic that it features. And thus solve itself (whilst gaining others) upon a newer Current Comic. (Must surely inherit &amp;quot;Monday Comics&amp;quot;/etc, on schedule every week.)&lt;br /&gt;
:If it is that, perhaps the solution lies in the details contained within https://m.mediawiki.org/wiki/Help:Categories#Categories_and_templates_(transcluded_pages)&lt;br /&gt;
:Or maybe I'm wrong about it. But I have no rights to edit (thus at least examine the 'code' of) the Main page, to check my snap theory, as with most people. [[Special:Contributions/172.70.162.46|172.70.162.46]] 19:21, 12 January 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
This happened again in [[:Category:Airplane banner]]. [[User:I27.O.O.I|I27.O.O.I]] ([[User talk:I27.O.O.I|talk]]) 09:00, 28 February 2023 (UTC)&lt;br /&gt;
:Yes, and it lasted as long as the latest comic was still one with particular categories. I don't intend to worry about it. If someone goes to a category that interests them and looks at the main page, as temporarily advertised, they're likely to find (as part of it) a comic which is indeed in that category. Doesn't sound like a big problem to me, except for determinin why some cats (e.g. Friday Comics) ''don't'' link to the Main page when they might be expected to...&lt;br /&gt;
:(PS, I know for sure that I27.O.O.I isn't the same person as ColofulGalaxy (and various others, beyond even those with the bloomin' obvious &amp;quot;CG&amp;quot; initials or other recent spoofs on the RFC1918 addresses), and I don't think I mind too much, but faking disagreements between your various IDs isn't helping, anyone... smells too much of trying to establish alibis in advance of your next attempt to vandalise the site with stupid stuff. And doesn't impress me, so I doubt it impresses anyone else either. As long as you're just doing sane things, however, I'll accept your little idiosyncracies.) [[Special:Contributions/162.158.74.32|162.158.74.32]] 19:37, 5 March 2023 (UTC)&lt;br /&gt;
:(PPS: You left your fingerprint on this latter attempt to 'rescue' [https://www.explainxkcd.com/wiki/index.php?title=Talk:2659:_Unreliable_Connection&amp;amp;curid=25530&amp;amp;diff=307289&amp;amp;oldid=307282 this page]. - Spammer a few minutes before midnight, my IP reversion happened shortly after. A little later &amp;quot;Elisabeth&amp;quot; then re-spammed (modified), then another IP immediately jumps on it to restore it but with the modified undo-summary line clearly indicating that some sort of a game is being played. Please don't, it's not clever.) [[Special:Contributions/172.70.90.34|172.70.90.34]] 02:22, 7 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
This doesn't happen to date categories, but it happens in manually added categories such as [[:Category:Statistics]]. [[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 21:49, 27 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Cannot create user page==&lt;br /&gt;
It says: There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. [[2659: Unreliable Connection]] ([[Talk:2659: Unreliable Connection|talk]]) 22:56, 26 March 2023 (UTC)&lt;br /&gt;
:(Removed alternative text in the link involved, to not hide behind trickery.) I think you know that there's no problem with [[2659: Unreliable Connection]] itself, except that it had become one of several pages targeted for spamming, the only one then locked down, then finding that the spammers just retargeted to its Talk page, etc.&lt;br /&gt;
:I'm torn between &amp;quot;not assuming bad faith&amp;quot; and &amp;quot;don't feed the trolls&amp;quot;, as competing principles, so I'm spelling out the situation. However much a tribute you might think it could be, I don't think there's a future in having a new username that's directly referencing a comic which has become so frequently seen in the recent history of this wiki's edits.&lt;br /&gt;
:Obviously any genuine contributions are more than welcome. So prove me wrong, why don't you? [[Special:Contributions/172.70.91.151|172.70.91.151]] 03:20, 27 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Could you help now?  [[User:Unreliable Connection|2659: Unreliable Connection]] ([[User talk:Unreliable Connection|talk]]) 09:13, 29 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I've created your talk page. I guess that what you intended is to have a backup or mirror page for comic [[2659]]. Am I right? [[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 20:16, 2 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Fanmade comics ==&lt;br /&gt;
A fanmade comic appeared on xkcd. Could you edit the template? [[Special:Contributions/172.69.23.100|172.69.23.100]] 07:21, 28 April 2023 (UTC)&lt;br /&gt;
:You're going to have to say more about it, at least for me. Apart from the Sandbox attempt to make a page, I haven't seen the comic you're describing anywhere. Certainly not anywhere official. Link, for our benefit? [[Special:Contributions/172.70.85.66|172.70.85.66]] 10:04, 28 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Why doesn't this code block work?==&lt;br /&gt;
Does anybody know why the code block at the end of [[Transcript on xkcd|this page]] doesn't work? I've tried everything and it still looks like plain text&lt;br /&gt;
&lt;br /&gt;
== Can't add RSS feed because of pubDate value on 27 Nov 2015 ==&lt;br /&gt;
&lt;br /&gt;
When I try to add the RSS feed in Nextcloud News feed reader I get an error &amp;lt;code&amp;gt;Impossible to convert date : Fri, 27 Nov 2015 17:24:34 Pacific Standard Time&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fexplainxkcd.com%2Frss.xml W3C Feed validation] says that &amp;lt;code&amp;gt;pubDate must be an RFC-822 date-time&amp;lt;/code&amp;gt; and points &amp;quot;Pacific Standard Time&amp;quot; portion as the cause of the error: &amp;lt;code&amp;gt;&amp;lt;pubDate&amp;gt;Fri, 27 Nov 2015 17:24:34 Pacific Standard Time&amp;lt;/pubDate&amp;gt;&amp;lt;/code&amp;gt;. Can you please fix the timestap for this?&lt;br /&gt;
&lt;br /&gt;
== Admin request posted here because of vandalism ==&lt;br /&gt;
&lt;br /&gt;
I can not currently access the admin requests page because it has been vandalized... can someone please protect the latest comic page (2805). There is some pretty childish vandalism going on there right now. Thanks!&lt;br /&gt;
:It's not the latest, seems like ALL. I went back to 2804, 2803, jumped back like 15 comics, all the same thing. To me the most offensive part is doing it with a nonsensical image. And why pipe it through Archive somehow? [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 02:33, 24 July 2023 (UTC)&lt;br /&gt;
::UGH. the vandals are back at it again... we need to lock xkcd pages @NiceGuy [[Special:Contributions/172.70.39.2|172.70.39.2]] 00:59, 25 July 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Way to contact the site hosters? ==&lt;br /&gt;
&lt;br /&gt;
As many have pointed out the software this wiki runs on is horribly outdated. WikiEditor also isn't here for some reason. Quite a bit of messages here have seen no action. Is there some kind of contact form to reach the hosters? {{unsigned|Aaron Liu|00:36, 10 October 2023}}&lt;br /&gt;
: There are various levels of admin who do intervene, as and when jecessary, but I understand that the (active) ones closest to the actual hosting level of intervention are not really ready to do the (increasingly greater) degree of uprooting necessary to get a &amp;quot;working&amp;quot; system to be &amp;quot;marginally better working&amp;quot;, by way of that very dangerous middle-ground of potentially being ruined entirely.&lt;br /&gt;
: I appreciate and anticipate the counter-arguments regarding letting it go totally unupdated, of course, just I've personally seen enough failures (participated in some, or been the actual invokee, myself) to be very sympathetic to the &amp;quot;if it aint (too) broke, don't fix it&amp;quot; tendency. But that inertia is not the only factor, of course, and the full motivations (or lack of them) of those involved is not for a lowly IP like me to explain, even if I think I know... [[Special:Contributions/172.69.195.42|172.69.195.42]] 01:24, 10 October 2023 (UTC)&lt;br /&gt;
:: Have they posted some sort of statement? It also is most definitely not “marginally” better working, compare the source editor to that of Wikipedia and look at topic subscription etc features. Not to mention a lot of security fixes haven’t been added and this version has reached EOL long ago. Updating also would not ruin this entirely…[[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 17:22, 12 October 2023 (UTC)&lt;br /&gt;
:: Some have also said that quite a bit of assistive scripts for modern versions don’t work. Visual Editor, while horrible, is still easier for new people to get started with. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 17:23, 12 October 2023 (UTC)&lt;br /&gt;
I've found a new reason: This wiki doesn't even allow loading userscripts! [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 01:34, 9 December 2023 (UTC)&lt;br /&gt;
:That might actually have been a conscious decition, after a 'certain user' caused chaos here, not so long ago. [[Special:Contributions/162.158.74.25|162.158.74.25]] 19:01, 9 December 2023 (UTC)&lt;br /&gt;
::It was about a year and a half ago. I'm sorry, I shouldn't have done that. [[Special:Contributions/172.68.174.143|172.68.174.143]] 06:41, 10 December 2023 (UTC)&lt;br /&gt;
::Huh? What happened? Is there a place to request gadgets then? [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 02:04, 10 December 2023 (UTC)&lt;br /&gt;
:::&amp;quot;What happened&amp;quot; involved automated vandalism (from someone who been doing it manually, then found the &amp;quot;better way&amp;quot;) though I couldn't tell you the exact details, there were automated 'unvandalism's made in response, and theusafBOT/etc does some of that still, in response to non-automated(/off-site scripted) vandalism/errors that it can actually catch before ordinary users (or IPs like me) can. But certainly a certain brand of scripting was turned off to curtail the 'high intensity' vandalism phase.&lt;br /&gt;
:::You're more or less in the best place to request things, right here. Whether updates, (re)adding functionalitu or tweaking site settings. Can't tell if those who ''can'' do these things can't or won't do them... Or are actually absent, instead of just not replying. The cavalry has been known to come running in when necessary (e.g. when &amp;quot;what happened&amp;quot; happened) so it could be any manner of non-response (until you get one). Not necessarily the best state of affairs, but better than being confirmed absentees.&lt;br /&gt;
::::I ran a bot to mass-edit pages by replacing their content with the word &amp;quot;crap&amp;quot; repeatedly. I was 15 then, and I thought it was funny. It wasn't. [[Special:Contributions/172.68.174.143|172.68.174.143]] 06:41, 10 December 2023 (UTC)&lt;br /&gt;
:::As an occasional but infrequent actual-Wikipedia editor, too, I must say that if the Visual Editor is what I currently have to use for that (at least as an anonIP when using a mobile device, which tends to be when I get the urge most) then I like the unaugmented editor here more. Straight up, honest, un'wizarded' interface, where you only have to get used to markup details and not a WYSIWYG editing environment (as well?). Not sure I'd be happy with an even ''more'' 'assistive' script imposed upon me, like I dislike modern generations of Windows (and 'user friendly' linux dists). So can I just ask that functional/visible changes of the kind you seem to be asking for, if made available, aren't overimposed/left as options rather than the default (or only) choice...? Ok, so I can (or would have to) adapt, but I'd rather not. Of course, I have no weight to pull in this matter, it's just an afterthought (even as I wish you good luck with raising an admin's eyebrow, in some useful manner). [[Special:Contributions/141.101.98.135|141.101.98.135]] 05:14, 10 December 2023 (UTC)&lt;br /&gt;
::::I am not asking for VisualEditor, which no one likes on Wikipedia either. For some blasted reason they made it edit HTML instead of Wikitext and it’s clunky and loads for a very long time.&lt;br /&gt;
::::I’m asking about the WikiEditor, aka Wikipedia’s source editor. In VE, click on the pen next to the publish button and click on “source editing”. That editor makes this one look like freaking Stone Age, syntax highlighting is especially a game-changer. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 16:03, 12 December 2023 (UTC)&lt;br /&gt;
: There’s also the annoying ReCaptcha v2 every single edit… it seems like it would be relatively easy to switch to v3 which only makes you do the challenge when you’ve visited a bit too much. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 16:32, 12 December 2023 (UTC)&lt;br /&gt;
:: Unfortunately, that would make things easier for someone who wanted to do mass vandalism like I did. If it didn't do it every time, someone could still edit quite quickly. [[Special:Contributions/172.68.174.192|172.68.174.192]] 18:32, 12 December 2023 (UTC)&lt;br /&gt;
::Well, I can tell you that it doesn't always demand that I fulfil more than a tickbox (most trouble I have is when it fails to connect to give me the tickbox (or respond with anything useful when I do), for which I'm forced into one or more Previews until it will. When it ''does'' ask me to do something about it, I do often get forced through two or more request to identify traffic lights, motorbikes, stairways, bridges, hills, tractors, buses, etc, etc, etc... But I think that's more the Tesla-training Algorithm being nust greedy for my attention than the Robot-sentry having a less casual attitude to my attempt to edit. (I believe I'm on a usually untroublesome source IP/Cloudflare gateway, but it could also depend on how many others try to do things via (part of) the same route. Very, very rarely I get Google Search requesting something similar of me ((It: &amp;quot;You have made a lot of searches&amp;quot;, me: &amp;quot;Of course I'll have play your little game, but this is my first lookup today...&amp;quot;)), which I'm sure isn't Cloudflared, so it might reach back to my ISP's gateway and what fellow users are currently getting up to.)&lt;br /&gt;
::As for the guy above (and you, Liu), can't speak for how well or badly others on your own 'choice' of gateways behave. Or yourselves. Luck of the draw? For the first part, at least. [[Special:Contributions/172.69.195.174|172.69.195.174]] 20:31, 12 December 2023 (UTC)&lt;br /&gt;
:::MediaWiki 1.40 automatically tags all edits that remove over 90% of page text with &amp;quot;mw-replaced&amp;quot;. You could block all edits in mainspace with that tag, either if MediaWiki has it or through the AbuseFilter extension. While I can complete the CAPTCHAs, it's very annoying to need to Captcha every edit on a place where the main focus is edits. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 03:06, 13 December 2023 (UTC)&lt;br /&gt;
:::Plus, v3 doesn't just do nothing. It tracks how your cursor moves to see if it's robotic, while v2 annoyingly gives you the challenge every time. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 20:01, 8 January 2024 (UTC)&lt;br /&gt;
::::Presumably for touchscreen control (like mine, right this moment), it does something else than track a nonexistent mouse-pointer's passage across the monitored elements of the display... ;) [[Special:Contributions/172.70.90.190|172.70.90.190]] 12:26, 9 January 2024 (UTC)&lt;br /&gt;
::There are a few MediaWiki plugins that help keep vandalism/spam under control without requiring users to solve a Captcha every time they make an edit. I use https://www.mediawiki.org/wiki/Extension:Moderation on the wiki I maintain, and it works very well. However, it does require that there be enough active moderators to approve edits, as it basically requires every single edit to be approved before it's posted. Thus, it also introduces some &amp;quot;lag&amp;quot; between when stuff is written and when it can be seen by others. I think it could work if the extension could be installed (I'm not even sure if it's supported on this version of MediaWiki) and if a good list of moderators could be put together. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 20:02, 9 February 2024 (UTC)&lt;br /&gt;
:::I disagree with requiring edits to be approved. Unless we have extremely high vandalism, just filtering out the above tags I mentioned and using ReCAPTCHA v3 would be enough. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 23:16, 16 February 2024 (UTC)&lt;br /&gt;
::::Ok, fair point. However, that wouldn't stop human vandalism, just vandalism from bots. I'm not sure how much human vandalism there is, though, so it might not even be a problem. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 12:35, 22 February 2024 (UTC)&lt;br /&gt;
:::::It's hard (for us 'civvies') to know how much bot-vandalism is stopped but [https://www.explainxkcd.com/wiki/index.php?title=Special:Log/newusers&amp;amp;offset=&amp;amp;limit=500&amp;amp;type=newusers&amp;amp;user= probably a lot], most of which we never see, with [https://www.explainxkcd.com/wiki/index.php?title=2503:_Memo_Spike_Connector&amp;amp;diff=335487&amp;amp;oldid=335486 occasional ones] we might see having be dealt with. (I'm guessing these things are rare (temporarily-)successful 'bots, because flesh-and-blood vandals wouldn't be occasionally doing essentially the same insta-reverted thing on a thematically-small set of pages, over several ''years'' without moving on. It has to be a lucky unattended script-based effort that just keeps trying the same things over and over with an easily revertible but tangible result happening only infrequently.)&lt;br /&gt;
:::::More obvious human vandalism tends to rumble on, with occasionally a spate of it as someone gets short-term kicks for it. Though some of them seem may repeat themself after a break. Friendly humans and friendly 'bots both tend to provide the main anti-vandalism responses fairly quickly, though, depending upon what kind of a mess they caused. I've seen worse places, definitely, and it's by no means a losing battle against chaos, just regular skermishes.&lt;br /&gt;
:::::Not wanting to tempt fate, of course. I guarantee that there'll be some fool that takes all this as a challenge, so I just have to trust to the Good Guys keeping on keeping on. [[Special:Contributions/172.70.90.71|172.70.90.71]] 14:21, 22 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
heyo, is there a way to add actual citations to explainxkcd instead of the template citation needed? couldn't find anything, but i'm pretty new here - thanks in advance. [[User:Nigga|Nigga]] ([[User talk:Nigga|talk]]) 21:47, 17 March 2024 (UTC)&lt;br /&gt;
:Not that I have much faith in your usernae lasting long (you're 'that guy', aren't you? ...in which case you know anyway), but for the sake of anyone else who needs to know:&lt;br /&gt;
:*If you mean &amp;quot;add an actual 'citation needed' tag&amp;quot;, then it's {{template|Actual citation needed}} that you'll use.&lt;br /&gt;
:*If you mean &amp;quot;add an actual citation link to somewhere&amp;quot;, then:&lt;br /&gt;
:** Link to URLs with [].&lt;br /&gt;
:*** A link such as [&amp;lt;url&amp;gt;] will give you a superscript-number link, which isn't pretty, IMO.&lt;br /&gt;
:*** A link such as [&amp;lt;url&amp;gt; &amp;lt;text&amp;gt;] (that's a space between the two) will link &amp;lt;text&amp;gt; to the URL, just work it into the sentence you're writing, fairly easy&lt;br /&gt;
:** Link to internal (or cross-wiki) pages with [[]].&lt;br /&gt;
:*** [[&amp;lt;page title&amp;gt;]] will make a literal link to &amp;lt;page title&amp;gt;.&lt;br /&gt;
:*** [[&amp;lt;page title&amp;gt;|&amp;lt;text&amp;gt;]] (with a pipe) is how you make the &amp;lt;text&amp;gt; your link.&lt;br /&gt;
:** You can use the last to link specifically to wikipedia's cross-site format, but for that it's best to use {{template|w}}&lt;br /&gt;
:*** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;page title&amp;gt;}}&amp;lt;/nowiki&amp;gt; (w-pipe...) uses the page title&lt;br /&gt;
:**** It will use the link as if the first character is uppercase, so you don't need to capitalise that. Other case-sensitivity is preserved.&lt;br /&gt;
:**** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;singular page title&amp;gt;}}s&amp;lt;/nowiki&amp;gt; will link the obvious pluralisation of the page title, just to save you effort&lt;br /&gt;
:*** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;page title&amp;gt;|&amp;lt;text&amp;gt;}}&amp;lt;/nowiki&amp;gt; (w-pipe and pipe) lets you use entirely alternate text.&lt;br /&gt;
:** There's also templates that shortcut (or make easier on the eye, or add appropriate warnings) for some other commonly referenced external sites, from xkcd's own what-if to TVTropes.&lt;br /&gt;
:...hope that helps everyone that doesn't already know these few simple bits as relate to wikis in general or this wiki in particular. [[Special:Contributions/172.71.242.218|172.71.242.218]] 22:24, 17 March 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Confirmation Email Bug ==&lt;br /&gt;
&lt;br /&gt;
Hi. I've been trying to get my email confirmed so that I can get pinged when pages are edited, but I just can't find it, even after trying multiple times. I use Gmail, and yes, I have checked my spam folder. Has anyone else had this issue? EDIT: I see that others have had this issue, but the admins haven't done any action to solve it, except for one sarcastic comment by Davidy22 back in 2014. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 00:43, 12 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Lack of Userpage ==&lt;br /&gt;
&lt;br /&gt;
Hey, I joined a few years ago, but I still do not have a Userpage. Can you make one for me? I do not have the permission to do so. [[User:GreyFox|GreyFox]] ([[User talk:GreyFox|talk]]) 22:47, 15 May 2024 (UTC)&lt;br /&gt;
:This is actually your very first post, after joining a bit more than a year ago (&amp;quot;18:35, 14 November 2023 User account GreyFox (talk | contribs) was created&amp;quot;). I'm sure someone can oblige (not me, for obvious reasons), but you've not done much to contribute (at least under this account), which would have then eventually brought you to the point where you ''can'' just self-create your Userpages/etc. So your request is a bit out of the blue.&lt;br /&gt;
:Just so long as we all know where we stand, though. [[Special:Contributions/172.69.194.227|172.69.194.227]] 09:42, 16 May 2024 (UTC)&lt;br /&gt;
::Oh, thanks! Do you know the exact number of edits I need to create it?&lt;br /&gt;
:::50 to be autoconfirmed. Also, please sign your comments. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:23, 16 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== server errors ==&lt;br /&gt;
is anyone else constantly getting 503 errors? [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 17:14, 21 May 2024 (UTC)&lt;br /&gt;
:yup, been seeing those all the time. Also seeing that the server is down a lot of time-it suggests me to Google for what I’m “looking for” [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:18, 21 May 2024 (UTC)&lt;br /&gt;
::503s are fairly common (often when I'm in a rush), and have been for... well, certainly years, maybe more than a decade (though more common during major vandalism/anti-vandalism surges). I had, however, noticed a recent blip (during the last day or so) of the Server Down/Try Google page that you refer to, which I haven't seen for a ''long'' time (not really sure when, but maybe five years or so ago). In fact, I probably got Cloudflare 'rejections' more, during aformentioned vandal-overloading.&lt;br /&gt;
::Without any access to the admin logs, I can only speculate as to what might be sparking it. But service (notwithstanding the brief page-refusals themselves) seems to be happily unaffected. [[Special:Contributions/172.70.160.249|172.70.160.249]] 20:29, 21 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Allow new users to edit their own page ==&lt;br /&gt;
&lt;br /&gt;
I found someone asking if we could change this in the proposals page (Community portal/Proposals: Allow Users to Edit their own talk page if not auto confimed (not a typo)). [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:39, 19 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Technical difficulties? ==&lt;br /&gt;
&lt;br /&gt;
I keep getting a message that says: &amp;quot;Sorry! This site is experiencing technical difficulties.Try waiting a few minutes and reloading. (Cannot access the database)&amp;quot;&lt;br /&gt;
It's happened a lot so I was wondering if there was a specific cause behind it and perhaps a way to fix it.&lt;br /&gt;
[[Special:Contributions/172.68.54.65|172.68.54.65]] 00:17, 17 September 2024 (UTC)&lt;br /&gt;
:yeah, I’ve been getting those errors too. I can’t even log into my account before it says that there’s an error again. I’ve been steadily receiving them for a couple months, but never like today. From Recent Changes, it doesn’t look like anyone is spamming the wiki, so maybe it’s an attack of some kind. You’ll need to contact the admins who have access to the server and can poke around, but good luck getting [[User:Davidy22]] or [[User:Jeff]] online. [[Special:Contributions/172.69.135.130|172.69.135.130]] 17:16, 17 September 2024 (UTC)&lt;br /&gt;
::update: I’ve been poking around a lot of websites, trying to see if the website is being attacked. The websites all say that the server is down. I’ll try to ask Jeff on this and pray that he checks his email. [[Special:Contributions/172.69.135.129|172.69.135.129]] 17:21, 17 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== the site is collapsing ==&lt;br /&gt;
503's are to be expected, but i've got them and the &amp;quot;Sorry! This site is experiencing technical difficulties. Try waiting a few minutes and reloading.&amp;quot; error way, way too much. it's actually getting really hard to edit stuff because of them. [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 01:58, 19 September 2024 (UTC)&lt;br /&gt;
:heck, i just got a 503 when posting this topic. also, load times are noticeably longer. and i'm getting &amp;quot;loss of session&amp;quot; errors when i try to edit... [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 02:02, 19 September 2024 (UTC)&lt;br /&gt;
::I’ve messaged Davidy22 and Jeff about it, hopefully they see it and reply. It looks fine right now, appears that it works horribly at times and fine later. Due to the on-off nature of it, I would suspect DDoS attacks, as a 503 error means that the server can’t process the request, which occurs with DDoS attacks. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:37, 19 September 2024 (UTC)&lt;br /&gt;
:::update: I’ve made a Reddit post, as I’ve seen Davidy22 active on Reddit and respond to older threads on r/xkcd. Hopefully they respond! [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:50, 24 September 2024 (UTC)&lt;br /&gt;
::::October update: Davidy22 responded to my emails and said that he has emailed Jeff multiple times. Apparently Jeff is ignoring his emails and not responding. I’ve been checking Jeff’s Twitter/X/Whatever once a week and it shows that he uses it semi-regularly. Apparently Jeff is a podcaster too? Anyways, nobody has really responded to me on r/xkcd, so I’m thinking of sending a DM to Jeff via Twitter. I have a to-do list for Jeff listed on my User Page, feel free to give any thoughts, proposals, comments on anything else you want him to do in this thread. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:46, 24 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== List of All Comics ==&lt;br /&gt;
&lt;br /&gt;
I think that FaviFake and I have accidentally broken the All comics page. When clicked, it brings you to the page List of all comics, which displays the comics 3000-3002 (as of right now) instead of the list of all comics (oops-my bad). How do we fix this? There’s also the page List of all comics (3000-3500), but the TheusafBOT ignores it. Can someone more technical help troubleshoot this problem? Again, sorry for making a muck of things. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:43, 24 October 2024 (UTC)&lt;br /&gt;
:Oh I'm sorry, I created a new topic for this and I didn't see this one. I noticed the [[List of all comics (3000-3500)]] today and scheduled it for deletion because we never make such a page until we have exactly 500 comics to put there. Also, the name is wrong, it should say 3001-3500.&lt;br /&gt;
:The page [[List of all comics]] is supposed to display comics 3001-3005, not all comics. You might be confusing it with [[List of all comics (full)]], which would work perfectly if [[List of all comics]] displayed the last 3 comics. I have no idea why the bot stopped updating it. Maybe it will work now that the wrong page is scheduled for deletion? [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:15, 31 October 2024&lt;br /&gt;
::Wait a second, why did you move the List of all comics to [[List of all comics (3000-3500)]]? It seemed to me like everything was working fine before you moved it [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:24, 31 October 2024 (UTC)&lt;br /&gt;
:::I was trying to copy the content to [[List of all comics (3000-3500)]], and accidentally broke it. Sorry! [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 16:48, 31 October 2024 (UTC)&lt;br /&gt;
::::Yeah I can confirm the content and the entire edit history was moved to the incorrectly-titled page that's now scheduled for deletion. I guess maybe we didn't really need the edit history on that page, but who knows.&lt;br /&gt;
::::Weirdly, the bot seems to have restored the page as it was and then stopped doing its thing. Since we're the only ones here, I suggest you manually create the missing rows for the new comics and we'll see if that works when the next comic drops. If it doesn't, I'll contact the maintainer and creator of the bot myself. Sounds good? :) [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:29, 31 October 2024 (UTC)&lt;br /&gt;
:::::Sir yes Sir! 🫡 [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 04:51, 1 November 2024 (UTC)&lt;br /&gt;
:::::: Great, thanks! I can also do it this afternoon if you don't have time. I realise my previous messages read like orders lol, they were supposed to be suggestions to try and fix the issue. [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 07:18, 1 November 2024&lt;br /&gt;
&lt;br /&gt;
== The [[List of all comics]] is no longer being updated automatically ==&lt;br /&gt;
&lt;br /&gt;
Hey everyone, I noticed the bot isn't updating this page anymore: [[List of all comics]]. There are supposed to be five comics in it but there are only two at the moment. Is this supposed to happen? [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:06, 31 October 2024&lt;br /&gt;
&lt;br /&gt;
== 2034: Equations error? ==&lt;br /&gt;
&lt;br /&gt;
One of the TeX math-thingies (sorry for the informal writing), is showing this error: &amp;quot;Failed to parse (Missing texvc executable. Please see math/README to configure.): \oint&amp;quot;. Idk why it's showing this, can someone fix this? [[Special:Contributions/108.162.237.48|108.162.237.48]] 19:25, 6 November 2024 (UTC)&lt;br /&gt;
:It's a long-standing error, to do with the background processes that turns the TeX-style markup into embedded images. All equations (or whatever it might be that the particular MathML was being used to render) that were originally given cached-imagery ''still work fine'', but it seems a later update made it so that if you adjust it at all (even slightly), it no longer has the route to produce the embedding cleanly.&lt;br /&gt;
:It can probably be solved by rolling back some module(s) that got refreshed quite some time ago, though the advised fix is to actually fully update them (and/or reconfigure the backend scripting) to work with all the newest versions of the original tools. Unfortunately, the people (or maybe person) who would do this is not too active at the moment (may also not be up to speed on everything, either, if it involves a bit of more tricky administration), so we're left with the occasional problem establishing the texvc handler.&lt;br /&gt;
:Not sure which page you're encountering this on, but sometimes if you look back in the edit history you can find a working version of the thing you're seeing go wrong. If it's an aesthetic difference (e.g. the presence or absence of a spacing character), you might be able to just restore the render-cached version and make do with it not looking ''quite'' right.&lt;br /&gt;
:If it's a necessary change that was made (e.g. &amp;quot;''dt''&amp;quot; instead of &amp;quot;''dx''&amp;quot;, which is definitely wrong the old way), or it seems never to have a valid render, then there's two obvious solutions:&lt;br /&gt;
:#Make your own image of it as it should be and (with a suitably auto-validated account, or via a handy external image hosting service and/or a more mature account here) get that embedded in place of the markup-source, or&lt;br /&gt;
:#Replicate its appearance in more basic (by standard) but complex (by source needed) markup. Combinations of basic wikimarkup and HTML can do most 'fiddly positional' things, see [[2614: 2]] for a numerator/denominator layout, for example.&lt;br /&gt;
:Not as 'simple' as TeX-markedup. But, on the other hand, the &amp;quot;\oint&amp;quot; symbol is &amp;quot;∮&amp;quot;, so perhaps all you need to do is copy'n'paste that actual unicode symbol to wherever you found the problem, and use that instead, and forgo the TeX version altogether? (Might not show on some displays, but probably enough to make it a minority issue.) [[Special:Contributions/172.70.90.105|172.70.90.105]] 22:50, 6 November 2024 (UTC)&lt;br /&gt;
:Had the brainwave that I could probable ''search'' for the offending \oint, actually. Did so, found [[2034: Equations]], noted that it was the only (current) rendering issue and therefore just did the pasting over myself. Looks good for me, but obviously might not help (but not make worse) others' viewing of it. [[Special:Contributions/172.69.195.54|172.69.195.54]] 22:58, 6 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
...Why didn't I think of just pasting the Unicode equivalent. I'm dumb, but thanks for fixing it. [[Special:Contributions/172.69.70.10|172.69.70.10]] 13:44, 8 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Esolang wiki bug ==&lt;br /&gt;
The &amp;quot;esolangs.org&amp;quot; wiki is also experiencing a similar bug. The server was repeatedly changing a particular user's signature in his posts. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 04:01, 29 November 2024 (UTC)&lt;br /&gt;
:Fucking bullshit. One, this doesn’t belong here and I’ve copied it into [[explain xkcd:Community portal/Technial|the Technical Community Portal]]. Two, I saw your talk page on [https://esolangs.org/wiki/User_talk:ColorfulGalaxy%27s_CA_discoveries esolangs.org], which you brought up this “bug”, which the local admin (who’s probably just as sick and tired of you as I am) called BS on. If the server was changing your sig to my sig, it would be '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''', not the sig that you faked in. You’re obviously seeking attention and are being abusive and childish. Please see the bottom of https://esolangs.org/wiki/Esolang:Introduce_yourself to see a full list of complaints. I will be asking Kynde to ban you and all of your alt (or shared) accounts. -tori [[Special:Contributions/162.158.167.98|162.158.167.98]] 05:36, 29 November 2024 (UTC)&lt;br /&gt;
::Additionally, the complaint doesn’t even make sense. The 2 wikis are running on different servers and different MediaWiki software and should in no shape or form be having the same bug across 2 different systems. Plus, why is the CAPTCHA in the esolang wiki so damn difficult? (Just a side note :3) -tori&lt;br /&gt;
:I just realized that they've changed '''my''' signature as well. That's strange. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 06:37, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Once again they suddenly redirected my username to the Main Page. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:05, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358191</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358191"/>
				<updated>2024-11-29T13:02:51Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Wow */ Oops&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wow ==&lt;br /&gt;
Wow, I've just reached the top of the [[Main Page]] leaderboard. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 13:02, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358190</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358190"/>
				<updated>2024-11-29T13:02:08Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Top of the leaderboard!!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wow ==&lt;br /&gt;
Wow, I've just reached the top of the [[Main Page]] leaderboard. [[Main Page|User:ConscriptGlossary]] ([[Talk:Main Page|talk]]) 13:02, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358188</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358188"/>
				<updated>2024-11-29T12:59:19Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Reverted again??&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:42.book.addict/userbox&amp;diff=358187</id>
		<title>User:42.book.addict/userbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:42.book.addict/userbox&amp;diff=358187"/>
				<updated>2024-11-29T12:58:50Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:visited.png|visited.png|45px]] | info = [[1051|This user has read every xkcd comic ever made]]  | float = left }}  {{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:pi_2x.png|45px]] | info = {{w|Mathematics|This user is interested in maths}}  | float = left }}    {{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:science atom model.png|50px]] | info = {{w|science|This user is interested in science}}  | float = left }}&lt;br /&gt;
&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[Image:Long sword.svg|45px]] | info = [https://www.explainxkcd.com/wiki/index.php/Category:Pages_to_delete This user is on a crusade to add &amp;lt;nowiki&amp;gt;[[Category:Pages to delete]]&amp;lt;/nowiki&amp;gt; to pages that are unnecessary]  | float = left }}   {{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:stacked_books.png|45px]] | info = [[911|This user is busy with school and may not immediately respond to messages]]  | float = left }}     {{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[Image:Original Barnstar.png|45px]] | info = {{w|Wikipedia:Barnstars|This user gave out the first Barnstars of Explain xkcd}}  | float = left }}&lt;br /&gt;
&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[Image: Flag of the Republic of China.svg|45px]] | info = {{w|Taiwan|This user is of Chinese (more specifically, Taiwan) descent}} | float = left }}     {{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[Image: Flag of the United States (DoS ECA Color Standard).svg|45px]] | info = {{w|America|This user is American}} | float = left }}      {{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[Image: Flag of California.svg|45px]] | info = {{w|California|This user lives in California}} | float = left }}&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2723:_Outdated_Periodic_Table&amp;diff=358185</id>
		<title>2723: Outdated Periodic Table</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2723:_Outdated_Periodic_Table&amp;diff=358185"/>
				<updated>2024-11-29T12:54:26Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Shorten&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2723&lt;br /&gt;
| date      = January 11, 2023&lt;br /&gt;
| title     = Outdated Periodic Table&lt;br /&gt;
| image     = outdated_periodic_table_2x.png&lt;br /&gt;
| imagesize = 360x350px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Researchers claim to have synthesized six additional elements in the second row, temporarily named 'pentium' through 'unnilium'.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
This comic shows figure 6.14 from a science text book, which displays ''The {{w|periodic table}} of the elements'', but with only the first four elements ({{w|hydrogen}}, {{w|helium}}, {{w|lithium}} and {{w|beryllium}}) shown. [[Randall]] claims in the caption that you can use such charts to date a publication based upon the {{w|Chemical elements|elements}} present or missing. While this is true in a sense - for example, {{w|Nihonium}}, {{w|Moscovium}}, {{w|Tennessine}} and {{w|Oganesson}} were first discovered in 2003 and named in 2016, thus charts made before 2016 would have the {{w|systematic element name}}s Ununtrium, Ununpentium, Ununseptium and Ununoctium and completely absent before 2003 - Randall injects humor by taking it to the extreme and showcasing a periodic table from a book published just half an hour after the {{w|Big Bang}}, at which time those four elements were the only ones present.&lt;br /&gt;
&lt;br /&gt;
From about 10 seconds until about 20 minutes after the Big Bang, the phase that is known as the {{w|Big Bang nucleosynthesis}} occurred. At that time, hydrogen ions (single protons) provided for helium in abundance and traces of lithium. Some berylium-7 was also formed, which is an unstable {{w|Isotopes of beryllium|isotope}} having a half life of 53 days. Randall's science book was published when those four elements were the only ones in existence, even though this would be absurd since no life as we know it could exist with only these four elements to write and publish the book; perhaps it is why Randall's mysterious textbook seems and manages to reflect the direct state of elements existing in nature, even though the real life periodic table was slowly filled out based on what could be easily found and later synthesized. For example, despite helium being one of the first elements to exist, and still one of the most common in the universe (roughly 24%, by mass, with hydrogen being around 75% and every other element combined being the remainder), it did not appear in the earliest periodic tables.&lt;br /&gt;
&lt;br /&gt;
The title text refers to how yet-undiscovered elements are given a {{w|systematic element name}} as a temporary name, until a more permanent name is decided upon. The names are based upon a standard group of Greek and Latin roots that read out the decimal digits of an element's unique {{w|atomic number}} (i.e., the number of protons) and adding &amp;quot;-ium&amp;quot; to the end. The claim in the title text is that, in the textbook with the figure, researchers claim they have synthesized six additional elements in the second row, temporarily named 'pen&amp;lt;span&amp;gt;t&amp;lt;/span&amp;gt;ium' (atomic number &amp;quot;5&amp;quot;) through to 'unnilium' (&amp;quot;one zero&amp;quot;, or &amp;quot;10&amp;quot;). In reality, all these elements are well known as {{w|Boron}}, {{w|Carbon}}, {{w|Nitrogen}}, {{w|Oxygen}}, {{w|Fluorine}} and {{w|Neon}}. The word &amp;quot;Pen&amp;lt;span&amp;gt;t&amp;lt;/span&amp;gt;ium&amp;quot; is also the brand name of some computer hardware which ''may'' contain some amount of boron.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
:[Subheading]: Figure 6.14&lt;br /&gt;
:[Title]: The periodic table of the elements&lt;br /&gt;
&lt;br /&gt;
:[The following four rectangles featuring the large element abbreviation, with the full element name written below, in a typical periodic table style]&lt;br /&gt;
:[Top row, far left]: H Hydrogen&lt;br /&gt;
:[Top row, far right, detached from any other box]: He Helium&lt;br /&gt;
:[Bottom row, attached directly below the &amp;quot;H&amp;quot; box]: Li Lithium&lt;br /&gt;
:[Bottom row, attached directly to the right of &amp;quot;Li&amp;quot;]: Be Beryllium&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel]:&lt;br /&gt;
:You can spot an outdated science textbook by checking the bottom of the periodic table for missing elements. For example, mine was published half an hour after the Big Bang.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics with lowercase text]]&lt;br /&gt;
[[Category:Chemistry]]&lt;br /&gt;
[[Category:Cosmology]]&lt;br /&gt;
[[Category:Science]]&lt;br /&gt;
[[Category:Periodic table]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:764:_One_Two&amp;diff=358183</id>
		<title>Talk:764: One Two</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:764:_One_Two&amp;diff=358183"/>
				<updated>2024-11-29T12:51:49Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* How do Wikipedia editors get notified? */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I think this is a reference to how many ancient cultures have three versions of grammatical, besides singular and plural, most early languages have dual as well, normally. {{unsigned ip|173.245.52.190}}&lt;br /&gt;
&lt;br /&gt;
I believe this is also a reference to the discworld universe, where the trolls have a base three number system which is mistaken to be primitive by most (basically one, two, many, many-one, many-two, many-many and so on)[[Special:Contributions/85.164.251.29|85.164.251.29]] 09:03, 25 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
You are correct, Discworld gets the one two three reference from the one two three infinity by George Gamow. The line the Count uses in the comic is almost a direct quote in the first chapter about the primitive Hottentots tribe. The one other thing I failed to mention in my original creation of this page was the myth about vampires and OCD. That dropping seeds while fleeing vampires was a way to escape because they were forced to compulsively count the seeds. However I wasn't sure how many would remember the myth. Thank you for looking at this. [[User:Understudy|Understudy]] ([[User talk:Understudy|talk]]) 19:23, 25 August 2013 (UTC)&lt;br /&gt;
:So they are all counts not one Count?&lt;br /&gt;
:And the stake through the heart routine counts as well? [[User:Weatherlawyer| I used Google News BEFORE it was clickbait]] ([[User talk:Weatherlawyer|talk]]) 21:45, 26 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Actually, the Discworld trolls have a base four number system, not three. [[User:Sciepsilon|Sciepsilon]] ([[User talk:Sciepsilon|talk]]) 02:19, 29 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Excellent, I have not read the series in many many years. Thank you for the information. [[User:Understudy|Understudy]] ([[User talk:Understudy|talk]]) 22:09, 30 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
'''Bold text''' {{unsigned ip|173.245.52.190}}&lt;br /&gt;
&lt;br /&gt;
I like that the TV has many channels. {{unsigned ip|108.162.238.157}}&lt;br /&gt;
&lt;br /&gt;
I hope they send chain letters [[User:Elvenivle|Elvenivle]] ([[User talk:Elvenivle|talk]])&lt;br /&gt;
&lt;br /&gt;
There's a parody in [http://web.archive.org/web/20100714145013/http://languagelog.ldc.upenn.edu/nll/?p=2439 this blog post]. --[[Special:Contributions/172.68.46.23|172.68.46.23]] 06:17, 30 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
This feels very Gary Lawson-y. Can't explain why, but it just does. [[Special:Contributions/172.64.236.102|172.64.236.102]] 18:54, 24 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
;How do Wikipedia editors get notified?&lt;br /&gt;
&lt;br /&gt;
If one user sends me a message, they say &amp;quot;You have a new message from another user (last change)&amp;quot;. If two users send me messages, they say &amp;quot;You have new messages from 2 users (last changes)&amp;quot;. I don't know how many users would need to send me messages so that they can tell me &amp;quot;You have new messages from many users (last changes)&amp;quot;. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 12:51, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358181</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358181"/>
				<updated>2024-11-29T12:43:18Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: It's inspired by periodic table&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358178</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358178"/>
				<updated>2024-11-29T12:41:20Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Create this page */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. This project is mostly inspired by [[:Category:Periodic table]]. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358169</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358169"/>
				<updated>2024-11-29T12:15:45Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Why????????????&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358166</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358166"/>
				<updated>2024-11-29T12:05:47Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Added pascal&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Pascal]]===&lt;br /&gt;
&lt;br /&gt;
 var&lt;br /&gt;
 a:char;&lt;br /&gt;
 begin&lt;br /&gt;
 a:=char(11);write(a);&lt;br /&gt;
 a:=char(39);write(a);&lt;br /&gt;
 write('N');&lt;br /&gt;
 end.&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358165</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358165"/>
				<updated>2024-11-29T11:46:10Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Create this page */ Hexdump&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Hexdump]]===&lt;br /&gt;
&lt;br /&gt;
 0B 27 4E&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I'm new to esolangs and I only picked some easy ones. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 11:46, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358164</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358164"/>
				<updated>2024-11-29T11:39:37Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Added Linguine&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Linguine]]===&lt;br /&gt;
&lt;br /&gt;
 1[0=11,0$,0=39,0$,0=78,0$]0&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols. The language is created by [[User:Vertical tab 'N]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358163</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358163"/>
				<updated>2024-11-29T11:28:59Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Added Befunge&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[Befunge]]===&lt;br /&gt;
&lt;br /&gt;
 56+,2+3*,2*,@&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols.&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358159</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358159"/>
				<updated>2024-11-29T11:25:37Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Added python&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
===[[Python]]===&lt;br /&gt;
&lt;br /&gt;
 print(chr(11) + &amp;quot;'N&amp;quot;,end='')&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols.&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358158</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358158"/>
				<updated>2024-11-29T11:23:47Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Oh, no, I spoiled it.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 putchar(11);&lt;br /&gt;
 putchar(39);&lt;br /&gt;
 putchar(78);&lt;br /&gt;
 return 0;}&lt;br /&gt;
&lt;br /&gt;
Alternative:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
 int main(){&lt;br /&gt;
 printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
 return 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols.&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358157</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358157"/>
				<updated>2024-11-29T11:22:15Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Added C++&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
===[[C++]]===&lt;br /&gt;
&amp;lt;pre&amp;gt;#include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
int main(){&lt;br /&gt;
putchar(11);&lt;br /&gt;
putchar(39);&lt;br /&gt;
putchar(78);&lt;br /&gt;
return 0;}&amp;lt;/pre&amp;gt;&lt;br /&gt;
Alternative:&lt;br /&gt;
&amp;lt;pre&amp;gt;#include &amp;lt;cstdio&amp;gt;&lt;br /&gt;
int main(){&lt;br /&gt;
printf(&amp;quot;%c\'N&amp;quot;,11);&lt;br /&gt;
return 0;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols.&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358155</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358155"/>
				<updated>2024-11-29T11:17:21Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Added another category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols.&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&lt;br /&gt;
[[Category:2024]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358154</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358154"/>
				<updated>2024-11-29T11:14:45Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Add note&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. ([[User talk:Vertical tab 'N]] is one of his fans]]) The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols.&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358153</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358153"/>
				<updated>2024-11-29T11:12:30Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Added another category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols.&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Total]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358152</id>
		<title>User talk:42.book.addict</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:42.book.addict&amp;diff=358152"/>
				<updated>2024-11-29T11:10:16Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;'''Archive 1'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;[[File:archive.png]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;For old and irrelevant messages, see my [[User talk:42.book.addict/archive|archive!]]&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== introductions ==&lt;br /&gt;
Just replying to your message (also dw no big deal for bothering me)&lt;br /&gt;
You click on your username and there should be an edit box. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 04:58, 7 February 2024 (UTC)&lt;br /&gt;
:it says that i dont have permission to create the page…&lt;br /&gt;
:There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. it says [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:33, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think you might have to wait some time (like a timer) until you can edit your own page... I think I only got to edit my page after 1 month of creating my account.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 21:31, 7 February 2024 (UTC)&lt;br /&gt;
:ok, thx [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:52, 7 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
My guess on where you live is somewhere in the GMT zone, so United Kingdom.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 03:43, 8 February 2024 (UTC)&lt;br /&gt;
:nope, im a california girl :) ([[User talk:42.book.addict|talk]]) 05:04, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
lol you never know with utc times --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 16:52, 8 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Depends what you wanted to do... ==&lt;br /&gt;
&lt;br /&gt;
Is the following what you intended?&amp;lt;br/&amp;gt;&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = [[{{w|Transgender|This user is trans.}}]]  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}...or is even the [[]] part not what you want?{{clear}}&lt;br /&gt;
{{Userbox | border-c = #255 | border-s = 1 | info-s = 9 | id = [[File:trans_flag.png|45px]] | info = {{w|Transgender|This user is trans.}}  | float = left }} &amp;lt;br/&amp;gt;&lt;br /&gt;
{{clear}}As brief a guide as I can manage:&lt;br /&gt;
*URL links use []. Although literal https://www.google.com will self-link without ''any'' wikimarkup, you probably don't want it to look like that most of the time.&lt;br /&gt;
** Just give the URL, as in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to get a [https://www.google.com] (i.e. a reference number), not the best way to do it. It can be organised better with a 'References' section, but we don't do that here (they do on wikipedia, but usually with other bits to it.&lt;br /&gt;
** Better to give the URL and the text to use (after a space, a character that never appears raw in any proper URL). This can be &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com Check It Out On Google!]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; or even &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[https://www.google.com https://www.microsoft.com (only kidding!)]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, to give [https://www.google.com Check It Out On Google!] or [https://www.google.com https://www.microsoft.com (only kidding!)]... But perhaps best not to do the latter too much (I really didn't want to post that without the &amp;quot;(only kidding!)&amp;quot; part, in fact.)&lt;br /&gt;
*Internalised wikilinks use the [[]]s.&lt;br /&gt;
**Anything that can be found under the title, e.g. &amp;quot;2: Petit Trees (sketch)&amp;quot; (or, because of redirections, &amp;quot;2&amp;quot; and &amp;quot;Petit Trees (sketch)&amp;quot; go to the same spot, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you the literal links [[2]], [[Petit Trees (sketch)]] and [[2: Petit Trees (sketch)]]&lt;br /&gt;
**Or use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[2: Petit Trees (sketch)|that comic with the little trees]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, additional text separated by the 'pipe' symbol (i.e. &amp;quot;|&amp;quot;), to link to [[2: Petit Trees (sketch)|that comic with the little trees]]&lt;br /&gt;
**You can also link across to articles on other 'wikimedia family' sites, but I'm not going to try to summarise that, as the primary reason to do that is to go to an actual Wikipedia article, and there's a template set up to do that ''very'' nicely, already (and also a few other places, like Wiktionary, and some not-really-wikis with a similar philosphy like TVTropes). If in doubt, do it as a URL link ''or'' find a place where someone else has clearly markuped a link to the same site as you want to link to.&lt;br /&gt;
*So, anyway, Wikilink templates use the {{template|w}}-template, with one or two paramaters (pipe-separated). (It shortcuts the thing you'd maybe use [[]]s for&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link to &amp;quot;{{w|Article}}&amp;quot; (it capitalises the first character, even if you don't)&lt;br /&gt;
**Using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|article|with alternate text}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; gives you a link there but &amp;quot;{{w|article|with alternate text}}&amp;quot;&lt;br /&gt;
**If the article name has whitespace (or other 'URL-unfriendly' characters) in it, those characters in the URL (which you wouldn't want to use) will be rendered as something URL-friendly. The URL for &amp;quot;Whitespace (programming language)&amp;quot;, for example, is https://en.wikipedia.org/wiki/Whitespace_(programming_language) but you wouldn't normally use that so literally in any case, and definitely not when you can significanty shorten it with the {{template|w}} notation.&lt;br /&gt;
***What you can do is (without 'alternate link text') render it as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; - i.e. {{w|Whitespace_(programming_language)}} - but that's not nice to see 'rendered raw' when you ''want'' the spaces. You could give it alternate text via &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace_(programming_language)|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to give {{w|Whitespace_(programming_language)|Whitespace (programming language)}} ...but that's wasteful and unnecessary.&lt;br /&gt;
***Instead, just do &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (that's the literal copy of the article's own page title, from the rendered page) - and shows as {{w|Whitespace (programming language)}} - which is good. Although &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)|the programming language called Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might be the best way to seemlessly link to {{w|Whitespace (programming language)|the programming language called Whitespace}} ...depends what you want to appear there.&lt;br /&gt;
***And you can link to header anchors pretty much ''like'' the URL of https://en.wikipedia.org/wiki/Whitespace_(programming_language)#History by using &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Whitespace (programming language)#History|the history of Whitespace}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to have you show {{w|Whitespace (programming language)#History|the history of Whitespace}} or whatever else you might want to use.&lt;br /&gt;
**Also, for the use of a link which is singular but which you would like to include as the plural (usually the &amp;quot;...s&amp;quot; or &amp;quot;...es&amp;quot; version), you could use article-name first parameter and ''pluralised'' article name as second, but instead of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural|Plurals}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, for a link to the {{w|Plural|Plurals}}, you can save yourself a lot of effort by doing &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Plural}}s&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to also give you a linke to {{w|Plural}}s. Magic, eh? And it also works with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{w|Ox}}en&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to link the different standard plural of {{w|Ox}}en to the article for &amp;quot;Ox&amp;quot; (better than linking to the word for {{w|Oxen}}, which ends up redirecting to {{w|Ox}} anyway).&lt;br /&gt;
...so, anyway, that's the basics. And a few not-so-basics. So if the solutions to your tagging issue aren't already solved (or even if they are!), you might have enough info here to kludge it into whatever form of infobox info text you ''really'' wanted to use. Ok? Probably far too much info for you to absorb in one go, but covers loads of interesting possibilities. About the only thing you don't want to do is wikilink straight to the word &amp;quot;trans&amp;quot;, at that'll be a disambiguation page. And there's also no way (or reason?) to use the terms &amp;quot;trans man&amp;quot;/&amp;quot;trans woman&amp;quot; as the pluralised &amp;quot;trans men&amp;quot;/&amp;quot;trans women&amp;quot; versions via the &amp;quot;directly add the plural suffix&amp;quot; thing, of course. :P Anyway, FYI. [[Special:Contributions/162.158.38.217|162.158.38.217]] 20:40, 25 May 2024 (UTC)&lt;br /&gt;
::oh my god thank you so much [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 19:38, 27 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== You're doing several edits of signed Talk contributions. ==&lt;br /&gt;
&lt;br /&gt;
Don't do that. Insofar as any edit 'belongs' to anyone, if you write a contribution to a Talk page (or the community portal) and sign it properly, and it isn't actual span or vandalism or similar idiocy, then you don't expect someone to 'correct' what you wrote.&lt;br /&gt;
&lt;br /&gt;
In at least one case, you didn't even understand it enough to correct it (by the standards of your own attempted correction). So perhaps just a better idea not to. [[Special:Contributions/141.101.98.87|141.101.98.87]] 22:54, 23 September 2024 (UTC)&lt;br /&gt;
:I’m cleaning up the maintenance pages and I did those edits so that we don’t have dead links on the wiki. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:07, 24 September 2024 (UTC)&lt;br /&gt;
::also, I’ve added a comment clarifying the {{Citation needed}} thread [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 01:26, 24 September 2024 (UTC)&lt;br /&gt;
:::There are plenty of dead links. Sometimes for practical reasons. I note that you have done a lot of editing, recently, and cleaning up articles is good, but I think you're being told that you're taking it too far to mess with other people's words that are ''supposed'' to be their own, rather than the more collaborative pages.&lt;br /&gt;
:::For the [[Citation needed]], perhaps the editor did not want that page to have a &amp;quot;Pages with Citation Needed&amp;quot; link to it (could have used the more literal &amp;lt;sup&amp;gt;''&amp;lt;nowiki&amp;gt;[Citation needed]&amp;lt;/nowiki&amp;gt;''&amp;lt;/sup&amp;gt;, or similar). Or perhaps they didn't even want the meta-tag appearing in superscript and italics at all. You don't know their mind.&lt;br /&gt;
:::For the [[Padlock]], the (apparent) original author came back and corrected your so-called correction back again. Not reason to be edited, anyway, even if they hadn't been sure what they intended. (I note some minor typos in that explanation. But I wouldn't dive in and make such corrections either, in a Talk namespace page like that.) Trivial, and not your concern anyway. [[Special:Contributions/172.70.86.131|172.70.86.131]] 07:22, 24 September 2024 (UTC)&lt;br /&gt;
::::Duly noted. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:10, 26 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CG acounts ==&lt;br /&gt;
&lt;br /&gt;
Hi 42.&lt;br /&gt;
&lt;br /&gt;
I have now had time to look into the whole CG account situation and have reacted and commented both to them and to the message on my talk page. Thanks for the good work. I will give the CG a week to react. Then I will decide next week what to do about them based on their reactions. You are welcome to let me know if they do something stupid in the mean time and also if you know of more CG accounts than the ones I have been alerted to (as seen in my newest reply.)&lt;br /&gt;
&lt;br /&gt;
I did change your talk page because it was made so it was easy to see what comments where left but hard to find them. And it also hid new edits and I do not think a users talk page should hide what people have written, also not if complaints. Seems you have been editing a bit too much on talk pages... But also that you have learned what not to edit?&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
--[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:48, 29 September 2024 (UTC&lt;br /&gt;
:Great-glad that’s resolved. I changed back the “hidden comments” thing because it doesn’t make it impossible to access again-you just need to scroll down and click “old squabbles”. I have made a habit of moving comments out of it whenever I receive a message-that’s less tedious than having such a long and irrelevant talk page. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:30, 30 September 2024 (UTC)&lt;br /&gt;
:It's apparently that different CGs are in charge of different parts of the wiki. e. g. GonscriptGuide and GonscriptGlossary are for language-related pages. [[Special:Contributions/172.69.194.71|172.69.194.71]] 02:53, 30 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I want to re-raise and join the concern raised by others that the &amp;quot;hidden comments&amp;quot; / &amp;quot;old squabbles&amp;quot; thing is a bad idea, and possibly completely unacceptable. It makes your page hard to navigate and unlike every other Talk page, and generally makes it impossible to find things for anyone not extremely familiar with your particular mechanism, which seems to be unique to you. Even knowing you have an &amp;quot;old squabbles&amp;quot; link to click, I have trouble finding it and get annoyed and frustrated, and that makes me annoyed and frustrated with you, even if I should not be.  I do not think you want people annoyed and frustrated with you. I strongly recommend you remove it. Put your &amp;quot;old squabbles&amp;quot; on an archive page or remove them entirely, but please don't veil them in this fashion. Thank you. [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 21:54, 2 October 2024 (UTC)&lt;br /&gt;
:Hi, personally I don't really give a shit about the &amp;quot;old squabbles&amp;quot; like I see why people are annoyed by it (see one of the converstions in &amp;quot;old squabbles) but I don't really see why its a a big deal. This is what I'd do. If you REALLY don't wanna get rid of it, I would make it bigger, like a heading, and put it were the &amp;quot;old squabbles&amp;quot; used to be. That way if someones looking for it, the link is obvious and is were the origanals used to be. I think that would be a pretty good compromise, but you can take what I've said with a grain of salt as I'm not one of the people whom have a problem with it. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:02, 3 October 2024 (UTC)&lt;br /&gt;
::Alsos just saw your break post, good for you!! :) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 14:07, 3 October 2024 (UTC)&lt;br /&gt;
::[[User talk:42.book.addict/archive|Archived.]] [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:17, 3 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Adding the &amp;quot;please sign&amp;quot;/etc comments. ==&lt;br /&gt;
&lt;br /&gt;
I really {{diff|352542|wasn't suggesting}} that anyone go into every Talk page and 'update' it just with the guide comment. It's the kind of thing I have tried to do if I (think I) have good cause to be editing the page (usually to fix someone's very recent non-signing).&lt;br /&gt;
&lt;br /&gt;
Like I said, it's all just a partial/sticking-plaster solution, and often enough seems not to be read/remembered ''anyway''. The returns on blanket-editing pretty much everything are low, probably not really worth spending your time on. (Something else may 'need' to be done tomorrow, which means loads of premature edits were done that could have waited a bit longer and saved server-resources.) You're eager to help, I know that. You ''might'' be being overeager. Pace youself, perhaps? ;) [[Special:Contributions/141.101.98.23|141.101.98.23]] 18:23, 10 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== didn't your user page originally say she/they? ==&lt;br /&gt;
&lt;br /&gt;
Why did you remove it [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 06:58, 11 October 2024 (UTC)&lt;br /&gt;
:Does it matter? Anyone can say anything and (page history aside) unsay anything. It shouldn't bother you to have been said, ''nor'' to have had it (and anything else) removed.&lt;br /&gt;
:42: Sorry to interject before you do. You can remove ''this'' bit (definitely my reply, if not CC's whole question) if you consider it an issue not worth persisting on your pages. [[Special:Contributions/141.101.99.202|141.101.99.202]] 08:23, 11 October 2024 (UTC)&lt;br /&gt;
:What I put on my user page my choice. I can remove it if I want, I can add things if I want. If you want to know the reason why, please check the editing history of my user page. Thanks, 141.101.99.202. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:20, 11 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==find the secret message C:==&lt;br /&gt;
&amp;lt;!-- Hi there. This is your friendly local IP-only reader/editor who has been watching all edits, and is not surprised at all that you've reached 1000. Not saying that those To Be Deleted taggings, etc, weren't relevent, but probably not all so urgent or important. (And not entirely sure they're all correct, strictly, but it's not my call whether to go with them or not.) There's at least two possibly worrying ends to all this: 1) You burn yourself out, leaving your &amp;quot;great task&amp;quot; of rectifying all wrongness in a fruitlessly incomplete state, with or without continuing life-long pain from your badly healed wrist, or 2) You do it; *everything* is made right, or at least labeled correctly and awaiting others' input to complete, but you're still hungry for more and can't stop and drift into clearly unnecessary (if not actually counterproductive) edits just because you have by now become a compulsive editor shooting for the Moon (or, at least, even further up the edits table) adding and removing (or removing and adding) vaguely ambiguous commas just for the fun of it, or similarly inconsequential acts just to 'chase the dragon' of editing. And all to a barely significant increase in the world's happiness, wealth and/or health. Believe me, I know what it's like to be monomaniacal in such a way. Take a deep breath and consider why this has (seemingly) become your main outlet for either your post-wrist recovery or even your pre-wrist life.  ...and I'm just saying this out of concern, in a way you're welcome (encouraged!) to remove after reading. Just between me, you and anybody else who keeps a close eye on all page edits like this. ;) Much regards, and hopefully being read in the spirit intended. --random IP (imagine the ~~~~ bit working here, ok?) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== I can't edit it, myself, so... ==&lt;br /&gt;
&lt;br /&gt;
In {{diff|352951|this edit}}, you shuffled up a 'demonstration' version of {{template|Citation needed}} into the preceding word, as if it were an actual one rather than a demonstrative one. Actually, I think that the proper change would be to (with a space to both sides) make it &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{template|Citation needed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, like I did just here, but I'll let you decide. [[Special:Contributions/172.70.90.108|172.70.90.108]] 05:42, 16 October 2024 (UTC)&lt;br /&gt;
:Oops. Fixed now. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:02, 16 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== User talk page deletion ==&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
Why do you want to delete my talk page? [https://www.explainxkcd.com/wiki/index.php?title=User_talk:Pere_prlpz&amp;amp;oldid=336267&amp;amp;diff=cur] --[[User:Pere prlpz|Pere prlpz]] ([[User talk:Pere prlpz|talk]]) 22:53, 4 November 2024 (UTC)&lt;br /&gt;
:Hi, sorry. I was looking through [[Special:Contributions/Sqrt-1|Sqrt-1’s contributions]] since they had a habit of creating pages purely to not have a red link. I was looking though their old edits and tagging any unused and unnecessary user/talk pages with Category:Pages to delete. I’ll revert it, if you wish. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 22:57, 4 November 2024 (UTC)&lt;br /&gt;
::Never mind, you’ve already reverted it. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:13, 4 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Create this page ==&lt;br /&gt;
http://esolangs.org/w/index.php?title=User:Vertical_tab_%27N&amp;amp;action=edit&amp;amp;redlink=1&lt;br /&gt;
Please create this page with the following text:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;:''The title of this page is incorrect because of technical limitations.''&lt;br /&gt;
&lt;br /&gt;
'''Vertical tab 'N''' is a programming challenge. The goal is to write a program that prints the three ASCII characters in this order: a vertical tab (U+000B), an apostrophe, and a capital N. It just so happens that the source code in [[AuFI]] is the stage name of a well-known contemporary musician in China. The source code in [[PTotE]] also is one of the former stage names of the musician.&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
&lt;br /&gt;
== External resources ==&lt;br /&gt;
[[Category:Program forms]]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also create this page http://esolangs.org/wiki/79_9_53&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;'''79 9 53''' is similar to [[AuFI]] except that it uses atomic numbers instead of element symbols.&lt;br /&gt;
&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Output only]]&lt;br /&gt;
[[Category:Unusable for programming]]&lt;br /&gt;
[[Category:Unimplemented]]&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2639:_Periodic_Table_Changes&amp;diff=358151</id>
		<title>2639: Periodic Table Changes</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2639:_Periodic_Table_Changes&amp;diff=358151"/>
				<updated>2024-11-29T07:58:09Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: All are rare earth metals.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2639&lt;br /&gt;
| date      = June 29, 2022&lt;br /&gt;
| title     = Periodic Table Changes&lt;br /&gt;
| image     = periodic_table_changes.png&lt;br /&gt;
| titletext = It's nice how the end of the periodic table is flush with the edge these days, so I think we should agree no one should find any new elements after #118 unless they discover a whole row at once.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The {{w|periodic table}} is a table used to arrange {{w|chemical elements}} according to their chemical and physical properties. This comic proposes &amp;quot;changes&amp;quot; to the periodic table that would be more pleasant aesthetically or make the periodic table look more regular. Some of these are (somewhat) practical changes to element abbreviations that could improve clarity in English, though changing documents to use different abbreviations would probably be more trouble than it's worth. However, other changes move elements around without considering that elements would stop being arranged by their properties. The periodic table would stop being useful after such changes unless said changes were meant to physically change the material properties of the elements, which would be impossible, although the comic plans to solve the problem with &amp;quot;free training&amp;quot; to their atomic behavior.&lt;br /&gt;
&lt;br /&gt;
Other modifications make up new elements or remove existing ones from the table, which would not be a reasonable decision given that the periodic table is supposed to include all existing elements, whether they make the table neater or they don't. See explanation for the proposed changes in the [[#Table of the proposed changes|table]] below.&lt;br /&gt;
&lt;br /&gt;
The title text suggests discovering elements only in entire rows at once, a suggestion which is far more unreasonable than it appears on its surface. Elements with more protons than 118 could be discovered in future by collisions in particle accelerators, but as of right now, the chances of finding or synthesizing samples of such elements lasting longer than 10 quadrillionths (10&amp;lt;sup&amp;gt;−14&amp;lt;/sup&amp;gt;) of a second is looking rather grim. Furthermore, the theoretical 8th period is expected to contain 50, more than any row in the current 7-period table. Taking this all into account, discovering an entire row's worth of elements all at once is nothing short of a herculean undertaking, and its difficulty only grows in orders of magnitude for each successive row. With all that said, however, elements beyond 118 are unlikely to have practical applications in science and engineering due to their vanishingly short lifespan and may probably only ever serve as intellectual curiosities. Thus, refraining from updating the periodic table prior to the discovery of the entire 8th period is not a terrible sacrifice to make in the name of preserving the table's visual aesthetics (provided data of new elements are recorded and catalogued in other ways).&lt;br /&gt;
&lt;br /&gt;
This is another [[:Category:Comics with red annotations|comic containing red annotations]] over a complex and established structure. It suggests changing the periodic table, which was also discussed in [[2214: Chemistry Nobel]].&lt;br /&gt;
&lt;br /&gt;
===Table of the proposed changes===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Proposed change !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
|Move helium over here. It fits so nicely!||Helium is moved from the upper right corner to the second column next to hydrogen.  However, the reason it is placed at the far-right Group 18 and not Group 2 is because it is a {{w|noble gas}}, rather than a reactive {{w|alkaline earth metal}}. You could say helium is in group 2 because it has two electrons in its outer shell, but normal periodic tables place it in group 18, the noble gases, with which it has far more in common. Hydrogen has similar problems being in group 1, as it's a non-metal and the elements below it are metals which don't have much in common with it chemically. There are periodic tables that show hydrogen floating above the periodic table for that reason.&lt;br /&gt;
&lt;br /&gt;
Group 18 was not known at the time of the original table, which used I-VII (1-7) for the otherwise full-height columns, which turns out to reflect the number of free ('valence') electrons in their outer 'orbit', in one useful understanding of the atomic model. When added, the new final column was called either VIII (having a full outer shell) or Group 0 (having none free) and placed to the right of VII. It was originally thought that these so-called &amp;quot;noble gases&amp;quot; (no relation to Alfred Nobel of explosives and science prize fame{{fact}}) were unable to react with other elements. However, xenon compounds were discovered in 1962, and many other {{w|noble gas compounds}} have been discovered since then under a variety of conditions.&lt;br /&gt;
&lt;br /&gt;
From the fourth row downwards the inserted block of Transition Metals represent a larger electron shell with more positions for free electrons and those elements to the right would have more electrons than those above them, by this measure, but their physical properties are still best dictated and aligned by the complement to the valence (i.e. the gap-size). The current numbering system shows the outer-shell electrons accurately in the rows where the ten new columns are, but the upper rows of columns 13-18 have ten more (or sixteen more, for Helium) than is the case. Similarly, once lanthanides and actinides are considered, the group number and outer-shell count becomes disconnected again in the opposite way. But it still seems useful enough to currently label in this manner under current {{w|IUPAC}} guidance.&lt;br /&gt;
|-&lt;br /&gt;
|Elements in this corner are cool. Add more!|| TBD (to be determined). Elements in that corner, such as carbon, oxygen, phosphorous, and nitrogen, participate in covalent bonding and are the primary elements involved in biochemical reactions, which may be why they are considered cooler than other elements. &lt;br /&gt;
|-&lt;br /&gt;
|Sp (Spite element)||Wedged between fluorine and neon. This is a reference to spite houses, houses jammed into a narrow space to block other construction, or spite fences, which are fences built to annoy neighbors. However, such an element would have an atomic number greater than fluorine's (9) but less than neon's (10).&lt;br /&gt;
|-&lt;br /&gt;
|Merge these boring metals with titanium to make *tixanium*||Tixanium (Tx) replaces five metals, including titanium (Ti).&lt;br /&gt;
&lt;br /&gt;
While titanium certainly has an impressive name, and is used in the aerospace industry and other high-performance applications, the others are hardly boring; manganese, for example, was part of the cover story for the top-secret {{w|Project Azorian}}.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Update Latin/Neo-Latin symbols to match names. This isn't ancient Rome.&lt;br /&gt;
* Sodium: Na (Natrium) =&amp;gt; So&lt;br /&gt;
* Potassium: K (Kalium) =&amp;gt; Pm&lt;br /&gt;
* Iron: Fe (Ferrum) =&amp;gt; I&lt;br /&gt;
* Silver: Ag (Argentum) =&amp;gt; Sv&lt;br /&gt;
* Gold: Au (Aurum) =&amp;gt; Gd&lt;br /&gt;
* Tin: Sn (Stannum) =&amp;gt; Tn&lt;br /&gt;
* Lead: Pb (Plumbum) =&amp;gt; Ld&lt;br /&gt;
|Since I is already used for Iodine, it gets a new abbreviation Io, and Gadolinium is re-abbreviated to Gm to free up Gd.&lt;br /&gt;
&lt;br /&gt;
Note that most of these changes will actually make the table less readable if one considers languages other than English. For example, in European languages, 'I' for iron will work for Irish (Iarann) (but not for Dutch, as 'ijzer' doesn't really start with 'i' but with 'ij'. It would be capitalized, e.g. at the start of a sentence, as 'IJzer'.)  and also Tamil (இரும்பு [irumpu]), while 'Fe' currently matches in French, Italian, Portuguese, and most of the languages in Spain. Similarly, Natrium is still used in most Germanic languages.&lt;br /&gt;
&lt;br /&gt;
This group of changes doesn't include antimony (Sb -- stibium), but that’s because it gets replaced by “carbon III” (see below). Nor is copper changed from its &amp;quot;Cu&amp;quot; for &amp;quot;cuprum&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|Replace the blander post-transition metals with new kinds of carbon||&lt;br /&gt;
* Indium (In) -&amp;gt; C II.&lt;br /&gt;
* Antimony (Sb) -&amp;gt; C III.&lt;br /&gt;
* Tellurium (Te) -&amp;gt; C IV.&lt;br /&gt;
* Thallium (Tl) -&amp;gt; C V.&lt;br /&gt;
* Bismuth (Bi) -&amp;gt; C VI.&lt;br /&gt;
Carbon can make four covalent bonds, which means it can form a huge range of chemicals, above all ones vital to life. The post-transition metals don't have this level of interest. If there were more elements like carbon, it could allow more exciting chemistry and perhaps new kinds of life. &lt;br /&gt;
|-&lt;br /&gt;
|That W annoys me|| Tungsten: W (Wolfram) -&amp;gt; Tg.&lt;br /&gt;
&lt;br /&gt;
Another element whose symbol doesn't match its English name. &amp;quot;Wolfram&amp;quot; is the name for tungsten in some languages and is derived from the mineral wolframite, which comes from the name &amp;quot;wolf rām&amp;quot; in Middle High German (wolf soot). &lt;br /&gt;
&lt;br /&gt;
Tungsten (lit. &amp;quot;Heavy stone&amp;quot;) is a Swedish word, yet &amp;quot;Wolfram&amp;quot; is used in Swedish for the metal.&lt;br /&gt;
&lt;br /&gt;
Oddly, despite changing Latin and German abbreviations to English, Randall does not change the symbol for mercury (Hg from the Greek &amp;quot;hydrargyrum&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|3.4% of all elements are named after Ytterby, Sweden (pop. 3,000). Let's keep Yttrium, but rename the other 3 after bigger cities (Tokyium, Delhium, and Jakartium?) to be more fair.&lt;br /&gt;
|Four elements -- yttrium (Y), ytterbium (Yb), terbium (Tb) and erbium (Er) -- are named after {{w|Ytterby}}, a Swedish village where they were discovered. (Even worse, all are rare earth metals.) Four of the other rare earth metals, Scandium (Sc), thulium (Tm), holmium (Ho) and gadolinium (Gd) were isolated from minerals found in the same quarry. Randall suggests naming 3 of them after some other major world cities, despite those cities having no connection to those elements. &lt;br /&gt;
* Terbium (Tb) -&amp;gt; Tokyium (Ty) - Tokyo&lt;br /&gt;
* Erbium (Er) -&amp;gt; Delhium (Dh) - Delhi&lt;br /&gt;
* Ytterbium (Yb) -&amp;gt; Jakartium (Jk) - Jakarta&lt;br /&gt;
Randall may be using using 2010 census data (2946); Ytterby mine is located on the island of Resarö, found under 0187TB103 in table [https://www.scb.se/en/finding-statistics/statistics-by-subject-area/environment/land-use/localities-and-urban-areas/pong/tables-and-graphs/localities-2020-population-land-area-population-density-per-locality/ MI0810], population 3212 (2020 census).&lt;br /&gt;
&lt;br /&gt;
Interestingly, {{w|Isaac Asimov}} made essentially the same remark in his science essay ''The Multiplying Elements'', saying that it was a waste of element names that could have been used to honor great contributors to chemistry. One obvious candidate would be {{w|Henry Moseley}} (mentioned in another of Asimov's essays, ''The Nobel Prize That Wasn't'') who used early X-ray spectroscopy to resolve the confusion over rare earth elements, finally put the Periodic Table on a firm ground and conceived the idea of &amp;quot;Atomic Number&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|Inserting the lanthanides and actinides properly makes the table too wide. Triage is needed. Each element will be offered free training to help adjust to its new column.||Though the lanthanides and actinides typically are placed underneath the bottom of the table, they actually belong in the 6th and 7th rows of the table between the 2nd and 3rd columns, as they are numbered elements 57-70 and 89-102. This section of the table is typically excised to give the overall shape more appealing dimensions; including this section in the main table [https://sciencenotes.org/wp-content/uploads/2017/01/PeriodicTableExtended.png extends the length dramatically]. This proves rather unwieldy especially when referencing the table for the lower-numbered elements, which are generally more common, and/or elements far to the sides of the table, which are often more influential in chemical reactions. Randall recommends that a subset of these elements be placed in a new row at the bottom of the table (making them elements 93-110) and they will receive &amp;quot;training&amp;quot; to adjust to their new columns. &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Changes I would make to the periodic table&lt;br /&gt;
:[A modified periodic table is shown, with changes in red.]&lt;br /&gt;
&lt;br /&gt;
:[Helium is moved from the upper right corner to the second column next to hydrogen.]&lt;br /&gt;
:Move helium over here. It fits nicely!&lt;br /&gt;
:[Two elements labeled TBD are added to the left of boron and aluminium.]&lt;br /&gt;
:Elements in this corner are cool. Add more!&lt;br /&gt;
:[A narrow triangular shape is wedged between fluorine and neon.]&lt;br /&gt;
:Sp (Spite element)&lt;br /&gt;
:[Tx replaces five elements: scandium, titanium, vanadium, chromium and manganese.]&lt;br /&gt;
:Merge these boring metals with titanium to make *tixanium*&lt;br /&gt;
:[The symbols of sodium (Na), potassium (K), iron (Fe), silver (Ag), gold (Au), tin (Sn) and lead (Pb) are changed to use letters from their English names (So, Pm, I, Sv, Gd, Tn and Ld respectively).]&lt;br /&gt;
:Update Latin/Neo-Latin symbols to match names. This isn't ancient Rome.&lt;br /&gt;
:[The symbols of indium, antimony, tellurium, thallium and bismuth are changed to symbols containing the letter C followed by Roman numerals II to VI, respectively.]&lt;br /&gt;
:Replace the blander post-transition metals with new kinds of carbon&lt;br /&gt;
:[The symbol of tungsten is changed from W to Tg.]&lt;br /&gt;
:That W annoys me&lt;br /&gt;
:[Neodymium, in the lanthanides/actinides block, is independantly highlighted, with an arrow and new outline suggesting it is to be moved directly below the Nickel column of the main table.]&lt;br /&gt;
:Neodymium can stay—magnets are cool&lt;br /&gt;
:[Arrows and outlines indicating that parts of the other lanthanide and actinide rows are also to be placed under the bottom of the main table, to make this a new and complete single row. Those not included, and not otherwise obscured by floating text, are scribbled over.]&lt;br /&gt;
:Move&lt;br /&gt;
:Inserting the lanthanides and actinides properly makes the table too wide. Triage is needed. Each element will be offered free training to help adjust to its new column.&lt;br /&gt;
:[The symbols of terbium, erbium and ytterbium, all part of the prior move, are changed to Ty, Dh and Jk, respectively.]&lt;br /&gt;
:3.4% of all elements are named after Ytterby, Sweden (pop. 3,000). Let's keep yttrium, but rename the other 3 after bigger cities (tokyium, delhium, and jakartium?) to be more fair.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Chemistry]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Comics with red annotations]]&lt;br /&gt;
[[Category:Periodic table]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2043:_Boathouses_and_Houseboats&amp;diff=358150</id>
		<title>2043: Boathouses and Houseboats</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2043:_Boathouses_and_Houseboats&amp;diff=358150"/>
				<updated>2024-11-29T07:46:11Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Fixed redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2043&lt;br /&gt;
| date      = September 7, 2018&lt;br /&gt;
| title     = Boathouses and Houseboats&lt;br /&gt;
| image     = boathouses_and_houseboats.png&lt;br /&gt;
| titletext = The &amp;lt;x&amp;gt; that is held by &amp;lt;y&amp;gt; is also a &amp;lt;y&amp;gt;&amp;lt;x&amp;gt;, so if you go to a food truck, the stuff you buy is truck food. A phone that's in your car is a carphone, and a car equipped with a phone is a phonecar. When you play a mobile racing game, you're in your phonecar using your carphone to drive a different phonecar. I'm still not sure about bananaphones.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Most English {{w|English compound|compound nouns}} can be constructed recursively. In many cases they are written ''open'' or ''spaced'' like &amp;quot;piano player&amp;quot; (a player of a piano) or &amp;quot;player piano&amp;quot;. But ''closed'' forms like &amp;quot;wallpaper&amp;quot; (paper for a wall) are not less common. The German language has much more compound words: The word for &amp;quot;hospital&amp;quot; literally means &amp;quot;patient's house&amp;quot;. The word for &amp;quot;house trailer&amp;quot; in Swedish literally means &amp;quot;house car&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Randall]] is engaging in creative linguistics again. This time he is humorously suggesting to use a consistent naming scheme for things holding other things, the same way we call a boat holding a house a houseboat. He is extending this to all combinations boats, houses and cars. This would, however, be somewhat impractical, as these names do not include why one thing is on an other, and are also sometimes ambiguous: a carcar can be a tow truck as much as a car carrier, and a househouse can be either an apartment (house in a house) or an apartment building (house containing houses).&lt;br /&gt;
&lt;br /&gt;
Additionally, he is somewhat inconsistent in some parts of the chart. While the chart is supposed to show examples of neologistic compound words &amp;lt;x&amp;gt;&amp;lt;y&amp;gt; that refer to a &amp;lt;y&amp;gt; that ''holds'' an &amp;lt;x&amp;gt;, rather than a &amp;lt;y&amp;gt; ''in'' an &amp;lt;x&amp;gt;. However, Randall's examples sometimes are those of the latter example. He proposes to call lifeboats, which are boats held by other boats, &amp;quot;boatboat&amp;quot;, instead of using that to refer to boats holding other boats, such as floating drydocks. Additionally, it is established naval practice to refer to a boat which is carried by another vessel as a &amp;quot;ship's boat&amp;quot;, and call any vessel that carries a boat a &amp;quot;ship&amp;quot;. In other words, according to usual naval terminology, a &amp;quot;boatboat&amp;quot; is a contradiction in terms; it is either a &amp;quot;boatship&amp;quot;, synonymous with ship and hence redundant, or a &amp;quot;shipboat&amp;quot;, the ship's boat. &amp;quot;Apartment&amp;quot; is a similar case: an apartment is a house in a house, while a house that holds a house is an apartment building or apartment complex. (However, in the title text, Randall points out an &amp;lt;x&amp;gt;&amp;lt;y&amp;gt; could also refer to a &amp;lt;y&amp;gt; in an &amp;lt;x&amp;gt;, similar to the lifeboat and apartment examples. Nevertheless, &amp;quot;lifeboat&amp;quot; and &amp;quot;apartment&amp;quot; do not fit with the rest of the items of the chart and disobey the rule annotated in the corner.)&lt;br /&gt;
&lt;br /&gt;
In the title text: &amp;quot;Truck food&amp;quot; is in some areas a common term for the meals offered by &amp;quot;{{w|Food truck|food trucks&amp;quot;}}. {{w|Car phone}}s were a feature in automobiles throughout the late 1960s, 1970s and 1980s, serving as the predecessors to mobile phones, although they were permanently installed into a car and not removable. ''{{w|Bananaphone}}'', a song by Raffi Cavoukian, is also mentioned. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Real term&lt;br /&gt;
! Actual definition&lt;br /&gt;
! Randall's definition&lt;br /&gt;
! Inaccuracies in Randall's definition&lt;br /&gt;
! Randall's term&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Tow truck}}&lt;br /&gt;
| A truck that pulls or carries cars&lt;br /&gt;
| A Car that holds a Car&lt;br /&gt;
| Definitions are flexible. Tow trucks and cars are both automobiles, but &amp;quot;car&amp;quot; usually means an automobile dedicated to passengers, while &amp;quot;truck&amp;quot; is intended for hauling cargo (in the tow truck's case, other automobiles).&lt;br /&gt;
| Carcar&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Garage (residential)|Garage}}&lt;br /&gt;
| A building for storing or repairing vehicles&lt;br /&gt;
| A House that holds a Car&lt;br /&gt;
| “Carhouse” actually does have Randall’s definition, but is far less popular than “garage.”  It’s in the Oxford English Dictionary (using the spelling “car house”) and is used in To Kill a Mockingbird.  &lt;br /&gt;
| Carhouse&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Roll-on/roll-off|Car ferry}}&lt;br /&gt;
| A boat that carries cars, especially across a river&lt;br /&gt;
| A Boat that holds a Car&lt;br /&gt;
| Most car ferries hold more than one car at a time&lt;br /&gt;
| Carboat&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Mobile home}}&lt;br /&gt;
| A home that can be moved by a truck&lt;br /&gt;
| A Car that holds a House&lt;br /&gt;
| The term &amp;quot;mobile home&amp;quot; refers to the home that is moved by a separate vehicle, not to the vehicle that moves it.  (If the home is self-propelled, then it is called an RV (recreational vehicle).) The phrase &amp;quot;House trailer&amp;quot; is also used.&lt;br /&gt;
| Housecar&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Apartment}}&lt;br /&gt;
| A home within a building that has been divided into separate living units&lt;br /&gt;
| A House that holds a House&lt;br /&gt;
| The &amp;quot;apartment&amp;quot; is the individual home within the larger building, which is called an apartment building, possibly an apartment complex, but that usually refers to several apartment buildings on one property managed from the same office.&lt;br /&gt;
| Househouse&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Houseboat}}&lt;br /&gt;
| A boat that is used as a house&lt;br /&gt;
| A Boat that holds a House&lt;br /&gt;
| A houseboat has a home that is part of the boat; it is not a separate home carried on a boat.  However, a mobile home theoretically could be carried on a car ferry or a ship.&lt;br /&gt;
| Houseboat&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Boat trailer}}&lt;br /&gt;
| A carrier that is towed behind a car or truck and holds a small boat&lt;br /&gt;
| A Car that holds a Boat&lt;br /&gt;
| The trailer is not the car; it is towed by the car.&lt;br /&gt;
| Boatcar&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Boathouse}}&lt;br /&gt;
| A building for storing a boat&lt;br /&gt;
| A House that holds a Boat&lt;br /&gt;
| The word &amp;quot;house&amp;quot; typically refers to a residential building, but can refer to other buildings&lt;br /&gt;
| Boathouse&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Lifeboat (shipboard)|Lifeboat}}&lt;br /&gt;
| A small boat carried on a ship, meant to be used to evacuate the larger ship, especially if it starts to sink or catches fire&lt;br /&gt;
| A Boat that holds a Boat&lt;br /&gt;
| This breaks Randall's definition: the lifeboat is not the &amp;quot;boatboat&amp;quot; because the lifeboat is the one being carried. And in technical terms the larger vessel is usually a ship, not a boat.&lt;br /&gt;
| Boatboat&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A chart with three rows and three columns is shown, both with the same heading &amp;quot;car&amp;quot;, &amp;quot;house&amp;quot;, and &amp;quot;boat&amp;quot;. On the top left a text with the word &amp;quot;this&amp;quot; two times embedded in a bubble and an arrow respectively pointing to the row and column heading reads:]&lt;br /&gt;
:A '''this''' that holds '''this'''&lt;br /&gt;
&lt;br /&gt;
:[Most entries have the common word in black, but crossed out in red with another word below also in red. Two entries remain in green.]&lt;br /&gt;
:A Car that holds a Car: &amp;lt;s&amp;gt;Tow truck&amp;lt;/s&amp;gt; Carcar&lt;br /&gt;
:A House that holds a Car: &amp;lt;s&amp;gt;Garage&amp;lt;/s&amp;gt; Carhouse&lt;br /&gt;
:A Boat that holds a Car: &amp;lt;s&amp;gt;Car ferry&amp;lt;/s&amp;gt; Carboat&lt;br /&gt;
:A Car that holds a House: &amp;lt;s&amp;gt;Mobile home&amp;lt;/s&amp;gt; Housecar&lt;br /&gt;
:A House that holds a House: &amp;lt;s&amp;gt;Apartment&amp;lt;/s&amp;gt; Househouse&lt;br /&gt;
:A Boat that holds a House: Houseboat (green text)&lt;br /&gt;
:A Car that holds a Boat: &amp;lt;s&amp;gt;Boat trailer&amp;lt;/s&amp;gt; Boatcar&lt;br /&gt;
:A House that holds a Boat: Boathouse (green text)&lt;br /&gt;
:A Boat that holds a Boat: &amp;lt;s&amp;gt;Lifeboat&amp;lt;/s&amp;gt; Boatboat&lt;br /&gt;
&lt;br /&gt;
:[Caption below the frame:]&lt;br /&gt;
:I really like the words for &amp;quot;boathouse&amp;quot; and &amp;quot;houseboat&amp;quot; and think we should apply that scheme more consistently.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
The first version of the comic image used a different wording to indicate which word held the other. The column word holds the row. The original wording can be seen [https://www.explainxkcd.com/wiki/images/archive/3/38/20180907164439%21boathouses_and_houseboats.png here].&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Comics with red annotations]]&lt;br /&gt;
[[Category:Charts]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Confusion matrices]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2043:_Boathouses_and_Houseboats&amp;diff=358149</id>
		<title>2043: Boathouses and Houseboats</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2043:_Boathouses_and_Houseboats&amp;diff=358149"/>
				<updated>2024-11-29T07:44:40Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: I don't speak Dutch&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2043&lt;br /&gt;
| date      = September 7, 2018&lt;br /&gt;
| title     = Boathouses and Houseboats&lt;br /&gt;
| image     = boathouses_and_houseboats.png&lt;br /&gt;
| titletext = The &amp;lt;x&amp;gt; that is held by &amp;lt;y&amp;gt; is also a &amp;lt;y&amp;gt;&amp;lt;x&amp;gt;, so if you go to a food truck, the stuff you buy is truck food. A phone that's in your car is a carphone, and a car equipped with a phone is a phonecar. When you play a mobile racing game, you're in your phonecar using your carphone to drive a different phonecar. I'm still not sure about bananaphones.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Most English {{w|English compound|compound nouns}} can be constructed recursively. In many cases they are written ''open'' or ''spaced'' like &amp;quot;piano player&amp;quot; (a player of a piano) or &amp;quot;player piano&amp;quot;. But ''closed'' forms like &amp;quot;wallpaper&amp;quot; (paper for a wall) are not less common. The German language has much more compound words: The word for &amp;quot;hospital&amp;quot; literally means &amp;quot;patient's house&amp;quot;. The word for &amp;quot;house trailer&amp;quot; in Swedish literally means &amp;quot;house car&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Randall]] is engaging in creative linguistics again. This time he is humorously suggesting to use a consistent naming scheme for things holding other things, the same way we call a boat holding a house a houseboat. He is extending this to all combinations boats, houses and cars. This would, however, be somewhat impractical, as these names do not include why one thing is on an other, and are also sometimes ambiguous: a carcar can be a tow truck as much as a car carrier, and a househouse can be either an apartment (house in a house) or an apartment building (house containing houses).&lt;br /&gt;
&lt;br /&gt;
Additionally, he is somewhat inconsistent in some parts of the chart. While the chart is supposed to show examples of neologistic compound words &amp;lt;x&amp;gt;&amp;lt;y&amp;gt; that refer to a &amp;lt;y&amp;gt; that ''holds'' an &amp;lt;x&amp;gt;, rather than a &amp;lt;y&amp;gt; ''in'' an &amp;lt;x&amp;gt;. However, Randall's examples sometimes are those of the latter example. He proposes to call lifeboats, which are boats held by other boats, &amp;quot;boatboat&amp;quot;, instead of using that to refer to boats holding other boats, such as floating drydocks. Additionally, it is established naval practice to refer to a boat which is carried by another vessel as a &amp;quot;ship's boat&amp;quot;, and call any vessel that carries a boat a &amp;quot;ship&amp;quot;. In other words, according to usual naval terminology, a &amp;quot;boatboat&amp;quot; is a contradiction in terms; it is either a &amp;quot;boatship&amp;quot;, synonymous with ship and hence redundant, or a &amp;quot;shipboat&amp;quot;, the ship's boat. &amp;quot;Apartment&amp;quot; is a similar case: an apartment is a house in a house, while a house that holds a house is an apartment building or apartment complex. (However, in the title text, Randall points out an &amp;lt;x&amp;gt;&amp;lt;y&amp;gt; could also refer to a &amp;lt;y&amp;gt; in an &amp;lt;x&amp;gt;, similar to the lifeboat and apartment examples. Nevertheless, &amp;quot;lifeboat&amp;quot; and &amp;quot;apartment&amp;quot; do not fit with the rest of the items of the chart and disobey the rule annotated in the corner.)&lt;br /&gt;
&lt;br /&gt;
In the title text: &amp;quot;Truck food&amp;quot; is in some areas a common term for the meals offered by &amp;quot;{{w|Food truck|food trucks&amp;quot;}}. {{w|Car phone}}s were a feature in automobiles throughout the late 1960s, 1970s and 1980s, serving as the predecessors to mobile phones, although they were permanently installed into a car and not removable. ''{{w|Bananaphone}}'', a song by Raffi Cavoukian, is also mentioned. &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Real term&lt;br /&gt;
! Actual definition&lt;br /&gt;
! Randall's definition&lt;br /&gt;
! Inaccuracies in Randall's definition&lt;br /&gt;
! Randall's term&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Tow truck}}&lt;br /&gt;
| A truck that pulls or carries cars&lt;br /&gt;
| A Car that holds a Car&lt;br /&gt;
| Definitions are flexible. Tow trucks and cars are both automobiles, but &amp;quot;car&amp;quot; usually means an automobile dedicated to passengers, while &amp;quot;truck&amp;quot; is intended for hauling cargo (in the tow truck's case, other automobiles).&lt;br /&gt;
| Carcar&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Garage (residential)|Garage}}&lt;br /&gt;
| A building for storing or repairing vehicles&lt;br /&gt;
| A House that holds a Car&lt;br /&gt;
| “Carhouse” actually does have Randall’s definition, but is far less popular than “garage.”  It’s in the Oxford English Dictionary (using the spelling “car house”) and is used in To Kill a Mockingbird.  &lt;br /&gt;
| Carhouse&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Roll-on/roll-off|Car ferry}}&lt;br /&gt;
| A boat that carries cars, especially across a river&lt;br /&gt;
| A Boat that holds a Car&lt;br /&gt;
| Most car ferries hold more than one car at a time&lt;br /&gt;
| Carboat&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Mobile home}}&lt;br /&gt;
| A home that can be moved by a truck&lt;br /&gt;
| A Car that holds a House&lt;br /&gt;
| The term &amp;quot;mobile home&amp;quot; refers to the home that is moved by a separate vehicle, not to the vehicle that moves it.  (If the home is self-propelled, then it is called an RV (recreational vehicle).) The phrase &amp;quot;House trailer&amp;quot; is also used.&lt;br /&gt;
| Housecar&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Apartment}}&lt;br /&gt;
| A home within a building that has been divided into separate living units&lt;br /&gt;
| A House that holds a House&lt;br /&gt;
| The &amp;quot;apartment&amp;quot; is the individual home within the larger building, which is called an apartment building, possibly an apartment complex, but that usually refers to several apartment buildings on one property managed from the same office.&lt;br /&gt;
| Househouse&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Houseboat}}&lt;br /&gt;
| A boat that is used as a house&lt;br /&gt;
| A Boat that holds a House&lt;br /&gt;
| A houseboat has a home that is part of the boat; it is not a separate home carried on a boat.  However, a mobile home theoretically could be carried on a car ferry or a ship.&lt;br /&gt;
| Houseboat&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Boat trailer}}&lt;br /&gt;
| A carrier that is towed behind a car or truck and holds a small boat&lt;br /&gt;
| A Car that holds a Boat&lt;br /&gt;
| The trailer is not the car; it is towed by the car.&lt;br /&gt;
| Boatcar&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Boathouse}}&lt;br /&gt;
| A building for storing a boat&lt;br /&gt;
| A House that holds a Boat&lt;br /&gt;
| The word &amp;quot;house&amp;quot; typically refers to a residential building, but can refer to other buildings&lt;br /&gt;
| Boathouse&lt;br /&gt;
|-&lt;br /&gt;
| {{w|Lifeboat (shipboard)|Lifeboat}}&lt;br /&gt;
| A small boat carried on a ship, meant to be used to evacuate the larger ship, especially if it starts to sink or catches fire&lt;br /&gt;
| A Boat that holds a Boat&lt;br /&gt;
| This breaks Randall's definition: the lifeboat is not the &amp;quot;boatboat&amp;quot; because the lifeboat is the one being carried. And in technical terms the larger vessel is usually a ship, not a boat.&lt;br /&gt;
| Boatboat&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A chart with three rows and three columns is shown, both with the same heading &amp;quot;car&amp;quot;, &amp;quot;house&amp;quot;, and &amp;quot;boat&amp;quot;. On the top left a text with the word &amp;quot;this&amp;quot; two times embedded in a bubble and an arrow respectively pointing to the row and column heading reads:]&lt;br /&gt;
:A '''this''' that holds '''this'''&lt;br /&gt;
&lt;br /&gt;
:[Most entries have the common word in black, but crossed out in red with another word below also in red. Two entries remain in green.]&lt;br /&gt;
:A Car that holds a Car: &amp;lt;s&amp;gt;Tow truck&amp;lt;/s&amp;gt; Carcar&lt;br /&gt;
:A House that holds a Car: &amp;lt;s&amp;gt;Garage&amp;lt;/s&amp;gt; Carhouse&lt;br /&gt;
:A Boat that holds a Car: &amp;lt;s&amp;gt;Car ferry&amp;lt;/s&amp;gt; Carboat&lt;br /&gt;
:A Car that holds a House: &amp;lt;s&amp;gt;Mobile home&amp;lt;/s&amp;gt; Housecar&lt;br /&gt;
:A House that holds a House: &amp;lt;s&amp;gt;Apartment&amp;lt;/s&amp;gt; Househouse&lt;br /&gt;
:A Boat that holds a House: Houseboat (green text)&lt;br /&gt;
:A Car that holds a Boat: &amp;lt;s&amp;gt;Boat trailer&amp;lt;/s&amp;gt; Boatcar&lt;br /&gt;
:A House that holds a Boat: Boathouse (green text)&lt;br /&gt;
:A Boat that holds a Boat: &amp;lt;s&amp;gt;Lifeboat&amp;lt;/s&amp;gt; Boatboat&lt;br /&gt;
&lt;br /&gt;
:[Caption below the frame:]&lt;br /&gt;
:I really like the words for &amp;quot;boathouse&amp;quot; and &amp;quot;houseboat&amp;quot; and think we should apply that scheme more consistently.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
The first version of the comic image used a different wording to indicate which word held the other. The column word holds the row. The original wording can be seen [https://www.explainxkcd.com/wiki/images/archive/3/38/20180907164439%21boathouses_and_houseboats.png here].&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Comics with red corrections]]&lt;br /&gt;
[[Category:Charts]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Confusion matrices]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Technical&amp;diff=358147</id>
		<title>explain xkcd:Community portal/Technical</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Technical&amp;diff=358147"/>
				<updated>2024-11-29T06:38:00Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;__NEWSECTIONLINK__&lt;br /&gt;
{{Community links}}&lt;br /&gt;
&lt;br /&gt;
{|-&lt;br /&gt;
|valign=&amp;quot;top&amp;quot; width=&amp;quot;100%&amp;quot;|[[File:Crystal Clear app package settings blue.png|left|120px]] &amp;lt;big&amp;gt;&amp;lt;big&amp;gt;&amp;lt;b&amp;gt;Technical&amp;lt;/b&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt;Technical issues ''about'' the [[explain xkcd]] wiki, including bug reports or MediaWiki extensions requests.&amp;lt;/i&amp;gt; {{AddNewSection|Page=Explain XKCD:Community portal/Technical|Text=&amp;lt;small&amp;gt;(+post)&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|}&lt;br /&gt;
= Discussion Area =&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== We need more maintainers ==&lt;br /&gt;
&lt;br /&gt;
:''I'm moving a thread that Davidy22 started on my talk page. The gist is, we need more people with server-side access (especially mediawiki-savvy ones) so we can properly deal with several issues that have been plaguing the wiki for a while now, most notably spam, but also the image scaling problem, a possible extension for proper comments, clean urls, etc. Below is the original thread, please comment.'' --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:56, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
Could you set the permissions so that all anon users have to pass a captcha to edit? The spam has gotten obscene, and they've stopped posting links, so our current detection mechanisms aren't working anymore. [[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Davidy22|&amp;lt;tt&amp;gt;(talk)&amp;lt;/tt&amp;gt;]] 08:21, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I would love to have the ability to tweak the wiki more thoroughly, but currently Jeff's the only one with server access. To be honest, I am not terribly familiar with server-side mediawiki management, so I haven't asked Jeff for access, but it's clear we can't be dependent on a single person to do all the mediawiki config (and Jeff probably knows even less about mediawiki than I do). Are you by any chance acquainted with server-side mediawiki maintenance? I think we could present a good case for having someone else with access to a dev/prototype instance of this wiki on Jeff's server so we could at least experiment and tell him exactly what needs to be done. Thoughts? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:40, 25 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I agree that we need more people that are empowered to actively fight spam. I think that we ought to promote Davidy22 to administrator also, so that he can delete pages and block spammers/vandals as he notices them rather than letting them pile up until yourself, IronyChef, or myself notice that there's work that needs done.&lt;br /&gt;
&lt;br /&gt;
::What I think we should do is break out rights into more groups than simply administrator and bureaucrat. I think that's too big of a jump, and that there should be some gradiation. I think we should add a moderator (mark pages as patrolled and rollback ability (as much as it's a sledgehammer when you really only need a ball-peen hammer)) position.&lt;br /&gt;
&lt;br /&gt;
::I think we also need a spam fighter position, but that might not be possible to implement. It should be a position that allows the person to delete pages with 1 or 2 edits (page creation, marked as spam, maybe as high as 3 or 4 for the bots that repeat edit certain pages) and block users with 1 or 2 edits. The real problem there is how to grant those super-powerful abilities without allowing them to lose their mind and go crazy and destroy the wiki. Of course, if we don't catch it early enough there's going to be those IPs that manage to get to six edits, and those will have to be squashed by a full admin. We will also need a way of tagging those spam accounts so when a full admin passes by they will also know to ban the IP address after a spam fighter has deleted all the pages it created.&lt;br /&gt;
&lt;br /&gt;
::Finally, we also need a more active bureaucrat so that we don't have to bug Jeff to promote admin's as well as future moderators and/or spam fighters, and recognize bot accounts as bot accounts. We also should find someone knowledgeable to help Jeff (and maybe he has little helpers) to maintain the actual server. I've done some PHP work, but I've never touched anything deep inside a wiki (I like Ruby and Rails much more). This is my first time gaining admin status on a wiki, so I have no idea what the extra dials and levers do/mean. I look up on the MediaWiki manual and Wikipedia help pages things that I think should be possible, and often times pages exist in places about doing these things, but I'm nowhere near being called knowledgeable. After I finish up some IRL work I'm currently tied up in, I intend to set up a VM webserver on my computers and run a mediawiki install so I can learn how to work (and not break) things without putting explain xkcd in jeopardy.&lt;br /&gt;
&lt;br /&gt;
::Another really wordy post from, [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]])  22:01, 29 November 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: From what I know, a moderator user group is possible, but not the spam fighter one. Then again, too many hierarchical levels may be too much for such a small body of regulars. Implementing the moderator group is easy, [[mw:Manual:User rights]] has the details (the &amp;quot;ninja&amp;quot; example and the &amp;quot;list of permissions&amp;quot; section should be enough for putting together the configuration commands to be added to the wiki's LocalSettings.php).&lt;br /&gt;
::: As for bureaucrats, I think it makes sense but it seems to me that Jeff only takes longer to perform changes that affect the server, as they understandably may take longer or be more complex (or break the wiki!). Bureaucrats' only difference from admins is that they can promote/demote other users, and this Jeff has been doing without delay, so perhaps there isn't a need for more bureaucrats at the moment. Please correct me if I'm wrong.&lt;br /&gt;
::: We do need more sysadmins (people with access to the server), though, for sure. This is a little tricky as none of us is comfortable enough to confidently make server changes in a mediawiki install. Jeff, how about putting the wiki in source control and giving two or three people access to it, so that any wrongdoings can be easily reverted? You could setup a git repository in the server and we could fork it locally to our machines, make tests and push the commits to the server repo whenever they're ready. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:20, 5 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: This is good stuff.  I'm down with promoting more admins for spam fighting.  If they screw stuff up we can demote them if necessary.  I really haven't found a spam fighting extension that I think will be the best possible solution.  I'll keep looking as it may be a combination of things. Server access is much more complicated as it is not even my server and it is shared hosting.  I think that would be best to be accessed just by me. --[[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]]) 19:10, 19 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::: Regarding the server, I understand -- your position seems reasonable. In any case, I've been looking for extensions that may help taking some workload out of server actions and make more stuff configurable via the wiki itself. I'll report back if I find something usable.&lt;br /&gt;
::::: On another note, how do you feel about promoting more bureaucrats? I suggest Lcarsos who's been consistently active for the past few months. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 12:47, 4 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Personally I'd kind of like to go and make some changes myself. Come up with a nice short url pattern and set it up. Upgrade the wiki. etc... [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 02:44, 23 March 2013 (UTC)&lt;br /&gt;
:The shorter URL is being looked into, although Mediawiki strongly advises against it. As for upgrades to the wiki, monetary donations towards Jeff so he can buy better bit for the server would be appreciated. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 03:06, 23 March 2013 (UTC)&lt;br /&gt;
::MediaWiki does not advise against it. Half the code currently running short URLs in core was written by me. Same for the new standard for rewrite rules in the new guides. And the tool to automatically generate the config needed to apply short urls to a wiki. Short URLs are '''not''' advised against.&lt;br /&gt;
::We do however strongly advise against installing a wiki in &amp;lt;code&amp;gt;/wiki&amp;lt;/code&amp;gt;. Because you do '''not''' want to create &amp;lt;code&amp;gt;/wiki/$1&amp;lt;/code&amp;gt; style paths while your script path makes scripts look like &amp;lt;code&amp;gt;/wiki/index.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
::In this case my plan would be to move &amp;lt;code&amp;gt;/wiki&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;/w&amp;lt;/code&amp;gt; then come up with some other short url pattern like &amp;lt;code&amp;gt;/e/$1&amp;lt;/code&amp;gt;, some other path, or maybe &amp;lt;code&amp;gt;/$1&amp;lt;/code&amp;gt;.&lt;br /&gt;
::And setup some 301 redirects to redirect from the old urls to the new ones.&lt;br /&gt;
::And upgrading the version of MediaWiki so that it doesn't have security holes doesn't require server replacement. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 07:09, 23 March 2013 (UTC)&lt;br /&gt;
:::Ohwait, software upgrades. Uh. I knew you were talking about that. Yep. Definitely. The wiki recently had issues with running out of hard drive space, so that was all that was on my mind there.&lt;br /&gt;
:::Also, I thought you had been referring to [http://www.mediawiki.org/wiki/Manual:Wiki_in_site_root_directory this]. Whoop. Well, you could leave Jeff a message at his [[user talk:Jeff|talk page]] to get server access. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 08:05, 23 March 2013 (UTC)&lt;br /&gt;
::::I strongly support this. It's been far too long since we decided we'd want the short url scheme (&amp;lt;code&amp;gt;/$1&amp;lt;/code&amp;gt; seems like the best option since it would be simpler/cleaner and allow http://explainxkcd/1234 to point to the correct comic without any extra rewrite rules). While you're at it, I'm sure many would appreciate a look at the current situation with image resizing, which doesn't seem to be working for some reason. Installing [[mw:Extension:Comments|Extension:Comments]] would be awesome, too, as well as [[mw:Extension:Contribution Scores|Extension:Contribution Scores]] ([http://setiquest.org/wiki/index.php/Special:ContributionScores live example]). I'll ask Jeff to take a look at this thread. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 20:07, 23 March 2013 (UTC)&lt;br /&gt;
::::: [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) email me and I'll get you set up with whatever you need. All the suggestions sound good to me. --[[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]]) 00:10, 24 March 2013 (UTC)&lt;br /&gt;
::::: Also, the [[Special:ContributionScores|Contribution Scores]] are up.  I'm not even top 10 all time, I need to step up my game. Comments will take more work as it needs its own database. --[[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]]) 00:10, 24 March 2013 (UTC)&lt;br /&gt;
::::::Awesome! I did some styling changes to make it more interesting :) Let me know what you guys think about it! --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 20:32, 24 March 2013 (UTC)&lt;br /&gt;
:::::::Holy crud, what did you do when the wiki started to have almost double my lifetime score? '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 23:57, 24 March 2013 (UTC)&lt;br /&gt;
::::::::Hahahah :P I'm pretty sure I cheated a little, IIRC there was an image renaming operation for which I used [http://github.com/btongminh/mwclient mwclient] ;) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 03:22, 25 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Sort by numbers in categories ==&lt;br /&gt;
&lt;br /&gt;
I noticed that in [[:Category:Comics]] all comics are sorted correctly by numbers; but not in any subcategory. (I didn't really get the explanation of how it works on the comics page.) How to fix this? -- [[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 10:40, 22 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;The comics template uses a template called num4 that turns the number in the comic number field into a four-digit number. That's then passed as a parameter to the category link, and the comics category page sorts articles by those four-digit numbers instead of their actual names. If we wanted to do the same for other categories, we would have to type them all out as [[Category:Politics|0200]], or whatever the comic number is. I would rather wait for mediawiki to come out with an in-built feature to solve this.&amp;lt;/nowiki&amp;gt; [[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]][[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:28, 22 December 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Is there a reason that the template applies that directly to [[:Category:Comics]] and not as a default sortkey via DEFAULTSORT? &amp;amp;ndash;&amp;amp;nbsp;''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 12:10, 1 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: Good thinking. Using DEFAULTSORT oughta make it work for all categories. I'll give it a try. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 15:37, 1 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Resize ==&lt;br /&gt;
&lt;br /&gt;
I haven't been here (to edit) for a while, but have we still not addressed the bug that doesn't allow image resizing? I know most of us don't have access to that kind of lower-level coding on the site, but I think it's a bit of a notable issue that we can't display comics smaller than their actual size. [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 14:24, 21 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Take it up with [[User:Jeff]], but I suspect that adding your voice to the already insistent roaring that images are broken isn't going to inspire much change. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:08, 23 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incidental Ads ==&lt;br /&gt;
&lt;br /&gt;
as ive noticed i think you should check if someone has embeded some of your links with ads really annoying please fix&lt;br /&gt;
&lt;br /&gt;
--[[User:TheWeatherMan|TheWeatherMan]] ([[User talk:TheWeatherMan|talk]]) 14:00, 23 January 2013 (UTC)TheWeatherMan&lt;br /&gt;
&lt;br /&gt;
:Do you have any specific examples of this? By the way, using punctuation, capitalization, spell check, and complete sentences are more likely to get someone to help you. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:10, 23 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::There is known malware (both adware and viruses) that makes Wikipedia look like it has ads.  This wiki uses the same wiki software, so perhaps that malware affects our site too? &amp;amp;ndash;&amp;amp;nbsp;''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 05:42, 15 February 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==/wiki/==&lt;br /&gt;
Now that explainxkcd redirects straight to the wiki, could we take the /wiki/ out of the url? I'd also like the wiki's edit log to be purged to clean out the history and forget about past spam, but that's probably wishing for too much. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 04:06, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:But seriously, could the /wiki/ go? It'll screw with the spammers for a day or two, at the very least. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:37, 30 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Newbie questions:  Comic dates, previous-and-next-comic buttons==&lt;br /&gt;
Just created the my first page, [[220: Philosophy]], but I could use a little guidance.  How do I find the date that an ''xkcd'' comic was originally posted, and how do I rig up the previous-comic and next-comic arrows on a page?  (Actually, I've noticed several pages that should have the arrows but don't.)  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 11:19, 28 January 2013 (UTC)&lt;br /&gt;
:Those arrows will automagically insert themselves when you make the adjacent comic explanations. There *is* a little backstage magic that needs to be taken care of, but we can do that for you. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:40, 28 January 2013 (UTC)&lt;br /&gt;
** OK.  How about the dates?  [[User:Ekedolphin|Ekedolphin]] ([[User talk:Ekedolphin|talk]]) 11:41, 28 January 2013 (UTC)&lt;br /&gt;
:::Click on &amp;quot;All Comics&amp;quot; in the navbar on left-hand side of the site. The dates are in the form YYYY-MM-DD. '''[[User:Davidy22|&amp;lt;span title=&amp;quot;I want you.&amp;quot;&amp;gt;&amp;lt;u&amp;gt;&amp;lt;font color=&amp;quot;purple&amp;quot; size=&amp;quot;2px&amp;quot;&amp;gt;David&amp;lt;/font&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot; size=&amp;quot;3px&amp;quot;&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;sup&amp;gt;&amp;lt;font color=&amp;quot;indigo&amp;quot; size=&amp;quot;1px&amp;quot;&amp;gt;22&amp;lt;/font&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 11:56, 28 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The comic template checks for the existence of the numerical redirect for the comic before and the comic after. If it finds the page to exist it will display the next/previous button as appropriate. So, by creating the redirects listed on the [[List of all comics]] (third column, only worry about the number and title links) future pages will automatically get the links created. Redirect pages look like &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#REDIRECT [[####: Comic Title]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and that's it ([http://www.explainxkcd.com/wiki/index.php?title=1143&amp;amp;redirect=no here] is a link to the redirect page with redirect disabled so you can look at the source to see what I'm talking about). That's all that needs to exist on the number and title redirects. If you feel up to creating them yourself, feel free, otherwise someone else goes through occasionally and mass adds all the missing redirects. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 17:55, 29 January 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Error message ==&lt;br /&gt;
&lt;br /&gt;
I've been getting this error message a lot the last cup'o days. When trying to access a page; when trying to save changes on a page. Any ideas on why? I'm getting it on both chrome and firefox.&lt;br /&gt;
::Database error&lt;br /&gt;
::A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
::(SQL query hidden) from within function &amp;quot;Revision::insertOn&amp;quot;. Database returned error &amp;quot;1142: INSERT command denied to user ::'dbo423085716'@'74.208.16.155' for :table 'text' (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
–[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 22:54, 18 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Every once in a while I get a SQL error being reported, but usually I can simply F5 and the page comes up. Every once in a while it seems like the server load is just so that somebody gets lucky enough to see the server error out. I don't think there's much we can do about this, other than move the wiki onto a more powerful server. But, there are no ads on this site, there is no revenue model, just a very kind person paying for hosting that keeps this site up. I'm more than willing to overlook a few hiccups for the continuing availability of explain xkcd. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 07:12, 23 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yeah, I get those too, but St. Nerol was talking about something that happened recently with the server running out of hard drive space and throwing SQL errors every time someone tried to make large edits. I had to find Jeff on twitter because I'd get SQL errors when I tried to edit his talk page. He's looking into history deletion plugins, to clear out our vast archives of deleted spam and obsoleted prototype comic templates. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|purple|David}}&amp;lt;font color=green size=3px&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=indigo size=4px&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 08:10, 23 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Install a caching reverse proxy to handle heavy load ==&lt;br /&gt;
&lt;br /&gt;
According to returned headers, this server runs from Apache directly. I would recommend setting up a reverse caching proxy in front of Apache to handle high traffic load (like, e.g. current load). The one I use is nginx (http://nginx.org/) -- admins, drop me an email if you need help setting it up [[User:Fry-kun|Fry-kun]] ([[User talk:Fry-kun|talk]]) 21:38, 26 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The standard software to use is either Squid or Varnish. Nginx is a bit too much of a webserver to be configured in the way MW needs iirc. Although nginx would help with serving the static assets. Unfortunately there will be a need to switch to a proper server first. The site seems to be hosted on shared hosting. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 04:59, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I had gotten burned before with both Squid and Varnish but Nginx had always kept my systems alive. It's extremely lightweight and works great to fix these kinds of problems. But, of course if it's a shared server where you can't use it, it won't help... [[User:Fry-kun|Fry-kun]] ([[User talk:Fry-kun|talk]]) 16:35, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Nginx is a great webserver. It'll serve out static pages much better than Apache. But the issue here isn't the webserver. It's PHP and all the work that the database needs to do on every request. Switching webservers won't get rid of that issue. Using squid/varnish a proper reverse proxying cache will allow complete pages to be cached and served directly to readers bypassing the webserver, php, and the database entirely on some requests. That'll reduce the load the site has to cope with. [[User:Dantman|Dantman]] ([[User talk:Dantman|talk]]) 23:47, 27 March 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== A couple of enwiki features implemented ==&lt;br /&gt;
&lt;br /&gt;
I have &amp;quot;imported&amp;quot; {{tl|disambig}} and the related [[:Category:Disambiguation pages|category]] for the [[Exoplanets‎‎|one page]] it was needed for (to avoid having a page that was uncategorised :-) ).&lt;br /&gt;
&lt;br /&gt;
I have also created {{tl|unsigned ip}} (and converted the one use of {{tl|unsigned}}) and applied it for a handful of existing uses of {{tl|unsigned}}. It hardly matters, but then it's also only three more characters to type for new uses.&lt;br /&gt;
&lt;br /&gt;
Importantly, however, I implore you to consider including the second datestamp parameter when applying either template -- it's actually the more useful information. I know it's a pain to convert times ''back'' to UTC, but, hey, most of you don't have to deal with a half hour timezone :-) [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 16:19, 13 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Urrggh, there's an option to make UTC the default display time. The template oughta be a little more automated, mebbe filling the time in automagically with five tildes if no date field is entered? The time will be a bit off when editors fill in the unsigned templates, but it'll be close enough to the actual value. '''[[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;]] 23:59, 13 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::No, especially while there's existing templates to adjust, where the &amp;quot;default&amp;quot; datestamp would be way out. If someone wants to fix a lot of the existing usage, setting their timezone to UTC is the simplest option. [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 09:14, 14 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== I've removed &amp;quot;add a comment!&amp;quot; from Discussion heading ==&lt;br /&gt;
&lt;br /&gt;
:''This thread has been moved to [[explain xkcd:Community portal/Proposals#I've removed &amp;quot;add a comment!&amp;quot; from Discussion heading|The proposals board]].''&lt;br /&gt;
&lt;br /&gt;
== Need password reset ==&lt;br /&gt;
&lt;br /&gt;
Sorry to bother you all, but I seem to have lost the password to this account and don't have an email set (which requires the password). I'm still logged in thanks to the &amp;quot;remember me&amp;quot; feature but after 30 days I'll lose access. This isn't fixable at the MediaWiki level; someone with access to the server mysql or whatever will need to change something. Is there such a person I can email with? [[User:Splainr|Splainr]] ([[User talk:Splainr|talk]]) 03:05, 15 April 2013 (UTC)&lt;br /&gt;
:I assume your browser isn't remembering it for you? [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 03:08, 15 April 2013 (UTC)&lt;br /&gt;
::Oh wow that was fast. Nope, neither Firefox not OSX keychain access know what it is. [[User:Splainr|Splainr]] ([[User talk:Splainr|talk]]) 15:18, 15 April 2013 (UTC)&lt;br /&gt;
: I'm not sure how to solve that problem, but I know account usurpation has been done for the single-login transition in Wikimedia wikis, so technically it should be doable. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 23:04, 16 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
See [[mw:Manual:Resetting passwords]]. --[[User:Mormegil|Mormegil]] ([[User talk:Mormegil|talk]]) 11:59, 15 May 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Analytics ==&lt;br /&gt;
&lt;br /&gt;
Recently I found out about WikiApiary, an interesting site that collects analytics from mediawiki wikis. I added explain xkcd. Check the stats that have been collected so far: http://wikiapiary.com/wiki/explain_xkcd --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 00:03, 17 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;External&amp;quot; hotlinking enabled to confirm issue with other car.jpg ==&lt;br /&gt;
&lt;br /&gt;
FYI I have [http://www.explainxkcd.com/wiki/index.php?title=MediaWiki:External_image_whitelist&amp;amp;oldid=34582 enabled] &amp;quot;external&amp;quot; hotlinking to this wiki's own images to show [[:File:other car.jpg]] can display correctly. See further notes about that issue [[File talk:other car.jpg|here]]. [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 14:32, 21 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:If the problem is lack of thumbnail generation, it should display correctly even without hotlinking, simply by using the original size, e.g.&lt;br /&gt;
:[[File:other car.jpg]]&lt;br /&gt;
:I'm not sure why it doesn't. In any case, this image hotlinking thing reminded me, would it be a good idea to use the images hosted at XKCD.com and only upload variants to the wiki (e.g. those at [[:Category:Helper comic images]]) and images Randall for some reason deleted from the server (e.g. images with typos)? This would reduce the load on the explainxkcd server and provide a better experience for viewers since xkcd is already optimized for high loads and actually openly provides the image urls for hotlinking. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 15:01, 21 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Seeing as [[User:Daddy]]'s upload has fixed the wiki always attempting to display the thumbnail version (which still don't work), I have disabled the &amp;quot;hotlinking&amp;quot; again.&lt;br /&gt;
&lt;br /&gt;
[[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 11:32, 22 April 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Redirect from explainxkcd.com/1234 ==&lt;br /&gt;
&lt;br /&gt;
It would be really cool if &amp;lt;code&amp;gt;http://www.explainxkcd.com/&amp;lt;number&amp;gt;&amp;lt;/code&amp;gt; redirected to the explain page for that number. That would allow people to get to the correct explanation by simply adding &amp;lt;code&amp;gt;explain&amp;lt;/code&amp;gt; to the comic url.&lt;br /&gt;
&lt;br /&gt;
If you are willing to do this, all you would need to do (assuming you run apache with mod_rewrite enabled) is put the following in &amp;lt;code&amp;gt;.htaccess&amp;lt;/code&amp;gt; in your web root:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
RewriteRule ^(\d+)/?$ /wiki/index.php?title=$1 [R,L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-[[User:Sionide21|Sionide21]] ([[User talk:Sionide21|talk]]) 22:28, 7 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Yeah! I'm waiting for this. But admins seems to be rare here.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:44, 7 June 2013 (UTC)&lt;br /&gt;
::And it seems we both could help...--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:47, 7 June 2013 (UTC)&lt;br /&gt;
:::There are several admins here (in fact, I am, too), but what you are looking for is the sysop, the one with access to the server. Admins can delete/protect/undelete pages and block users etc. [[User:Jeff|Jeff]] is the only one that can change MediaWiki configuration or url rewriting... --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 17:08, 8 June 2013 (UTC)&lt;br /&gt;
::::Thanks for your information, so I will try to talk to [[User:Jeff|Jeff]]. BTW: Can you edit the main page? I still miss a link to the incomplete comics on the top.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 17:52, 8 June 2013 (UTC)&lt;br /&gt;
::::: At the top of the main page, there is a section that says ''&amp;quot;We have collaboratively explained 1189 xkcd comics, and only 33 (3%) remain. Add yours while there's a chance!&amp;quot;''. The word ''remain'' is already linked to the list. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 19:16, 8 June 2013 (UTC)&lt;br /&gt;
::::::I was talking about the 97% comics. There are still many incomplete pages and we have a category here on that.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:36, 8 June 2013 (UTC)&lt;br /&gt;
:::::::Ah, I see. Just did it; everyone: feel free to change the sentence, I'm not a native speaker. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 21:07, 8 June 2013 (UTC)&lt;br /&gt;
::::::::THANKS! I'm also not native English, I'm German. But this wiki is a great challenge to get more practice, even much more as if talking to common English natives.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:27, 8 June 2013 (UTC)&lt;br /&gt;
::::::::: This is something I want to do, so I'm putting this on my page, so I remember to add it to the .htaccess.  I'm not super familiar with the .htaccess rules, can I have this along with the other rules I have in my htaccess file? --[[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]]) 15:17, 22 October 2013 (UTC)&lt;br /&gt;
:::::::::: Yes, that rule will work alongside other rules --[[User:Sionide21|Sionide21]] ([[User talk:Sionide21|talk]]) 19:28, 27 October 2013 (UTC)&lt;br /&gt;
::::::::::: I've fixed this on our new host.  (I actually had the rule in there already, I just had it in the wrong order.) I'd love to promote this feature a bunch.  Any ideas how? --[[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]]) 02:33, 30 October 2013 (UTC)&lt;br /&gt;
:::::::::::: A sitenotice oughta do it. '''[[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;]] 03:43, 30 October 2013 (UTC)&lt;br /&gt;
:::::::::::: Woohoo, finally!!! Now if we could just have [[#We need more maintainers|clean URLs]] too, that'd be swell! ;) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 05:02, 14 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Incomplete – motivation ==&lt;br /&gt;
&lt;br /&gt;
Is it possible to fix (or is there already) a way to add a motivation with the &amp;quot;incomplete&amp;quot;-tag? I tried &amp;lt;nowiki&amp;gt;{{incomplete|the title text needs explaining}}&amp;lt;/nowiki&amp;gt;, which made &amp;quot;edit it&amp;quot; in the banner link to the uncreated page &amp;quot;the title text...&amp;quot;... ––[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 12:16, 10 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You can use the &amp;lt;nowiki&amp;gt;{{notice|Your text...}}&amp;lt;/nowiki&amp;gt; template:&lt;br /&gt;
{{notice|Here is my notice.}}&lt;br /&gt;
:--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 17:30, 10 June 2013 (UTC)&lt;br /&gt;
::Thanks! I think that ideally most incomplete-notices shold carry a note on what's missing, but we aren't there, so this'll do for now. ––[[User:St.nerol|St.nerol]] ([[User talk:St.nerol|talk]]) 10:21, 11 June 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Unable to Edit ==&lt;br /&gt;
&lt;br /&gt;
I cannot edit this latest comic's page. When I hit edit a screen appears which says &amp;quot;This page has been protected to prevent editing.&amp;quot; I've never edited before, but I'm annoyed by the improper use of the word candid. &amp;quot;It would be candid and unrealistic&amp;quot; would be better off in that sentence if candid was removed. How do I make it so I can edit the page, so I can remove this affront to the English language?&lt;br /&gt;
:I believe you are trying to edit the main page. You can click &amp;quot;Latest comic&amp;quot; in the left sidebar or the &amp;quot;Go to this comic&amp;quot; button in the top right corner of the grey box to go to the actual page for today's comic. '''[[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;]] 16:42, 1 July 2013 (UTC)&lt;br /&gt;
::That was the problem, thanks.--[[User:Holcma01|Holcma01]] ([[User talk:Holcma01|talk]]) 17:07, 1 July 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Banner ad placement ==&lt;br /&gt;
&lt;br /&gt;
On iPad and iPhone browsers, the banner ads obscure the top of the page.  This covers up some of the useful buttons up there, like LOGIN for example.  The workaround is to refresh the page.  Because the banner ad is the last thing to load, you have a brief window of maybe three seconds to find and click the link you need. [[User:Gardnertoo|Gardnertoo]] ([[User talk:Gardnertoo|talk]]) 20:24, 26 July 2013 (UTC)&lt;br /&gt;
: Fixed. --[[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]]) 21:12, 25 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bookmarklet for jumping to explainxkcd.com from xkcd.com ==&lt;br /&gt;
&lt;br /&gt;
I wrote a short {{w|bookmarklet}} for jumping from xkcd.com to explainxkcd.com. Bookmarklet form:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:var%20match%20%3D%20window.location.href.match(%2F%5Cd%2B%2F)%3B%0Avar%20suffix%20%3D%20match%20%3F%20%27%3Ftitle%3D%27%20%2B%20match%5B0%5D%20%3A%20%27%27%3B%0Awindow.location%20%3D%27http%3A%2F%2Fwww.explainxkcd.com%2Fwiki%2Findex.php%27%20%2B%20suffix%3B&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Decoded:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:var match = window.location.href.match(/\d+/);&lt;br /&gt;
var suffix = match ? '?title=' + match[0] : '';&lt;br /&gt;
window.location ='http://www.explainxkcd.com/wiki/index.php' + suffix;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you're on a numbered xkcd page, it will go to the accompanying explainxkcd.com page automatically.  If you're on the xkcd.com home page, it goes to the explainxkcd.com wiki home page. [[User:Mattflaschen|Mattflaschen]] ([[User talk:Mattflaschen|talk]]) 17:30, 19 August 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
To add this bookmarklet to your browser:&lt;br /&gt;
&lt;br /&gt;
# Copy the bookmarklet javascript (*not* the decoded version)&lt;br /&gt;
# Using your browsers bookmark manager, create a new bookmark&lt;br /&gt;
# Give the bookmark a meaningful name -- e.g. ExplainXKCD&lt;br /&gt;
# Paste the javascript in for the bookmark URL&lt;br /&gt;
# Save.&lt;br /&gt;
({{unsigned|Tomh}})&lt;br /&gt;
&lt;br /&gt;
:Thanks Mattflaschen and Tomh!  I've started collecting these helpful tools on a [[Browser helpers|new page]], to hopefully make them easier for others to find.  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 01:33, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Database Error ==&lt;br /&gt;
&lt;br /&gt;
I have NO IDEA where this should go, but&lt;br /&gt;
http://www.explainxkcd.com/wiki/index.php?title=1011&lt;br /&gt;
has the content&lt;br /&gt;
&lt;br /&gt;
Database error&lt;br /&gt;
A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
(SQL query hidden)&lt;br /&gt;
from within function &amp;quot;SqlBagOStuff::set&amp;quot;. Database returned error &amp;quot;1142: INSERT command denied to user 'dbo423085716'@'74.208.16.155' for table 'objectcache' (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Just thought I should report it.&lt;br /&gt;
&lt;br /&gt;
OOPS forgot sig. [[Special:Contributions/67.175.58.94|67.175.58.94]] 00:13, 23 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
Edit: This has been fixed randomly. Never mind then. :X&lt;br /&gt;
&lt;br /&gt;
== [[mw:Extension:SyntaxHighlighter]] ==&lt;br /&gt;
&lt;br /&gt;
Could we maybe enable this? It would be helpful for some of the programming-heavy comics' explanations, e.g. [[1270|today's one]].[[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 17:02, 27 September 2013 (UTC)&lt;br /&gt;
: Done, PinkAmpersand. --[[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]]) 19:57, 28 September 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== It's not taking me to the main page ==&lt;br /&gt;
&lt;br /&gt;
If I type explainxkcd.com, it redirects me to http://www.explainxkcd.com/wiki which just shows a directory listing, rather than taking me to the main page (as I assume it's supposed to). [[User:Chridd|chridd]] ([[User talk:Chridd|talk]]) 02:07, 31 October 2013 (UTC)&lt;br /&gt;
:Thaat's not supposed to happen. I'm on it. '''[[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;]] 06:49, 31 October 2013 (UTC)&lt;br /&gt;
:Is it fixed for you now? '''[[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;]] 06:55, 31 October 2013 (UTC)&lt;br /&gt;
::Yes [[User:Chridd|chridd]] ([[User talk:Chridd|talk]]) 14:46, 31 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Logo in upper left corner missing ==&lt;br /&gt;
&lt;br /&gt;
The logo in the upper left corner is missing, probably because of a wrong redirect. The logo should be at http://www.explainxkcd.com/wiki/skins/common/images/explainxkcd.png, but this link takes me to the main page. The icons in the edit toolbar are missing, too, probably the same problem. You should exclude all \.png$ queries from redirects. --[[Special:Contributions/108.162.254.177|108.162.254.177]] 10:09, 31 October 2013 (UTC)&lt;br /&gt;
: Fixed that.  Sorry about that, it was an overzealous htaccess.  Thanks! --[[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]]) 15:45, 31 October 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Sidebar ad overhangs content in Firefox 25.0 ==&lt;br /&gt;
&lt;br /&gt;
The sidebar ad on each page overhangs the content frame slightly when I view this site in Firefox 25.0 on a Windows 7 Home Premium 64bit pc. I have started Firefox in safe mode with all add-ons disabled and it still happens. Site looks fine in IE 11. {{unsigned ip|173.245.56.79}}&lt;br /&gt;
:Have you tried hitting control-shift-R, or clearing your cache? That sounds like Firefox is disregarding part of our CSS for whatever reason. I'm running a very similar setup and I'm not getting these problems. Try giving it a wee bit of time and trying again. '''[[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;]] 17:27, 13 November 2013 (UTC)&lt;br /&gt;
&lt;br /&gt;
:What's your monitor resolution and size of your Firefox window (maximized, 50/50 split, etc)? [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 18:24, 13 November 2013 (UTC)&lt;br /&gt;
::I'm really sure that scaling isn't the issue, I made the sidebar width definite. I'll check it again. '''[[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;]] 19:06, 13 November 2013 (UTC)&lt;br /&gt;
:::The sidebar has a fixed width defined at the CSS style sheet. Press F5 or CTRL-R to reload this style sheet. This happened to me in the past too. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:14, 13 November 2013 (UTC)&lt;br /&gt;
::::I changed the defined width to pixels instead of em, in the annoying edge-case that a browser uses a weird default font width. '''[[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;]] 19:24, 13 November 2013 (UTC)&lt;br /&gt;
:::::It looks fine now.--[[Special:Contributions/173.245.56.79|173.245.56.79]] 06:08, 18 November 2013 (UTC)&lt;br /&gt;
::::::Sidebar ad overhangs content in DuckDuckGo 7.67.1.2 for iOS 15.4.1, on iPhone 12. aka 'Your sidebar ad has been crushed into a cube. You have fifteen minutes to move your cube.'&lt;br /&gt;
&lt;br /&gt;
== Connection problems ==&lt;br /&gt;
&lt;br /&gt;
Whatever the new hoster does cost, you should get your money back. Sometimes the page doesn't load at all, or the menu is missing after the browser did finish after one or two minutes. The performance here is still annoying. That cloud seems to be a dead cloud. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:33, 11 January 2014 (UTC)&lt;br /&gt;
:It's easily more performant than our old service, and it holds up far better to traffic. I am inclined to say that it's a region specific issue, and I'll submit a ticket for that, but they've worked far better than flat shared hosting for the time that we've been using them. '''[[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;]] 00:01, 12 January 2014 (UTC)&lt;br /&gt;
::More detail: The message is an Error 522 (Connection timed out).&lt;br /&gt;
::*You (Browser, Working) &amp;lt;-&amp;gt; Amsterdam (CloudFlare, Working) &amp;lt;-&amp;gt; &amp;lt;nowiki&amp;gt;www.explainxkcd.com&amp;lt;/nowiki&amp;gt; (Host, '''Error''')&lt;br /&gt;
::In December the CloudFlare did belong to Frankfurt. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:35, 12 January 2014 (UTC)&lt;br /&gt;
:::I'm having still major problems to connect, only this this silly error message. ...and then it does work again. Still strange.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 22:58, 14 January 2014 (UTC)&lt;br /&gt;
:Today I've been getting a ''lot'' of these errors with Cloudflare.  (London-based CloudFlare, in my case.)  &amp;quot;Error 522 Ray ID: 2587581d8b8a350c • 2015-12-21 23:25:22 UTC&amp;quot; is just one of the IDs.  Not sure if you'd prefer another bit of the page info, instead, but the Ray ID looked unique enough to pinpoint debug info in the background.)  The suggestion is made that the web server is too busy at something or other. Anyway, just so you're aware.&lt;br /&gt;
:I had a look here, first, to see if anyone had mentioned anything (and found the above), so apologies if I'm not posting in the best bit of the best page. [[Special:Contributions/162.158.152.227|162.158.152.227]] 23:44, 21 December 2015 (UTC)&lt;br /&gt;
::It seems to be an occasional regional issue that cloudflare has with us. When I go to our server directly our site is still up, so something between us and cloudflare is failing. Not sure what though. '''[[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;]] 03:40, 22 December 2015 (UTC)&lt;br /&gt;
:Yesterday (and day before?) Cloudflare London insisted that the server was not responding. Not sure if that was an actual explain-server issue (not seen mention of it anywhere else, in a brief dig), only Cloudflare London being refused by the server (detecting and blanket filtering rogue traffic via my gateway) or some other issue. Meant to check for update timestamps on the latest comic article that coincided with my being unable to visit the site at the time.  But FYI, assuming the cause isn't already sorted out with no further actions needed and/or possible... [[Special:Contributions/162.158.155.92|162.158.155.92]] 16:02, 11 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wrong IP address shown ==&lt;br /&gt;
&lt;br /&gt;
All [http://www.explainxkcd.com/wiki/index.php?title=Special:RecentChanges&amp;amp;hideliu=1 edits by IPs] (well, at least all I checked, including my own edits) are recorded using IP addresses of CloudFlare ([http://www.utrace.de/whois/108.162.238.220 108.162.192.0/18], [http://www.utrace.de/whois/173.245.50.88 173.245.48.0/20] and some other ranges), i.e., it's not the address of the client, but of the server. This seems similar to [https://bugzilla.wikimedia.org/show_bug.cgi?id=56681]. --[[Special:Contributions/108.162.254.160|108.162.254.160]] 09:05, 29 January 2014 (UTC)&lt;br /&gt;
:That's something we're working on, but current limitations with our provider are making things sow for us. When they give us what we need, we can do it. '''[[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;]] 16:59, 29 January 2014 (UTC)&lt;br /&gt;
::Hmmpf! I just noticed this twelve months later and it's still the case... [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 01:59, 29 January 2015 (UTC)&lt;br /&gt;
:::Uurrrp a couple of holdups happened, I need to do this at some point. '''[[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:54, 29 January 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: I just noticed it as well [[Special:Contributions/162.158.252.197|162.158.252.197]] 04:20, 24 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
: CloudFlare is already providing the Real Ip address -- there are mods for Apache https://support.cloudflare.com/hc/en-us/articles/203656534-How-can-I-set-up-Apache-mod-CloudFlare- and Nginx https://support.cloudflare.com/hc/en-us/articles/200170706-How-do-I-restore-original-visitor-IP-with-Nginx-  or you can just pull it from the X-Forwarded-For HTTP header which proxy servers (like CloudFlare) typically puts the client IP address.   [[Special:Contributions/162.158.252.197|162.158.252.197]] 04:25, 24 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 1337 leads to...? === &lt;br /&gt;
&lt;br /&gt;
Current and latest comic page, 1337, unusually has a &amp;quot;Next&amp;quot; before there's even any 1338 page.  (It points to 1337.)  As a lowly IP, I don't feel I ought to delve too deep to see if it's a page template issue (possibly because &amp;quot;1337&amp;quot; is both a past title ''and'' the current number, maybe, although not too sure if that'd work out) or just because of manual editing.  But bringing it to general attention. (It may of course be an issue that does not even last beyond Wednesday, and comic number 1338's arrival, even without intervention.) [[Special:Contributions/141.101.99.7|141.101.99.7]] 13:40, 3 March 2014 (UTC)&lt;br /&gt;
:D'aww, and I wanted to be lazy too. I'll get to fixing it, an IP took it to himself to add stuff to the comic template and he removed the auto-hiding buttons. Imma fixy. '''[[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;]] 17:42, 3 March 2014 (UTC)&lt;br /&gt;
::I did revert some edits on that issue here, so for the first point it should work again. In general: The main page should not be affected like this and the test environment is called: Sandbox. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:43, 3 March 2014 (UTC)&lt;br /&gt;
:::The issue was fixed three hours before your autorevert. This is getting excessive. The next time you autorevert a large edit without testing or making an attempt to fix things yourself, expect a three-day ban. '''[[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;]] 22:41, 3 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== No confirmation email? ==&lt;br /&gt;
&lt;br /&gt;
I requested an email for confirmation when I registered. I got nothing, not in spam filter, not in trash, and definitely in not my inbox.&lt;br /&gt;
&lt;br /&gt;
Today, I requested another confirmation email. Again, nothing has appeared.&lt;br /&gt;
&lt;br /&gt;
Is it me? Is it my shampoo??? Enquiring minds want to know....&lt;br /&gt;
Thanks. [[User:Karenb|Karenb]] ([[User talk:Karenb|talk]]) 22:45, 20 March 2014 (UTC)&lt;br /&gt;
:Confirmation emails? What, are we a five-star hotel now?&lt;br /&gt;
:Jokes aside, is this a thing you really need? You should be autoconfirmed after editing for a while without getting blocked, but if you can put forward a good reason why we should add this in, I'll do it. '''[[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;]] 00:54, 21 March 2014 (UTC)&lt;br /&gt;
:::Not blocked! Trying to authenticate my email, which I thought was an automatic process. Does that feature not work? That would certainly explain the lack of autoresponse.... Cheers. KB [[User:Karenb|Karenb]] ([[User talk:Karenb|talk]]) 01:35, 21 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm having the same issue. I've requested several confirmation emails over the past few days. I have also tried changing and then resetting my email address. Nothing has worked so far, and it's not in any of my filtered inboxes. I can edit most pages. Will this fix itself even if I don't get an email? [[User:DownGoer|DownGoer]] ([[User talk:DownGoer|talk]]) 18:16, 26 June 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Because the people visiting here are probably the people that should see this==&lt;br /&gt;
After the server upgrades mentioned in the sitenotice, de.explainxkcd.com should exist. I'm not publicizing it yet, just want to get it up and work out implementation details before it goes fully live. Pls dun test during the downtime, there'll be plenty of time for that after it's live. '''[[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;]] 01:14, 21 March 2014 (UTC)&lt;br /&gt;
:Ok, so our server doesn't actually have the required dependencies to complete the upgrade, so that was slightly fruitless. Sorry about any downtime or inconvenience caused, I didn't add the German wiki again because I'm looking set up the parallel wikis on an up-to-date base. Sorry again for any inconvenience that may have caused, I'll make sure to be better prepared next time, and maybe actually succeed in performing the upgrade next time. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 02:02, 24 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Does anyone have image of Black Hat saying to Cueball &amp;quot;It's 'cause you're dumb&amp;quot; ?==&lt;br /&gt;
Guys, does anyone has this image? &lt;br /&gt;
I'm hosting Russian xkcd fanpage here - vk.com/xkcdoff and if someone would post it it would be very helpful. --[[User:KOTYAR|KOTYAR]] ([[User talk:KOTYAR|talk]]) 22:40, 24 March 2014 (UTC)&lt;br /&gt;
:I actually can't find it either. Shame, I liked that old thumbnail. I could probably photoshop up a new version if you really want one though. '''[[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:53, 26 March 2014 (UTC)&lt;br /&gt;
:&lt;br /&gt;
::[[File:explain xkcd blog header image.png|right]] Just going to the [[explain xkcd]] page and following [http://wayback.archive.org/web/20091026122109/http://www.explainxkcd.com/2009/07/03/extrapolating/ the first historic (internet-archived) link] allowed me to extract [http://wayback.archive.org/web/20110202213753im_/http://www.explainxkcd.com/wp-content/themes/lightword/images/header-image.png the requested &amp;quot;header-image.png&amp;quot;] &amp;lt;small&amp;gt;(the [http://www.explainxkcd.com/wp-content/themes/lightword/images/header-image.png corresponding image URL on the current site] gives nothing anymore... thank you, Internet Archive!)&amp;lt;/small&amp;gt;. Which I uploaded to the wiki here, for convenience and because it's part of this wiki's history, in a way, and also, cool. [[File:Face-smile.svg|20px|Smile|link=]] - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 10:39, 16 April 2014 (UTC) &amp;lt;small&amp;gt;(PS: also, [http://www.facebook.com/explainxkcd/photos/10150144122985214 facebook.com/explainxkcd/photos/10150144122985214]; but JPEG.)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== expxkcd.com redirect not up-to-date ==&lt;br /&gt;
&lt;br /&gt;
By adding &amp;quot;exp&amp;quot; at the beginning of the URL one can easily switch from [http://xkcd.com/1234 xkcd.com/1234] to [http://expxkcd.com/1234 expxkcd.com/1234], which redirects to the corresponding explanation here, and that's nice. But right now, [http://expxkcd.com expxkcd.com] redirects to [[1355]] (at least for me), instead of [[1356]], the latest comic. Wouldn't it be better if expxkcd.com redirected to the [[Main Page]] instead (as does correctly [http://explainxkcd.com explainxkcd.com])? - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 10:55, 16 April 2014 (UTC)&lt;br /&gt;
:expxkcd is actually a thing that user [[user:grep]] was so kind to purchase and handle for us. I can forward this on to him for him to resolve, and give him the rewrite rules we use if he needs them. '''[[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;]] 11:12, 16 April 2014 (UTC)&lt;br /&gt;
:&lt;br /&gt;
::Nice, thank you for the quick forward to the right place. - [[User:Cos|Cos]] ([[User talk:Cos|talk]]) 11:31, 16 April 2014 (UTC)&lt;br /&gt;
:Yeah, the reason for that is that right now, I update it manually, which is obviously a really bad idea. I plan to change this pretty soon. I don't want it to go to the main page because the main page doesn't show the discussion, and comes along with all the other, regular main page stuff. Any rewrite rules wouldn't hurt, Davidy22. {{User:Grep/signature|12:04, 16 April 2014}}&lt;br /&gt;
::Hrm. Ours rules point towards the main page. We have no automatically updating page that always redirects to the latest comic, but you can use Mediawiki hooks to append the contents of the page [[Template:LATESTCOMIC]] to the end of our URL. '''[[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;]] 23:44, 17 April 2014 (UTC)&lt;br /&gt;
:::Sorry, I don't understand. My BOT will upload the next comic on time, unless it's some new chaos by Randall a BOT just can't handle. The LATESTCOMIC template is updated and so it seems only be an issue on that damn Cloud Service Cache. Even Randall's pages are affected. At &amp;quot;What-if&amp;quot; I still have to use &amp;lt;CTRL+R&amp;gt; to get the latest content. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 00:26, 18 April 2014 (UTC)&lt;br /&gt;
::::We're talking about a different thing related to shortened URLs. '''[[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;]] 02:24, 18 April 2014 (UTC)&lt;br /&gt;
:::That is an interesting idea, however I just made a script that automatically adds 1 every Monday, Wednesday, and Friday. I could have it grab the number from your page and do this once a day at something like 00:10 EST (because Randall sometimes does things on other days), that's a possibility as well (other times / intervals may also be done if you wish/want). {{User:Grep/signature|04:34, 02 May 2014}}&lt;br /&gt;
::::Our LATESTCOMIC page and Randall's xkcd json page should both have up-to-date comic numbers for you to pull. Ours is probably the better one to pull since your site is linking to us. '''[[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;]] 06:30, 2 May 2014 (UTC)&lt;br /&gt;
:::::The script now checks Template:LATESTCOMIC every 30 minutes to see if the comic has changed or not. If you wish, I &amp;lt;u&amp;gt;might&amp;lt;/u&amp;gt; be able narrow this down to 11PM-&amp;gt;6AM (for 30 minute checking) and then have it check every two hours at other times or something similar to that (if [http://www.freedesktop.org/software/systemd/man/systemd.time.html systemd.time] has a way to do it) {{User:Grep/signature|12:13, 09 May 2014}}&lt;br /&gt;
::::::I still do not see that problems. Please touch this wiki as less as needed, this is still the best choice. But there is still a big problem on the cache, an update on a picture lasts many hours. Some statements in &amp;quot;LocalSettings.php&amp;quot; should work, if not this wiki version is buggy. Problems should be solved at the cause and not be overridden by some additional scripts. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 21:51, 9 May 2014 (UTC)&lt;br /&gt;
:::::::We have ample bandwidth for a bot that only checks once every half-hour. The image caching issue is irrelevant to the current topic. '''[[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;]] 03:45, 10 May 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Explain xkcd upgraded to version 1.19.17 ==&lt;br /&gt;
&lt;br /&gt;
Woo! '''[[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;]] 17:59, 26 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
The header seems to have broken, there is no longer a link to the explanation in it. [[Special:Contributions/173.245.56.154|173.245.56.154]] 22:00, 26 July 2014 (UTC)&lt;br /&gt;
:Which header are you talking about? All the links I can think of still seem to work. '''[[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;]] 02:13, 27 July 2014 (UTC)&lt;br /&gt;
:: It fixed itself shortly after I mentioned it. It was the incomplete explanation, the link to 428 was bold, but not a link. [[Special:Contributions/173.245.56.154|173.245.56.154]] 04:48, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
One of the ads is broken.&lt;br /&gt;
&lt;br /&gt;
[[File:brokenexplainxkcdad.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;[[User:MrGameZone|0100011101100001011011010110010101011010011011110110111001100101]] ([[User talk:MrGameZone|talk page]])&amp;lt;/small&amp;gt; 04:33, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ooh, thanks for catching that. Should be fixed now. '''[[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;]] 17:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Nice :) But is this update a preparation for an upcoming update to {{w|MediaWiki version history|one of the latest versions}}, or are we limited to 1.19 for some reason? I'm asking because 1.19 is only supported for {{w|mw:Version lifecycle#Version timeline|a few more months}}, and also because with newer versions we'd have access to some niceties -- for example, after version 1.20 the {{w|mw:Help:Magic words#Statistics|PAGESINCAT}} magic word accepts parameters, which would allow the count of explained comics in the main page to work using less hardcoded hacks. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 16:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Prior attempts to update the wiki have been prevented by the realization that Lunarpages doesn't give us quite as much control over our server share as we thought we had. Checking again, they seem to have upgraded the version of PHP on our server since we last attempted and failed to run one dumb update script, which should mean that it'll work next time we try it. The wiki also has quite a bit of user effort invested into it now, and I'm a little less ready to jump into .0~.3 releases than I would normally be on my own machine, so I upgraded down the LTS path that I knew would be safe. After the first ill-planned attempt, I've been eyeing the 1.23 LTS line for the next major jump, but I'm certainly not stepping into it while it's still relatively fresh. '''[[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;]] 17:08, 27 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Sounds reasonable. Thanks for the details. I'll be looking forward to the next update :) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 18:52, 28 July 2014 (UTC)&lt;br /&gt;
::Just wanting to offer, I use ARP Networks for hosting, you should check them out if you want more control. {{unsigned ip|173.245.56.154}}&lt;br /&gt;
:::Hum, there's an option. I'll keep that in mind. '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
::::It wasn't me that posted that comment. But surprisingly enough anon and I have the same first two bytes in our IP addresses. Congrats on the version upgrade. [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 05:31, 29 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why does the site say I'm blocking ads when I'm not? I do use AdBlock Plus, but it's turned off for this site. Screenshot [http://i1271.photobucket.com/albums/jj637/backagain2012/contra_zps3c6aa295.png here]. And while I'm here, that &amp;quot;unblock us&amp;quot; text has an error- the first &amp;quot;and&amp;quot; in the second sentence shouldn't be there. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 01:51, 29 July 2014 (UTC)&lt;br /&gt;
:The text only appears when the ads fail to load. The error message actually says noscript, which means that the Javascript that the ad box uses to fetch images isn't running. How long has this been happening for you? '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
::It just started. I came over here as soon as I noticed it. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 19:07, 29 July 2014 (UTC)&lt;br /&gt;
:::Have you recently made any changes to your browser? Does the problem persist when you hit CTRL+SHIFT+R? '''[[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;]] 12:43, 30 July 2014 (UTC)&lt;br /&gt;
::::Nope, no recent changes. And yes, the problem persists when I hit Ctrl+Shift+R. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 14:04, 30 July 2014 (UTC)&lt;br /&gt;
:::::I am genuinely puzzled. The message tells me that something is causing your browser to fail to load/run the Javascript that makes the ad render and report stats, so the problem could be anything that can cause that: noscript, outdated browser, experimentation. I don't know anything about your setup, and it works on my test machines, so I can't tell currently what's wrong. '''[[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;]] 03:10, 1 August 2014 (UTC)&lt;br /&gt;
:Do you have privoxy installed on your machine? (this is a long shot) [[User:Lcarsos|lcarsos]]&amp;lt;span title=&amp;quot;I'm an admin. I can help.&amp;quot;&amp;gt;_a&amp;lt;/span&amp;gt; ([[User talk:Lcarsos|talk]]) 00:24, 3 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== If anything broke, complain here. ==&lt;br /&gt;
&lt;br /&gt;
There's a banner that says:&lt;br /&gt;
The wiki has been updated to stable mediawiki version 1.19.17. If anything broke, complain here.&lt;br /&gt;
&lt;br /&gt;
So...&lt;br /&gt;
&lt;br /&gt;
The following have broken:&lt;br /&gt;
Cars&lt;br /&gt;
My previous computer&lt;br /&gt;
A railroad train&lt;br /&gt;
Condoms&lt;br /&gt;
Etc.&lt;br /&gt;
&lt;br /&gt;
None of which has anything to do with this website.&lt;br /&gt;
&lt;br /&gt;
The banner should be made more specific before Randall sees it and does a comic mocking it.&lt;br /&gt;
&lt;br /&gt;
Or not. {{unsigned ip|173.245.48.80}}&lt;br /&gt;
:Well, there's always that one guy. Fixed. '''[[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;]] 05:05, 28 July 2014 (UTC)&lt;br /&gt;
::I don't see how you could have fixed that one guy.  Throttled, eliminated, insulted, blocked, etc.  But not fixed. [[User:Walenc|Walenc]] ([[User talk:Walenc|talk]]) 16:29, 28 July 2014 (UTC)&lt;br /&gt;
:::See sense 6 here: http://en.wiktionary.org/wiki/fix#Verb :P [[Special:Contributions/173.245.56.154|173.245.56.154]] 02:13, 29 July 2014 (UTC)&lt;br /&gt;
::::i bet you think yer so clever. just watch me take the site down. '''[[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:35, 29 July 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Misc Request... (|&amp;lt; &amp;lt; Prev Comic Next &amp;gt; &amp;gt;| format) ==&lt;br /&gt;
&lt;br /&gt;
I usually browse in a very small window and the menu buttons split kind of strangely (http://i.imgur.com/wPE7szZ.png). Would it be possible to replace the spaces with nonbreaking spaces? --[[Special:Contributions/173.245.56.202|173.245.56.202]] 15:13, 1 August 2014 (UTC)&lt;br /&gt;
:Annoyingly, the spaces that are giving you trouble can't be changed because they're text string inputs, and Mediawiki has no regular expression markup yet. Every other instance of formatting-critical spaces has been changed to non-breaking spaces though, thanks for the heads up! '''[[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;]] 18:13, 2 August 2014 (UTC)&lt;br /&gt;
:: I think I fixed this by adding a space between the buttons. Unfortunately, this only works as long as the comic is not as wide as the button bar. I guess this is because of the surrounding table. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 20:15, 2 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Not receiving password reset emails ==&lt;br /&gt;
&lt;br /&gt;
I've forgotten my password, and password reset is not working for me.  I went to [[Special:PasswordReset]], and had it send me a reset email.  However, I have not received the email.  I am sure that I have an email associated with my account, and it's confirmed. [[Special:Contributions/173.245.54.174|173.245.54.174]] 08:38, 18 August 2014 (UTC)&lt;br /&gt;
:Tested, password reset emails seem to work for me. Have you checked your spam folder? '''[[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;]] 18:04, 24 August 2014 (UTC)&lt;br /&gt;
::I checked in Gmail in &amp;quot;Mail &amp;amp; Spam &amp;amp; Trash&amp;quot;, and it still doesn't find it.  I tried a fresh reset, so we'll see if that comes through.  No luck after a minute or two.  [[Special:Contributions/108.162.216.71|108.162.216.71]] 04:59, 28 August 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
==TOR Captcha==&lt;br /&gt;
&lt;br /&gt;
Hi, I use TOR. To access your website, cloudfare has made it such that I have to enter a captcha. This is very inconvenient, as your site is not the only one doing this. Can you please fix this issue? You should be able to see a guide here: https://tor.stackexchange.com/questions/599/cloudflares-captcha-screen-insurmountable . Thank you for taking the time to consider this. [[Special:Contributions/141.101.104.60|141.101.104.60]] 11:34, 13 September 2014 (UTC)&lt;br /&gt;
:Is it better now? '''[[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;]] 13:06, 13 September 2014 (UTC)&lt;br /&gt;
::Sorry, no. I still get the captcha. What did you try doing? [[Special:Contributions/108.162.216.87|108.162.216.87]] 22:09, 13 September 2014 (UTC)&lt;br /&gt;
:::Set the threat level threshold way up. Any further steps into cheap botnet territory. For your security, you may want to reconsider the nodes through which you're operating through. Also, why do you need to use Tor to visit us? '''[[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:17, 14 September 2014 (UTC)&lt;br /&gt;
::::Ah, okay, thanks, now I'm not getting the captcha. As for why I'm using Tor, I don't ''need'' to, but I'd rather do so just to be anonymous. I wouldn't have written if it were just your site, but since Cloudfare has made captchas the default setting for Tor, the internet is starting to become near unusable. So that everyday people aren't scared away from using Tor due to the perceived complexity of daily browsing, whenever I have to enter a captcha, I try to contact someone at the site to ask them to change the setting. [[Special:Contributions/108.162.216.82|108.162.216.82]] 06:52, 14 September 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Upgrade to the latest MediaWiki version? ==&lt;br /&gt;
&lt;br /&gt;
I think we should start trying to maintain a regular upgrade schedule of some sort. 6 months ago was the last time we've upgraded, and I think we should upgrade again. The impetus for this change would be for [https://www.mediawiki.org/wiki/Extension:Translate translation] [https://www.mediawiki.org/wiki/Extension:TranslationNotifications features], [https://www.mediawiki.org/wiki/Extension:Babel plus other multilinguality efforts that require the new versions of MediaWiki.] Localization efforts should be put into place, and the translate feature would work well for that. [[User:Chess|Chess]] ([[User talk:Chess|talk]]) 01:53, 12 November 2014 (UTC)&lt;br /&gt;
:Plans to upgrade only include LTS releases. That said though, the recent and unintentional server downtime was actually the result of a setup for a coming mediawiki upgrade, among other things. The plan is to upgrade to 1.23 sometime in the coming months, during the weekend after a satisfactory number of bugfix releases. We're very interested in setting up translations, although mediawiki in it's current form already supports translation; the extensions you linked are mostly quality-of-life additions. It's been delayed because the plan is to eliminate all incomplete comics first so that translators have a solid base to work from. '''[[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;]] 02:42, 12 November 2014 (UTC)&lt;br /&gt;
::Can I just be nitpicky and say that we last upgraded about 3.5 months ago, not 6? Thanks. [[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 03:17, 12 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Fix HTTPS access ==&lt;br /&gt;
&lt;br /&gt;
explain xkcd is using Cloudflare which recently enabled HTTPS for all users, but when [https://explainxkcd.com accessing it via HTTPS] it returns [https://support.cloudflare.com/hc/en-us/articles/200171916-Error-521 error 521].&lt;br /&gt;
In order to fix this in addiction to the solution steps proposed by CloudFlare check if SSL settings are correct. {{unsigned ip|173.245.52.138}}&lt;br /&gt;
:On it '''[[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;]] 18:51, 13 November 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
HTTPS is working now, there just some mixed-content warnings, mostly on style tags which being active mixed content are blocked, but it's still a good improvement as it's possible to have more privacy when browsing explain xkcd.{{unsigned ip|188.114.99.35}}&lt;br /&gt;
&lt;br /&gt;
: Whoever has server access, can they try changing $wgServer ([[mediawikiwiki:Manual:$wgServer|Manual:$wgServer]]) to use a protocol relative url? As the manual page says, you may also want to set $wgCanonicalServer to a fully-qualified url (hopefully defaulting to https). [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 04:17, 29 October 2015 (UTC)&lt;br /&gt;
::Done. How's it now? '''[[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;]] 08:42, 31 October 2015 (UTC)&lt;br /&gt;
::: Much better! The styles and scripts are loaded now, and the page looks good. It's still not completely green https because it's loading some images over plain http, but my browser at least appears to be allowing them for now. If you want any more suggestions on technical issues, let me know. I currently maintain my own mediawiki installation with full https, cloudflare, and short urls. [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 20:27, 4 November 2015 (UTC)&lt;br /&gt;
::::Huh. Is it the ad images? The comic pictures *should* be also done over https, no? '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:10, 5 November 2015 (UTC)&lt;br /&gt;
::::: Yeah, one of them is the ad images (http://www.explainxkcd.com/wiki/lunarpages_160x600.jpg). Most of them are from [[MediaWiki:Common.css]], so you could just change all the urls on that css page to protocol-relative. The only other one I see is http://i.creativecommons.org/l/by-sa/3.0/88x31.png, which I think is set at [[mediawikiwiki:Manual:$wgFooterIcons|$wgFooterIcons]], but I'm not sure. All of them appear to be accessible over https, so just changing the links should work. [[User:Behrat|Behrat]] ([[User talk:Behrat|talk]]) 01:13, 6 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
If I replace xkcd with explainxkcd I get a very ugly CSS-less page in Chrome on Win7. If I change the https to http, the page works [[Special:Contributions/141.101.105.12|141.101.105.12]] 06:07, 3 September 2015 (UTC)&lt;br /&gt;
:Can you provide more information about your setup? Test a different browser? Unable to reproduce. '''[[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;]] 11:56, 3 September 2015 (UTC)&lt;br /&gt;
:: I can reproduce in Firefox. This is due to the mixed content blocker. Usually, it should only block active content (scripts) and maybe warn about passive content (stylesheets), but at least in Firefox, it is configurable to block both. But I cannot see why the stylesheets shouldn't be served via HTTPS.&lt;br /&gt;
:: Currently, the styles are referenced absolutely ([http://www.explainxkcd.com/wiki/load.php?debug=false&amp;amp;lang=de&amp;amp;modules=site&amp;amp;only=styles&amp;amp;skin=vector&amp;amp;* http://www.explainxkcd.com/wiki/...]), but they should rather by referenced domain-relative (&amp;lt;code&amp;gt;/wiki/...&amp;lt;/code&amp;gt;) or at least protocol-relative (&amp;lt;code&amp;gt;[//www.explainxkcd.com/wiki/load.php?debug=false&amp;amp;lang=de&amp;amp;modules=site&amp;amp;only=styles&amp;amp;skin=vector&amp;amp;* //www.explainxkcd.com/wiki/...]&amp;lt;/code&amp;gt;). --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:29, 3 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== RSS feed issue ==&lt;br /&gt;
&lt;br /&gt;
When attempting to access the feed for this wiki I'm told &amp;quot;Sorry. No feed found.&amp;quot; Is there some way that the feed can be restored to the satisfaction of Feedly? Could it be due to some [http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fexplainxkcd.com%2Frss.xml validation issues], or should I consider changing my news reader? [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 23:08, 7 January 2015 (UTC)&lt;br /&gt;
:Huh. The feed updates automatically with a script that I wrote a while ago, I'm very sure it passed more than this the last time I checked. Fixed a few things, left the one about the date because that's a pain to fix, and one that I can't figure out for the life of me. I think I fixed the line that was causing the actual problems though. Should update on feedly now. '''[[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;]] 01:52, 8 January 2015 (UTC)&lt;br /&gt;
::Hallelujah - the feed was mixed in with other geeky material and it only took me nearly 8 months to notice that nothing was coming through from here anymore. I'm premature with my thanks though. The [http://explainxkcd.com/rss.xml RSS link] in the navigation pane to the left still doesn't want to be understood by Feedly. By contrast, other feeds such as for latest changes can be picked up. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 02:04, 8 January 2015 (UTC)&lt;br /&gt;
:::Hrm. Sent an email to feedly about it, Just tested and I'm having similar issues with feedly. '''[[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;]] 02:17, 8 January 2015 (UTC)&lt;br /&gt;
::::It seems it's not just Feedly. When I use Chrome's [https://chrome.google.com/webstore/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp/related?hl=en RSS Feed Reader], that too also tells me &amp;quot;No posts here yet&amp;quot; followed by the an ever helpful &amp;quot;Chirp, chirp, chirp, chirp&amp;quot; [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 02:33, 8 January 2015 (UTC)&lt;br /&gt;
::::Could it be that it's just not valid XML? I see that it ends at line 236 with &amp;lt;/item&amp;gt; with no other closing tags, for example. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 03:18, 8 January 2015 (UTC)&lt;br /&gt;
:::::Ohwait a minute, the auto updater rips old entries off the bottom and that's where there's supposed to be a closing channel and RSS tag. well. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:19, 8 January 2015 (UTC)&lt;br /&gt;
It's good to know that the cause is now known - I'll let you (or someone else with the authority) get on with fixing things up :-) [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 07:46, 8 January 2015 (UTC)&lt;br /&gt;
:[http://feedly.com/i/subscription/feed/http://www.explainxkcd.com/rss.xml Hullo.] It's not perfect that only one specific formation of the URL works, but it's a start. '''[[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;]] 08:01, 8 January 2015 (UTC)&lt;br /&gt;
:: You sir do God's work - and that coming from a Dillahunty-following Atheist is saying something. [[User:Pmw57|Pmw57]] ([[User talk:Pmw57|talk]]) 08:11, 8 January 2015 (UTC)&lt;br /&gt;
My reader has been refusing to process the feed for the last few days. I finally un-busied enough to poke into why. When I looked at the source at [http://www.explainxkcd.com/rss.xml /rss.xml] I saw: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;/item&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;item&amp;gt;&lt;br /&gt;
	&amp;lt;title&amp;gt;1561: Water Phase Diagram&amp;lt;/title&amp;gt;&lt;br /&gt;
	&amp;lt;link&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/link&amp;gt;&lt;br /&gt;
	&amp;lt;pubDate&amp;gt;Thu, 06 Aug 2015 21:51:11 -0700&amp;lt;/pubDate&amp;gt;&lt;br /&gt;
	&amp;lt;guid isPermaLink=&amp;quot;true&amp;quot;&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/guid&amp;gt;&lt;br /&gt;
	&amp;lt;description&amp;gt;&amp;lt;![CDATA[&amp;lt;h2&amp;gt;1561: Water Phase Diagram&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;http://www.explainxkcd.com/1561&amp;quot;&amp;gt;http://www.explainxkcd.com/1561&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;]]&amp;gt;&amp;lt;/description&amp;gt;&lt;br /&gt;
&amp;lt;/item&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
I'm thinking that the script is broken. I could pro'ly come up with something workable, given the access. --[[User:Ericm301|Ericm301]] ([[User talk:Ericm301|talk]]) 16:50, 9 August 2015 (UTC)&lt;br /&gt;
:What on earth is happening here I don't even know. The script seems fine, I repaired the RSS file again manually. See if it malfunctions again today. '''[[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;]] 01:22, 10 August 2015 (UTC)&lt;br /&gt;
::Script is behaving very strangely. Today's update warped the feed file in a weird way, this doesn't usually happen. I'll test it on my machine to see what's happening. '''[[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;]] 13:56, 10 August 2015 (UTC)&lt;br /&gt;
It was fine for a minute (that must have been your edit), but now it's broke again. --[[User:Ericm301|Ericm301]] ([[User talk:Ericm301|talk]]) 19:53, 10 August 2015 (UTC)&lt;br /&gt;
:Alright, I figured out what was going on with the feed. There was a bit of code I had in the update script that trimmed off the last entry of the RSS file and when I recreated an empty file for the feed after the inexplicable wipe, I forgot to turn it off so it was still shaving off the end of the file. This time it should be working. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:34, 12 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Known appearances&amp;quot; character infobox fix? ==&lt;br /&gt;
&lt;br /&gt;
Currently, &amp;quot;Known appearances&amp;quot; in the characters infobox is broken as for some pages, when the character's category serves as it's own info page. (e.g. [[:Category:Red Spiders]], [[:Category:Sharks]], [[:Category:Squirrels]], [[:Category:Barrel]] etc.) Can this be fixed?--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 11:21, 29 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Fixed it myself. Just use template &amp;quot;Infobox character 2&amp;quot; instead of &amp;quot;Infobox character&amp;quot; when the character's category serves as it's own info page.--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 14:55, 31 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic 1505 (30 March 2015) isn't properly showing up, I think? ==&lt;br /&gt;
&lt;br /&gt;
Excuse me if I'm being a n00b, but [[1505]] is posted, and the page is extant, but it's not showing on the [[Main Page]] yet.  Is this supposed to happen, i.e. waiting for someone to put some content on the page, or did something break somewhere...? Again, sorry if I've just committed a massive derp.  [[Special:Contributions/173.245.56.189|173.245.56.189]] 04:38, 30 March 2015 (UTC)&lt;br /&gt;
:Should be showing up now. '''[[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;]] 09:38, 30 March 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== rendering problem ? ==&lt;br /&gt;
&lt;br /&gt;
To me, right now, with Windows Firefox 37.0.1, [[625: Collections]] looks like this:&lt;br /&gt;
&lt;br /&gt;
[[File:communityportal_technical_1504_collections.png]]&lt;br /&gt;
&lt;br /&gt;
There doesn't seem to be anything wrong with the source text.&lt;br /&gt;
&lt;br /&gt;
Here's the [[Main Page]] in Internet Explorer 8:&lt;br /&gt;
&lt;br /&gt;
[[File:communityportal_technical_1504_mainpage.png]]&lt;br /&gt;
&lt;br /&gt;
This is affecting everything?  Or just me? [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 03:31, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Okay, [[Special:Contributions/173.245.50.140|somebody]] was messing with [[Template:w]].  I reverted it to the previous editor's version, seemed to fix things. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 03:46, 6 April 2015 (UTC)&lt;br /&gt;
:On that note, they made a similar template that links to rationalwiki, but didn't use it at all in any pages. Huh. It's not even a very significant site. '''[[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;]] 05:52, 6 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The IP [http://www.explainxkcd.com/wiki/index.php?title=301:_Limerick&amp;amp;oldid=84906&amp;amp;diff=88577 preferred the Rationalwiki article] on Poe's Law to the Wikipedia version, I guess.&lt;br /&gt;
::[[User:452]] did not approve. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:57, 6 April 2015 (UTC)&lt;br /&gt;
:::Given the fact that he broke Template:W, and [[Special:Contributions/173.245.50.140|didn't seem to know what he was doing]], I undid his other edits, sorry if this was inappropriate. -[[User:452|452]] ([[User talk:452|talk]]) 17:51, 15 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Main Page ==&lt;br /&gt;
&lt;br /&gt;
When categories are added to the latest comic, the Main Page is also categorized in those categories.--[[User:17jiangz1|17jiangz1]] ([[User talk:17jiangz1|talk]]) 13:42, 15 April 2015 (UTC)&lt;br /&gt;
:The most obvious solution would be to put the categories inside &amp;lt;nowiki&amp;gt;&amp;lt;noinclude&amp;gt;&amp;lt;/nowiki&amp;gt; tags, on every page. {{unsigned|143}}&lt;br /&gt;
::That's ugly and labor-intensive though. I think there's something we can do with string matching to fix it in a better way. '''[[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;]] 03:35, 16 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== #cscore doesn't work with #expr ==&lt;br /&gt;
&lt;br /&gt;
I can't use cscore with expr on my userpage.--{{User:17jiangz1/signature|10:30, 01 May 2015}}&lt;br /&gt;
&lt;br /&gt;
== 1545 page severely broken? ==&lt;br /&gt;
&lt;br /&gt;
The very tail end of the raw page source (using Internet Explorer) is&lt;br /&gt;
 &amp;quot;wgRedirectedFrom&amp;quot;:&amp;quot;1545&amp;quot;});&lt;br /&gt;
 }&amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;&lt;br /&gt;
...and then stops, obviously unfulfilled.  (I also snipped everything up until that unique-looking Redirection data, for brevity.)&lt;br /&gt;
&lt;br /&gt;
Compare that with the equivalent snippet from an adjacent page:&lt;br /&gt;
 &amp;quot;wgRedirectedFrom&amp;quot;:&amp;quot;1544&amp;quot;});&lt;br /&gt;
 }&amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;if(window.mw){&lt;br /&gt;
...and then continues with a working rest of the page.  (Also snipped, but this time both before ''and'' after.  I've kept it short while imagining I've given enough to ID the precise breakpoint though.)&lt;br /&gt;
&lt;br /&gt;
Same problem encountered when using &amp;quot;Next&amp;quot; link from 1544 or &amp;quot;Previous&amp;quot; link from 1546.  Page http://www.explainxkcd.com/wiki/index.php/List_of_all_comics ''itself'' suffers the exact same error. (Last wgVariable listed in LoaC page is ''&amp;quot;wgSearchNamespaces&amp;quot;:[0]'', instead, but still similarly ends after apparently the same close-script and open-script flagging point.)&lt;br /&gt;
&lt;br /&gt;
Does ''not'' go wrong in Mozilla-based browsers also on this machine (Firefox, Seamonkey).  Page sources for 1545 look exactly like the above 1544 snippet, as expected, with no obvious funny characters or 'Little Bobby Tables' anomalies, SFAICT.  In case it's a spurious downloading error that has ended up being cached, I've also &amp;quot;shift-refreshed&amp;quot; in my browser to force download.&lt;br /&gt;
&lt;br /&gt;
Utterly Baffling me, but FYI in case it's something someone needs to know about, although I'm hoping it's just local strangeness and not anything actually of significance.[[Special:Contributions/141.101.98.252|141.101.98.252]] 04:33, 5 July 2015 (UTC)&lt;br /&gt;
:Opened in Internet Explorer 11, it seems to appear for me. Are any site features being impacted by this bug? '''[[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;]] 15:44, 5 July 2015 (UTC)&lt;br /&gt;
::Nothing I was previously familiar enough with to spot an adverse effect.  Note that http://www.explainxkcd.com/wiki/index.php/1545:_Strengths_and_Weaknesses - the link I tried to get from the LoaC page (but only just now tried in non-IE!) works perfectly.  Even while the &amp;quot;/1545&amp;quot; (i.e. 'RedirectedFrom') version of the page ''continues'' to be truncated.  I can only assume that (despite attempts to force things anew), it's buggily-cached iteration.&lt;br /&gt;
::Hang on, that gives me an idea.  Which works.  I changed the 1545 page (change labelled as &amp;quot;Troubleshooting&amp;quot; in history) and... it opens perfectly.  Removed change (should probably have self-reverted, in hindesight, but suspect it'd be fixed anyway) and no further issue.  &amp;quot;List of all Comics&amp;quot; page still as broken (because I haven't forced it to update, and am not inclined to 'interfere' with it), but I shall check again after 1547 forces its own changes upon it.  Otherwise, consider this closed.  Sorry to bother you. &lt;br /&gt;
::TL;DR; problem solved.  Pretty much proven to be not even a site issue, I now think. [[Special:Contributions/141.101.98.252|141.101.98.252]] 21:38, 5 July 2015 (UTC)&lt;br /&gt;
::Ok, FYI, once 1547 'Solar System Questions' ''finally'' appeared, I check &amp;quot;List of all comics&amp;quot; page.  First of all a lot of &amp;quot;Waiting for page...&amp;quot; (uh oh), but then force-refreshed page (in the way that didn't work previously) and it loaded correctly. C'est finis. [[Special:Contributions/141.101.98.252|141.101.98.252]] 15:02, 6 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[881]] loads as &amp;quot;database error&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
With this content:&lt;br /&gt;
Database error&lt;br /&gt;
A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was:&lt;br /&gt;
(SQL query hidden)&lt;br /&gt;
from within function &amp;quot;SqlBagOStuff::set&amp;quot;. Database returned error &amp;quot;1114: The table 'objectcache' is full (db423085716.db.1and1.com)&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
No other page gives me this error, just [[881]].--[[Special:Contributions/162.158.92.6|162.158.92.6]] 19:42, 2 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
I just got this on 564 [[Special:Contributions/141.101.98.200|141.101.98.200]] 22:44, 2 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Database error ==&lt;br /&gt;
&lt;br /&gt;
I can't see [[:Category:Interactive_comics]] (&amp;lt;tt&amp;gt;1114: The table 'objectcache' is full (db423085716.db.1and1.com)&amp;lt;/tt&amp;gt;). [[Special:Contributions/199.27.128.105|199.27.128.105]] 00:18, 3 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== RSS missing ==&lt;br /&gt;
&lt;br /&gt;
Hey it looks like there's an issue with the rss feed, when you browse to the url on the right it just displays an empty page, not sure what's going on. [[User:Eluvatar|Eluvatar]] ([[User talk:Eluvatar|talk]]) 14:19, 3 August 2015 (UTC)&lt;br /&gt;
:Huh, in the last few hours the rss file was inexplicably wiped. I've restored the base of it, the bot should start populating the feed with new comics, but old ones are gone. '''[[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;]] 16:49, 3 August 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Extra Comics ==&lt;br /&gt;
&lt;br /&gt;
In extra comics, the header of the comic has &amp;quot;Expression error: Unrecognised punctuation character &amp;quot;{&amp;quot;.&amp;quot; such as in [[The Rise of Open Access]]. {{User:17jiangz1/signature|13:32, 13 September 2015}}&lt;br /&gt;
:{{done}} - It was because [[0]] was created, so the logic that #ifexist:0 should be false failed. I changed it to default to -2 when number  is not present, which will work as long as no one creates [[-1]]! [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 11:15, 14 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Explanations for all -4 comics! ==&lt;br /&gt;
&lt;br /&gt;
The main page header now contains this text:&lt;br /&gt;
&lt;br /&gt;
[http://i.imgur.com/p7VACbW.png We have an explanation for all -4 xkcd comics, and only 23 (1%) are incomplete. Help us finish them!]&lt;br /&gt;
&lt;br /&gt;
I'm assuming this is a bug. {{unsigned|Okofish|01:00, 15 September 2015}}&lt;br /&gt;
&lt;br /&gt;
: {{done}} It was a temporary artifact due to recent categorization changes. It's now fixed. Thanks for the quick report :) --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 01:14, 15 September 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion pane missing on comic 1592? ==&lt;br /&gt;
&lt;br /&gt;
After checking the Discussion tab to make sure there ''was'' a Discussion, I thought that someone had removed the &amp;lt;nowiki&amp;gt;{{comic discussion}}&amp;lt;/nowiki&amp;gt; tag, and went into full-page edit to put it back.  But it's there.  Maybe it's just me, maybe it's just temporary, but FYI in case it isn't. [[Special:Contributions/141.101.75.185|141.101.75.185]] 15:06, 19 October 2015 (UTC)&lt;br /&gt;
:Fixed. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:21, 19 October 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha ==&lt;br /&gt;
&lt;br /&gt;
Captcha not appearing at all. Can't edit pages without turning off security settings (which were set to default). Chrome and &amp;quot;Edge&amp;quot; on Windows 10. Both yell at me about some components of the page being insecure.  15:48, 18 February 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Same issue with other browsers. reCAPTCHA won't load from an &amp;quot;insecure&amp;quot; resource when the wiki is accessed over HTTPS. [[User:TisTheAlmondTavern|TisTheAlmondTavern]] 15:07, 6 December 2016 (UTC)&lt;br /&gt;
::Oooh, I see. Alright, I'll get to fixing it now I know what the problem is. '''[[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;]] 01:00, 7 December 2016 (UTC)&lt;br /&gt;
Slight bug in the editing panel, when asked what webcomic we're talking about, it cannot be in all caps, it must be strict lowercase, despite appearances on xkcd.com. Could someone take a look at it? [[Special:Contributions/108.162.249.158|108.162.249.158]] 00:54, 5 November 2015 (UTC)&lt;br /&gt;
:It took me several months to figure out that &amp;quot;this wiki&amp;quot; is named &amp;quot;explain xkcd&amp;quot; and not &amp;quot;explainxkcd&amp;quot;. I spent those months answering two questions every time the &amp;quot;what's this wiki's name&amp;quot; question appeared (when I missed the answer, a different question appeared).--[[User:Jojonete|Jojonete]] ([[User talk:Jojonete|talk]]) 09:06, 5 November 2015 (UTC)&lt;br /&gt;
::I was sure both answers were correct, but never attempted to type explainxkcd, just in case. [[Special:Contributions/108.162.221.17|108.162.221.17]] 12:44, 5 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== wiki server clock has drifted - about 13 minutes fast ==&lt;br /&gt;
&lt;br /&gt;
As I type this, it is exactly 07:42:45 UTC. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:55, 14 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
And thus timestamps here are 12 or 13 minutes off. [[User:Pesthouse|Pesthouse]] ([[User talk:Pesthouse|talk]]) 07:59, 14 April 2015 (UTC)&lt;br /&gt;
:I see the same thing: 15:41:00 UTC now.... [[User:Nealmcb|Nealmcb]] ([[User talk:Nealmcb|talk]]) 15:54, 23 April 2015 (UTC)&lt;br /&gt;
::Huh. I'll look into it, when I get back home. '''[[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;]] 23:19, 23 April 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently it's 20 minutes fast. It's 21:00 UTC and it shows 21:20 (UTC). [[User:Xhfz|Xhfz]] ([[User talk:Xhfz|talk]]) 21:20, 14 July 2015 (UTC)&lt;br /&gt;
:Sorry bout the delay, was busy for a long bit, should be fixed now. '''[[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;]] 21:44, 26 July 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently it's 8 minutes fast. It's 20:56:00 UTC and it shows 21:03 UTC. [[Special:Contributions/108.162.221.17|108.162.221.17]] 21:03, 5 November 2015 (UTC)&lt;br /&gt;
:do we not have ntp on the server or something, gonna reset the clock again when i get back home. '''[[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;]] 00:33, 6 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
Happening again: it's 11:33 UTC and the server has 11:48 UTC. [[Special:Contributions/141.101.75.161|141.101.75.161]] 11:49, 11 March 2016 (UTC)&lt;br /&gt;
:Fixed again, and I'm gonna have to check our NTP installation. 06:37, 18 March 2016 (UTC)&lt;br /&gt;
:Alright, changed some things, this shouldn't happen anymore. '''[[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;]] 06:38, 18 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The clock is about 13-14 minutes off again. It's currently 13:49 UTC. –''TisTheAlmondTavern'', 13:36, 17 January 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion template resources apparently missing ==&lt;br /&gt;
&lt;br /&gt;
As co-header (right-margin hugging text) to the Discussion section on all pages (or at least as many as I've just visited - and on multiple browsers, ''just in case''...) I'm getting the following, with the &amp;lt;&amp;gt;-tags being my own descriptive additions:&lt;br /&gt;
 &amp;lt;redlink&amp;gt;File:comment.png&amp;lt;/redlink&amp;gt; &amp;lt;validlink&amp;gt;add a comment!&amp;lt;/validlink&amp;gt; ⋅ &amp;lt;redlink&amp;gt;File:Icons-mini-action refresh blue.gif&amp;lt;/redlink&amp;gt; &amp;lt;validlink&amp;gt;refresh comments!Discussion&amp;lt;/validlink&amp;gt;&lt;br /&gt;
Looks like the PNG and GIF files concerned have been removed, or the links in the Discussion template broken/incorrectly redirected.&lt;br /&gt;
&lt;br /&gt;
(Sidenote: The character between the &amp;quot;add a comment!&amp;quot; and the &amp;quot;File: Icons-mini-action refresh blue.gif&amp;quot; that I've copied here verbatim (so doubtless appears correctly for everyone else who reads this) is an 'I don't have this character on my machine' character, for me, which is obviously entirely my fault for not downloading additional fonts that I'd need.  From cursory investigation, it appears to be essentially the same as &amp;quot;·&amp;quot;, Alt-0183, or HTML code '&amp;amp;amp;middot;', which ''would'' render on my machine and yet (if changed) shouldn't break on those where it currently works.  For your consideration, but not as vital.)&lt;br /&gt;
[[Special:Contributions/141.101.106.161|141.101.106.161]] 06:30, 7 November 2015 (UTC)&lt;br /&gt;
:ETA - Delving around further, [[:Category:Pages with broken file links]] seems to indicate it ''is'' a widespread problem at server-side, and not somehow solely my own (except for the Sidenote issue!).  And suggests a simple way to check that the issue is fixed (when suddenly the category is nowhere near as 'full'), and then discover any related ones that might need fixing (like the special Star Trek Into Darkness alternate version of the Discussion template). [[Special:Contributions/141.101.106.161|141.101.106.161]] 06:57, 7 November 2015 (UTC)&lt;br /&gt;
::Huh. I have a feeling I know what caused this, I'll get right on it. '''[[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;]] 16:23, 7 November 2015 (UTC)&lt;br /&gt;
:::I've seen some more of these cases, e.g. on [[explain xkcd:Community portal]]. I think these images are from Wikimedia Commons, maybe that integration broke somehow? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 16:33, 7 November 2015 (UTC)&lt;br /&gt;
::::i don't know what is even happening, the images seem to be fine now but they still show up as broken file links '''[[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;]] 02:04, 8 November 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Update captcha text? ==&lt;br /&gt;
&lt;br /&gt;
The text above the posting captcha says “type the two words” but reCaptcha often doesn't use two, and they're often not words. Example: http://i.imgur.com/TdM5n5O.png&lt;br /&gt;
&lt;br /&gt;
Maybe we could change it to something like “type the text”?&lt;br /&gt;
&lt;br /&gt;
[[User:P1h3r1e3d13|P1h3r1e3d13]] ([[User talk:P1h3r1e3d13|talk]]) 23:44, 2 March 2016 (UTC)&lt;br /&gt;
:So, the reCAPTCHA captchas are entirely provided by Google. If there's an error in it, it's likely Google's fault and a bug report should be sent in that direction instead. '''[[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;]] 00:23, 3 March 2016 (UTC)&lt;br /&gt;
::I noticed that before. It's not a bug in recaptcha, but rather in ConfirmEdit, file ReCaptcha/i18n/en.json to be exact. --[[Special:Contributions/162.158.90.217|162.158.90.217]]&lt;br /&gt;
:::Oh huh, hadn't thought of that. I'll fix that up then. '''[[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;]] 19:45, 3 March 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Stylesheets not working? ==&lt;br /&gt;
&lt;br /&gt;
It doesn't look like any of the site's CSS is loading for me. I have tried purging, adding useskins to the URL, and clearing my browser's cache, and webpage content remains in Times New Roman with no special styling. Headers and bold spans of text are bold, list items are bulleted, buttons are button-y, templates and my signature display with HTML-&amp;lt;tt&amp;gt;style&amp;lt;/tt&amp;gt;-attribute-level CSS, and so on, but that's the extent of it. Is this a belated April Fools' joke, or has something gone horribly wrong between the servers and my eyes? &amp;lt;span style=&amp;quot;background:#0064de;font-size:12px;padding:4px 12px;border-radius:8px;&amp;quot;&amp;gt;[[User talk:AgentMuffin|&amp;lt;span style=&amp;quot;color:#f0faff;&amp;quot;&amp;gt;~AgentMuffin&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:I made a similar post earlier -- it seems to have vanished down a black hole. I linked these screenshots: [http://i.imgur.com/smN1a45.png] [http://i.imgur.com/qdpxhdY.png]&lt;br /&gt;
:Note that there are no ads either! This could get to problem-level very fast. [[User:KangaroOS|Kangaro]][[User talk:KangaroOS|OS]] 01:28, 5 April 2016 (UTC)&lt;br /&gt;
::There are actually still ads, they're just shoved right at the bottom of the page. mysqld is clocking in at 40% cpu load, and mediawiki seems to be going into fallback mode and skipping stylesheets which is about what I'd expect from an april fools comic. '''[[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;]] 01:31, 5 April 2016 (UTC)&lt;br /&gt;
:::Ah, figured it was some sort of server overslow. For a while there I was getting a 503 error. [[User:KangaroOS|Kangaro]][[User talk:KangaroOS|OS]] 01:36, 5 April 2016 (UTC)&lt;br /&gt;
:::Well, perhaps you don't need another note about this, but I noted the 'stylesheetless' appearance myself, just now.  Except that it ''is'' styled, partially.  (When I choose to view by Style &amp;quot;No style&amp;quot;, it's even more not-Styled!)  Could be because a subset of styles aren't being loaded (so that the ones that ''are'' still loaded can only be identified from their enforced absence), but looks like you have this as much in hand as can be expected, so just FYI... [[Special:Contributions/141.101.98.137|141.101.98.137]] 04:13, 5 April 2016 (UTC)&lt;br /&gt;
::Have you tried switching the server off and back on ? ;-) Jokes apart, are there really so many users continuously polling ? It could be just a case of stale open connections. Really, a reboot might not hurt (although it may kill-off few sessions and you may get some angry posts, but at this point, it might be worth the try) Edit: Sorry, I was messing up the formatting while replying. I'm trying to fix it. But at this point, does it really matter? :P [[Special:Contributions/162.158.255.56|162.158.255.56]] 04:21, 5 April 2016 (UTC)&lt;br /&gt;
:::Alright guys, still having trouble with the load, but I've put a quick temporary hack in place to get the css working again for now. Fonts are a little off, I'll deal with that soon. '''[[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;]] 08:09, 5 April 2016 (UTC)&lt;br /&gt;
::::Did a little more work on things, styles should be working again but it's not great on the back end. I'm going to do some rooting around to see what went wrong. '''[[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;]] 00:07, 6 April 2016 (UTC)&lt;br /&gt;
:::::Cool.. This is pretty good. We're almost there.. The only things I can notice that are off are - (1) Category list at the end of the page (2) Contents block at the beginning of the page and (3) Edit buttons for individual sections. By the way, I'm curious, what exactly was broken ? I didn't expect you'd have to fix things here. I expected that since the issue was caused by excess server load, it would return back to normalcy automatically once things settle down a bit in couple of days after the offending comic was more or less explained. [[Special:Contributions/162.158.255.56|162.158.255.56]] 03:32, 6 April 2016 (UTC)&lt;br /&gt;
::::::A script responsible for picking user preferences and integrating css from pages like [[Mediawiki:common.css]] was failing to complete because of server load, so I gave it a helping hand and just had it insert a static stylesheet instead. I almost certainly missed a few spots though, because the wiki does not look right. '''[[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:43, 6 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
(resetting indent) Yes, things are still off. The text &amp;quot;Jump to: navigation, search&amp;quot; is at the top of every page, but it's useless because it links to stuff already at the top of the page. Edit summaries aren't italicized, the edit boxes don't use the whole window width, links are underlined, section edit links are too big, etc. I put the Wayback Machine to good use, and found the below set of archived pages, all using the proper style. Compare them with the current appearances of the pages, and you should see most, if not all, of the issues I've seen.&amp;lt;br&amp;gt;[http://web.archive.org/web/20160402151417/http://www.explainxkcd.com/wiki/index.php/Main_Page Main Page] | [http://web.archive.org/web/20150326134736/http://www.explainxkcd.com/wiki/index.php/Special:Contributions/NealCruco My contributions] | [http://web.archive.org/web/20150326170626/http://www.explainxkcd.com/wiki/index.php?title=1486:_Vacuum&amp;amp;action=edit The &amp;quot;edit&amp;quot; page for comic 1486] --[[User:NealCruco|NealCruco]] ([[User talk:NealCruco|talk]]) 21:50, 7 April 2016 (UTC)&lt;br /&gt;
::Is here nothing to be done about the missing styles? The tables still look horrible and there is not help when editing, for instance for signature etc. Colapsing of tables etc. also won't work which is a mess for some of the long explanations and tables [[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 11:56, 18 April 2016 (UTC)&lt;br /&gt;
HotCat also seems to be not working for adding categories. {{User:17jiangz1/signature|13:18, 25 April 2016}}&lt;br /&gt;
:Yeah, load.php is failing so all gadgets and user scripts are unavailable. :-( [[User:Markhurd|Mark Hurd]] ([[User talk:Markhurd|talk]]) 14:42, 25 April 2016 (UTC)&lt;br /&gt;
::Alright, figured it out. It was a deal with file permissions, not sure how those got changed on April 1st. '''[[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;]] 18:59, 17 May 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic navigation buttons ==&lt;br /&gt;
&lt;br /&gt;
You know, the buttons that look like the ones on the xkcd site. Shouldn't they also highlight like the xkcd site? I thought maybe it was due to the above CSS issue, but the links to archive.org make it seem like it's just never worked.&lt;br /&gt;
&lt;br /&gt;
It just seems to me that, if we're going to go that far in mimicking the actual buttons, we should probably also mimic their a:hover settings. Shut off the box shadow, change the background to white, and the link color to #6E7B91.&lt;br /&gt;
&lt;br /&gt;
I've tested the following CSS, and it appears to work:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
li.plainlinks:hover, .no-link-underline &amp;gt; li:hover {&lt;br /&gt;
 	background-color: #FFF !important;&lt;br /&gt;
	box-shadow: none !important;&lt;br /&gt;
	-moz-box-shadow: none !important;&lt;br /&gt;
	-webkit-box-shadow: none !important; &lt;br /&gt;
}&lt;br /&gt;
li.plainlinks:hover &amp;gt; a &amp;gt; span, .no-link-underline &amp;gt; li:hover &amp;gt; a &amp;gt; span {&lt;br /&gt;
	color: #6E7B91 !important; &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Trlkly|Trlkly]] ([[User talk:Trlkly|talk]]) 09:14, 2 May 2016 (UTC)&lt;br /&gt;
:Seems like a decent addition. Thanks! '''[[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;]] 18:52, 1 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha trouble ==&lt;br /&gt;
&lt;br /&gt;
For about an hour, I wasn't able to edit a page or create an account when I was trying to, because the captcha was missing. I'm not sure if it was problem on this site or captcha but I thought I'd mention it.&lt;br /&gt;
--[[User:Anqied|Anqied]] ([[User talk:Anqied|talk]]) 08:34, 11 June 2016 (UTC)&lt;br /&gt;
:Recaptcha appears to work for me currently. Does it work now? It seems like they may have just gone down temporarily. '''[[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;]] 20:52, 11 June 2016 (UTC)&lt;br /&gt;
::I'm not certain this is the same issue, but I was just having a problem with the captcha for unregistered users trying to edit a page. I figured out that it's because you were trying to serve the captcha through HTTP even though the page was on HTTPS, so my browser was blocking the captcha. Changing to HTTP &amp;quot;fixed&amp;quot; the issue, but that shouldn't be the solution. [[Special:Contributions/108.162.215.187|108.162.215.187]] 16:45, 18 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== wrong IP ==&lt;br /&gt;
&lt;br /&gt;
[http://www.explainxkcd.com/wiki/index.php?title=632:_Suspicion&amp;amp;curid=3946&amp;amp;diff=122229&amp;amp;oldid=100180 My edition] was attributed to 141.101.104.60, whereas my real address is 88.156.226.213 according to [https://ipinfo.io]. Wikimedia sites (Wikipedias, Wiktionaries...) recognize my IP address properly. Someting strange is going on here. [[Special:Contributions/141.101.104.71|141.101.104.71]] 22:40, 21 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just a heads up that your website is incorrectly identifying the IP address of visitors as being from the CloudFlare server that is serving the page content to them. It would be best practice if you could explicitly look for the field &amp;quot;REMOTE_ADDR&amp;quot; rather than &amp;quot;X-FORWARDED-FOR&amp;quot; as the former is unaffected by the use of intermediate proxies.&lt;br /&gt;
PS My IP address should begin with 131.111. IP addresses beginning with 141.101 belong to Cloudflare London. [[Special:Contributions/141.101.98.5|141.101.98.5]] 21:08, 21 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
* This appears to still be an issue.  I just [http://www.explainxkcd.com/wiki/index.php?title=Talk:1787:_Voice_Commands&amp;amp;curid=19860&amp;amp;diff=133917&amp;amp;oldid=133916 posted] from [[Special:Contributions/172.72.47.40|172.72.47.40]], my work place and it's showing as [[Special:Contributions/108.162.238.11|108.162.238.11]].  Thanks.&lt;br /&gt;
&lt;br /&gt;
* FYI I just created this account and the &amp;quot;email address confirmation&amp;quot; email I received said the account was created by a Cloudflare IP (162.158.107.199), not my own. [[User:ExcarnateSojourner|ExcarnateSojourner]] ([[User talk:ExcarnateSojourner|talk]]) 15:09, 4 July 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha does not appear ==&lt;br /&gt;
&lt;br /&gt;
I am not a registered user (I just haven't bothered to make an account), so I have to complete a Captcha before saving any of my edits. However, I've found numerous times that the captcha does not show up when I hit [Save page]. The line of text introducing it (&amp;quot;To help protect against automated edit spam, please type the word you see in the box below:&amp;quot;) shows up, but the no actual captcha and thus no saved edits. '''Is this a known issue with Chrome?''' I managed to circumvent it by using IE (I assure you, it was the only other browser available), but I would much prefer to be able to edit ''explain xkcd'' pages in Chrome, my usual browser. {{unsigned ip|108.162.220.17}}&lt;br /&gt;
:What plugins do you have installed on chrome? Do you have Javascript enabled? I'll see what can be done if you have them off. '''[[User:D?avidy22|&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;]] 20:45, 20 July 2016 (UTC)&lt;br /&gt;
::I just figured out the problem and successfully edited a page.  I too tried IE after Chrome but still encountered the issue... to my consternation I noticed a new icon in the address-bar, 'Blocked content'.  (Apparently recaptcha is treated similarly to a pop-up.)  Interacting with this new button made the captcha appear.  I am in Chrome adding this comment, and after finding the similarly-functioning/corresponding button here, all is well [[Special:Contributions/108.162.237.247|108.162.237.247]] 18:39, 2 August 2016 (UTC)&lt;br /&gt;
::Hmph, I am likely a completely different user from the foregoing, but our IP addresses are similar and both reported as from Cloudflare in TX. [[Special:Contributions/108.162.237.247|108.162.237.247]] 18:42, 2 August 2016 (UTC)&lt;br /&gt;
::I would like to address this and also point out this is the only site where I've run into this problem; other wiki-based sites can load captcha fine. According to Chrome it's blocked because it's an &amp;quot;unsafe script&amp;quot;. [[Special:Contributions/141.101.107.84|141.101.107.84]] 08:54, 4 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wanted files ==&lt;br /&gt;
&lt;br /&gt;
[[Special:WantedFiles]]: 41 file is linked but nonexistent. &lt;br /&gt;
&lt;br /&gt;
Some on talk pages, user pages and project pages, but here is a list of those in main namespace:&lt;br /&gt;
# File:Apatosaurus scale mmartyniuk wiki.png&lt;br /&gt;
# File:Apidae - Eucera sp. (male).JPG&lt;br /&gt;
# File:Louisae.jpg&lt;br /&gt;
# File:Wet kookaburra 6674 Crop Edit.jpg&lt;br /&gt;
# File:MQ-1 Predator unmanned aircraft.jpg&lt;br /&gt;
# File:Bee orchids, Aller Brook Local Nature Reserve - geograph.org.uk - 833516.jpg&lt;br /&gt;
# File:Synhalonia nest 1.jpg&lt;br /&gt;
# File:Butterfly Voters View.jpg&lt;br /&gt;
# File:Fusca estacionado.jpg&lt;br /&gt;
# File:Ophrys apifera flower1.jpg&lt;br /&gt;
# File:Galilean moon Laplace resonance animation.gif&lt;br /&gt;
# File:PalmCellTower.jpg&lt;br /&gt;
# File:746 telephone in red.JPG&lt;br /&gt;
# File:Candidate Higgs Events in ATLAS and CMS.png&lt;br /&gt;
# File:Tommy Wiseau.jpg&lt;br /&gt;
# File:Google maps auto.jpg&lt;br /&gt;
# File:Velociraptor dinoguy2.jpg&lt;br /&gt;
# File:Acrocanthosaurus skeleton (1).jpg&lt;br /&gt;
# File:Vraptor-scale.png&lt;br /&gt;
# File:Alces alces elan trophee chateau Tanlay.jpg&lt;br /&gt;
# File:DBCooper.jpg&lt;br /&gt;
# File:Rick Astley - Pepsifest 2009.jpg&lt;br /&gt;
# File:Anonymous emblem.svg&lt;br /&gt;
# File:Eas new.svg&lt;br /&gt;
# File:John Cage and Michael Bach in Assissi 1992.jpg&lt;br /&gt;
I could not find why they were deleted and it's hard for me to argue for their presence in the articles. Being a newbie here, I would like to ask those who knows better to either undelete files, or upload them again, or delete file mentions from the explanations. Thanks --[[User:Ата|&amp;lt;span style=&amp;quot;color:SteelBlue&amp;quot;&amp;gt;Ата&amp;lt;/span&amp;gt;]]&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Ата|&amp;lt;span style=&amp;quot;color:#80A0FF&amp;quot;&amp;gt;(talk)&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 15:47, 8 August 2016 (UTC)&lt;br /&gt;
:I tend to clean up after myself, don't recognise these file names. I believe these happen when files get moved, feel free to cut dead file links wherever you find them if you find them unnecessary.'''[[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;]] 02:38, 10 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[827]]/[[1721]]: Business Idea ==&lt;br /&gt;
&lt;br /&gt;
See [[1721#Trivia]]. Randall has accidentally named both 1721 and 827 &amp;quot;Business Idea&amp;quot;. He fixed it by renaming 827 to &amp;quot;My Business Idea&amp;quot;. I tried to reproduce by renaming the file and wiki page for 827, but it now shows the old comic on both pages. Maybe CloudFlare caching? And idea (that's not a business idea) to fix this? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]])&lt;br /&gt;
:Cloudflare takes a little time to update changes to an image. For immediate results, you can create an image under a different name and use that while you wait for the old one to update. Otherwise, it should update within a few hours. Is it good for you now? '''[[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;]] 14:48, 18 August 2016 (UTC)&lt;br /&gt;
::Yes, it was resolved after a few hours. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 20:25, 18 August 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mobile CSS ==&lt;br /&gt;
&lt;br /&gt;
I've accessed this Wiki on my mobile device more often than previously and I couldn't find any discussion about this. Honestly, 50% of the reasons I'm adding this topic is about the discussion, the rest is about making it easier for people with narrower screens.&lt;br /&gt;
I understand that I am a new member on this Wiki and that altering [[Mediawiki:Common.css]] has site-wide effects (and I'm sure that there are some templates that won't agree with some of the options we have, even some tables, such as the one on [[893: 65 Years#Trivia]], will break a very narrow design).&lt;br /&gt;
&lt;br /&gt;
OK. Let me just ramble on about this, then. =)&lt;br /&gt;
There are some obvious (but not necessarily easier) options for mobile devices. [https://www.mediawiki.org/wiki/Manual:Mobiles,_tablets_and_responsive_design MediaWiki] lists a few Skins and Extensions. Not having ever had access to a Wiki's server, I have no idea how nerve-racking that is (or if it even makes sense for this Wiki). Even more obvious to some - and even harder to implement - is a mobile app (that I wouldn't use anyway).&lt;br /&gt;
&lt;br /&gt;
So, to bridge the time until maybe something more effective comes along, we ''could'' try to add some CSS ourselves. I'm no expert. But here are my thoughts.&lt;br /&gt;
*This is about all devices with narrow screens, not just phones. Let's say anything under 600px width is considered narrow.&lt;br /&gt;
*Most obviously, the font size should be affected. This has negative consequences for anything with fixed font size. And anything we forget. Basically, the sidebar, the search and anything else on top of each page can be massively smaller depending on the screen and fixing that won't be as easy.&lt;br /&gt;
*Of course we could disregard the sidebar, or rather, push it to the bottom (which is easy, it's artificially placed on the left instead of the bottom). There are a number of reasons why a lot of people wouldn't want that. One of those reasons is that the ads would basically disappear for anyone who doesn't scroll down. We would have to figure out where else we can put it, on the top maybe. On the plus side, we could have the entire width of the screen just for the article.&lt;br /&gt;
*Another thing that breaks the design regularly: comic images. We could make them fit. The navigation might be more challenging.&lt;br /&gt;
*There's a whole lot of paddings and margins to get rid of.&lt;br /&gt;
*Maybe make the search box a lot bigger?&lt;br /&gt;
&lt;br /&gt;
A short snippet for the comic images and for the font:&lt;br /&gt;
&lt;br /&gt;
 @media handheld,screen and (max-width: 600px),screen and (max-device-width: 600px){ /* because some mobile browsers like to work with a higher resolution than the resolution of the screen */&lt;br /&gt;
 &lt;br /&gt;
 #bodyContent{&lt;br /&gt;
 font-size:initial; /* resetting font to full size */&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 td &amp;gt; img{ /* maybe add a class for the table in [[Template:comic]] */&lt;br /&gt;
 display:block;&lt;br /&gt;
 margin:auto;&lt;br /&gt;
 max-width:100%; /* make image fit into box */&lt;br /&gt;
 height:auto;&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
I don't know... What do you think?&lt;br /&gt;
Oh, also, Mediawiki says this can be added to [[Mediawiki:Mobile.css]] but I guess that is for extensions? We'd probably have to add that to [[Mediawiki:Common.css]] if we ever want to add it.&lt;br /&gt;
[[User:Ret Samys|Ret Samys]] ([[User talk:Ret Samys|talk]]) 16:21, 15 September 2016 (UTC)&lt;br /&gt;
:Getting on a plane soon, but I'll take a look at this when I get off and get moved in again. '''[[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;]] 14:07, 16 September 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== HTTPS Links Back to XKCD Interfere with Random Button ==&lt;br /&gt;
&lt;br /&gt;
''(I've moved this from &amp;quot;Proposals&amp;quot; to here, now realising this is the proper location.)''&lt;br /&gt;
&lt;br /&gt;
The Links back to the comics that are present just above the comic itself on the wiki pages (and adjacent to the next and previous links) provides an HTTPS link back to XKCD. However, this interferes with users who want to click that link, and then click &amp;lt;code&amp;gt;random&amp;lt;/code&amp;gt; - because &amp;lt;code&amp;gt;c.xkcd.com&amp;lt;/code&amp;gt; does NOT support HTTPS, and thus clicking &amp;lt;code&amp;gt;random&amp;lt;/code&amp;gt; after returning to xkcd from explainxkcd via the button on a comic's article does not work. These links should be switched back to HTTP.&lt;br /&gt;
&lt;br /&gt;
--[[User:9000 volts|9000 volts]] ([[User talk:9000 volts|talk]]) 22:53, 24 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:What makes you suspect &amp;lt;code&amp;gt;c.xkcd.com&amp;lt;/code&amp;gt; does not support SSL? It features a perfectly valid wildcard certificate from GeoTrust (currently valid from Dec 14 00:00:00 2016 GMT, so it should already have affected you), although it's different from the multi-site certificate from Fastly used on the comic and what-if.xkcd.com and, yet again, different from the Let's Encrypt ones used on the blag and store.&lt;br /&gt;
&lt;br /&gt;
:On the other hand, there is a compelling argument for HTTP links: Most interactive comics break with HTTPS. –''TisTheAlmondTavern'', 14:19, 17 January 2017 (UTC)&lt;br /&gt;
::I can't reproduce the issue with random comics, but the benefits of using SSL for links to a site that stores no user data probably don't outweigh the issues that some people seem to be having. Changed. '''[[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;]] 22:34, 10 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Retry for a live version&amp;quot; and stuff not responding ==&lt;br /&gt;
&lt;br /&gt;
Every now and then, I'd just be browsing around the site, then all of a sudden I'd run into an issue with it saying that there was an error with the explainxkcd.com host and that I would need to wait for the servers to restart. This is happening rather often for me, but goes away quickly. Sometimes, it happens on my own wiki pages too... weird. Other times, things would just freeze. Is it something on my end, or is it with the site? --[[User:JayRulesXKCD|JayRulesXKCD]] ([[User talk:JayRulesXKCD|talk]]) 14:05, 5 January 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Support for timezones? ==&lt;br /&gt;
&lt;br /&gt;
I live in the timezone PST, and because of that, the clock seems to be ahead of my time by about 7 hours and 40 minutes. Can someone add support for different timezones?&lt;br /&gt;
For example, at my time of posting, it is 7:56 PM on March 8, 2017. The time the wiki thinks it is is shown on my signature: [[User:625571b7-aa66-4f98-ac5c-92464cfb4ed8|625571b7-aa66-4f98-ac5c-92464cfb4ed8]] ([[User talk:625571b7-aa66-4f98-ac5c-92464cfb4ed8|talk]]) 03:40, 9 March 2017 (UTC)&lt;br /&gt;
:You can actually set your own time zone. Go to Preferences-&amp;gt;Date and Time, and there should be a time offset option for you to pick your time zone. '''[[User:Davidy22|&amp;lt;u&amp;gt;{{Color|#707|David}}&amp;lt;font color=#070 size=3&amp;gt;y&amp;lt;/font&amp;gt;&amp;lt;/u&amp;gt;&amp;lt;font color=#508 size=4&amp;gt;²²&amp;lt;/font&amp;gt;]]'''[[User talk:Davidy22|&amp;lt;tt&amp;gt;[talk]&amp;lt;/tt&amp;gt;]] 07:36, 9 March 2017 (UTC)&lt;br /&gt;
::The thing is, I do have my time zone set to PST, but on the wiki it is still showing up as the wrong time. [[User:625571b7-aa66-4f98-ac5c-92464cfb4ed8|625571b7-aa66-4f98-ac5c-92464cfb4ed8]] ([[User talk:625571b7-aa66-4f98-ac5c-92464cfb4ed8|talk]]) 15:24, 9 March 2017 (UTC)&lt;br /&gt;
:::Oh, the timestamps recorded in signatures are in UTC for everyone. That doesn't change, because it makes it easier to follow the timeline of a conversation in a talk page. '''[[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;]] 17:24, 9 March 2017 (UTC)&lt;br /&gt;
::::Uhhh, the timestamp isn't UTC at all. My latest BOT upload was 06:02, 8 March 2017 CET or 05:02, 8 March 2017 UTC and it is recorded here as 04:45, 8 March 2017. So we still have an offset 17 minutes to the past. That's an old problem.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:33, 9 March 2017 (UTC)&lt;br /&gt;
:::::It is UTC, server inaccuracy doesn't change the time zone, it just makes it inaccurate. '''[[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;]] 19:13, 9 March 2017 (UTC)&lt;br /&gt;
::::::And even if you don't like me for this: The server time is currently UTC-00:17 and not UTC. This odd offset confuses users. But I know nobody can change this.--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:36, 9 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mailserver-problem ==&lt;br /&gt;
&lt;br /&gt;
Hello, &amp;lt;br/&amp;gt;&lt;br /&gt;
I tried to reset my password today, but there is a problem with your mail-server: The sender-adress of your password-reset-mail is expla0@vps.explainxkcd.com, but the (sub-)domain vps.explainxkcd.com does not exists, and so the eMail is rejected by my mail-server (and most others too). Could that please be fixed? Thank you very much. --DaB.&lt;br /&gt;
&lt;br /&gt;
== When did InstantCommons get disabled? ==&lt;br /&gt;
&lt;br /&gt;
I was just about to add some photos of the ISS transiting the sun to [[1828|today's explanation]], but saw that it's no longer possible to just enter the names of {{w|c:|Wikimedia Commons}} photos and for them to render. I know of at least one explanation&amp;amp;mdash;[[1400]]&amp;amp;mdash;that previously had such images, but now just has redlinks. I presume that at some point someone must have disabled {{w|mw:InstantCommons|$wgUseInstantCommons}} in the config settings. May I ask what the reason for that was? And is there any chance that that could be reverted? Obviously there aren't a lot of articles where it makes sense to have Commons images up, but IMHO it's a useful feature to have for the rare occasion where it makes sense, like with today's comic. [[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 21:20, 24 April 2017 (UTC)&lt;br /&gt;
:'''Solved.''' You now can embed pictures from Commons like local files. The link &amp;lt;nowiki&amp;gt;[[File:DBCooper.jpg|thumb|Cooper]]&amp;lt;/nowiki&amp;gt; shows the picture from Commons because it doesn't exist here. There is no need to use a template. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 23:57, 25 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wikipedia template stopped working ==&lt;br /&gt;
&lt;br /&gt;
Some time ago the template used for links to Wikipedia stopped working correctly.  If you see here link to Halloween on Wikipedia, it works again:&lt;br /&gt;
{{w|Halloween}}. --[[User:JakubNarebski|JakubNarebski]] ([[User talk:JakubNarebski|talk]]) 22:21, 25 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Known issue, there's currently an anon doing boring vandalism. --[[Special:Contributions/108.162.241.172|108.162.241.172]] 22:37, 25 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== CAPTCHA does not work for HTTPS visitors ==&lt;br /&gt;
&lt;br /&gt;
I am a fervent believer in encrypting everything (I am the crypto nut in [[1269: Privacy Opinions]]), and have configured the NoScript plugin to force the use of HTTPS instead of HTTP for all sites that aren't on a special list in my configs. Hence, I tend to visit sites on HTTPS that most people visit on unencrypted HTTP, discovering all the bugs in people's HTTPS implementations in the process...and this site is not exempt from the bugfinding.&lt;br /&gt;
&lt;br /&gt;
In order to edit pages, you need to enter a CAPTCHA. However, the script that makes this captcha work is fetched from Google over unencrypted http (the src tag in the script specifies http: not https:). When I visit this site over HTTPS, the use of active content served over unencrypted HTTP onto an encrypted page causes Firefox to have a spasm and block the script. Since Google fully supports HTTPS, the script's src tag should just be changed to say https: instead of http:, and that SHOULD fix it. Better yet, omit the protocol at all, and do something like:&lt;br /&gt;
&lt;br /&gt;
src=&amp;quot;//www.google.com/recaptcha/(rest of url)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Most modern browsers will interpret that as &amp;quot;fetch www.google.com/recaptcha/(rest of url) over the same protocol used to serve this page.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
(Sadly, NoScript is not smart enough to fix this by itself and just change the script's src to https: client-side...)&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/162.158.79.89|162.158.79.89]] 11:12, 20 August 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
The CAPTCHA also doesn't work for https while using Chrome. 01 September 2017&lt;br /&gt;
&lt;br /&gt;
== Deprecation of reCAPTCHA v1 ==&lt;br /&gt;
&lt;br /&gt;
The wiki currently uses reCAPTCHA v1 to validate users as human, which [https://developers.google.com/recaptcha/docs/faq#what-happens-to-recaptcha-v1 beginning in November will show public deprecation notices] and stop working altogether on March 31, 2018.&lt;br /&gt;
&lt;br /&gt;
Are there already plans to migrate to reCAPTCHA v2 or a different CAPTCHA algorithm? –[[User:TisTheAlmondTavern|TisTheAlmondTavern]] ([[User talk:TisTheAlmondTavern|talk]]) 20:05, 31 October 2017 (UTC) (wiki clock is several minutes late again, BTW)&lt;br /&gt;
&lt;br /&gt;
:I do intend to update the CAPTCHA, I got the email notice from Google. I've been away from the site for longer than I'd like, been busy but it looks like a bunch of stuff has piled up while I was gone. I'll try to fix what I can with the time I have. '''[[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;]] 03:38, 12 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Any update on this? It has &amp;lt;6 weeks of life left, and the user messaging has just got angrier. [[Special:Contributions/162.158.155.26|162.158.155.26]] 09:22, 20 February 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::10 days left. I wonder what happens then. Right now, it just says &amp;quot;V1 SHUTDOWN ON 2018-03-31&amp;quot; and expects me to type it as an answer. {{unsigned ip|172.68.110.46}}&lt;br /&gt;
&lt;br /&gt;
::::You can hit the refresh button and it will display an actual catch.  4 days before they shut it down. [[User:TheMageKing|TheMageKing]] ([[User talk:TheMageKing|talk]]) 12:22, 27 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Either the kludge of simply typing the message about shutdown still works, or the Captcha system is just not working: I'm not autoconfirmed here but I was able to edit today, 9 days after v1 presumably went &amp;quot;poof&amp;quot;. [[User:Yngvadottir|Yngvadottir]] ([[User talk:Yngvadottir|talk]]) 18:12, 9 April 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
The new reCAPTCHA v2 is now online. I apologize for the delay but many updates were required and I tried to keep the server downtime as short as possible. [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
== RSS bot stopped? ==&lt;br /&gt;
&lt;br /&gt;
The master RSS feed only goes up to 1912, although the wiki is already up to 1914. --[[Special:Contributions/141.101.105.18|141.101.105.18]] 11:20, 11 November 2017 (UTC)&lt;br /&gt;
:Sorry, been busy, the feed should be up and running again. '''[[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;]] 03:38, 12 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha doesn't work on my browser ==&lt;br /&gt;
&lt;br /&gt;
I can't make any edits to the comic pages because the captcha simply doesn't appear when I'm trying to edit the comic pages. {{unsigned|WilliamBrennan}}&lt;br /&gt;
:Please check your add blockers and activate JavaScript. [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hi &amp;amp; Thanks heaps! I finally created an account after years of pleasurable &amp;amp; enlightening explanations. It took me over 5 minutes to get past the Captcha, and I've seen a few in the last week registering for sites such as XDA-developers and the like. Not sure how it all works but it feels like it's set to &amp;quot;ultra-difficult&amp;quot; or some-such...and this is the place where things are *easy* for *stupid people* like me ;) Cheers &amp;amp; thanks again {{unsigned|Munchywok}}&lt;br /&gt;
:The Captcha is from Google (Big Brother...) and based on an sophisticated software in which you sometimes even don't have to solve it at all when it is convinced that you are a human. But it depends on your browser installation, especially your add ons. My best experience is using Google Chrome without any extensions. Firefox with extensions is the hell. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 09:25, 15 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== New High Resolution comics ==&lt;br /&gt;
&lt;br /&gt;
I've noticed Randall has been making the comics higher resolution to look good on HiDPI/Retina displays. But the copies on ExplainXKCD are the old low resolution copies.&lt;br /&gt;
&lt;br /&gt;
Perhaps we'll have to go through at some point and update these? {{unsigned ip|162.158.75.58}}&lt;br /&gt;
:I am aware of this. Randall started to provide two different resolutions at standard comics more than a year ago, and he also provides the larger resolutions to older comics since than. Technically the image tag provides links to two pictures and the browser decides based on the screen resolution what is shown. Since this wiki is now at the latest version the use of [https://www.mediawiki.org/wiki/Manual:$wgResponsiveImages $wgResponsiveImages] may be possible. But this has to be tested first. Stay tuned... [[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:53, 19 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Should the HTTP urls redirect to HTTPS? ==&lt;br /&gt;
&lt;br /&gt;
Not sure if this has been mentioned before, but shouldn't the HTTP urls be redirecting to HTTPS? Right now, the HTTP and HTTPS endpoints seem to have different login states, which is possibly confusing. I was stumped for a long time on why I couldn't login to my account, because I kept getting the error message &amp;quot;There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Go back to the previous page, reload that page and then try again.&amp;quot; And then I noticed the &amp;quot;Use secure connection&amp;quot; button, and when I clicked it, it took me to the HTTPS site where I was already logged in! But even now, if I go to an HTTP url, I'm still logged out there. [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 00:43, 21 August 2018 (UTC)&lt;br /&gt;
:Of course HTTP and HTTPS are different endpoints. Login via HTTPS and your credentials are encrypted and this will be never converted into plain text for HTTP. And I just successfully tested both connections with Google Chrome. Maybe we should redirect always to HTTPS like xkcd does, right now it's just your choice. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:46, 21 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Ah, I see. If I log in from the HTTP site, I'm logged in on both the HTTP and HTTPS sites. But if I login from the HTTPS site, then I'm only logged in on the HTTPS site, and not on the HTTP site. Furthermore, if I'm logged into the HTTPS site and I try to login from the HTTP site, I get the error message that I quote from above. Fair enough.&lt;br /&gt;
&lt;br /&gt;
::I guess one contribution to my confusion was the fact that the HTTPS site doesn't have the green padlock in Chrome. That would have made the difference between the HTTPS and HTTP site a bit more obvious. (I rarely type in the entire URL directly; I usually just let the Chrome address bar autocomplete do its job... and unfortunately that autocomplete takes me to the HTTP site, and I keep forgetting about that.) Right now, on any HTTPS page here, Chrome still says that it's insecure: &amp;quot;Attackers might be able to see the images you're looking at on this site and trick you by modifying them.&amp;quot; Firefox says something similar: &amp;quot;Parts of this page are not secure (such as images).&amp;quot; Perhaps someone should look into that? (I think it might be the ad image.) [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 03:09, 23 August 2018 (UTC)&lt;br /&gt;
:::Thanks for your remarks. I'm aware of this but the site isn't insecure, only a few local images and some from wikimedia are hard coded to a http link. It's not much so I'll fix it soon.&lt;br /&gt;
:::In general every http request should be redirected to https, but that's not trivial at our current environment. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:35, 23 August 2018 (UTC)&lt;br /&gt;
::::It took some time to find all the places of hard coded images via http (insecure) but now you should see the green secure remark in your browser when logging in via https. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 13:50, 24 August 2018 (UTC)&lt;br /&gt;
:::::in my holy opinion at least the login page should only be served securely. people are notoriously bad at not-reusing-passwords. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 12:23, 10 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just noting that basically every major site out there redirects from HTTP to HTTPS (including http://en.wikipedia.com, http://xkcd.com, http://stackoverflow.com, and even other wiki communities like http://wiki.puella-magi.net, http://en.touhouwiki.net/wiki/Touhou_Wiki, and http://wiki.documentfoundation.org). So it would really cool if we could get that redirect action happening on this site, too :) I was browsing the site today and I was just struck once again by how odd it was that I wasn't logged in, until I remembered that I was on the HTTP site, not the HTTPS site. A real user experience annoyance, if you ask me. [[User:Ahiijny|Ahiijny]] ([[User talk:Ahiijny|talk]]) 21:34, 19 October 2018 (UTC)&lt;br /&gt;
:Of course you're right. I still have other issues but this will be done soon. Stay tuned... --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:08, 20 October 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha too picky ==&lt;br /&gt;
&lt;br /&gt;
I just had to solve the &amp;quot;select all street signs&amp;quot; Captcha at least 10 times in a row. I never know when/whether to include slivers, backs of signs, sign posts, walk/wait lights. Captcha already doesn't follow my definition of street sign (I only call the sign that has the street name a &amp;quot;street sign&amp;quot;, but I realize what I call &amp;quot;road signs,&amp;quot; Captcha also calls &amp;quot;street signs&amp;quot; and I can adjust for that. But I haven't figured out the other issue yet, and I suspect Captcha is dinging me on choosing slivers. But that's only a guess, since it never tells you what you got wrong, it just gives you another Captcha. {{unsigned|Thisisnotatest}}&lt;br /&gt;
:My advice is installing Google Chrome and it works fine. Since that Captcha software is also from Google (Big Brother...) I believe that's on purpose. Firefox is the hell as you described; I'm not sure how it works at MS IE/Edge. In general you have to select not less than three and not more than four squares. But on Firefox, even when it seems definitely to be correct, the chance of getting an error message is more than 80%. You probably use FF. Nonetheless right now there are no other adequate Captcha tools supported by Mediawiki, the software this Wiki runs on. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 12:57, 27 August 2018 (UTC)&lt;br /&gt;
:I second this. Big Brother's Captchas on Firefox are nearly unsolvable (granted, I'm browsing with JS off and blocking 3rd party cookies). And recaptcha requires 1) JavaScript and 2) a connection to google. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 12:23, 10 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Cannot create a user page ==&lt;br /&gt;
&lt;br /&gt;
i have tried to make a user page for myself and cannot seem to do it, i'm sorry if this has been addressed already, but i couldn't find it. [[User: Nintendo Mc]] ([[User talk:Nintendo Mc|talk]]) 13:07, 28 September 2018 (UTC)&lt;br /&gt;
:New user don't have the rights. Do some more edits and wait a few days until you can create new pages. Your user page is created by me for now. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 15:00, 28 September 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::'''Good Question!''' is there some place '''that everyone''' [who is cool] '''can find,''' that explains '''how many''' edits one has to do (and/or, '''how long''' one has to wait) in order to cause the&amp;lt;blockquote&amp;gt;[...] but you do not have permission to create this page.&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
::'''[error] message''' to ... '''&amp;quot;no longer&amp;quot; appear,''' when some limitation or rule is no longer blocking or &amp;quot;preventing&amp;quot; allowing creation -- by that user -- of his own '''&amp;quot;User:&amp;quot;''' page? (OR ... of ''her'' own '''&amp;quot;User talk:&amp;quot;''' page?) &lt;br /&gt;
&lt;br /&gt;
::I have done [https://www.explainxkcd.com/wiki/index.php/Special:Contributions/Mike_Schwartz very few edits] here, but ... a couple of them were almost '''3 years ago.''' &lt;br /&gt;
&lt;br /&gt;
::For what it's worth (FWIW), '''I did not plan to say much''' on my &amp;quot;User:&amp;quot; page here. Probably something like:  &lt;br /&gt;
::::This user is not a frequent flyer here on this Wiki (at &amp;quot;explainxkcd&amp;quot;); ...but he has done [https://en.wikipedia.org/wiki/Special:Contributions/Mike_Schwartz a 4-digit number of edits] on ''other'' Wikis ...mainly [https://en.wikipedia.org/wiki/Main_Page English Wikipedia] (&amp;quot;See also&amp;quot; his [https://en.wikipedia.org/wiki/User:Mike_Schwartz &amp;quot;User:&amp;quot; page] there.) &lt;br /&gt;
&lt;br /&gt;
::&amp;lt;big&amp;gt;&amp;lt;big&amp;gt;Any comments?&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt; Thanks for listening. --[[User:Mike Schwartz|Mike Schwartz]] ([[User talk:Mike Schwartz|talk]]) 07:43, 7 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::According to [[explain xkcd:Community portal/Admin requests#Permission request|here]] and [[:explain xkcd:Autoconfirmed users]], you need to accumulate 10 edits (as well as your account being active for at least 3? or 7? days), then you become an &amp;quot;autoconfirmed user&amp;quot; and gain the [[Special:ListGroupRights|right]] to create pages.  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 02:09, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Do you know if only edits count, or if talk contributions count too? [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:26, 19 June 2024 (UTC)&lt;br /&gt;
::::Wait. On [[:explain xkcd:Autoconfirmed users]] it says 50 edits, not 10. [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:51, 26 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Accessibility issues ==&lt;br /&gt;
&lt;br /&gt;
[First post - hello, everyone!]&lt;br /&gt;
&lt;br /&gt;
I have 15 years of experience of using MediaWiki, and have been heavily involved in some of the accessibility work on Wikipedia.&lt;br /&gt;
&lt;br /&gt;
When we use colons (&amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;), semicolons (&amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt;), and asterisks (&amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;) to indent dialogue, discussions, etc we actually cause MediaWiki to generate HTML lists.&lt;br /&gt;
&lt;br /&gt;
If we leave a bank line between indented lines/ paragraphs, we cause the start of a new HTML list.&lt;br /&gt;
&lt;br /&gt;
Since the start of each list is read out by the kind of software used by (for example) people with severe visual impairments, this generates barrier to their use of the site. &lt;br /&gt;
&lt;br /&gt;
The solution is to not leave blank lines; to always indent replies by just one step; and to maintain consistency in the type of character used.&lt;br /&gt;
&lt;br /&gt;
You can see examples and more explanation at {{w|Wikipedia:Manual of Style/Accessibility#Lists}}&lt;br /&gt;
&lt;br /&gt;
Please consider adopting Wikipedia's recommended best practice for such lists, on this site. &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Pigsonthewing|Andy Mabbett]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Pigsonthewing&amp;lt;/span&amp;gt;); [[User talk:Pigsonthewing|Talk to Andy]]; [[Special:Contributions/Pigsonthewing|Andy's edits]]&amp;lt;/span&amp;gt; 19:20, 5 November 2018 (UTC)&lt;br /&gt;
:Thanks for your input and welcome here. At first you should know that this Wiki doesn't follow every Wikipedia standard, but there is a --relatively new-- [[explain xkcd:Editor FAQ|FAQ]] and we should talk at that discussion page about any enhancements. And please consider to keep it short, a typical editor here isn't a Wikipedean and doesn't read tons of manuals.&lt;br /&gt;
:There are many ugly layouts here, most written before the FAQ did exist, but when I and others see them the explanation or transcript gets an incomplete tag for that reason. And the biggest problem in the past was the use of overwhelming tables.&lt;br /&gt;
:BTW: Using a new-newline for each sentence isn't also a nice layout. Never mind... --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 20:54, 5 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== suggest adding info to pages ==&lt;br /&gt;
&lt;br /&gt;
I see &amp;quot;Title text&amp;quot; here on explainxkcd, but not on the comic itself.  &lt;br /&gt;
&lt;br /&gt;
Eg. https://www.explainxkcd.com/wiki/index.php/1313:_Regex_Golf shows &amp;quot;Title text: /bu|[rn]t|[coy]e|[mtg]a|j|iso|n[hl]|[ae]d|lev|sh|[lnd]i|[po]o|ls/ matches the last names of elected US presidents but not their opponents.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I don't see that anywhere on https://xkcd.com/1313/  Why not? {{unsigned ip|172.68.174.106}}&lt;br /&gt;
&lt;br /&gt;
:First of all: Please sign your comments&lt;br /&gt;
:&amp;lt;s&amp;gt;Second: I am not sure this is the right place for such a question, so please do not wonder if someone removes it.&amp;lt;/s&amp;gt;&lt;br /&gt;
:And finally: the &amp;quot;title text&amp;quot; can be seen by hovering the mouse over the image on the &amp;quot;regular&amp;quot; xkcd page. Here it is made more visible by mentioning beneath the picture additionally. More details can be found at the page about the title text :) https://www.explainxkcd.com/wiki/index.php/title_text [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 15:09, 12 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
@[[User:Lupo|Lupo]], no honest comment will be removed here, even if it should be posted at the [[explain xkcd:Community portal/Miscellaneous|Miscellaneous]] section. @IP, the proper internal link is here: [[title text]], and I see that this wiki needs a simple page to explain all the terms and characters used in a general short way. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:43, 12 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Mediawiki exception on some pages ==&lt;br /&gt;
&lt;br /&gt;
I get the following MedaiWiki exception on some of the pages:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;MediaWiki internal error.&lt;br /&gt;
&lt;br /&gt;
Original exception: [0beebcc3efaec7ded86aea14] 2018-12-05 23:25:16: Fatal exception of type &amp;quot;MWException&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Exception caught inside exception handler.&lt;br /&gt;
&lt;br /&gt;
Set $wgShowExceptionDetails = true; at the bottom of LocalSettings.php to show detailed debugging information.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See for example sites https://www.explainxkcd.com/wiki/index.php/2034:_Equations or https://www.explainxkcd.com/wiki/index.php/User:Dgbrt&lt;br /&gt;
&lt;br /&gt;
[[User:Sztupy|Sztupy]] ([[User talk:Sztupy|talk]]) 23:29, 5 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Also having this. Seems to happen when “math” in Preferences-Appearance is set to “MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools)” [[User:DrMeepster|DrMeepster]] ([[User talk:DrMeepster|talk]]) 08:01, 8 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:New error: If that math option is set to “Latex source” than an error relating to the page-ruining setting replaces any latex code: Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response (&amp;quot;Math extension can not find Restbase URL. Please specify $wgMathFullRestbaseURL.&amp;quot;) from server &amp;quot;invalid&amp;quot;:): &amp;lt;LATEX CODE HERE&amp;gt; [[User:DrMeepster|DrMeepster]] ([[User talk:DrMeepster|talk]]) 07:50, 11 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Sorry for my late reply. I will check and solve this issue soon, right now only the plain PNG image setting does work. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 18:15, 15 February 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
: The problem appears to not be solved.  In addition to the above pages (which are still broken), I've noticed it on the following: https://www.explainxkcd.com/wiki/index.php/2292 and https://www.explainxkcd.com/wiki/index.php/2311.  The workaround of configuring my account to render math as PNG works, but someone with the knowledge and access to fix this needs to do so.  [[User:Shamino|Shamino]] ([[User talk:Shamino|talk]]) 13:43, 3 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== “All 2126 Comics have an Explanation” ==&lt;br /&gt;
&lt;br /&gt;
There are 2127 comics, and the main page seems to update automagically, so I’m not sure what the issue is. [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 15:58, 25 March 2019 (UTC)&lt;br /&gt;
:I think you posted this before the &amp;quot;new robot&amp;quot; comic came up? keep in mind that the number 404 is not linked to any comic. (There is an explain page for 404, but no comic 404. Therefore it is actually 1 comic less than you might think based on the number. On the other hand there are I think 2 or 3 additional special comics (not numbered), such as the latest entry to the 5 minute comic series, or the one about open source, etc. [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]])&lt;br /&gt;
::I posted after it came up. I know about the unnumbered comics, so assumed they didn’t count, but I always forget about 404. Accounting for the non-comic, all seems right in the world. Thanks Lupo. [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 14:01, 26 March 2019 (UTC)&lt;br /&gt;
:::Just checked and they just subtract 1 in the source code??????? [[User:Netherin5|“That Guy from the Netherlands”]] ([[User talk:Netherin5|talk]]) 16:58, 12 April 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
&lt;br /&gt;
Hi, I'm working on a project focused on docs, and wondered if there's some API or database I can access to pinch some of the tagging info from this site?&lt;br /&gt;
Even something like Randall's /json.html data from each page would work. ''[[User:Toonarmycaptain]] ([[User talk:Toonarmycaptain]] forgot to sign this edit at 03:50, 14 May 2019 (UTC)''&lt;br /&gt;
&lt;br /&gt;
== Unwanted Link ==&lt;br /&gt;
&lt;br /&gt;
In [[1467: Email]], there are two links in the title text that should be normal text. It has happened several times in other pages, and it's annoying. How do I change links like that into regular text? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 07:41, 11 July 2019 (UTC)&lt;br /&gt;
:Not sure what you mean. Maybe it is a browser issue on your end? on my computer neither chrome nor internet explorer or edge interpret anything inside of &amp;quot;My New Year's resolution for 2014-54-12/30/14 Dec:12:1420001642 is to learn these stupid time formatting strings.&amp;quot; as a link... [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 08:00, 11 July 2019 (UTC)&lt;br /&gt;
::Just checked. iPad misinterpreting part of them as phone numbers, appeared as link. [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 09:29, 11 July 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Captcha not working? ==&lt;br /&gt;
&lt;br /&gt;
I've been experiencing some problems when trying to solve captcha when posting comments and topics. It's gotten much harder than before, I fail a lot more often, and occasionally, when I finish it, it reloads the page with an &amp;quot;Incorrect or Missing Captcha&amp;quot; error, and forces me to retry. Has anybody else experienced this problem? Am I the only one with Captcha issues? '''Has it been working properly in recent times?'''[[Special:Contributions/108.162.241.244|108.162.241.244]] 18:40, 8 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== DgbrtBOT ==&lt;br /&gt;
&lt;br /&gt;
The bot seems to have been down since December 13, 2019, and Dgbrt hasn't made a single edit since March, 2019. He hasn't responded to the comments in DgbrtBOT's talk page, either. Is there any way for an someone to contact him? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 13:12, 1 January 2020 (UTC)&lt;br /&gt;
:The bot has resumed its extremely helpful work again this week, but no word yet on why it was MIA for a solid month. [[User:Ianrbibtitlht|Ianrbibtitlht]] ([[User talk:Ianrbibtitlht|talk]]) 14:06, 10 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Google Ads appearing all over the page ==&lt;br /&gt;
&lt;br /&gt;
Google seems to have changed something in AdSense again, and the ads have been appearing in random positions again since December, 2019. [https://wpadvancedads.com/adsense-in-random-positions-auto-ads/ This page] might have a solution? [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 13:20, 1 January 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Links to xkcd pages sould be withoult &amp;quot;www.&amp;quot; part ==&lt;br /&gt;
&lt;br /&gt;
There is an issue with loading resources on pages, that are opened with &amp;quot;www.&amp;quot; part in URL.&lt;br /&gt;
For example commic [https://www.xkcd.com/1975/ 1975].&lt;br /&gt;
If viewed from https://www.xkcd.com/1975/, comic is not interactive. On the other hand, https://xkcd.com/1975/ works like a charm.&lt;br /&gt;
&lt;br /&gt;
Page failes to load resorces from https://xkcd.com/1975/alto/root with error caused by CORS policy:&lt;br /&gt;
&lt;br /&gt;
* Access to fetch at 'https://xkcd.com/1975/alto/root' from origin 'https://www.xkcd.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.&lt;br /&gt;
&lt;br /&gt;
All links to commics in headers (button ''Comic #1975 (April 1, 2018)'') include &amp;quot;www.&amp;quot; part, for example this explanation:&lt;br /&gt;
https://www.explainxkcd.com/wiki/index.php/1975:_Right_Click&lt;br /&gt;
&lt;br /&gt;
IMO links in headers (buttons ''Comic #xxx (date)'') should be updated to exclude &amp;quot;www.&amp;quot; part.&lt;br /&gt;
&lt;br /&gt;
== Can't create my userpage ==&lt;br /&gt;
&lt;br /&gt;
I just registered, and can't seem to edit/create my own userpage. I've been editing MediaWiki wikis for a very long time and it's currently part of my career, so I'm pretty sure I'm doing everything right. Is there a prerequisite number of edits or something before I can create my userpage? [[User:Equazcion|Equazcion]] ([[User talk:Equazcion|talk]]) 22:18, 6 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I do not know the answer to that, but ... if one of us finds out &amp;quot;sooner&amp;quot; than the other, then, let's &amp;quot;share&amp;quot; the answer. Yours might appear here, and mine ... might appear about eleven &amp;quot;sections&amp;quot; up, in this same &amp;quot;Technical&amp;quot; portal ... &amp;lt;s&amp;gt;at the URL&amp;lt;/s&amp;gt; in the section &amp;quot;[[explain_xkcd:Community_portal/Technical#Cannot_create_a_user_page|Cannot create a user page]].&amp;quot; (see [https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd%3ACommunity_portal%2FTechnical&amp;amp;type=revision&amp;amp;diff=190166&amp;amp;oldid=190127 the DIFF listing]...) &lt;br /&gt;
&lt;br /&gt;
:Maybe I should have &amp;quot;seconded the motion&amp;quot; '''here''', instead of adding my own question, -- which is very similar! -- to a different section, up '''there?''' Pardon me ... --[[User:Mike Schwartz|Mike Schwartz]] ([[User talk:Mike Schwartz|talk]]) 08:15, 7 April 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::[[explain_xkcd:Community_portal/Admin_requests#Permission_request]] might help. [[User:A(l)Chemist|AlChemist]] ([[User talk:A(l)Chemist|talk]]) 11:06, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Yes, according to that page, your account must be at least one week old, AND you must have made at least 10 edits.  There's a new page, [[:explain xkcd:Autoconfirmed users]], which says it's three days (rather than one week) and 10 edits – after that, you become an &amp;quot;autoconfirmed user&amp;quot;, and gain the right to create pages ([[Special:ListGroupRights|among other things]]).  – [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 02:01, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== List of all comics incomplete/overflowing ==&lt;br /&gt;
&lt;br /&gt;
The [[List_of_all_comics | List of all comics]] and the full list are incomplete, stopping with 2289. Taking a look at [[List_of_all_comics_(full) | List of all comics (full)]] nets that it belongs to the category 'Pages where template include size is exceeded', so I'm assuming it just hit the limit. I'm sadly not well versed in MediaWiki, so I have no idea what a workaround would look like&lt;br /&gt;
&lt;br /&gt;
== 2138 page issues ==&lt;br /&gt;
&lt;br /&gt;
This first came up when following a link from on of the other Code Quality pages.&lt;br /&gt;
&lt;br /&gt;
when you go to https://www.explainxkcd.com/wiki/index.php/2138:_Wanna_See_the_Code%3F you get a blank pag that says &amp;quot;No input file specified.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
however when you go to https://www.explainxkcd.com/wiki/index.php/2138 you get the actual page via redirect but when you reload the page it goes back to &amp;quot;No input file specified.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
not sure what causes this but i tested in chrome (incognito mode to avoid extensions), old edge (not chromium) and chrome iOS via mobile data. all test had the same result.&lt;br /&gt;
&lt;br /&gt;
sorry if this is the wrong place for this but not sure where else to put it. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 14:44, 21 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This problem seems to be common to all comics ending with a question mark: [[2236]], [[2138]], [[2065]], [[1841]], [[1205]]. My best guess is that the url is being interpreted as a query, but since there is nothing after the question mark this results in an error. Whether this is a new error or just hasn't been noticed before I don't know. Renaming the pages without the question mark could work, but would require every reference to these comics on the wiki to be updated. [[User:A(l)Chemist|AlChemist]] ([[User talk:A(l)Chemist|talk]]) 10:07, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::i think it is new, i recently (not sure when but after 2138 was released) went through the Code Quality series using the links and it worked fine then. i don't think it is being interpreted as a query because the question mark is encoded. i would amazed if it would still interpret this as a query because that would completely defeat the point of encoding the url in the first place. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 09:35, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::here is a full list of broken pages: [[58]], [[111]], [[259]], [[1205]], [[1705]], [[1841]], [[1913]], [[2065]], [[2138]], [[2236]]. i wrote a quick javascript to extract a full list of urls from [[List of all comics (full)]] (then added the recent ones manually, [[explain_xkcd:Community_portal/Technical#List_of_all_comics_incomplete.2Foverflowing|see above]]). then ran a python script to get the content of each page and check if it is broken (with a 2 sec delay to minimise server load) and saved the list if broken ones. [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 13:34, 22 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Note that you can view the comic by changing the URL from &amp;lt;code&amp;gt;index.php/...&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;index.php?title=...&amp;lt;/code&amp;gt; ([https://www.explainxkcd.com/wiki/index.php?title=58:_Why_Do_You_Love_Me%3F example]). —[[User:Galaktos|Galaktos]] ([[User talk:Galaktos|talk]]) 13:03, 14 May 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;All comics&amp;quot; from left sidebar is not updating ==&lt;br /&gt;
&lt;br /&gt;
https://www.explainxkcd.com/wiki/index.php/List_of_all_comics&lt;br /&gt;
&lt;br /&gt;
[https://imgur.com/a/J287JBz image]&lt;br /&gt;
&lt;br /&gt;
== Attention needed to some List pages  ==&lt;br /&gt;
&lt;br /&gt;
I just (mis)clicked on &amp;quot;All Comics&amp;quot;, and thought it looked odd.&lt;br /&gt;
DGBRTBot needs a prod, or something, given the current months-old state and commented prediction in https://www.explainxkcd.com/wiki/index.php?title=List_of_all_comics&amp;amp;action=history&lt;br /&gt;
&lt;br /&gt;
(Oh, and the [[List of all comics (full)]], which I then checked has a redlinked Category of &amp;quot;Pages where template include size is exceeded&amp;quot; and seems to have been previously given a badly-included &amp;quot;...and everything before #501&amp;quot;. Not sure if the first problem is easily solvable, but as I'm here I thought I'd mention it, and you could properly add 1-500 ''and'' 501-1000 to sort the Include Size issue, maybe?)&lt;br /&gt;
&lt;br /&gt;
I could be way off-piste, but as it looks like nobody has noticed anything yet I thought I'd at least raise the issue, and then leave the fixing to someone with a bit more Wiki-Fu..? [[Special:Contributions/162.158.155.120|162.158.155.120]] 20:48, 3 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:For [[List of all comics]], looks like [[User:DgbrtBOT|DgbrtBOT]] is working again, and [[User:Btx40]] already went back and added the missing entries, so that should be all good now.&lt;br /&gt;
:For [[List of all comics (full)]], not sure if I correctly understand what you mean by &amp;quot;''you could properly add 1-500 ''and'' 501-1000 to sort the Include Size issue''&amp;quot;?  But I think the &amp;quot;''badly-included '...and everything before #501' ''&amp;quot; you mentioned wasn't so much ''badly-inluded'' – its code looked correct to me – rather, the inclusion makes the page so big that it ''causes'' the page to exceed the &amp;quot;template include-size&amp;quot; limit.  See the following Wikipedia articles for more about how this &amp;quot;template include-size&amp;quot; limit works in MediaWiki:&lt;br /&gt;
:* {{w|Wikipedia:Template limits#Post-expand include size}}&lt;br /&gt;
:* {{w|Wikipedia:Post-expand include size}}&lt;br /&gt;
:So ''as a result of'' exceeding the limit, the parser ''excludes'' the template that caused the limit to be exceeded (i.e. it excludes the 1-500 list at the bottom of the page), so as to keep the page under the size limit; and instead of the ''actual'' content, the parser just inserts a ''link'' to the content.  And it so happens that in this case, the ''content'' includes the control-characters for constructing the table rows – so because those control characters are excluded along with the content, then the link shows up in the last existing cell of the table, and ''appears'' to be badly-included.&lt;br /&gt;
:I'm not sure how to fix it, but some options could be:&lt;br /&gt;
:* Somehow reduce the content of the page so that the full list of #1-to-#current doesn't exceed the limit.&lt;br /&gt;
:** Each &amp;quot;row&amp;quot; of the table produces about 700 characters in the resulting HTML; around 200 of that is the hidden &amp;quot;create&amp;quot; link (from [[Template:comicsrow]]) that I think ''would'' appear if the comic's page didn't exist yet.  I would say that at this point, since all the comics already have pages, then that &amp;quot;create&amp;quot; link is only useful for the most recent comic, and could probably be omitted to significantly reduce the size of the page.&lt;br /&gt;
:*** (Actually, it looks like DgbrtBOT might automatically create the page for each new comic, so the &amp;quot;create&amp;quot; link might not be needed ''at all'' anymore.)&lt;br /&gt;
:** There are some other elements that could be removed from each table row to save space, such as the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attributes of the links, etc.&lt;br /&gt;
:** Not sure if all of that would create enough headroom for the 1-500 list though?&lt;br /&gt;
:* Increase &amp;lt;code&amp;gt;$wgMaxArticleSize&amp;lt;/code&amp;gt; on the server?  ([https://www.mediawiki.org/wiki/Manual:$wgMaxArticleSize See here].)&lt;br /&gt;
:** Not sure of the risks of that; and in any case, it's only that one page that currently exceeds the limit, so may not be worth it.&lt;br /&gt;
:For now, I've added a note to the page explaining that 1-500 are missing and why, and I've tweaked the bottom of the table to make the link to 1-500 a bit more presentable in the meantime.&lt;br /&gt;
:– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 06:41, 3 October 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Strange error—maybe edit conflict? ==&lt;br /&gt;
&lt;br /&gt;
I happened to be looking at my edit history, and I noticed that something insane happened back in June: I made an edit to [[2319: Large Number Formats]], and it somehow combined my edit with someone else's. The entirety of my edit (as I crafted it) was confined to the article's categories; I added one and put the set in alphabetical order. But the edit, {{diff|193595|as it was logged}}, is a massive alteration, with all sorts of questionable changes. It was (rightly, I think) undone by [[User:Jkrstrt|Jkrstrt]] a couple days later. Did I somehow overlook an edit-conflict error and accept some (now anonymous) users edit? I can see myself making some kind of oversight at that time of night, but it seems antithetical to the wiki process to have an edit misattributed in this way. (I certainly don't like having that change connected with my name, but I also wonder how this intersects with important issues of public ownership integral to wiki communities.) I'd appreciate any insight fellow editors could provide. [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 22:24, 3 August 2020 (UTC)&lt;br /&gt;
:As I'm passing through, I shall note that I'm the IP that added the &amp;quot;(The 1971 transition[...]&amp;quot; paragraph you see 'added' there. It was actually part of a larger edite that was later (than my edit, earlier than yours) understandably removed for being irrelevent. During this {{diff|193424|5-day-earlier revision}}. But I had absolutely nothing to do with pretty much every other change in your above-logged diff, SFAICS from a quick skim, so honestly don't know why it features there. But hope this info is useful. [[Special:Contributions/162.158.159.66|162.158.159.66]] 23:05, 3 August 2020 (UTC)&lt;br /&gt;
::That's actually quite helpful because it caused me to go look at older versions of the article. It looks like my edit {{diff|193595&amp;amp;oldid=193386|used a very early version as a starting point}} (thereby reverting all changes made later). My best guess is that I had gone back to an old version because Randall changed this comic after it was published and was trying to convince myself that I wasn't crazy. No, not crazy, but spacey. Wikipedia puts a big red warning across the page when you're ending an old version, and this wiki uses only a bit of bold text—that apparently wasn't enough to draw my attention. Thanks! [[User:Jameslucas|jameslucas]] &amp;lt;small&amp;gt;([[User talk:Jameslucas|&amp;quot; &amp;quot;]] / [[Special:Contributions/Jameslucas|+]])&amp;lt;/small&amp;gt; 01:33, 4 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Unable to view &amp;quot;what if?&amp;quot; page ==&lt;br /&gt;
&lt;br /&gt;
The link to the page for the [[what if?]] blog displays an error: &amp;quot;No input file specified.&amp;quot; [[User:JBYoshi|JBYoshi]] ([[User talk:JBYoshi|talk]]) 03:38, 21 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:This also happens to me on [[1205: Is It Worth the Time?]] Must be something with the ?s in the titles. [[Special:Contributions/172.69.22.66|172.69.22.66]] 15:46, 25 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I've noticed that as well. I made a page in my userspace that redirects to the what if page, and for some reason that seems to work. ([[User:Blue screen of life/whatiflink|here is the link to the page]]) [[User:Blue screen of life|Blue screen of life]] ([[User talk:Blue screen of life|talk]]) 20:09, 31 August 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::I have also noticed this but it is not just on pages with questions marks. Both [[259]] and [[1705]] show the same thing. A full list (as of 22 June 2020) of the ones i found is in the last reply to my report found here [[#2138_page_issues]] [[User:TomW1605|TomW1605]] ([[User talk:TomW1605|talk]]) 12:20, 22 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Both [[259]] and [[1705]] have an ({{w|E acute|e-with-accute-accent}}, Unicode U+00E9) in the URL, so for those pages, I wonder if that has anything to do with it?&lt;br /&gt;
::::For the &amp;quot;what if?&amp;quot; page, I had recently added a redirect from [[what if (blog)]] to get to it, and the [[What If]] disambiguation page has been updated with it, so at least we can get to it that way; and for the comic explanations, at least we can get to them by linking to their number-redirects (as [[58]] instead of [[58: Why Do You Love Me?]]); but not sure how to fix it overall.  At the following page, it suggests tweaking an {{w|Apache HTTP Server|Apache}} {{w|Rewrite engine|rewrite}} directive in {{w|.htaccess}} (or a {{w|Common Gateway Interface|CGI}} setting in {{w|PHP}} if it's running on {{w|Internet Information Services|IIS}}):&lt;br /&gt;
::::* https://www.mediawiki.org/wiki/Topic:Vmaw1tu5kkhyon0n&lt;br /&gt;
::::So maybe something about that has changed recently?  Documentation:&lt;br /&gt;
::::* [https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewriterule Apache mod_rewrite &amp;lt;code&amp;gt;RewriteRule&amp;lt;/code&amp;gt; directive]&lt;br /&gt;
::::* [https://www.php.net/manual/en/ini.core.php#ini.cgi.force-redirect php.ini &amp;lt;code&amp;gt;cgi.force_redirect&amp;lt;/code&amp;gt; directive]&lt;br /&gt;
::::Summarizing a few points from [[User talk:SlashMe#Homeopathic Wiki|this related discussion]]:&lt;br /&gt;
::::* Only one of the site's [https://explainxkcd.com/wiki/index.php/Special:ListUsers?group=sysop 10 administrators] has made recent edits ([[Special:Contributions/SlashMe|SlashMe]]).&lt;br /&gt;
::::* Neither of the site's [https://explainxkcd.com/wiki/index.php/Special:ListUsers?group=bureaucrat 2 bureaucrats] ([[Special:Contributions/Jeff|Jeff]] and [[Special:Contributions/Lcarsos|Lcarsos]]) have made any edits recently.&lt;br /&gt;
::::* For admin access to the ''server'' itself, my limited understanding is that [[Special:Contributions/Jeff|Jeff]] might actually own the server, but may have also given admin access to [[Special:Contributions/Dgbrt|Dgbrt]]; however, neither of them have made edits recently.&lt;br /&gt;
::::But &amp;quot;most recent edit&amp;quot; might not be a good indicator, so I wonder of some of these folks are still involved in the project?&lt;br /&gt;
::::– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 05:10, 29 September 2020 (UTC)&lt;br /&gt;
: Looks like it happens for any page that has a percent-encoding in the title. [[User:PoolloverNathan|PoolloverNathan]]&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[Special:Contributions/PoolloverNathan|s]][[User talk:PoolloverNathan|talk]] [[Wikipedia:WP:SEAOFBLUE|the blue seas]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt; 16:32, 16 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
=== Known broken pages ===&lt;br /&gt;
(Redirects work, whereas links to the actual page are broken.)&lt;br /&gt;
&lt;br /&gt;
Title containing e-accute-accent:&lt;br /&gt;
* [[259]] ↳ [[259: Clichéd Exchanges]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=259:_Clich%C3%A9d_Exchanges What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1705]] ↳ [[1705: Pokémon Go]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1705:_Pok%C3%A9mon_Go What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Title ending with question mark:&lt;br /&gt;
* &amp;lt;del&amp;gt;[[what if (blog)]] ↳ [[what if?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=What_If%3F What links here])&amp;lt;/small&amp;gt;&amp;lt;/del&amp;gt; &amp;lt;ins&amp;gt;fixed – content now exists at [[what if]], and [https://www.explainxkcd.com/wiki/index.php?title=Special:WhatLinksHere/what_if&amp;amp;limit=500 broken links] are in the process of being updated (see below)&amp;lt;/ins&amp;gt;&lt;br /&gt;
* [[58]] ↳ [[58: Why Do You Love Me?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=58:_Why_Do_You_Love_Me%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[111]] ↳ [[111: Firefox and Witchcraft - The Connection?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=111:_Firefox_and_Witchcraft_-_The_Connection%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1205]] ↳ [[1205: Is It Worth the Time?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1205:_Is_It_Worth_the_Time%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1841]] ↳ [[1841: Who?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1841:_Who%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[1913]] ↳ [[1913: A ?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=1913:_A_%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2065]] ↳ [[2065: Who Sends the First Text?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2065:_Who_Sends_the_First_Text%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2138]] ↳ [[2138: Wanna See the Code?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2138:_Wanna_See_the_Code%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[2236]] ↳ [[2236: Is it Christmas?]] &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=2236:_Is_it_Christmas%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Moved ===&lt;br /&gt;
I moved the [[what if?]] page to the [[what if (blog)]] page which I then changed to simply [[what if]] to fix this issue and because anyone new to this site would type that any way to see it.&amp;lt;span&amp;gt; — [[User:Sqrt-1|The &amp;lt;b&amp;gt;𝗦𝗾𝗿𝘁-𝟭&amp;lt;/b&amp;gt;]] &amp;lt;sup&amp;gt;[[User talk:Sqrt-1|&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;talk&amp;lt;/span&amp;gt;]] [[Special:Contributions/Sqrt-1|&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;stalk&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;&amp;lt;/span&amp;gt; 06:47, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Still trying to wrap my head around it – so just to summarize, we currently have:&lt;br /&gt;
:&lt;br /&gt;
:* '''[[whatif]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=whatif&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''redirects to'' '''[[what if?]]''' (see below)&lt;br /&gt;
:* '''[[What If?]]''' – page broken &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=What_If%3F&amp;amp;redirect=no no-redirect link]) ([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=What_If%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''also redirects to'' '''[[what if?]]''' – page broken &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;redirect=no no-redirect link]) ([https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=what_if%3F What links here])&amp;lt;/small&amp;gt;&lt;br /&gt;
:*** ↳ ''redirects to'' '''[[what if]] – actual content'''&lt;br /&gt;
:*** ''content manually moved from'' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;diff=198070&amp;amp;oldid=197859 diff])&amp;lt;/small&amp;gt; '''[[what if?]]''' ''to'' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if&amp;amp;diff=198071&amp;amp;oldid=197486 diff])&amp;lt;/small&amp;gt; '''[[what if (blog)]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if_(blog)&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt; (''[https://www.explainxkcd.com/wiki/index.php?title=what_if%3F&amp;amp;action=history previous revision history] remains at'' '''[[what if?]]''')&lt;br /&gt;
:**** ⇒ ''moved to'' '''[[what if]] – actual content'''&lt;br /&gt;
:&lt;br /&gt;
:For completeness, we also have...&lt;br /&gt;
:&lt;br /&gt;
:* '''[[what if book]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=what_if_book&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ↳ ''redirects to'' '''[[what if#The book]] – actual content'''&lt;br /&gt;
:** Suggestion: for consistency, also add a '''[[what if (book)]]''' page that redirects here?&lt;br /&gt;
:&lt;br /&gt;
:...and the disambiguation page...&lt;br /&gt;
:&lt;br /&gt;
:* '''[[What If]]''' &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=What_If&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ⇒ ''moved to'' '''[[What If (disambiguation)]]''' – disambiguation page&lt;br /&gt;
:*** ''links to'' '''[[17: What If]]''' (↲ '''[[17]]''' redirects here &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=17&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;)&lt;br /&gt;
:*** ''links to'' '''[[what if]] – actual content'''&lt;br /&gt;
:*** Suggestion: mention the ''book'' here as well, and link to its section in the [[what if]] page?&lt;br /&gt;
:&lt;br /&gt;
:...and these troubleshooting pages from [[User:Blue screen of life]]:&lt;br /&gt;
:&lt;br /&gt;
:* '''[[User:Blue screen of life/redirecttest]]''' – test page &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=User:Blue_screen_of_life/redirecttest&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:** ⇒ ''moved to'' '''[[User:Blue screen of life/whatiflink]]''' – test page &amp;lt;small&amp;gt;([https://www.explainxkcd.com/wiki/index.php?title=User:Blue_screen_of_life/whatiflink&amp;amp;redirect=no no-redirect link])&amp;lt;/small&amp;gt;&lt;br /&gt;
:*** ↳ ''redirects to'' '''[[What If?]]''' (see above)&lt;br /&gt;
:&lt;br /&gt;
:Given that the actual content of the &amp;quot;what if?&amp;quot; article now lives at '''[[what if]]''', I've started updating pages &amp;lt;ins&amp;gt;(except for Talk pages)&amp;lt;/ins&amp;gt; to link directly there instead of the other redirect pages.  All that's left to do are pages that link to the '''[[what if?]]''' redirect-page (which is broken).  &amp;lt;del&amp;gt;Its [https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere/what_if%3F &amp;quot;What links here&amp;quot;] special page is broken too, so it's difficult to find what pages link there – but now that it redirects to the [[what if]] page, you can see them indirectly from ''that'' page's [https://www.explainxkcd.com/wiki/index.php?title=Special:WhatLinksHere/what_if&amp;amp;limit=500 &amp;quot;What links here&amp;quot;] special page.&amp;lt;/del&amp;gt;  &amp;lt;ins&amp;gt;[https://www.explainxkcd.com/wiki/index.php/Special:WhatLinksHere?target=what_if%3F These] are the pages that still link there.&amp;lt;/ins&amp;gt;  There are still a lot of them to go.&lt;br /&gt;
:&lt;br /&gt;
:Also, should the following redirect-pages be simplified to have them redirect straight to the new [[what if]] page, instead of redirecting through the intermediate '''[[what if?]]''' page (which itself redirects there anyway)?&lt;br /&gt;
:* '''[[whatif]]'''&lt;br /&gt;
:* '''[[What If?]]'''&lt;br /&gt;
:– [[User:Yfmcpxpj|Yfmcpxpj]] ([[User talk:Yfmcpxpj|talk]]) 17:20, 29 September 2020 (UTC)&lt;br /&gt;
:: Fixed the double redirects, don't ask me why we have so many pages for the same thing. [[User:PoolloverNathan|PoolloverNathan]]&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[Special:Contributions/PoolloverNathan|s]][[User talk:PoolloverNathan|talk]] [[Wikipedia:WP:SEAOFBLUE|the blue seas]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt; 16:29, 16 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Discussion not displaying with comic ==&lt;br /&gt;
&lt;br /&gt;
I am using FireFox on a Win10 machine.  When I come to the site I can see the comic, explanation and transcript.  But the discussion section is hidden.  Even when logged in.&lt;br /&gt;
&lt;br /&gt;
Any ideas?&lt;br /&gt;
&lt;br /&gt;
: You say &amp;quot;when I come to the site&amp;quot;.  If the address bar says you are on Main_Page and you see the heading &amp;quot;Latest comic&amp;quot;, then it's simply working as designed.  Above the comic, click on &amp;quot;Go to this comic explanation&amp;quot; and you will see the comic plus discussion.&lt;br /&gt;
&lt;br /&gt;
: Also, Steve, please sign your comments every time, with four tildes.  That expands into your user name and a timestamp.  Like this -- [[User:JohnB|JohnB]] ([[User talk:JohnB|talk]]) 10:10, 29 September 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Random page sometimes takes me to an invalid address ==&lt;br /&gt;
&lt;br /&gt;
Sometimes, when clicking on &amp;quot;Random page&amp;quot; in the left sidebar, the site will be blank apart from the text &amp;quot;No input file specified. &amp;quot;.&lt;br /&gt;
&lt;br /&gt;
An example of such an URL is: https://www.explainxkcd.com/wiki/index.php/111:_Firefox_and_Witchcraft_-_The_Connection%3F&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:I've noticed this happens for ''all'' URLs to comics that end in a question mark (or possibly any special character). Interestingly, this doesn't happen if you go to the comic from the search bar. [[User:Danish|Danish]] ([[User talk:Danish|talk]]) 23:04, 27 January 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Bug on the main page ==&lt;br /&gt;
&lt;br /&gt;
Bug Enviroment(Might work on other enviroments):&lt;br /&gt;
Ubuntu 20.04LTS  &lt;br /&gt;
Firefox85.0  &lt;br /&gt;
2021.2.7  &lt;br /&gt;
&lt;br /&gt;
Bug:  &lt;br /&gt;
The front page reads: `Welcome, Main Page, to explain xkcd!` with `Main Page` formatted as a username,can someone fix this?&lt;br /&gt;
&lt;br /&gt;
[[User:Xkcdjerry|Xkcdjerry]] ([[User talk:Xkcdjerry|talk]]) 09:48, 7 February 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Occasional error via Cloudflare ==&lt;br /&gt;
Just a note that I'm getting Cloudflare errors of &amp;quot;origin not reachable&amp;quot; (sounds wrong to me, in my head it should be 'destination', but never mind) three times now in the last ten to fifteen minutes - of maybe a dozen general site-requests.&lt;br /&gt;
&lt;br /&gt;
I've also been getting seemingly .CSSless formatted pages over the past few days, which I've been putting down to slightly dodgy wifi at my end (not unknown) but if I'm getting Cloudflare's error cleanly then perhaps it's been entirely upstream/downstream/however-you'd-describe-the-Explain-server. (Obviously CSS resource requests, as with images, are additional HTTP calls, but I still lump it into the single site-request ''per page'' in my 'dozen' estimate above. No obviously lost images, though, in incomplete pages - not that can't be explained by .CSS non-following, anyway.)&lt;br /&gt;
&lt;br /&gt;
I had copy-buffered some of the exact info, but due to incompetence I recopied over it before coming here. If it happens again, I'll try to bring it over here. But (the way these things go) maybe it won't. FYI, though. [[Special:Contributions/141.101.98.52|141.101.98.52]] 12:04, 5 March 2021 (UTC)&lt;br /&gt;
: Not a Cloudfare error (looks like an error of the actual explainxkcd server) but every now and then (like just a few minutes ago) I get an error page that generally goes away if I immediately refresh. To whit:&lt;br /&gt;
 Service Unavailable&lt;br /&gt;
 The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.&lt;br /&gt;
 &lt;br /&gt;
 Additionally, a 503 Service Unavailable error was encountered while trying to use an ErrorDocument to handle the request.&lt;br /&gt;
: Not really a problem (occasionally happened while submitting an exit, and I have to confirm to the browser that I wish to repost the data, but this particular copied instance was through a more 'read-only' link-click, like most of the instances) but... in case someone finds this to be new and useful information... here you are! [[Special:Contributions/141.101.98.192|141.101.98.192]] 03:45, 12 March 2021 (UTC)&lt;br /&gt;
:OP, here, of the above 503 error report/casual mention. Obviously this is the same message that happened for an ''extended'' period of time over a number of days, but I've only just happened to find the site responding again and have not yet looked to see if it is explained as the same or different cause to the old intermittent issues (at root). I hope things are resolved from the major outage (server quota? bill payments? renewal/reconfiguration blips?) but wonder if I should report any future minor outages? I'm still smarting from the total loss of the fora.xkcd.com platform, a few years back, and while I'm not active enough here to consider a proper login (lurking as a freeloading anon-IP is good enough, usually, for my intellectual enjoyment, with all due apologies) I did have a slight pang of emptiness while it was out-of-order. [[Special:Contributions/141.101.99.79|141.101.99.79]] 15:48, 16 June 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Add TemplateData ==&lt;br /&gt;
&lt;br /&gt;
Add the {{mw|Extension:TemplateData|TemplateData}} extension to allow setting data for templates. This will help editors because they will be able to see the data of templates.&lt;br /&gt;
&lt;br /&gt;
== MediaWiki 1.30.0?! ==&lt;br /&gt;
&lt;br /&gt;
This wiki is [[Special:Version|currently]] on [[mw:MediaWiki 1.30|MediaWiki 1.30.0]] ([[mw:Release notes/1.30|release notes]]), the first of three releases of a version of MW that reached end-of-life in June of 2019 ([[mw:Version lifecycle]]). It's thus missing multiple important security updates from 1.30.1 and 1.30.2, not to mention the two years' worth of security updates since 1.30.x reached end-of-life. Even 1.31.x will be reaching end-of-life in just over a month.&lt;br /&gt;
&lt;br /&gt;
If the sysadmins here update to [[mw:MediaWiki 1.35|MediaWiki 1.35.2]] ([[mw:Release_notes/1.35|release notes]]), that version will be maintained till September of 2023, with only a few security updates in the meantime. I would '''strongly''' encourage y'all to update to 1.35.2; to promptly update if there's a .3, .4, etc.; and to make sure you switch to the next LTS release (which will presumably be 1.39) well in advance of September of '23. (Note that this will also require updating to PHP 7.3.19 or later.) [[User:PinkAmpersand|PinkAmpersand]] ([[User talk:PinkAmpersand|talk]]) 07:17, 30 April 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Uptime ==&lt;br /&gt;
Did the website just go down? &amp;lt;span style=&amp;quot;text-shadow:0 0 8px black&amp;quot;&amp;gt;[[User:Beanie|&amp;lt;span style=&amp;quot;font-size:11pt;color:#dddddd&amp;quot;&amp;gt;Beanie&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt; &amp;lt;sup&amp;gt;&amp;lt;span style=&amp;quot;text-shadow:0 0 7px #000000&amp;quot;&amp;gt;[[User talk:Beanie|&amp;lt;span style=&amp;quot;font-size:8pt;color:#dddddd&amp;quot;&amp;gt;talk&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&amp;lt;/sup&amp;gt; 13:06, 28 May 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
It was definitely down this weekend!   &lt;br /&gt;
https://www.reddit.com/r/xkcd/comments/nxrm65   &lt;br /&gt;
[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 16:21, 15 June 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Comic template lappend breaks for standalone comic links ==&lt;br /&gt;
&lt;br /&gt;
For example, https://xkcd.com/blue_eyes.html is changed to https://xkcd.com/blue_eyes.html/ which isn't valid [[Special:Contributions/172.69.90.15|172.69.90.15]] 15:51, 13 October 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Template here, I think it needs to be changed to solve this https://www.explainxkcd.com/wiki/index.php/Template:comic&lt;br /&gt;
&lt;br /&gt;
exkcd page here https://www.explainxkcd.com/wiki/index.php/Blue_Eyes&lt;br /&gt;
&lt;br /&gt;
== May not be your problem, but FYI. ==&lt;br /&gt;
&lt;br /&gt;
My typcal setup: Android tablet, with Chrome for Android (latest update), but also Firefox for Android (ditto), using default Gboard (likewise) for input.&lt;br /&gt;
&lt;br /&gt;
Occasionally (notably within the last few weeks/maybe a month or so), when going in to edit an explainxkcd page through Chrome (it's how I divide up my browsing), I'm getting the cursor in the textarea box which ''can'' be used to Cut/Copy/Paste (as applicable and useful), but the on-screen keyboard isn't popping up. Page is fully loaded (can be refreshed, doesn't have the &amp;quot;stop loading&amp;quot; alternative), can go back (page viewing) and try to go back to the page editor (often to same result). Sitting and waiting doesn't pop the keyboard up, either (sat there for minutes). Happens both on home wifi and mobile connection.&lt;br /&gt;
&lt;br /&gt;
If I transfer my attentions to the page to Firefox (copy URL, to use there... but I don't use that by default for expxkcd stuff) there's no problem, but then if I come back to Chrome again it seems to start working again ''anyway'' so not sure if it's just avoiding/flushing a  transient problem that would also initially crop up with Firefox if I used that more.&lt;br /&gt;
&lt;br /&gt;
Because editing is a different (mobile-optimised) process on Wikipedia and I can't be sure about any the equivalence of any other wiki out there (and it doesn't happen with anything else I regularly key into on Chrome) it's not something I've reproduced outwith this site, and of course desktop page-editing doesn't require touch-screen keyboard because there's a physical one.&lt;br /&gt;
&lt;br /&gt;
Not getting much feedback with Chrome (really can't get on with their bugrep processes, it's too huge a project to make headway, IME), not even tried to pester the Gboard team and I've not ''seen'' anything said on here about this being a site-issue (not sure how it could be, as it's outside the remit of the core web-page rendering process and more an Android or App level of incompetence), but I thought I'd make a note of it here for future reference. Make of it what you will. Annoying but not game-breaking. And I just wanted to vent a little. [[Special:Contributions/172.70.162.147|172.70.162.147]] 16:54, 25 December 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[special:interwiki]] ==&lt;br /&gt;
&lt;br /&gt;
where'd it go? [[Special:Contributions/172.69.68.200|172.69.68.200]] 05:07, 7 January 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Please update MediaWiki + AbuseFilter ==&lt;br /&gt;
&lt;br /&gt;
Seriously. Many scripts and such built for modern, supported versions of MW do not work here because it is so unbelievably undated. PinkAmpersand above basically covers the reason why. I also highly recommend adding the extension AbuseFilter (https://www.mediawiki.org/wiki/Extension:AbuseFilter) as it immensely makes removing vandalism easier (by straight up disallowing or blocking those that do, esp if it's like the current formulaic massive-replacement vandalism.) [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 00:48, 21 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ditto. I feel like the main problem is that the sole person who has access to the backend either doesn't have time to update, doesn't have interest, or doesn't have the technical knowledge necessary. But yes, I agree - updating and installing an extension to help control vandalism would help this wiki tremendously. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 20:09, 9 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== ↑ ? ==&lt;br /&gt;
&lt;br /&gt;
Why do some pages have ↑ at the very start? They can all be spotted by searching ↑ &lt;br /&gt;
Is it a technical thing, vandalism, some sort of glitch? Maybe I'm just uninformed or being an idiot.&lt;br /&gt;
:Edit logs tell me that an IP user manually reverting vandalism somehow inserted one or more extra characters while manually reverting vandalism. '''[[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;]] 13:59, 22 May 2022 (UTC)&lt;br /&gt;
::Should it be removed? It's not necessary and might be confusing for screenreaders... [[User:Mushrooms|Mushrooms]] ([[User talk:Mushrooms|talk]]) 09:00, 23 May 2022 (UTC)&lt;br /&gt;
:::Maybe not en-mass, I'd say. But I've dove in to delete a rogue leading &amp;lt;nowiki&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;/nowiki&amp;gt; tag left from a part of a prior vandalism (likewise, just before the {{template|comic}}-element) and I've promised myself that I'll remove any more that I spot (and now that arrow) in any future whole-page edit I make. Plus a small shopping-list of inessential but useful edits like making {{template|Citation needed}}s flow better when they're mispunctuated/etc.&lt;br /&gt;
:::But that's my solitary opinion. I'm sure hunting out and squishing this isn't a problem at all. I'm just balancing my own peculiar brand of OCD with what is somehow my also my own version of casual apathy towards other details. (Also, it probably looks better for a named account of recognised good standing to start editing potentially hundreds of pages in a session, rather than myself... potentially indistinguishable from the IP who seems to relish worn out memes in a general page-trashing.) [[Special:Contributions/162.158.159.121|162.158.159.121]] 12:20, 23 May 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Is there anything else we can do to prevent vandalism? ==&lt;br /&gt;
&lt;br /&gt;
There's been quite a significant uptick in vandalism recently, and I don't feel we have any effective tools to combat it. I believe one of the biggest issues here is due to the way logged-out editing works on this wiki. Blocks are completely ineffective at slowing vandals, and IP editors can vandalize with basically nothing we can do to thwart them other than revert-warring. '''Is there a better way?'''&lt;br /&gt;
&lt;br /&gt;
There's been some discussion of installing AbuseFilter, but I'm not sure anything became of it. We could disable logged-out editing, but that would likely be counterproductive as we get lots of legitimate contributions from logged-out users. If there's a way to switch to location-based IPs, we could rangeblock problematic users as well as proxies. Does anyone have any ideas? [[Special:Contributions/162.158.78.145|162.158.78.145]] 16:11, 1 June 2022 (UTC)&lt;br /&gt;
:I'm sort of making server side changes via telegraph so an extension is probably going to take a while to get installed. Takes a bunch of emails and followups to get single variables changed in the mediawiki settings file. There is an email verification option, and some edit frequency variables that could be set to make spam more time consuming. Don't love range blocks but wouldn't mind getting the CDN IPs dealt with so we can actually use the IP bans again. '''[[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;]] 17:16, 1 June 2022 (UTC)&lt;br /&gt;
::I'm very grateful that you're working on changes under the hood. What do you think is the  best way to deal with disruption in the meantime? [[User:Vandalbane|Vandalbane]] ([[User talk:Vandalbane|talk]]) 17:19, 1 June 2022 (UTC)&lt;br /&gt;
:::Could borrow a patrol bot like the ones people on main wikipedia have, could ask around. '''[[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;]] 18:53, 1 June 2022 (UTC)&lt;br /&gt;
::::There's not really a drop-in solution that you can use, especially since the server's MediaWiki version is not in sync with Wikipedia's (so a lot of the APIs etc have completely changed; when initially reverting vandalism I tried importing some scripts from enwiki but they failed as a result), but also because the bots have gotten pretty complex (using machine learning provided by the Wikimedia Foundation, for example). [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 03:56, 2 June 2022 (UTC)&lt;br /&gt;
:::::Oh I do notice mediawiki hasn't been upgraded in a while. Looks like new version of mediawiki should be dropping extremely imminently, would be nice timing for an upgrade '''[[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:45, 2 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Rollback ==&lt;br /&gt;
&lt;br /&gt;
Does the rollback permission exist on this wiki? [[User:Vandalbane|Vandalbane]] ([[User talk:Vandalbane|talk]]) 17:00, 1 June 2022 (UTC)&lt;br /&gt;
:The rollback permission of course exists but there's no group called &amp;quot;rollbacker&amp;quot; like you'd find on Wikipedia (limited to admins). You'd need the sysadmin to change the configuration to add one, which as established is not really an option right now. [[User:CRLF|CRLF]] ([[User talk:CRLF|talk]]) 03:58, 2 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What happened to custom JavaScript? ==&lt;br /&gt;
&lt;br /&gt;
I put some code in &amp;lt;code&amp;gt;[[User:Some user/common.js]]&amp;lt;/code&amp;gt;, but it is not alerting 'hi' every time I load a page. Why can't we execute JavaScript anymore? Is it in response to the [[Project:Crap|crapping]] incident? [[User:Some user|Some user]] ([[User talk:Some user|talk]]) 21:16, 27 June 2022 (UTC)&lt;br /&gt;
:Entirely because of that, yeah. '''[[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:51, 28 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
== My IP  ==&lt;br /&gt;
&lt;br /&gt;
Why is my IP address a Cloudflare address in Norway? Is this a joke of some kind that I'm missing?&lt;br /&gt;
&lt;br /&gt;
Other wikis like Wikipedia are showing me my actual IP when I go to [[Special:MyContributions]], so I suspect this is a wiki misconfiguration. It changed again while I was typing this. [[Special:Contributions/162.158.222.194|162.158.222.194]] 16:55, 19 November 2022 (UTC)&lt;br /&gt;
:All IPs (as this one will be) are from Cloudflare gateway IPs, because that's the default IP that the Wiki understands as the source. Cloudflare mediates all the traffic, and perhaps to some advantage (not being privvy to the logs, I can only guess how much it insulates the true server from extreme problems, but I bet it does in some way).&lt;br /&gt;
:There have been suggestions before to change some setting (in the MediaWiki implementation? ...can't recall exactly) to have it pick up and use the IP that the gateway reports (in its meta-request) was the origin, but that's not been enacted for Idunnowhat reason.&lt;br /&gt;
:Because the black-box that is the Cloudflare traffic shapes in various ways, you will find that a single user will jump around 'apparent' IPs, and I've also been in the relatively embarassing situation of replying to another IP's info and finding that I've registered on the exact same IP so that it looks like I'm stooging myself, or something.&lt;br /&gt;
:On the whole, though, it's a harmless quirk. And given the trivial nature of deliberately spoofing origins (even on top of assuming you get an effectively static NAT from your ISP in the first place) I don't personally see it as a problem to 'solve' this. But neither would I complain if the 'fix' were implemented if this query reminds someone that they ''were'' going to try and do the necessary tweak.&lt;br /&gt;
:As a lay-answer, I hope that fills you in a little. ''If'' those who have more knowledge/control of the process want to add anything or correct me, I'm sure they'll do so as soon as they can, but here's a reply to keep you going for now... [[Special:Contributions/172.70.85.24|172.70.85.24]] 01:19, 20 November 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Main page in categories==&lt;br /&gt;
{{notice|'''This discussion is marked as duplicate.''' See [[#Main Page|this discussion]].}}&lt;br /&gt;
[[Main_Page]] was found wrongly appearing in some newly-created categories, such as [[:Category:Cosmology]]. Could you fix it? --[[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 17:49, 12 January 2023 (UTC)&lt;br /&gt;
:Never noticed this myself, but I'll take it as read. Before checking myself, I'm wondering if this could be when the main page 'inherits' tags from the Current Comic that it features. And thus solve itself (whilst gaining others) upon a newer Current Comic. (Must surely inherit &amp;quot;Monday Comics&amp;quot;/etc, on schedule every week.)&lt;br /&gt;
:If it is that, perhaps the solution lies in the details contained within https://m.mediawiki.org/wiki/Help:Categories#Categories_and_templates_(transcluded_pages)&lt;br /&gt;
:Or maybe I'm wrong about it. But I have no rights to edit (thus at least examine the 'code' of) the Main page, to check my snap theory, as with most people. [[Special:Contributions/172.70.162.46|172.70.162.46]] 19:21, 12 January 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
This happened again in [[:Category:Airplane banner]]. [[User:I27.O.O.I|I27.O.O.I]] ([[User talk:I27.O.O.I|talk]]) 09:00, 28 February 2023 (UTC)&lt;br /&gt;
:Yes, and it lasted as long as the latest comic was still one with particular categories. I don't intend to worry about it. If someone goes to a category that interests them and looks at the main page, as temporarily advertised, they're likely to find (as part of it) a comic which is indeed in that category. Doesn't sound like a big problem to me, except for determinin why some cats (e.g. Friday Comics) ''don't'' link to the Main page when they might be expected to...&lt;br /&gt;
:(PS, I know for sure that I27.O.O.I isn't the same person as ColofulGalaxy (and various others, beyond even those with the bloomin' obvious &amp;quot;CG&amp;quot; initials or other recent spoofs on the RFC1918 addresses), and I don't think I mind too much, but faking disagreements between your various IDs isn't helping, anyone... smells too much of trying to establish alibis in advance of your next attempt to vandalise the site with stupid stuff. And doesn't impress me, so I doubt it impresses anyone else either. As long as you're just doing sane things, however, I'll accept your little idiosyncracies.) [[Special:Contributions/162.158.74.32|162.158.74.32]] 19:37, 5 March 2023 (UTC)&lt;br /&gt;
:(PPS: You left your fingerprint on this latter attempt to 'rescue' [https://www.explainxkcd.com/wiki/index.php?title=Talk:2659:_Unreliable_Connection&amp;amp;curid=25530&amp;amp;diff=307289&amp;amp;oldid=307282 this page]. - Spammer a few minutes before midnight, my IP reversion happened shortly after. A little later &amp;quot;Elisabeth&amp;quot; then re-spammed (modified), then another IP immediately jumps on it to restore it but with the modified undo-summary line clearly indicating that some sort of a game is being played. Please don't, it's not clever.) [[Special:Contributions/172.70.90.34|172.70.90.34]] 02:22, 7 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
This doesn't happen to date categories, but it happens in manually added categories such as [[:Category:Statistics]]. [[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 21:49, 27 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Cannot create user page==&lt;br /&gt;
It says: There is currently no text in this page. You can search for this page title in other pages, or search the related logs, but you do not have permission to create this page. [[2659: Unreliable Connection]] ([[Talk:2659: Unreliable Connection|talk]]) 22:56, 26 March 2023 (UTC)&lt;br /&gt;
:(Removed alternative text in the link involved, to not hide behind trickery.) I think you know that there's no problem with [[2659: Unreliable Connection]] itself, except that it had become one of several pages targeted for spamming, the only one then locked down, then finding that the spammers just retargeted to its Talk page, etc.&lt;br /&gt;
:I'm torn between &amp;quot;not assuming bad faith&amp;quot; and &amp;quot;don't feed the trolls&amp;quot;, as competing principles, so I'm spelling out the situation. However much a tribute you might think it could be, I don't think there's a future in having a new username that's directly referencing a comic which has become so frequently seen in the recent history of this wiki's edits.&lt;br /&gt;
:Obviously any genuine contributions are more than welcome. So prove me wrong, why don't you? [[Special:Contributions/172.70.91.151|172.70.91.151]] 03:20, 27 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Could you help now?  [[User:Unreliable Connection|2659: Unreliable Connection]] ([[User talk:Unreliable Connection|talk]]) 09:13, 29 March 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I've created your talk page. I guess that what you intended is to have a backup or mirror page for comic [[2659]]. Am I right? [[User:ColorfulGalaxy|ColorfulGalaxy]] ([[User talk:ColorfulGalaxy|talk]]) 20:16, 2 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Fanmade comics ==&lt;br /&gt;
A fanmade comic appeared on xkcd. Could you edit the template? [[Special:Contributions/172.69.23.100|172.69.23.100]] 07:21, 28 April 2023 (UTC)&lt;br /&gt;
:You're going to have to say more about it, at least for me. Apart from the Sandbox attempt to make a page, I haven't seen the comic you're describing anywhere. Certainly not anywhere official. Link, for our benefit? [[Special:Contributions/172.70.85.66|172.70.85.66]] 10:04, 28 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Why doesn't this code block work?==&lt;br /&gt;
Does anybody know why the code block at the end of [[Transcript on xkcd|this page]] doesn't work? I've tried everything and it still looks like plain text&lt;br /&gt;
&lt;br /&gt;
== Can't add RSS feed because of pubDate value on 27 Nov 2015 ==&lt;br /&gt;
&lt;br /&gt;
When I try to add the RSS feed in Nextcloud News feed reader I get an error &amp;lt;code&amp;gt;Impossible to convert date : Fri, 27 Nov 2015 17:24:34 Pacific Standard Time&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fexplainxkcd.com%2Frss.xml W3C Feed validation] says that &amp;lt;code&amp;gt;pubDate must be an RFC-822 date-time&amp;lt;/code&amp;gt; and points &amp;quot;Pacific Standard Time&amp;quot; portion as the cause of the error: &amp;lt;code&amp;gt;&amp;lt;pubDate&amp;gt;Fri, 27 Nov 2015 17:24:34 Pacific Standard Time&amp;lt;/pubDate&amp;gt;&amp;lt;/code&amp;gt;. Can you please fix the timestap for this?&lt;br /&gt;
&lt;br /&gt;
== Admin request posted here because of vandalism ==&lt;br /&gt;
&lt;br /&gt;
I can not currently access the admin requests page because it has been vandalized... can someone please protect the latest comic page (2805). There is some pretty childish vandalism going on there right now. Thanks!&lt;br /&gt;
:It's not the latest, seems like ALL. I went back to 2804, 2803, jumped back like 15 comics, all the same thing. To me the most offensive part is doing it with a nonsensical image. And why pipe it through Archive somehow? [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 02:33, 24 July 2023 (UTC)&lt;br /&gt;
::UGH. the vandals are back at it again... we need to lock xkcd pages @NiceGuy [[Special:Contributions/172.70.39.2|172.70.39.2]] 00:59, 25 July 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Way to contact the site hosters? ==&lt;br /&gt;
&lt;br /&gt;
As many have pointed out the software this wiki runs on is horribly outdated. WikiEditor also isn't here for some reason. Quite a bit of messages here have seen no action. Is there some kind of contact form to reach the hosters? {{unsigned|Aaron Liu|00:36, 10 October 2023}}&lt;br /&gt;
: There are various levels of admin who do intervene, as and when jecessary, but I understand that the (active) ones closest to the actual hosting level of intervention are not really ready to do the (increasingly greater) degree of uprooting necessary to get a &amp;quot;working&amp;quot; system to be &amp;quot;marginally better working&amp;quot;, by way of that very dangerous middle-ground of potentially being ruined entirely.&lt;br /&gt;
: I appreciate and anticipate the counter-arguments regarding letting it go totally unupdated, of course, just I've personally seen enough failures (participated in some, or been the actual invokee, myself) to be very sympathetic to the &amp;quot;if it aint (too) broke, don't fix it&amp;quot; tendency. But that inertia is not the only factor, of course, and the full motivations (or lack of them) of those involved is not for a lowly IP like me to explain, even if I think I know... [[Special:Contributions/172.69.195.42|172.69.195.42]] 01:24, 10 October 2023 (UTC)&lt;br /&gt;
:: Have they posted some sort of statement? It also is most definitely not “marginally” better working, compare the source editor to that of Wikipedia and look at topic subscription etc features. Not to mention a lot of security fixes haven’t been added and this version has reached EOL long ago. Updating also would not ruin this entirely…[[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 17:22, 12 October 2023 (UTC)&lt;br /&gt;
:: Some have also said that quite a bit of assistive scripts for modern versions don’t work. Visual Editor, while horrible, is still easier for new people to get started with. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 17:23, 12 October 2023 (UTC)&lt;br /&gt;
I've found a new reason: This wiki doesn't even allow loading userscripts! [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 01:34, 9 December 2023 (UTC)&lt;br /&gt;
:That might actually have been a conscious decition, after a 'certain user' caused chaos here, not so long ago. [[Special:Contributions/162.158.74.25|162.158.74.25]] 19:01, 9 December 2023 (UTC)&lt;br /&gt;
::It was about a year and a half ago. I'm sorry, I shouldn't have done that. [[Special:Contributions/172.68.174.143|172.68.174.143]] 06:41, 10 December 2023 (UTC)&lt;br /&gt;
::Huh? What happened? Is there a place to request gadgets then? [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 02:04, 10 December 2023 (UTC)&lt;br /&gt;
:::&amp;quot;What happened&amp;quot; involved automated vandalism (from someone who been doing it manually, then found the &amp;quot;better way&amp;quot;) though I couldn't tell you the exact details, there were automated 'unvandalism's made in response, and theusafBOT/etc does some of that still, in response to non-automated(/off-site scripted) vandalism/errors that it can actually catch before ordinary users (or IPs like me) can. But certainly a certain brand of scripting was turned off to curtail the 'high intensity' vandalism phase.&lt;br /&gt;
:::You're more or less in the best place to request things, right here. Whether updates, (re)adding functionalitu or tweaking site settings. Can't tell if those who ''can'' do these things can't or won't do them... Or are actually absent, instead of just not replying. The cavalry has been known to come running in when necessary (e.g. when &amp;quot;what happened&amp;quot; happened) so it could be any manner of non-response (until you get one). Not necessarily the best state of affairs, but better than being confirmed absentees.&lt;br /&gt;
::::I ran a bot to mass-edit pages by replacing their content with the word &amp;quot;crap&amp;quot; repeatedly. I was 15 then, and I thought it was funny. It wasn't. [[Special:Contributions/172.68.174.143|172.68.174.143]] 06:41, 10 December 2023 (UTC)&lt;br /&gt;
:::As an occasional but infrequent actual-Wikipedia editor, too, I must say that if the Visual Editor is what I currently have to use for that (at least as an anonIP when using a mobile device, which tends to be when I get the urge most) then I like the unaugmented editor here more. Straight up, honest, un'wizarded' interface, where you only have to get used to markup details and not a WYSIWYG editing environment (as well?). Not sure I'd be happy with an even ''more'' 'assistive' script imposed upon me, like I dislike modern generations of Windows (and 'user friendly' linux dists). So can I just ask that functional/visible changes of the kind you seem to be asking for, if made available, aren't overimposed/left as options rather than the default (or only) choice...? Ok, so I can (or would have to) adapt, but I'd rather not. Of course, I have no weight to pull in this matter, it's just an afterthought (even as I wish you good luck with raising an admin's eyebrow, in some useful manner). [[Special:Contributions/141.101.98.135|141.101.98.135]] 05:14, 10 December 2023 (UTC)&lt;br /&gt;
::::I am not asking for VisualEditor, which no one likes on Wikipedia either. For some blasted reason they made it edit HTML instead of Wikitext and it’s clunky and loads for a very long time.&lt;br /&gt;
::::I’m asking about the WikiEditor, aka Wikipedia’s source editor. In VE, click on the pen next to the publish button and click on “source editing”. That editor makes this one look like freaking Stone Age, syntax highlighting is especially a game-changer. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 16:03, 12 December 2023 (UTC)&lt;br /&gt;
: There’s also the annoying ReCaptcha v2 every single edit… it seems like it would be relatively easy to switch to v3 which only makes you do the challenge when you’ve visited a bit too much. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 16:32, 12 December 2023 (UTC)&lt;br /&gt;
:: Unfortunately, that would make things easier for someone who wanted to do mass vandalism like I did. If it didn't do it every time, someone could still edit quite quickly. [[Special:Contributions/172.68.174.192|172.68.174.192]] 18:32, 12 December 2023 (UTC)&lt;br /&gt;
::Well, I can tell you that it doesn't always demand that I fulfil more than a tickbox (most trouble I have is when it fails to connect to give me the tickbox (or respond with anything useful when I do), for which I'm forced into one or more Previews until it will. When it ''does'' ask me to do something about it, I do often get forced through two or more request to identify traffic lights, motorbikes, stairways, bridges, hills, tractors, buses, etc, etc, etc... But I think that's more the Tesla-training Algorithm being nust greedy for my attention than the Robot-sentry having a less casual attitude to my attempt to edit. (I believe I'm on a usually untroublesome source IP/Cloudflare gateway, but it could also depend on how many others try to do things via (part of) the same route. Very, very rarely I get Google Search requesting something similar of me ((It: &amp;quot;You have made a lot of searches&amp;quot;, me: &amp;quot;Of course I'll have play your little game, but this is my first lookup today...&amp;quot;)), which I'm sure isn't Cloudflared, so it might reach back to my ISP's gateway and what fellow users are currently getting up to.)&lt;br /&gt;
::As for the guy above (and you, Liu), can't speak for how well or badly others on your own 'choice' of gateways behave. Or yourselves. Luck of the draw? For the first part, at least. [[Special:Contributions/172.69.195.174|172.69.195.174]] 20:31, 12 December 2023 (UTC)&lt;br /&gt;
:::MediaWiki 1.40 automatically tags all edits that remove over 90% of page text with &amp;quot;mw-replaced&amp;quot;. You could block all edits in mainspace with that tag, either if MediaWiki has it or through the AbuseFilter extension. While I can complete the CAPTCHAs, it's very annoying to need to Captcha every edit on a place where the main focus is edits. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 03:06, 13 December 2023 (UTC)&lt;br /&gt;
:::Plus, v3 doesn't just do nothing. It tracks how your cursor moves to see if it's robotic, while v2 annoyingly gives you the challenge every time. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 20:01, 8 January 2024 (UTC)&lt;br /&gt;
::::Presumably for touchscreen control (like mine, right this moment), it does something else than track a nonexistent mouse-pointer's passage across the monitored elements of the display... ;) [[Special:Contributions/172.70.90.190|172.70.90.190]] 12:26, 9 January 2024 (UTC)&lt;br /&gt;
::There are a few MediaWiki plugins that help keep vandalism/spam under control without requiring users to solve a Captcha every time they make an edit. I use https://www.mediawiki.org/wiki/Extension:Moderation on the wiki I maintain, and it works very well. However, it does require that there be enough active moderators to approve edits, as it basically requires every single edit to be approved before it's posted. Thus, it also introduces some &amp;quot;lag&amp;quot; between when stuff is written and when it can be seen by others. I think it could work if the extension could be installed (I'm not even sure if it's supported on this version of MediaWiki) and if a good list of moderators could be put together. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 20:02, 9 February 2024 (UTC)&lt;br /&gt;
:::I disagree with requiring edits to be approved. Unless we have extremely high vandalism, just filtering out the above tags I mentioned and using ReCAPTCHA v3 would be enough. [[User:Aaron Liu|Aaron Liu]] ([[User talk:Aaron Liu|talk]]) 23:16, 16 February 2024 (UTC)&lt;br /&gt;
::::Ok, fair point. However, that wouldn't stop human vandalism, just vandalism from bots. I'm not sure how much human vandalism there is, though, so it might not even be a problem. [[User:Obwankenobi|Obwankenobi]] ([[User talk:Obwankenobi|talk]]) 12:35, 22 February 2024 (UTC)&lt;br /&gt;
:::::It's hard (for us 'civvies') to know how much bot-vandalism is stopped but [https://www.explainxkcd.com/wiki/index.php?title=Special:Log/newusers&amp;amp;offset=&amp;amp;limit=500&amp;amp;type=newusers&amp;amp;user= probably a lot], most of which we never see, with [https://www.explainxkcd.com/wiki/index.php?title=2503:_Memo_Spike_Connector&amp;amp;diff=335487&amp;amp;oldid=335486 occasional ones] we might see having be dealt with. (I'm guessing these things are rare (temporarily-)successful 'bots, because flesh-and-blood vandals wouldn't be occasionally doing essentially the same insta-reverted thing on a thematically-small set of pages, over several ''years'' without moving on. It has to be a lucky unattended script-based effort that just keeps trying the same things over and over with an easily revertible but tangible result happening only infrequently.)&lt;br /&gt;
:::::More obvious human vandalism tends to rumble on, with occasionally a spate of it as someone gets short-term kicks for it. Though some of them seem may repeat themself after a break. Friendly humans and friendly 'bots both tend to provide the main anti-vandalism responses fairly quickly, though, depending upon what kind of a mess they caused. I've seen worse places, definitely, and it's by no means a losing battle against chaos, just regular skermishes.&lt;br /&gt;
:::::Not wanting to tempt fate, of course. I guarantee that there'll be some fool that takes all this as a challenge, so I just have to trust to the Good Guys keeping on keeping on. [[Special:Contributions/172.70.90.71|172.70.90.71]] 14:21, 22 February 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
heyo, is there a way to add actual citations to explainxkcd instead of the template citation needed? couldn't find anything, but i'm pretty new here - thanks in advance. [[User:Nigga|Nigga]] ([[User talk:Nigga|talk]]) 21:47, 17 March 2024 (UTC)&lt;br /&gt;
:Not that I have much faith in your usernae lasting long (you're 'that guy', aren't you? ...in which case you know anyway), but for the sake of anyone else who needs to know:&lt;br /&gt;
:*If you mean &amp;quot;add an actual 'citation needed' tag&amp;quot;, then it's {{template|Actual citation needed}} that you'll use.&lt;br /&gt;
:*If you mean &amp;quot;add an actual citation link to somewhere&amp;quot;, then:&lt;br /&gt;
:** Link to URLs with [].&lt;br /&gt;
:*** A link such as [&amp;lt;url&amp;gt;] will give you a superscript-number link, which isn't pretty, IMO.&lt;br /&gt;
:*** A link such as [&amp;lt;url&amp;gt; &amp;lt;text&amp;gt;] (that's a space between the two) will link &amp;lt;text&amp;gt; to the URL, just work it into the sentence you're writing, fairly easy&lt;br /&gt;
:** Link to internal (or cross-wiki) pages with [[]].&lt;br /&gt;
:*** [[&amp;lt;page title&amp;gt;]] will make a literal link to &amp;lt;page title&amp;gt;.&lt;br /&gt;
:*** [[&amp;lt;page title&amp;gt;|&amp;lt;text&amp;gt;]] (with a pipe) is how you make the &amp;lt;text&amp;gt; your link.&lt;br /&gt;
:** You can use the last to link specifically to wikipedia's cross-site format, but for that it's best to use {{template|w}}&lt;br /&gt;
:*** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;page title&amp;gt;}}&amp;lt;/nowiki&amp;gt; (w-pipe...) uses the page title&lt;br /&gt;
:**** It will use the link as if the first character is uppercase, so you don't need to capitalise that. Other case-sensitivity is preserved.&lt;br /&gt;
:**** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;singular page title&amp;gt;}}s&amp;lt;/nowiki&amp;gt; will link the obvious pluralisation of the page title, just to save you effort&lt;br /&gt;
:*** &amp;lt;nowiki&amp;gt;{{w|&amp;lt;page title&amp;gt;|&amp;lt;text&amp;gt;}}&amp;lt;/nowiki&amp;gt; (w-pipe and pipe) lets you use entirely alternate text.&lt;br /&gt;
:** There's also templates that shortcut (or make easier on the eye, or add appropriate warnings) for some other commonly referenced external sites, from xkcd's own what-if to TVTropes.&lt;br /&gt;
:...hope that helps everyone that doesn't already know these few simple bits as relate to wikis in general or this wiki in particular. [[Special:Contributions/172.71.242.218|172.71.242.218]] 22:24, 17 March 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Confirmation Email Bug ==&lt;br /&gt;
&lt;br /&gt;
Hi. I've been trying to get my email confirmed so that I can get pinged when pages are edited, but I just can't find it, even after trying multiple times. I use Gmail, and yes, I have checked my spam folder. Has anyone else had this issue? EDIT: I see that others have had this issue, but the admins haven't done any action to solve it, except for one sarcastic comment by Davidy22 back in 2014. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 00:43, 12 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Lack of Userpage ==&lt;br /&gt;
&lt;br /&gt;
Hey, I joined a few years ago, but I still do not have a Userpage. Can you make one for me? I do not have the permission to do so. [[User:GreyFox|GreyFox]] ([[User talk:GreyFox|talk]]) 22:47, 15 May 2024 (UTC)&lt;br /&gt;
:This is actually your very first post, after joining a bit more than a year ago (&amp;quot;18:35, 14 November 2023 User account GreyFox (talk | contribs) was created&amp;quot;). I'm sure someone can oblige (not me, for obvious reasons), but you've not done much to contribute (at least under this account), which would have then eventually brought you to the point where you ''can'' just self-create your Userpages/etc. So your request is a bit out of the blue.&lt;br /&gt;
:Just so long as we all know where we stand, though. [[Special:Contributions/172.69.194.227|172.69.194.227]] 09:42, 16 May 2024 (UTC)&lt;br /&gt;
::Oh, thanks! Do you know the exact number of edits I need to create it?&lt;br /&gt;
:::50 to be autoconfirmed. Also, please sign your comments. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 15:23, 16 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== server errors ==&lt;br /&gt;
is anyone else constantly getting 503 errors? [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 17:14, 21 May 2024 (UTC)&lt;br /&gt;
:yup, been seeing those all the time. Also seeing that the server is down a lot of time-it suggests me to Google for what I’m “looking for” [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 17:18, 21 May 2024 (UTC)&lt;br /&gt;
::503s are fairly common (often when I'm in a rush), and have been for... well, certainly years, maybe more than a decade (though more common during major vandalism/anti-vandalism surges). I had, however, noticed a recent blip (during the last day or so) of the Server Down/Try Google page that you refer to, which I haven't seen for a ''long'' time (not really sure when, but maybe five years or so ago). In fact, I probably got Cloudflare 'rejections' more, during aformentioned vandal-overloading.&lt;br /&gt;
::Without any access to the admin logs, I can only speculate as to what might be sparking it. But service (notwithstanding the brief page-refusals themselves) seems to be happily unaffected. [[Special:Contributions/172.70.160.249|172.70.160.249]] 20:29, 21 May 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Allow new users to edit their own page ==&lt;br /&gt;
&lt;br /&gt;
I found someone asking if we could change this in the proposals page (Community portal/Proposals: Allow Users to Edit their own talk page if not auto confimed (not a typo)). [[User:PDesbeginner|PDesbeginner]] ([[User talk:PDesbeginner|talk]]) 14:39, 19 June 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Technical difficulties? ==&lt;br /&gt;
&lt;br /&gt;
I keep getting a message that says: &amp;quot;Sorry! This site is experiencing technical difficulties.Try waiting a few minutes and reloading. (Cannot access the database)&amp;quot;&lt;br /&gt;
It's happened a lot so I was wondering if there was a specific cause behind it and perhaps a way to fix it.&lt;br /&gt;
[[Special:Contributions/172.68.54.65|172.68.54.65]] 00:17, 17 September 2024 (UTC)&lt;br /&gt;
:yeah, I’ve been getting those errors too. I can’t even log into my account before it says that there’s an error again. I’ve been steadily receiving them for a couple months, but never like today. From Recent Changes, it doesn’t look like anyone is spamming the wiki, so maybe it’s an attack of some kind. You’ll need to contact the admins who have access to the server and can poke around, but good luck getting [[User:Davidy22]] or [[User:Jeff]] online. [[Special:Contributions/172.69.135.130|172.69.135.130]] 17:16, 17 September 2024 (UTC)&lt;br /&gt;
::update: I’ve been poking around a lot of websites, trying to see if the website is being attacked. The websites all say that the server is down. I’ll try to ask Jeff on this and pray that he checks his email. [[Special:Contributions/172.69.135.129|172.69.135.129]] 17:21, 17 September 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== the site is collapsing ==&lt;br /&gt;
503's are to be expected, but i've got them and the &amp;quot;Sorry! This site is experiencing technical difficulties. Try waiting a few minutes and reloading.&amp;quot; error way, way too much. it's actually getting really hard to edit stuff because of them. [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 01:58, 19 September 2024 (UTC)&lt;br /&gt;
:heck, i just got a 503 when posting this topic. also, load times are noticeably longer. and i'm getting &amp;quot;loss of session&amp;quot; errors when i try to edit... [[user talk:lettherebedarklight|youtu.be/miLcaqq2Zpk]] 02:02, 19 September 2024 (UTC)&lt;br /&gt;
::I’ve messaged Davidy22 and Jeff about it, hopefully they see it and reply. It looks fine right now, appears that it works horribly at times and fine later. Due to the on-off nature of it, I would suspect DDoS attacks, as a 503 error means that the server can’t process the request, which occurs with DDoS attacks. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 21:37, 19 September 2024 (UTC)&lt;br /&gt;
:::update: I’ve made a Reddit post, as I’ve seen Davidy22 active on Reddit and respond to older threads on r/xkcd. Hopefully they respond! [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:50, 24 September 2024 (UTC)&lt;br /&gt;
::::October update: Davidy22 responded to my emails and said that he has emailed Jeff multiple times. Apparently Jeff is ignoring his emails and not responding. I’ve been checking Jeff’s Twitter/X/Whatever once a week and it shows that he uses it semi-regularly. Apparently Jeff is a podcaster too? Anyways, nobody has really responded to me on r/xkcd, so I’m thinking of sending a DM to Jeff via Twitter. I have a to-do list for Jeff listed on my User Page, feel free to give any thoughts, proposals, comments on anything else you want him to do in this thread. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:46, 24 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== List of All Comics ==&lt;br /&gt;
&lt;br /&gt;
I think that FaviFake and I have accidentally broken the All comics page. When clicked, it brings you to the page List of all comics, which displays the comics 3000-3002 (as of right now) instead of the list of all comics (oops-my bad). How do we fix this? There’s also the page List of all comics (3000-3500), but the TheusafBOT ignores it. Can someone more technical help troubleshoot this problem? Again, sorry for making a muck of things. [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 18:43, 24 October 2024 (UTC)&lt;br /&gt;
:Oh I'm sorry, I created a new topic for this and I didn't see this one. I noticed the [[List of all comics (3000-3500)]] today and scheduled it for deletion because we never make such a page until we have exactly 500 comics to put there. Also, the name is wrong, it should say 3001-3500.&lt;br /&gt;
:The page [[List of all comics]] is supposed to display comics 3001-3005, not all comics. You might be confusing it with [[List of all comics (full)]], which would work perfectly if [[List of all comics]] displayed the last 3 comics. I have no idea why the bot stopped updating it. Maybe it will work now that the wrong page is scheduled for deletion? [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:15, 31 October 2024&lt;br /&gt;
::Wait a second, why did you move the List of all comics to [[List of all comics (3000-3500)]]? It seemed to me like everything was working fine before you moved it [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:24, 31 October 2024 (UTC)&lt;br /&gt;
:::I was trying to copy the content to [[List of all comics (3000-3500)]], and accidentally broke it. Sorry! [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 16:48, 31 October 2024 (UTC)&lt;br /&gt;
::::Yeah I can confirm the content and the entire edit history was moved to the incorrectly-titled page that's now scheduled for deletion. I guess maybe we didn't really need the edit history on that page, but who knows.&lt;br /&gt;
::::Weirdly, the bot seems to have restored the page as it was and then stopped doing its thing. Since we're the only ones here, I suggest you manually create the missing rows for the new comics and we'll see if that works when the next comic drops. If it doesn't, I'll contact the maintainer and creator of the bot myself. Sounds good? :) [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:29, 31 October 2024 (UTC)&lt;br /&gt;
:::::Sir yes Sir! 🫡 [[User:42.book.addict|42.book.addict]] ([[User talk:42.book.addict|talk]]) 04:51, 1 November 2024 (UTC)&lt;br /&gt;
:::::: Great, thanks! I can also do it this afternoon if you don't have time. I realise my previous messages read like orders lol, they were supposed to be suggestions to try and fix the issue. [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 07:18, 1 November 2024&lt;br /&gt;
&lt;br /&gt;
== The [[List of all comics]] is no longer being updated automatically ==&lt;br /&gt;
&lt;br /&gt;
Hey everyone, I noticed the bot isn't updating this page anymore: [[List of all comics]]. There are supposed to be five comics in it but there are only two at the moment. Is this supposed to happen? [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 05:06, 31 October 2024&lt;br /&gt;
&lt;br /&gt;
== 2034: Equations error? ==&lt;br /&gt;
&lt;br /&gt;
One of the TeX math-thingies (sorry for the informal writing), is showing this error: &amp;quot;Failed to parse (Missing texvc executable. Please see math/README to configure.): \oint&amp;quot;. Idk why it's showing this, can someone fix this? [[Special:Contributions/108.162.237.48|108.162.237.48]] 19:25, 6 November 2024 (UTC)&lt;br /&gt;
:It's a long-standing error, to do with the background processes that turns the TeX-style markup into embedded images. All equations (or whatever it might be that the particular MathML was being used to render) that were originally given cached-imagery ''still work fine'', but it seems a later update made it so that if you adjust it at all (even slightly), it no longer has the route to produce the embedding cleanly.&lt;br /&gt;
:It can probably be solved by rolling back some module(s) that got refreshed quite some time ago, though the advised fix is to actually fully update them (and/or reconfigure the backend scripting) to work with all the newest versions of the original tools. Unfortunately, the people (or maybe person) who would do this is not too active at the moment (may also not be up to speed on everything, either, if it involves a bit of more tricky administration), so we're left with the occasional problem establishing the texvc handler.&lt;br /&gt;
:Not sure which page you're encountering this on, but sometimes if you look back in the edit history you can find a working version of the thing you're seeing go wrong. If it's an aesthetic difference (e.g. the presence or absence of a spacing character), you might be able to just restore the render-cached version and make do with it not looking ''quite'' right.&lt;br /&gt;
:If it's a necessary change that was made (e.g. &amp;quot;''dt''&amp;quot; instead of &amp;quot;''dx''&amp;quot;, which is definitely wrong the old way), or it seems never to have a valid render, then there's two obvious solutions:&lt;br /&gt;
:#Make your own image of it as it should be and (with a suitably auto-validated account, or via a handy external image hosting service and/or a more mature account here) get that embedded in place of the markup-source, or&lt;br /&gt;
:#Replicate its appearance in more basic (by standard) but complex (by source needed) markup. Combinations of basic wikimarkup and HTML can do most 'fiddly positional' things, see [[2614: 2]] for a numerator/denominator layout, for example.&lt;br /&gt;
:Not as 'simple' as TeX-markedup. But, on the other hand, the &amp;quot;\oint&amp;quot; symbol is &amp;quot;∮&amp;quot;, so perhaps all you need to do is copy'n'paste that actual unicode symbol to wherever you found the problem, and use that instead, and forgo the TeX version altogether? (Might not show on some displays, but probably enough to make it a minority issue.) [[Special:Contributions/172.70.90.105|172.70.90.105]] 22:50, 6 November 2024 (UTC)&lt;br /&gt;
:Had the brainwave that I could probable ''search'' for the offending \oint, actually. Did so, found [[2034: Equations]], noted that it was the only (current) rendering issue and therefore just did the pasting over myself. Looks good for me, but obviously might not help (but not make worse) others' viewing of it. [[Special:Contributions/172.69.195.54|172.69.195.54]] 22:58, 6 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
...Why didn't I think of just pasting the Unicode equivalent. I'm dumb, but thanks for fixing it. [[Special:Contributions/172.69.70.10|172.69.70.10]] 13:44, 8 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Esolang wiki bug ==&lt;br /&gt;
The &amp;quot;esolangs.org&amp;quot; wiki is also experiencing a similar bug. The server was repeatedly changing a particular user's signature in his posts. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 04:01, 29 November 2024 (UTC)&lt;br /&gt;
:Fucking bullshit. One, this doesn’t belong here and I’ve copied it into [[explain xkcd:Community portal/Technial|the Technical Community Portal]]. Two, I saw your talk page on [https://esolangs.org/wiki/User_talk:ColorfulGalaxy%27s_CA_discoveries esolangs.org], which you brought up this “bug”, which the local admin (who’s probably just as sick and tired of you as I am) called BS on. If the server was changing your sig to my sig, it would be '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#db97bf&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#97b6db&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''', not the sig that you faked in. You’re obviously seeking attention and are being abusive and childish. Please see the bottom of https://esolangs.org/wiki/Esolang:Introduce_yourself to see a full list of complaints. I will be asking Kynde to ban you and all of your alt (or shared) accounts. -tori [[Special:Contributions/162.158.167.98|162.158.167.98]] 05:36, 29 November 2024 (UTC)&lt;br /&gt;
::Additionally, the complaint doesn’t even make sense. The 2 wikis are running on different servers and different MediaWiki software and should in no shape or form be having the same bug across 2 different systems. Plus, why is the CAPTCHA in the esolang wiki so damn difficult? (Just a side note :3) -tori&lt;br /&gt;
:I just realized that they've changed '''my''' signature as well. That's strange. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 06:37, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2022:_Sports_Champions&amp;diff=358137</id>
		<title>Talk:2022: Sports Champions</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2022:_Sports_Champions&amp;diff=358137"/>
				<updated>2024-11-29T04:09:06Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Waiting for Brian Math&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;
Since Kate Dopingscandal has a bike, it seems to me she's actually likely a direct reference to Lance Armstrong. [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 05:46, 20 July 2018 (UTC)&lt;br /&gt;
:Yeah, that's why I included him as an example.  Feel free to clarify if you want, of course.[[Special:Contributions/162.158.155.68|162.158.155.68]] 06:09, 20 July 2018 (UTC)&lt;br /&gt;
::Why is a bike directly a direct reference to Lance Armstrong? and why are additionally only &amp;quot;many russians&amp;quot; listed? It is clearly not a phenomena only seen with mr. Armstrong, and Russians, but with cylcing sports in general. The biggest Cycling event, the {{w|Tour_de_France}} is hit by a doping scandal every year. Also other events have many {{w|List_of_doping_cases_in_cycling|cases}}. Lately actually there have even be cases of [http://www.cyclist.co.uk/news/542/motor-doping-is-happening-and-weve-tested-it Motor Doping]. So I think Lance Armstrong can stay as maybe the most famous example, but we should say that it is many others and not Lance Armstrong and Russians. [[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 08:22, 21 July 2018 (UTC)&lt;br /&gt;
:::Because he's easily the most famous example. I realize there are plenty of others - the France native below portrays it as downright epidemic in the sport - but Lance was so highly unbelievably visible. My impression is that in North America (which is where both Randall and I live), cycling as a professional sport enjoys notably less popularity than most other sports, and less than it might elsewhere in the world. Yet virtually EVERYBODY has heard of Lance (I follow no sports whatsoever, and I can even discuss him here). Lance attained nearly a hero status, he beat cancer... He started and/or inspired The LiveStrong movement, its support bracelets spread far and wide, inspiring imitators. At which point the scandal hit. Now combine this heightened visibility with Randall's history of comics portraying him - as Cueball - as knowing nothing about sports. Lance is the only cycling doping scandal _I_ can name, or even cyclist I can name at all, chances are it's the same for Randall. This comic is certainly referencing Lance. I only commented because the description was only listing him as an example. (I said nothing about Russians, I don't know of any Russian doping scandal) [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 13:46, 22 July 2018 (UTC)&lt;br /&gt;
:::Having re-checked the description, I can answer the Russian portion: It says &amp;quot;many Russians&amp;quot; because those words link to a Wikipedia article about Russia in general, not one particular incident. The mere existence of the article tells me that enough Russians have been hit by doping scandals that they rate their own Wikipedia article. It's a great find for this ExplainXKCD article, no wonder somebody made sure to include it. [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 13:55, 22 July 2018 (UTC)&lt;br /&gt;
::::I put both those in. In fact, I wrote almost the entire article. I'm English, but I try to &amp;quot;think American&amp;quot; when editing. I immediately thought of Armstrong,and totally agree with your reasoning; if you do searches for &amp;quot;doping scandal&amp;quot; you immediately see him, but also, the Russian thing. Centered on the 2012 Olympics, and state-sponsored doping, their subsequent exclusion from the 2016 Olympics is amongst the biggest ever sporting scandals of all time, worldwide. Perhaps more so outside America, but it's certainly of epic proportions.[[Special:Contributions/141.101.107.138|141.101.107.138]]  16:54, 22 July 2018 (UTC)&lt;br /&gt;
::I'm 46 and live in France. As far as I can remember (1980 ?) cycling has always been THE sport associated with doping. I can remember some famous cases in other sports (Ben Johnson in the 1988 olympics) but for cycling it was said to be quasi systematic. The Armstong case was a worldwide scandal, but Tour de France had a much severe problem in 1998 where entire teams were involved and excluded from the race. Five years later, after several trials and new analysis of the 1998 samples with more evolved techniques it was revealed that at least the 5 first finishers (and many more) were doped. If you consult the Wikipedia article “doping in sport”, you will note that cycling is by far the largest  section, and almost 100 years old in Tour de France. [[Special:Contributions/108.162.229.34|108.162.229.34]] 12:57, 22 July 2018 (UTC)&lt;br /&gt;
:::Ah, but in cases like this, where different cultures can have an effect, I always bring it back to this: Where does Randall live? In America. While people in France (and cycling fans) might be well aware of many, many, MANY cycling doping scandals, I'd say the average American is not. Plus, Randall has been quite vocal about not knowing sports. Chances are, Lance Armstrong is the only cyclist he can even name at all, never mind doping scandals. And now I cause myself to wonder, did Randall think of Armstrong because his last name is also one made of words, that Lance Armstrong would be on this list himself if he had excelled at arm wrestling? :) [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 13:46, 22 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
He should have listed, in the sport of eXtreme Software Engineering, the dominance of Little Bobby Tables in the late 2020's. ---- {{unsigned ip|172.68.141.136}}&lt;br /&gt;
:Damn, what a missed opportunity. :) [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 13:46, 22 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Would Jebediah be a reference to Kerbal Space Program? Things tend to go disaterously in it. [[Special:Contributions/108.162.210.160|108.162.210.160]] 12:54, 20 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
It's worth noting that the all-star right fielder for the Boston Red Sox, who are currently in first place in the MLB, is named Markus Lynn &amp;quot;Mookie&amp;quot; Betts, with the initials &amp;quot;MLB.&amp;quot; Aside from the fact that he's already won several divisional titles with his team, there's a good chance he'll soon be on a world series winning team as well, perhaps to become the next high-profile example. (Full disclosure: I'm a huge Red Sox fan) [[Special:Contributions/172.68.54.22|172.68.54.22]] 13:47, 20 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Art Ball (1890’s)&lt;br /&gt;
Full name Arthur Ball&lt;br /&gt;
Born April , 1872, Madison, Indiana&lt;br /&gt;
Died December 26, 1915, Chicago, Illinois&lt;br /&gt;
Buried at Mount Olivet Cemetery, Chicago, Illinois&lt;br /&gt;
First MLB Game: August 1, 1894; Final MLB Game: October 15, 1898&lt;br /&gt;
Bat: Unknown Throw: Right Weight: 168 {{unsigned ip|172.68.54.76}}&lt;br /&gt;
&lt;br /&gt;
What, no Cecil Fielder? --[[Special:Contributions/162.158.63.46|162.158.63.46]] 19:32, 20 July 2018 (UTC)&lt;br /&gt;
:I like Prince Fielder, Cecil's son, better, but only for the name.  I'm not enough of a fan to have a preference for actual sports things. [[User:PuzzleMage|PuzzleMage]] ([[User talk:PuzzleMage|talk]]) 03:06, 5 November 2024 (note: timestamp added (it's 4 ~s to properly sign, not 3), plus paragraph indent)&lt;br /&gt;
&lt;br /&gt;
What, no [https://en.wikipedia.org/wiki/Chris_Moneymaker Chris Moneymaker? (Poker, 2000's)] [[User:These Are Not The Comments You Are Looking For|These Are Not The Comments You Are Looking For]] ([[User talk:These Are Not The Comments You Are Looking For|talk]]) 01:10, 22 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Moved from the main talk page: --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 19:30, 21 July 2018 (UTC)&lt;br /&gt;
Misspelling in today's comic&lt;br /&gt;
&lt;br /&gt;
Your article says: &amp;quot;Randall has chosen to spell his name as &amp;quot;Disasterous&amp;quot;, rather than the more conventional &amp;quot;Disastrous&amp;quot;.&amp;quot; Presumably he hasn't &amp;quot;chosen&amp;quot; to do this but merely made a spelling error. In that case, your comment is misleading. [[Special:Contributions/162.158.158.21|162.158.158.21]] 23:25, 20 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Brandon Sponsorship may also be read as Brand On Sponsorship, having two terms related.&lt;br /&gt;
:I know what you mean, and thought about it at the time, but the connection isn't completely obvious and I didn't want to bring in too much assumption on my part. I tried to reference it without making a judgement, by mentioning the word in the text, but not putting it in bold or directly saying that there was a connection. I think that's OK? [[Special:Contributions/141.101.98.214|141.101.98.214]] 16:27, 22 July 2018 (UTC) &lt;br /&gt;
(Previous person didn't sign) About the misspelling, I feel like that's a perfectly acceptable version of the word. It's how I'd instinctually spell it, he just added &amp;quot;ous&amp;quot; to the word &amp;quot;disaster&amp;quot;. That's where the word comes from! It's actually ridiculous that this ISN'T the correct spelling! I blame the English language on this one. I'd guess that centuries ago that WAS the correct spelling, and the E just got dropped at some point, to streamline the pronunciation of the word. I just Googled it, and MANY articles showed up defining it as a common misspelling of the word, that's how common this spelling is. [[User:NiceGuy1|NiceGuy1]] ([[User talk:NiceGuy1|talk]]) 14:11, 22 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:There is no right or wrong spelling for a surname. You can be Mr. Tailor or Mr.Taylor, or a hundred other versions. That's why I deliberately wrote that Randall ''chose'' that spelling, and I think it's obvious from the way I phrased it that it's not the normal spelling of the word. I don't think we should pass judgement about his decision, even though there's a very high chance he just made a typo. I also concur with the opinion of NiceGuy1, so I have changed it back to the way it was. Best, [[Special:Contributions/141.101.98.214|141.101.98.214]] 16:27, 22 July 2018 (UTC)&lt;br /&gt;
::Given that the USA has a dominantly prescriptivist spelling culture for non-names (i.e. in academics and business correctness is defined by books before common usage, coompare to descriptivist which would be the other way around), the phrasing here misleads the leader into believing that both spellings are currently considered correct, as is actually true for other words.  There are a lot of misleading statements in this wiki; maybe we should be up-front about that until somebody has the energy to work through everything and stay on top of it all.  [[Special:Contributions/162.158.63.118|162.158.63.118]] 14:45, 25 July 2018 (UTC)&lt;br /&gt;
:::There I fixed it. [[User:Faultwire|I&amp;amp;#39;m me(citation needed)]] ([[User talk:Faultwire|talk]]) 23:28, 25 July 2018 (UTC)&lt;br /&gt;
::::Still looks messy to me; what kind of citation do you want - a brainscan of Randall? You know he chose to write the word in that way. Why is beyond our knowledge. See further down this page for more discussion and opinions about it. --[[Special:Contributions/162.158.155.104|162.158.155.104]] 04:28, 27 July 2018 (UTC)&lt;br /&gt;
From the transcript: &amp;quot;[Cueball with a golf club] Gary Player&amp;quot; and &amp;quot;[Cueball with a basketball] Lonzo Ball&amp;quot;. I'm not familiar with all the conventions around here, but would it be NOT Cueball when it is very definitely someone else? Sure, the made-up names later on could be Cueball standing in for them, but for those, wouldn't it actually be the real person, just looking Cueball-ish due to the art style? (And as an aside, a slight pity that there wasn't a pool player named something like Randall Cueball in the comic... [[Special:Contributions/162.158.75.130|162.158.75.130]] 03:31, 23 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Podium/Lectern&lt;br /&gt;
&lt;br /&gt;
When I first wrote this explanation, without thinking much, I said Jeb was standing at a {{w|podium}}. Someone corrected it to &amp;quot;lectern&amp;quot;, which is absolutely correct of them - see that Wikipedia article. But the interesting thing is, there is an xkcd cartoon about this very subject!&lt;br /&gt;
&lt;br /&gt;
[[1661: Podium]]&lt;br /&gt;
&lt;br /&gt;
Should this somehow be mentioned in the explanation? I thought probably not, because Randall made no mention of it; it was purely my own error, and just an interesting connection to today's comic. Right? [[Special:Contributions/141.101.107.138|141.101.107.138]] 16:36, 22 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Margaret Court&lt;br /&gt;
She wasn't the best choice.  Recently in Australia someone let her near a microphone &amp;amp; it turns out she's quite homophobic.&lt;br /&gt;
* Perhaps not in terms of PR and exposure of the sport (and I certainly am among those who don't approve), but that doesn't detract from the point of the comic which looks in terms of on-field accomplishments and their last names. [[Special:Contributions/173.245.52.121|173.245.52.121]] 15:15, 27 July 2018 (UTC)&lt;br /&gt;
* Margaret was neé Smith, she married Barry Court in 1967.  But she definitely belongs here, especially since a COURT was named after her at the venue for the Australian Open.  They were smart enough NOT to name it Margaret Court Court, opting for &amp;quot;Margaret Court Arena&amp;quot; [[Special:Contributions/172.69.62.226|172.69.62.226]] 07:45, 18 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Jebediah's Sport&lt;br /&gt;
&lt;br /&gt;
It appears that, based on the person's name, their sport could be debating, public speaking, or giving live postgame press conferences.&lt;br /&gt;
&lt;br /&gt;
[[User:Milesman34|Milesman34]] ([[User talk:Milesman34|talk]]) 03:48, 23 July 2018 (UTC)milesman34&lt;br /&gt;
&lt;br /&gt;
:I agree, it says each sport produces a player with a name related to that sport. The explanation here suggests he plays another sport and participates in post-game conferences. His actual SPORT, however... I don't know. Any ideas, anyone?? [[User:Nyx goddess|Nyx goddess]] ([[User talk:Nyx goddess|talk]]) 22:15, 18 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Why Baseball is a Problem&lt;br /&gt;
&lt;br /&gt;
Did you ever notice that players named &amp;quot;White&amp;quot; are almost always black, and players named &amp;quot;Black&amp;quot; are usually white? Why is that? The last White major leaguer who was actually white was Mike White, who played for Houston in the early sixties. Since then we've had Bill White, Roy White, Frank White, and Jerry White, all of whom were black; Mike White probably would have been black except that his father played in the majors in the thirties and they didn't allow you to be black back then. The Royals also had a Black on their roster, Bud, who of course is white; in fact, the Royals had to set some sort of record by having four colored people on their team, White, Black, Blue, and Brown. Scott Brown is not any browner than anyone else, Vida is definitely not blue, nor for that matter is Darryl Motley. I suppose that is the nature of names, as with Peacekeeping Missiles and Security Police, to disguise the truth more often than they reveal it. Horace Speed stole only four bases in his career. Vic Power was a singles hitter, Bill Goodenough was not good enough, and Joe Blong did not belong for long.&lt;br /&gt;
&lt;br /&gt;
-- Bill James, 1983&lt;br /&gt;
&lt;br /&gt;
Me, I'm disappointed that Jim Gentile wasn't Jewish. [[User:WHPratt|WHPratt]] ([[User talk:WHPratt|talk]]) 12:16, 24 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Chosen spelling - Citation needed&lt;br /&gt;
&lt;br /&gt;
Re. &amp;lt;span class=&amp;quot;example&amp;quot; style=&amp;quot;font-family: Georgia, 'DejaVu Serif', serif; color: #006400;&amp;quot;&amp;gt;Randall has chosen to spell his name as &amp;quot;Disasterous&amp;quot;, rather than the more conventional &amp;quot;Disastrous&amp;quot;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Putting &amp;lt;nowiki&amp;gt;{{citation needed}}&amp;lt;/nowiki&amp;gt; on that is a bit silly. You can see he chose to spell it that way from the cartoon. It's self-evident. What's the issue, what needs a citation? As to &amp;lt;i&amp;gt;why&amp;lt;/i&amp;gt; he decided to spell it that way, nobody but Randall knows, and we're unlikely to ever find out. It's &amp;lt;i&amp;gt;probably&amp;lt;/i&amp;gt; a typo, but isn't that just an assumption? He &amp;lt;i&amp;gt;chose&amp;lt;/i&amp;gt; to type the word that way - whether that's because he doesn't know how to spell it correctly, or because he likes it that way. Nobody but Randall knows.&lt;br /&gt;
&lt;br /&gt;
A couple of people think it should say he misspelled it, but see the discussions; others agree with me that there is not correct spelling of surnames (e.g. Tailor/Taylor). It's a name, not the word.&lt;br /&gt;
&lt;br /&gt;
IMHO, the cite-needed is just clutter and confusing. I think the wording was good, without a messy tag. It's not really something I want to argue pointlessly and endlessly about, so I won't remove it myself right now; I'll see what other people say. [[Special:Contributions/141.101.107.138|141.101.107.138]] 14:52, 26 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Eh, it's been several days, nobody seems bothered, so I'll remove it now. [[Special:Contributions/141.101.107.36|141.101.107.36]] 15:05, 30 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The idea (or more properly, the joke) behind {{Citation needed}} isn't that a citation is truly needed, it's that something that should be blatantly obvious has been stated (see point 3 in the trivia for citation needed). Randall wrote what he did, whether he chose to or not is up to interpretation, no matter how obvious that interpretation is. The tag is not meant to be taken literally. [[Special:Contributions/172.68.47.54|172.68.47.54]] 23:17, 27 August 2018 (UTC)&lt;br /&gt;
:::The &amp;lt;nowiki&amp;gt;{{citation needed}}&amp;lt;/nowiki&amp;gt; template was meant to be a joke. But seeing this joke on more than 250 different explanations isn't funny at all. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 16:12, 28 August 2018 (UTC)&lt;br /&gt;
::::That's less than 15% of the explanations on this wiki, we have more incomplete explanations than that. I'd agree that having it more than once in an single page is a bit much, and this particular instance wasn't funny enough to keep, but I don't think overuse is the issue here. Did it get old after over 100 &amp;quot;What if?&amp;quot; articles? [[Special:Contributions/172.69.33.11|172.69.33.11]] 23:33, 29 August 2018 (UTC)&lt;br /&gt;
:::::Check the top of the main page: ''&amp;quot;We have an explanation for all 2038 xkcd comics, and only 22 (1%) are incomplete.&amp;quot;'' Just saying...--[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 13:10, 30 August 2018 (UTC)&lt;br /&gt;
::::::Ahh I read 22%. Well that's embarrassing. [[Special:Contributions/173.245.48.99|173.245.48.99]] 19:39, 30 August 2018 (UTC)&lt;br /&gt;
:::::::Try reloading the page if the problem persists :P [[Special:Contributions/172.69.62.124|172.69.62.124]] 14:32, 17 July 2020 (UTC)&lt;br /&gt;
;Kerbal&lt;br /&gt;
why am i the first one to see the kerbal space program reference? where are you my fellow kerbals?&lt;br /&gt;
:It's a bit of a tenuous link. I get it, Kerbal has disasters, and has a person named Jebediah, but it's a reasonably common name; there's nothing space-related in the cartoon to suggest a connection. --[[Special:Contributions/162.158.155.104|162.158.155.104]] 04:21, 27 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
;table -&amp;gt; descr.list&lt;br /&gt;
: in my neverending quest to rid this wiki of misued tables I've changed it to a description list. This makes reading easier (to me, at least) and should help for mobile users, once such a layout gets implemented. I feel like I'm pushing a bit with this one, so feel free to revert my change if it doesn't fit the style. [[User:Gir|//gir.st/]] ([[User talk:Gir|talk]]) 14:23, 25 August 2018 (UTC)&lt;br /&gt;
::I'm really happy with this, but the first line below the header should not be indented. Like your comment above as well. This is also easier for editors with less experience on Wiki syntax. --[[User:Dgbrt|Dgbrt]] ([[User talk:Dgbrt|talk]]) 14:43, 25 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Tiger Woods is perhaps a more specifically golf-related example than Player, so if the title-text means the list gets updated... [[Special:Contributions/172.69.62.124|172.69.62.124]] 14:32, 17 July 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
Did nobody notice the duplication of &amp;quot;2050s&amp;quot;? I'm pretty sure Randall meant the first one to be 2040s but lettered it wrong. [[User:Nitpicking|Nitpicking]] ([[User talk:Nitpicking|talk]]) 01:24, 25 July 2022 (UTC)&lt;br /&gt;
:2030s and 2060s are doubly-represented, also. If it was an error, it wasn't the only one. I suspect if he wanted to do 1960s, '70s, '80s, '90s, 2000s, etc, one per decade, he could have (finding true historic nominative determinisms to fill the gaps already passed by date of authorship) and continued forward, but it was intended to be a general 'history', with no (in-universe) reason ''not'' to have two strangely apt names per any given decade (possibly far more), rather than &amp;quot;exactly once in every decade, ''this'' happens...&amp;quot; [[Special:Contributions/141.101.99.238|141.101.99.238]] 08:58, 25 July 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
It may be logical to shorten to Leg for a sprinter surnamed Leggitt/Legat/Legatus. — [[User:物灵|物灵]] ([[User talk:物灵|talk]]) 11:53, 6 July 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Mathematicians&lt;br /&gt;
&amp;quot;Alan '''Math'''ison Turing&amp;quot; and &amp;quot;Norman Mar'''gol'''us&amp;quot; were both mathematicians. &amp;quot;GoL&amp;quot; is abbreviation of Conway's Game of Life. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 04:09, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2015:_New_Phone_Thread&amp;diff=358136</id>
		<title>Talk:2015: New Phone Thread</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2015:_New_Phone_Thread&amp;diff=358136"/>
				<updated>2024-11-29T04:01:45Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &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;
I feel the explanation could possibly give a sample text of what the person is actually trying to say [[Special:Contributions/172.68.46.113|172.68.46.113]] 05:13, 4 July 2018 (UTC)Innertuber40&lt;br /&gt;
&lt;br /&gt;
I have an alternate interpretation: The first thing I thought this comic was about is all the people who are typing on phones and the messages actually sent contain weird words any typos because of the phone's autocorrection feature (or swipe keyboards which are accurate most of the time but error prone nevertheless). So this particular phone actually is sending what the user is writing (or wants to write) and does not change the message. Examples: http://barabare.blogspot.com/2011/05/funny-phone-t9-typo-errors.html [edit:] I mean, this goes so far that occasionally on online forums you see people with the message &amp;quot;Writing from phone, message may contaion errors. Sorry&amp;quot; or something like that in their signature. So a phone that actually writes what you are typing (or what you thought you were typing) might actually be a good thing. Cueball is just astonished that his new phone does exactly that. [edit2:] But then again, some of the messages in the comic really indicate in the direction the current explanantion is going. So, nevermind :) [[User:Elektrizikekswerk|Elektrizikekswerk]] ([[User talk:Elektrizikekswerk|talk]]) 07:30, 4 July 2018 (UTC)&lt;br /&gt;
:When I read it I also had that idea (being impressed by accurate typing)  but it seemed too odd so I came to explain xkcd to look it up. I'm not convinced of either explanation at this point. For the current explanation (that the phone is autocorrecting to say spam) one would expect there to be a phone in the news doing something like that. This could be a hyperbole version of a phone is doing inserting product names like with BlackBerry expanding the acronym BB to their name on some phones. But I haven't heard of that anywhere and blackberry is not news. If someone knows of a current phone this behaviour is referencing please post a link? Thanks, rusl[[Special:Contributions/108.162.246.113|108.162.246.113]] 07:48, 4 July 2018 (UTC)&lt;br /&gt;
:Thought the same thing.  Obscure subjects are of course a mainstay of xkcd.com, but in the past some Wikipedia research explains away the obscurity with certainty.  Not this time.[[User:GODZILLA|GODZILLA]] ([[User talk:GODZILLA|talk]]) 11:43, 4 July 2018 (UTC)&lt;br /&gt;
: Was thinking the same. Sometimes I write weird sentences, because the word I actually chose in autocorrect is replaced with a different one. For example, I am typing &amp;quot;wha&amp;quot; and chose &amp;quot;whatever&amp;quot; from the suggestion list, and I am 100% certain it got chosen correctly. And then when I look at the message, after I hit &amp;quot;post&amp;quot;, it will only show up as &amp;quot;what&amp;quot;. So my example sentence would look like &amp;quot;Yeah, what&amp;quot;, isntead of &amp;quot;yeah, whatever&amp;quot;. [[Special:Contributions/172.69.54.249|172.69.54.249]] 08:31, 6 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Putting the &amp;quot;artifice&amp;quot; into &amp;quot;artificial intelligence&amp;quot;.  I too didn't understand the strip at first...  briefly considered reading it from bottom to top.  Now I agree that the user's phone is censoring and rewriting everything, and we're seeing the censored version.  Another real world reference: a forum where your posts are blocked without telling you; you see your posts in place but no one else does.  I've used forums where some imbecile moderator blocked me that way from spite... of course THIS site's moderators wouldn't do that!  (You don't like words in capital letters??  Uhoh.)  Robert Carnegie  rja.carnegie@excite.com [[Special:Contributions/162.158.154.121|162.158.154.121]] 11:20, 4 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think the “I’l never get a new phone” and “buy the new Mobile Pro 3” are completely inserted by the phone, not just modified user posts. They don’t seem to flow properly if we assume the user posted them, and we can see the surprise when the first of the two messages is posted; something that would fail to surprise the user to the degree he(?) is after already going through the rest of the messages. The “order now” message, in particular, seems a lot more like advertiser-speak than corrected user speak. [[User:Dyaomaster|Dyaomaster]] ([[User talk:Dyaomaster|talk]]) 21:15, 4 July 2018 (UTC)&lt;br /&gt;
:“I’ll never get a new phone” sounds like it originally was &amp;quot;Forget it, i give up. I'll just get a new phone.&amp;quot; which seems natural for the user to post. Probably the “buy the new Mobile Pro 3” was also a warning not to buy the phone, which was changed almost completely into an advertisement.[[Special:Contributions/172.68.62.16|172.68.62.16]] 00:08, 5 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a Doctor Who episode in which a Dalek speech module distorts statements in a similar, but much more spooky way. [[User:Fabian42|Fabian42]] ([[User talk:Fabian42|talk]]) 07:09, 5 July 2018 (UTC)&lt;br /&gt;
:In case anyone else was wondering, according to Bing: I think the episode they are referring to is Dalek, the sixth episode of the first series of the revived Doctor Who. In this episode, the Doctor and Rose encounter a Dalek that has been captured and tortured by a collector of alien artefacts. The Dalek escapes and goes on a rampage, but also shows signs of emotion and compassion after absorbing some of Rose’s DNA. The Dalek speech module is damaged and sometimes distorts its words, such as saying “I am in pain” instead of “Exterminate” or “Why do you survive?” instead of “You are an enemy of the Daleks”. This creates a contrast between the Dalek’s usual cold and ruthless behaviour and its newfound feelings. The episode explores the themes of identity, morality, and redemption for both the Doctor and the Dalek. {{unsigned|JackGreenEarth|17:58, 17 September 2023}}&lt;br /&gt;
::I wouldn't say that the speech module ''distorts the words'' of the Dalek. (It always distorts the ''timbre'', as it were; witness Dalek!Clara in the Assylum, once we see 'her' outside of her own little soufle-cooking mind-environment.) The 'Dalek' dalek is just plain wanting (or needing) to say those unusual words, just like the Cabinet War Room &amp;quot;British Military invention&amp;quot; ones would ask &amp;quot;Would. You. Like. Some. Tea???&amp;quot;, and mean to (under the guise of being created for the Allied war effort by their stooge/plant).&lt;br /&gt;
::Yes, they may have a normally limited vocabulary, but mostly because they don't have much to say except the old classics (or variations, like &amp;quot;Exterminaten!!!&amp;quot;(??), when in Germany for The Stolen Earth/wossisname-key bit). They can still hold full (and philosophical) conversations with those they are forced (or deign) to speak with.&lt;br /&gt;
::I'm trying to think of any example (classic or reboot serieses(eseses)) in which a Dalek doesn't say what it ''intends'' to say (bluff doesn't count, either), and coming up blank (probably kick myself when someone reminds me of an instance).&lt;br /&gt;
::Though I'm rather minded, instead, of how the 'Mars Attacks!' film martians take the seriously misconfigured 'Earth translator' with them, proclaiming their continued friendship even as they death-ray everyone. (Even then, I think that they do this knowingly, for vicious fun... or just not bothered what it's saying, and still for fun!) [[Special:Contributions/172.71.98.227|172.71.98.227]] 20:45, 17 September 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I feel the first two &amp;quot;posts&amp;quot; suggest, the post only look different when viewing from someone else's device?&lt;br /&gt;
Although the following posts do not support this anymore. -- someone without an account.&lt;br /&gt;
:I think this is correct. The posts look exactly as the user wrote them on the user's own device/account, but when viewed by someone else, the forum/phone software censors and modifies the content of the posts. [[Special:Contributions/162.158.63.82|162.158.63.82]] 02:05, 11 July 2018 (UTC) A Nonny Mouse&lt;br /&gt;
&lt;br /&gt;
== possibly connected to just announced Google &amp;quot;Smart Replies&amp;quot;? ==&lt;br /&gt;
&lt;br /&gt;
Google lately announced new function to their keyboard on Android: reading messages on others communicator (like Facebook Messanger) and suggesting several short replies to choose from. It might be connected. pm7 [[Special:Contributions/162.158.88.140|162.158.88.140]] 10:24, 4 July 2018 (UTC)&lt;br /&gt;
:I suspect that it's rather referencing the recent case of phones clandestinely sending random gallery images to ppl in the addressbook.[[Special:Contributions/141.101.96.196|141.101.96.196]] 11:20, 4 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think this happens to people who try to leak high-stakes information (or etc) without understanding what they are up against.  I found this comic very validating to read.  The point of the “order now” button is to make it clear that what we see was not written by the author.  This happened to the author on Facebook, but once they tried to tell somebody it began happening on their messaging app too.  Use a merkle tree messaging system that allows you to keep your private key offline if you’re saying something important.  [[Special:Contributions/108.162.219.142|108.162.219.142]] 15:39, 4 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
OK, am I the only one here this has actually happened to? The Google keyboard often seems *very* reluctant to swipe-write insulting words, &amp;amp; it's especially frustrating when trying to write about the phone itself while it's doing things like changing &amp;quot;inaccurate&amp;quot; to &amp;quot;accurate&amp;quot; &amp;amp; &amp;quot;stupid&amp;quot; to &amp;quot;great&amp;quot;. Note that the swipe action required to write the word &amp;quot;stupid&amp;quot; bears '''''no''''' resemblance to the swipe action for &amp;quot;great&amp;quot;; Sometimes the suggested words seem so obtuse it feels deliberate. (Note, it just did it to me again; I'm editing to correct &amp;quot;great&amp;quot; to &amp;quot;stupid&amp;quot;)&lt;br /&gt;
[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 20:11, 4 July 2018 (UTC)&lt;br /&gt;
:I doubt it's intentionally reversing the meaning. My guess as to what's happening: they give insulting words an artificially low weight in their algorithm because they don't want to produce them by accident. It comes up with the word &amp;quot;great&amp;quot; rather than some other random word because their natural language processing algorithm recognizes that a word of that sort fits the context. [[User:Ids1024|Ids1024]] ([[User talk:Ids1024|talk]]) 16:03, 5 July 2018 (UTC)&lt;br /&gt;
::I agree that under-weighted negative words combined with context suggestions (&amp;amp; some Branding-first assumptions) are what causes the illusion that intentional reversal is occurring; but the illusion is crazy complete sometimes. I'm pretty sure this comic is based off some actual corrections, extended only slightly toward hyperbole. [[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 11:05, 6 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== EU copyright directive? &lt;br /&gt;
&lt;br /&gt;
Might be related to controversial article 13 of EU copyright directive which will be voted on today (5 July 2018) and which will in practice mandate automated censorship AI on all social networks and alike sites operating in EU. More info on https://saveyourinternet.eu/ (the same directive with dreaded &amp;quot;link tax&amp;quot; in art.11 --[[Special:Contributions/162.158.93.207|162.158.93.207]] 23:36, 4 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Wrong Link?&lt;br /&gt;
&lt;br /&gt;
The link to the word &amp;quot;plaudit&amp;quot; in no way matches the context of the sentence. 12:25, 8 July 2018 (UTC)Someone who doesn't have an account.&lt;br /&gt;
&lt;br /&gt;
== Missing closing equals sign&lt;br /&gt;
&lt;br /&gt;
Should this get a [[:Category:Self-reference]] tag? [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 03:58, 24 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Ballot machine ==&lt;br /&gt;
&lt;br /&gt;
I heard the news about a ballot machine changing the voters' choices. [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 06:45, 24 October 2024 (UTC)&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;sigh* Which news? There was much news (more just of a &amp;quot;I heard that...&amp;quot; level of reporting quality) and it's absolutely more likely that someone voted X, confirmed X and X got recorded but they decided to pretend otherwise (or they mishit Y, perhaps due to an electronic version of the Butterfly Ballot problem, and had to unconfirm it and hit X ''properly''), than a machine effectively went &amp;quot;Ha ha! You voted X but I'm going to tell them you said Y!&amp;quot;.&lt;br /&gt;
:(Much more 'sensible' for intentional voter-fraud or unintentional errors to crop up down the line, when the machine gets asked for the whole lot of anonymised results and nobody who knows anything about what individuals actually (thought they) voted for see an 'adjusted' tally.)&lt;br /&gt;
:I gather you're too young to remember back to the 2000 US elections (if not beyond), with games and claims galore happening pretty much every election cycle (at least in the US, where it seems to be a valid tactic to attack the way every single vote happened in ways that discredit the result in your favour). Mostly without proof or even proven false/bad-faith. Not surprised if it's already cropped up, in places with voting open.&lt;br /&gt;
:(Here in the UK, physical voting only happens on the day itself and seems to work. Historically, there were reasons to spread even the non-postal voting out significantly, across the US, but surely decent electoral conditions (and employment rights) could now currently make a lot of that unnecessary. But it can be hard to do Democracy, maybe it'll improve in the future.)&lt;br /&gt;
:...TL;DR;, I don't know what your point is, but I'm ''assuming'' it's just something to do with the quadrennial fight for 1600 Pennsylvania Avenue, which is (to be frank) a boringly regular deluge of he said/she said unjustified rumour which just drowns out and smudges what should be a fairly simple &amp;quot;count 'em up and deal with it&amp;quot; process. Can we at least save this kind of thing until the strangely long November-to-January period when the inevitable arguments will at least know ''what's''  being argued as true or false? For all you know, Vermine Supreme will get an unassailable majority (popular ''and'' EC) and Jill Stein will get far enough up in next place to eventually convincingly form the official second party. Until then, not even worth the effort I took to write this. [[Special:Contributions/172.69.195.176|172.69.195.176]] 11:37, 24 October 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Source: http://google.com/search?q=https%3A%2F%2Fwww%2Ebilibili%2Ecom%2Fvideo%2FBV1J9SqYKEtZ%2F%20%28ns%66w%29 [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 08:17, 5 November 2024 (UTC)&lt;br /&gt;
:::...I wish people wouldn't copy Google-mediated URLs like that. At least go through with it yourself and give the destination URL that you want us to land on. (Even though I can decode percent-encoding by eye, I don't want to manually type in the whole video ID just to avoid so trivially depositing personal usage history in Alphabet's combined memory banks... Let them at least work for it more than I have to work to avoid it!) [[Special:Contributions/172.70.163.30|172.70.163.30]] 15:42, 5 November 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Esolang wiki bug ==&lt;br /&gt;
The &amp;quot;esolangs.org&amp;quot; wiki is also experiencing a similar bug. The server was repeatedly changing a particular user's signature in his posts. [[User:42.book.addict|ConscriptGlossary]] ([[User talk:42.book.addict|talk]]) 04:01, 29 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1493:_Meeting&amp;diff=358037</id>
		<title>1493: Meeting</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1493:_Meeting&amp;diff=358037"/>
				<updated>2024-11-28T03:23:59Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Cross-reference&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1493&lt;br /&gt;
| date      = March 2, 2015&lt;br /&gt;
| title     = Meeting&lt;br /&gt;
| image     = meeting.png&lt;br /&gt;
| titletext = Here at CompanyName.website, our three main strengths are our web-facing chairs, our huge collection of white papers, and the fact that we physically cannot die.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Beret Guy]]'s business, as previously seen in [[1032: Networking]] and [[1293: Job Interview]], is going well, although it is unclear why. The common theme in these three comics is that Beret Guy misuses common business cliches. The following are examples and phrases that [[Randall]] is likely making a joke about:&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;If you're reading this, the web server was installed correctly.™&amp;quot; When a web server is installed automatically (like Apache through a package manager), it typically comes with a minimal configuration meant to deliver a single page saying all is working fine. Usually, a company will then configure the web server to provide actual meaningful content, such as contact information and a list of the company's services. It appears that in this case Beret Guy's company kept the page as is, but also trademarked the sentence as the company's motto, and proudly displays it under the company logo.&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;CompanyName.website&amp;quot;: Companies are usually given descriptive or evocative names; Beret Guy's company, meanwhile, has been given a generic placeholder name that explains nothing about the company or website except that it is a company with a website. Currently, almost every middle-sized company runs a website, so it doesn't mean Beret Guy's company is in the information technology business (but many elements are specifically parodying Google). &amp;quot;[http://Companyname.website Companyname.website]&amp;quot; redirects to xkcd.com.&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;Welcome to a meeting!&amp;quot; The usual way to start a meeting is to welcome the participants by telling them in which meeting they are (e.g. &amp;quot;Welcome to the meeting on...&amp;quot;). Here, the complete lack of specifics in this sentence is an indication that the meeting has, in fact, no purpose at all, except to be just &amp;quot;A meeting&amp;quot;. It could also mean that Beret Guy does not know the proper way to welcome people to a meeting.&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;I'm almost out of words so I'll keep this short.&amp;quot; A common theme in the busy world of business is lack of time, so &amp;quot;I'm almost out of time&amp;quot; would be a valid reason for keeping a meeting short, rather than a finite quantity of words. Aside from the fiction movie {{w|A Thousand Words (film)|A Thousand Words}} or people taking a {{w|Vow of Silence}}, people usually don't have a particular quota on the number of words they have or can use. Beret Guy also seems to run out of words in the title text of [[1560: Bubblegum]]. The characters also seems to run out of numbers in the [[3009]].&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;Just wanna touch bases.&amp;quot; Often business professions will contact a customer to &amp;quot;touch base,&amp;quot; meaning to check in for a status update. The use of the plural &amp;quot;bases&amp;quot; suggests Beret Guy does not know what this means. This could also be a word play on the expression &amp;quot;Cover some bases&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;Self-driving car project&amp;quot; Google has been working on {{w|self-driving cars}}, which usually shouldn't be lost track of and found by the police. The fact that it was launched &amp;quot;by accident&amp;quot; is concerning. It could mean the car was turned on by mistake and then left unattended, or perhaps that a driver of one of their cars fell asleep or otherwise stopped controlling the vehicle, or [[Black Hat]] [[1559|left a large boulder in one of the seats and sent it off to Anchorage, Alaska]], but it is not clear because the accidental launch may refer to the project itself rather than the car. The involvement of the police may imply that the car crashed or otherwise obstructed traffic. That said, 90 miles before crashing was at that time a good result for a self-driving car, especially when you didn't even know you built a self-driving car. What's especially ironic is the implication that the employees were carpooling (sharing a single vehicle for their commute, for reasons of efficiency/economy) in the self-driving car, and yet this carpool activity ended with the car setting off with nobody in it at all. These types of cars were the topic of the later comic [[1559: Driving]], maybe misusing one of Beret Guy's cars. Self-driving cars are a [[:Category: Self-driving cars|recurring topic]] on xkcd.&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;Sales, any luck figuring out who our customers are?&amp;quot; In the real world, when companies want to find out &amp;quot;who [their] customers are&amp;quot;, they are talking about learning more about their existing customers (e.g. age groups, interests, genders) in order to more closely match these customers' needs, and to discover ways to attract more of them. Here, Beret Guy and [[Ponytail]] apparently use the phrase literally - they have no records of making any sales. A normal enterprise struggles to sell its products/services in order to get money. Getting cash from an unknown source would lead to serious troubles - failure to comply with tax code, suspicion of money laundering - but overall, most enterprises suffer the opposite problem: they try as hard as they can but don't get enough cash to be profitable (despite keeping precise information about where cash comes from). Note, that the accidental launching of a project would suggest a theme, that large cash infusions for unknown or {{w| Money laundering|unscrupulous}} reasons could imply anonymous {{w|Venture capital|VC}} investors, perhaps amateurs or acting in an overheated market.&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;{{w|Bug tracker}}&amp;quot; usually refers to systems for tracking discovery, analysis, and fixing of software bugs (errors and problems), not the physical location of insects.&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;Web-facing&amp;quot; (title text) usually refers to software or a server that is connected to the internet using a web interface. However, in this case, the term is applied to chairs (likely meaning that they are either materially {{w|Webbing#Furniture|web-plaited}} or placed in front of a computer with internet browsing capability, or both; may also possibly refer to other definitions of &amp;quot;web&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;White papers&amp;quot; (title text) are usually policy recommendations, but here Beret Guy is likely talking about actual (near-worthless) blank white pieces of paper.&lt;br /&gt;
&lt;br /&gt;
*&amp;quot;Main strengths&amp;quot; (title text) typically refer to one's skills, but &amp;quot;we physically cannot die&amp;quot; may refer to the fact that incorporated companies are in a sense anthropomorphized — they're legally treated as &amp;quot;persons&amp;quot;, with the ability to sue and be sued in civil courts; or, just as likely, that Beret Guy and his employees are literally immortal, in which case that would indeed be a great asset which could be used in a variety of ways, such as economizing on costs of living, participating in physically dangerous projects with impunity, or investing for a long, long time.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Beret Guy is shown in silhouette. Above Beret Guy there is a black sign with white (and grey) text. Above this is his address to those in the meeting:]&lt;br /&gt;
:Beret Guy: Welcome to a meeting! I'm almost out of words, so I'll keep this short. Just wanna touch bases.&lt;br /&gt;
:[White text in the black sign (''.website'' in grey):]&lt;br /&gt;
:CompanyName.website&lt;br /&gt;
:''If you're reading this, the web''&lt;br /&gt;
:''server was installed correctly.™''&lt;br /&gt;
&lt;br /&gt;
:[Beret Guy stands in front of an office chair and a table talking.]&lt;br /&gt;
:Beret Guy: First, a few updates. We've learned from the state police that the self-driving car project we launched by accident during this morning's carpool has come to an end about 90 miles outside of town. Very exciting!&lt;br /&gt;
&lt;br /&gt;
:[Pony tail sits at the table.]&lt;br /&gt;
:Beret Guy [off-panel]: Profits are up. Sales, any luck figuring out who our customers are?&lt;br /&gt;
:Ponytail: Nope. Money keeps appearing, but we have no idea how or why.&lt;br /&gt;
:Beret Guy [off-panel]: Great!&lt;br /&gt;
&lt;br /&gt;
:[Back to the situation from frame two.]&lt;br /&gt;
:Beret Guy: Oh, and one last thing—I saw a cool red beetle in the hall. Can someone add it to the bug tracker?&lt;br /&gt;
:[person off-panel]: Just did!&lt;br /&gt;
:Beret Guy: Thanks!&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*&amp;quot;CompanyName.website&amp;quot; is actually a domain name that was registered on 2014-11-20 and [http://companyname.website which redirects to xkcd.com]. Presumably, it is owned by Randall, for the same reason as in [[305]].&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Beret Guy's Business]]&lt;br /&gt;
[[Category:Self-driving cars]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1560:_Bubblegum&amp;diff=358036</id>
		<title>1560: Bubblegum</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1560:_Bubblegum&amp;diff=358036"/>
				<updated>2024-11-28T03:23:05Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Cross-reference&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1560&lt;br /&gt;
| date      = August 5, 2015&lt;br /&gt;
| title     = Bubblegum&lt;br /&gt;
| image     = bubblegum.png&lt;br /&gt;
| titletext = I came here to chew bubblegum and say no more than eighteen words... and I'm all out of&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic spoofs the [http://www.imdb.com/title/tt0096256/quotes iconic quote] from the 1988 action movie ''{{w|They Live}}'', where the armed protagonist, upon entering a bank, states that &amp;quot;I have come here to chew bubblegum and kick ass, and I'm all out of bubblegum.&amp;quot; This implies that the protagonist will soon fight the people in the bank, as he cannot do the other objective he came there for (chewing bubble gum). This phrase has been quoted and modified often enough that it's often mistakenly attributed to other sources. &lt;br /&gt;
&lt;br /&gt;
Former wrestler Rowdy {{w|Roddy Piper}}, who played the protagonist in ''They Live'', died five days prior to the publication of this comic so this comic is most likely a [[:Category:Tribute|tribute]] to him. The iconic quote was an ad-lib Piper himself came up with.&lt;br /&gt;
&lt;br /&gt;
In the comic, [[Beret Guy]] stands in an open doorway with a strong light behind him, a typical pose in action movies when someone is dramatically entering a room. However, in this instance, Beret Guy claims that he is here to &amp;quot;chew bubble gum and make friends&amp;quot;. He then offers a stick of gum to both [[Megan]] and [[Cueball]], making it clear he intends to do both of his stated objectives. This is expected from Beret Guy, who is usually both naïve about the world and beings that surround him, and also friendly to them.&lt;br /&gt;
&lt;br /&gt;
The title text seems to be a slight dig at the trope of a laconic hero who utters only a few gnomic words, as in the ''They Live'' scene. It is another variation of the line, with meta-humor. The speaker states that he is here to say 18 words and chew bubble gum, but reaches 18 words before he is able to finish his sentence. Thus, readers are left in ambiguity as to whether or not he is also out of bubble gum, as the line could end &amp;quot;and I'm all out of words&amp;quot;, &amp;quot;and I'm all out of gum&amp;quot;, or &amp;quot;and I'm all out of both.&amp;quot; Of course if it is a tribute to Rowdy it could have been &amp;quot;and I'm all out of time!&amp;quot; And his time was up just then before that last word.&lt;br /&gt;
&lt;br /&gt;
Strangely, though, [[Randall]] has not preserved the number of words in the original film quote: there are 16. There would be 18 if 'bubble gum' (which occurs twice) were taken as two words, but in the comic, it is clear that Randall takes it as one.&lt;br /&gt;
&lt;br /&gt;
Beret Guy has previously indicated he has a finite number of words he can say in [[1493: Meeting]]. In comic [[3009]], it was indicated that they're running out of numbers.&lt;br /&gt;
&lt;br /&gt;
In [[1110: Click and Drag]] Megan, walking out on to a platform on the left side of the tower Burj Khalifa, says &amp;quot;I came here to chew bubblegum... And I'm all out of bubblegum&amp;quot; to which Cueball walking with her replies &amp;quot;That's a shame&amp;quot; (see [http://imgs.xkcd.com/clickdrag/1n2w.png picture here].)&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Beret Guy stands dramatically silhouetted in a doorway.]&lt;br /&gt;
:Beret Guy: I came here to chew bubblegum and make friends!&lt;br /&gt;
&lt;br /&gt;
:[Beret Guy, in normal lighting, looks at Megan and Cueball who stare back. A silent beat panel.]&lt;br /&gt;
&lt;br /&gt;
:[Beret Guy put his hand out offering a stick of gum to Megan and Cueball.]&lt;br /&gt;
:Beret Guy: Want some gum?&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Tribute]]&lt;br /&gt;
[[Category:Comics featuring Beret Guy]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=124:_Blogofractal&amp;diff=357957</id>
		<title>124: Blogofractal</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=124:_Blogofractal&amp;diff=357957"/>
				<updated>2024-11-27T13:32:55Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 124&lt;br /&gt;
| date      = July 5, 2006&lt;br /&gt;
| title     = Blogofractal&lt;br /&gt;
| image     = blogofractal.png&lt;br /&gt;
| titletext = Edward Tufte's 'The Visual Display of Quantitative Information' is a fantastic book, and should be required reading for anyone in either the sciences or graphic design.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The {{w|Blogosphere}} is a blanket term for all the blogs on the internet that link together and share information to the extent that the term &amp;quot;blogosphere&amp;quot; arose to describe the collective of blogs. This comic proposes a new structure for defining all blogs by a {{w|fractal}} of blogs.&lt;br /&gt;
&lt;br /&gt;
{{w|Edward Tufte}} is a statistician who worked on data visualization and wrote books on the subject, including &amp;quot;The Visual Display of Quantitative Information,&amp;quot; as mentioned in the title text.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Meme !! Explanation&lt;br /&gt;
|-&lt;br /&gt;
|TripMaster Monkey says || {{w|Tripmaster Monkey}} is a book by {{w|Maxine Hong Kingston}} about Wittman Ah Sing, an American graduate of Chinese heritage. 'Monkey says' may be based on the saying 'Monkey See, Monkey Do' and/or the children's game Simon Says.&lt;br /&gt;
|-&lt;br /&gt;
|118th Post!! || This may be a riff on the &amp;quot;first post&amp;quot; phenomenon, or the &amp;quot;milestone marks&amp;quot; like &amp;quot;1000th post&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|Wikiconstitution! || The Onion wrote [https://www.theonion.com/articles/congress-abandons-wikiconstitution,5026/ a 2005 article] about putting the {{w|Constitution}} on a Wiki to allow public editing. This may be a reference to &amp;quot;[[285|Protect the constution]]&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|OMG || Common acronym for &amp;quot;Oh My God,&amp;quot; often used in messaging.&lt;br /&gt;
|-&lt;br /&gt;
|DeCSS || {{w|DeCSS}} was a piece of code for decrypting DVDs.  There was a significant effort to prevent this code from being distributed, which triggered the {{w|Streisand effect}}.&lt;br /&gt;
|-&lt;br /&gt;
|Casemod your Boyfriend!! || {{w|Case modding}} is the modification of a computer chassis (or less commonly other devices), usually to make it more aesthetically pleasing. Casemodding a boyfriend would therefore attempt to make him more attractive.&lt;br /&gt;
|-&lt;br /&gt;
|FLICKR || A well known [https://www.flickr.com/ photo sharing site].&lt;br /&gt;
|-&lt;br /&gt;
|They're saying on Kos that || The {{w|Daily Kos}} is a web blog that publishes news and opinions about American politics, from a liberal standpoint. Alternatively, {{w|Kos}} is a Greek island and popular holiday destination.&lt;br /&gt;
|-&lt;br /&gt;
|https://slashdot.org/articl || {{w|Slashdot}} is a technology-related news website frequented by geeks.&lt;br /&gt;
|-&lt;br /&gt;
|tagCloud || A {{w|Tag Cloud}} is a visual representation of keyword meta-data, usually with font size increasing with importance.&lt;br /&gt;
|-&lt;br /&gt;
|Cory Doctorow is a little upset about copyright law. || This is an understatement, as [[Cory Doctorow]] is a strong activist in this area.&lt;br /&gt;
|-&lt;br /&gt;
|Hey guys what if Google is evil?!? || {{w|Don't be evil}} was the corporate motto of Google, however the sheer quantity of data held by Google is a somewhat scary thought. A number of conspiracy theories exist that [[792|Google is evil]], bent on world domination, run by the government/CIA/FBI/illuminati/aliens. The motto was replaced by &amp;quot;do the right thing&amp;quot; in late 2010s.&lt;br /&gt;
|-&lt;br /&gt;
|I'll sleep with you for a FreeIpods deal. || This is a parody on how desperate people are in getting either iPhones (extremely popular yet expensive smartphones from Apple) or getting laid. (Coincidentally, years later, someone tried to sell her virginity in exchange for an iPhone: https://www.techinasia.com/chinese-girl-sells-virginity-iphone4/ ) &lt;br /&gt;
|-&lt;br /&gt;
|FirstPsot!! || Some users on sites that accept comments will race to write the first comment (usually saying something like &amp;quot;First post!&amp;quot; or some variation thereof). In this variation, the user has misspelt &amp;quot;post&amp;quot; in the rush to have the first post. This was later mentionned in [[269: TCMP]] and [[1258: First]]&lt;br /&gt;
|-&lt;br /&gt;
|Snakes on an I don't Even Care Anymore || There were many jokes about {{w|Snakes on a Plane}} where a supposedly new movie to come out was named &amp;quot;Snakes on a ______.&amp;quot;  Clearly this person is tired of those jokes.  See also [[107: Snakes on a Plane! 2]]&lt;br /&gt;
|-&lt;br /&gt;
|KiwiWiki || A New Zealand (Kiwi) related wiki exists at [https://kiwiwiki.co.nz kiwiwiki.co.nz], and this is likely included because Kiwi is an anagram of Wiki.&lt;br /&gt;
|-&lt;br /&gt;
|CSS || Reference to {{w|Cascading Style Sheets}}.&lt;br /&gt;
|-&lt;br /&gt;
|Comments (0) || The number of comments is zero, sometimes indicating that nobody cares.&lt;br /&gt;
|-&lt;br /&gt;
|Blogotesseract || This is a joke on the word &amp;quot;blogosphere&amp;quot;, or &amp;quot;blogocube&amp;quot; in the caption. This comic contains many such jokes where the word sphere is replaced by some other object. A {{w|Tesseract|tesseract}} is a four-dimensional analog of the cube.&lt;br /&gt;
|-&lt;br /&gt;
|¡play games! || One of the most frequent ads are those that mention &amp;quot;Play free games!&amp;quot;. While these sites are real, they tend to be collections of Flash-based games taken from other sites from the Internet.&lt;br /&gt;
|-&lt;br /&gt;
|[RSS icon.] || {{w|RSS}} is a standard for web feeds.&lt;br /&gt;
|-&lt;br /&gt;
|is AYB retro yet? || The shoot-'em-up game &amp;quot;{{w|Zero Wing}}&amp;quot; on SEGA's Genesis console features an English translation so terrible it has long been a source of memetic humor. The line in question is, &amp;quot;'''A'''ll '''Y'''our '''B'''ase are belong to us!&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Google Google Google Apple Google Goog || ...a reference to how Apple is going into a prominence that rivals the ubiquitousness of Google, perhaps?&lt;br /&gt;
|-&lt;br /&gt;
|Cheney totally shot a dude!!! || A reference to the {{w|Dick Cheney hunting incident}}.&lt;br /&gt;
|-&lt;br /&gt;
|Watch this toddler get owned by a squirrel!!! || An example of clickbait, usually a sensationalized headline that links to a page or video that is either of passing interesting or none at all. 'Funny' videos of animals and babies/toddlers tend to spread like wildfire online.&lt;br /&gt;
|-&lt;br /&gt;
|Developers, Developers, Developers, Developers || A reference to [https://www.youtube.com/watch?v=KMU0tzLwhbE a widely circulated video], captured at a developers' conference, featuring a perspiring {{w|Steve Ballmer}} chanting the word &amp;quot;developers.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|I installed a Mac Mini inside ANOTHER Mac Mini! || This is most likely a reference to how Mac minis are popular to install just about anywhere due to their small size. For example, they are commonly installed to use with a TV (“HTPC”), as small home servers, in cars and trailers, and even mounted on the back of monitors. However, installing an entire Mac mini inside another Mac mini (especially of the same generation) would be a very challenging, if not impossible, task. This could also be referencing Hackintoshes, that is, installing a Macintosh operating system in a Windows-designed machine. In this case, installing a “Mac Mini” (informally referring to macOS (Mac OS X at the time of the comic)) inside another is a relatively trivial, albeit meta, task.&lt;br /&gt;
|-&lt;br /&gt;
|Check out this vid of Jon Stewart || {{w|Jon Stewart}} is (after being replaced by comedian {{w|Trevor Noah}} for a time) the host of ''{{w|The Daily Show}}'', a late-night political comedy/satire program.&lt;br /&gt;
|-&lt;br /&gt;
|9-11 &amp;lt;-&amp;gt; Trent Lott! || This could refer to the {{rw|9/11|conspiracy theories}} regarding the {{w|September 11 attacks|incident from September 11, 2001}}, the date when the Twin Towers of the {{w|World Trade Center (1973–2001)|World Trade Center}} in New York City fell. What actually happened is that Arab/Muslim terrorists deliberately crashed their planes into the towers with the purpose of killing infidels, but the theory tells that the government ordered the intentional demolition of the towers. In this post, the poster linked the September 11 incident to {{w|Trent Lott}} (a former US Senator).&lt;br /&gt;
|-&lt;br /&gt;
|Web 7.1 || This is a parody of {{w|Web 2.0}}, a concept in which content from the Internet is provided beyond the webpage. Despite its name, Web 2.0 does not really involve making an entirely new series of tubes or updating the existing ones, a point that the post parodies.&lt;br /&gt;
|-&lt;br /&gt;
|Kryptonite™ locks vulnerable to &amp;quot;keys!&amp;quot; || Around 2004, it was demonstrated that some tubular pin tumbler locks of the diameter used on Kryptonite locks could easily be opened with the shaft of an inexpensive Bic ballpoint pen of matching diameter, and this was widely reported.&lt;br /&gt;
|-&lt;br /&gt;
|Interesting post! Check out my blog, it has useful info on CARBON MONOXIDE LITIGATION || An example of a spam comment found where users can comment.&lt;br /&gt;
|-&lt;br /&gt;
|FIREFLY!! || Reference to {{w|Firefly (TV series)|Firefly}}, a US television series that was cancelled after only 14 episodes. Despite its short run, it amassed a strong fanbase that used internet petitions and blogs to help fuel the push for the film {{w|Serenity_(film)|Serenity}}. Firefly is a [[:Category:Firefly|common topic]] on XKCD.&lt;br /&gt;
|-&lt;br /&gt;
|HELP ME || This is a simple post where someone is requesting help in hopes that the readers of the blog would bring solutions.&lt;br /&gt;
|-&lt;br /&gt;
|Engadget || [https://engadget.com Engadget] is a technology-related website.&lt;br /&gt;
|-&lt;br /&gt;
|Boing Boing || Reference to collaborative blog site [https://boingboing.net/ Boing Boing].&lt;br /&gt;
|-&lt;br /&gt;
|Gizmodo || [https://gizmodo.com Gizmodo] is a technology-related website hosted by Gawker.&lt;br /&gt;
|-&lt;br /&gt;
|MAKE Blog: DIY baby || This refers to various DIY (do it yourself) blogs. In this case, the blog post would refer to how to make a baby, which, most likely, would lead into pornographic territory. This post might also refer to the &amp;quot;How is babby formed?&amp;quot; meme. This was later mentionned in [[550: Density]] and the title text of [[481: Listen to Yourself]].&lt;br /&gt;
|-&lt;br /&gt;
|My friend has a band!! || Blogs and other social media are common tools used by people to promote their (and their friend's) bands.&lt;br /&gt;
|-&lt;br /&gt;
|Jon released an exploit in the protocol for meeting girls. || Exploits bypass hardware/software security, permitting cracking or simple extension of the current capabilities of the hardware/software. (One example: an exploit in video-game consoles would permit someone to play homebrew applications or pirated games among other things.) In this case, the exploit went beyond the technological, permitting the exploiter to meet girls.&lt;br /&gt;
|-&lt;br /&gt;
|Internets! || &amp;quot;Internets&amp;quot; is a memetic version of saying &amp;quot;Internet&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|Howard Dean? || {{w|Howard Dean}} was Chairman of the Democratic National Committee from 2005 to 2009. He also ran for president in 2004, becoming famous among liberals for his unabashedly progressive positions, [https://www.youtube.com/watch?v=9j6xm7e5bJo also for a memetic scream].&lt;br /&gt;
|-&lt;br /&gt;
|So I hear there's a hurricane. || Blogging shut-ins can be hilariously out of touch with the outside world. Given the date of this comic (2006 was a slow year for hurricanes), the clueless blogger is probably asking about 2005's {{w|Hurricane Katrina}}, perhaps the most devastating hurricane to hit New Orleans.&lt;br /&gt;
|-&lt;br /&gt;
|We should elect this dude! || People have strong political opinions.&lt;br /&gt;
|-&lt;br /&gt;
|Google Maps is da best!! || Google Maps is a world mapping service from Google. &amp;quot;Da&amp;quot; is a common intentional misspelling of &amp;quot;the.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Moderation: +1 Sassy || A joke on Slashdot's moderating mechanism.  Each post can get a moderation that consists of a score (+1/-1) and a reason (Insightful/Funny/Troll/etc.)  &amp;quot;Sassy&amp;quot; is not one of the standard reasons.&lt;br /&gt;
|-&lt;br /&gt;
|RSS! || {{w|RSS}} again.&lt;br /&gt;
|-&lt;br /&gt;
|A-list || the most popular bloggers in the blogosphere are referred to as A-list, following a similar designation for actors. Also, possibly a reference to &amp;quot;A List Apart,&amp;quot; a blog &amp;amp; publishing company focused mainly on emerging web technologies.&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;3 || Emoticon for a heart.&lt;br /&gt;
|-&lt;br /&gt;
|Trackback URL? || {{w|Trackback}} is a mechanism by which a blog receives a notification when another blog has linked to it, similar to {{w|pingback}}.&lt;br /&gt;
|-&lt;br /&gt;
|I shot a man in Reno check it out on YouTube! || The first half of this line comes from Jonny Cash's song &amp;quot;Folsom Prison Blues,&amp;quot; which is &amp;quot;But I shot a man in Reno, just to watch him die&amp;quot;.  The second half turns it around, because people often say &amp;quot;I did X, watch it on YouTube.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|HEY LOOK ROBOTS! || Both real-world experiments with robotics and science fiction stories involving robots are popular on the Internet.&lt;br /&gt;
|-&lt;br /&gt;
|Net Neutrality! || {{w|Net neutrality}} is a hot topic.  It is the principle that ISPs and governments should treat all data on the Internet equally. There is great debate as to what level this should be enforced or not, and whether it should be regulated.&lt;br /&gt;
|-&lt;br /&gt;
|Friends Only. || Personal blogging and social media websites typically have privacy settings that allow you to control who can see the posts. The &amp;quot;Friends Only&amp;quot; setting would prevent anyone who the user has not granted the &amp;quot;Friend&amp;quot; status to from seeing the content.&lt;br /&gt;
|-&lt;br /&gt;
|Dupe! || A common note if the same thing gets posted twice on some forum (Short for &amp;quot;duplicate.&amp;quot;). There are two instances of this in the comic, therefore one of them is a dupe itself.&lt;br /&gt;
|-&lt;br /&gt;
|AJAX? || AJAX is a generic brand found in Mickey Mouse Works cartoons. It is also a JavaScript-based web technology enabling complex user interfaces (&amp;quot;{{w|Ajax (programming)|Asynchronous JavaScript + XML}}&amp;quot;) and a brand of cleaning powder.&lt;br /&gt;
|-&lt;br /&gt;
|COMPLY || This is likely a reference to science fiction stories where a race of cyborgs or collection of robots tries to assimilate, force compliance upon, or otherwise enslave all life in the universe.&lt;br /&gt;
|-&lt;br /&gt;
|Cowboy Neal || One of the original Slashdot editors.&lt;br /&gt;
|-&lt;br /&gt;
|Blogodrome || This is a parody on the word &amp;quot;blogosphere&amp;quot;. This word is also in the caption.&lt;br /&gt;
|-&lt;br /&gt;
|Hey look I got Linux running on my tonsils! || People would often brag about getting Linux to run on strange hardware, from toasters to esoteric computers.  This is taken to the ridiculous extreme of tonsils.&lt;br /&gt;
|-&lt;br /&gt;
|Look alive, blogonauts! || Possibly a comment from a moderator of a dying blog attempting to motivate their users into generating more content.&lt;br /&gt;
|-&lt;br /&gt;
|Cafepress cockrings || {{w|Cafepress}} is a website that allows users to put pictures/logos on just about anything (T-shirts, mugs, etc.). Currently, however, cockrings are not available.&lt;br /&gt;
|-&lt;br /&gt;
|BOOBIES!! || Another reference to the &amp;quot;First Post&amp;quot; phenomenon.  The popular news site {{w|Fark|FARK}} automatically changes entries of &amp;quot;First post&amp;quot; to &amp;quot;BOOBIES&amp;quot; and modifies the timestamp to be many hours in the future.&lt;br /&gt;
|-&lt;br /&gt;
|MIA || &amp;quot;Missing in Action,&amp;quot; a term applied to people who fought in wars, yet were never found.&lt;br /&gt;
|-&lt;br /&gt;
|A Beowulf Cluster... of BLOGS!! || A {{w|Beowulf cluster}} is a computer cluster of computers networked together resulting in a high-performance parallel computing cluster.  For a while, it was a fad to get one running on various strange platforms.  This is a facetious example.&lt;br /&gt;
|-&lt;br /&gt;
|SPOILER ALERT || Often stated on the top of a post that contained spoilers. (See {{w|Spoiler (media)}}.)&lt;br /&gt;
|-&lt;br /&gt;
|You have been eaten by a Grue. || This is a reference to the first of the {{w|Zork}} games. When the protagonist enters a house, the protagonist would quickly enter a dark corridor. Attempting to travel without some form of light would lead to the message &amp;quot;You have been eaten by a Grue,&amp;quot; ending the game. Said message became a meme. This has &lt;br /&gt;
been referenced before in [[91: Pwned]].&lt;br /&gt;
|-&lt;br /&gt;
|Ruby on a monorail || A riff on the name {{w|Ruby on Rails}}, a common platform for web applications.&lt;br /&gt;
|-&lt;br /&gt;
|Lesbians! || Homosexual eroticism is rather popular on the Internet, doubly so with the opposite gender (e.g. lesbians with straight men).&lt;br /&gt;
|-&lt;br /&gt;
|DNF Released! || &amp;quot;{{w|Duke Nukem Forever}},&amp;quot; a memetically long overdue sequel to the popular first person shooter video game &amp;quot;{{w|Duke Nukem}},&amp;quot; was still unreleased at the time this comic was published; the blog is either a hoax of some kind or yet another jab at the long development cycle.&lt;br /&gt;
|-&lt;br /&gt;
|Steampunk || {{w|Steam punk}} is a sub-genre of science fiction that involves the blending of futuristic technology with Victorian Era aesthetics and materials.&lt;br /&gt;
|-&lt;br /&gt;
|BLAG || &amp;quot;Blag&amp;quot; is a memetic form of &amp;quot;{{w|blog}}.&amp;quot; This term was referred to in later comics like [[148: Mispronouncing]], [[181: Interblag]], and [[239: Blagofaire]]. Randall also refers to his own xkcd blog as a &amp;quot;[https://blog.xkcd.com/ blag].&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|PONIES! || A pony is a short horse. This could potentially be referencing the Hasbro line of &amp;quot;{{w|My Little Pony}}&amp;quot; toys, although the series wasn't as well known or as popular with adults when this comic was published. &amp;lt;!-- MLP:FiM was NOT released when this comic was made --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Xeni found some porn! || In some roleplaying games, whenever a character finds something, the message &amp;quot;[name] found [item]&amp;quot; appears. In this case, Xeni found pornography. Xeni probably refers to {{w|Xeni Jardin}}, a BoingBoing editor.&lt;br /&gt;
|-&lt;br /&gt;
|IRONY || This could be a reference to criticisms that the Internet doesn't know what &amp;quot;irony&amp;quot; means.&lt;br /&gt;
|-&lt;br /&gt;
|LIARS! || This could be a reference to a recurring comment indicating that the original post is fabricated.&lt;br /&gt;
|-&lt;br /&gt;
|Linux on Rails! || Another riff on the name {{w|Ruby on Rails}}.&lt;br /&gt;
|-&lt;br /&gt;
|Blogocube || This is just a parody of the name &amp;quot;blogosphere&amp;quot;. This word is also in the caption.&lt;br /&gt;
|-&lt;br /&gt;
|del.icio.us! || Del.icio.us (this post making a pun on the word &amp;quot;delicious!&amp;quot;, obviously) is a bookmark-sharing service. After complaints that Yahoo ate and killed the service, it was sold and traded around for a while; it still exists, but under new software and management.&lt;br /&gt;
|-&lt;br /&gt;
|404 || &amp;quot;Web page not found,&amp;quot; probably the most common error gotten in a web browser: {{w|HTTP 404}}. See comic [[404]].&lt;br /&gt;
|-&lt;br /&gt;
|o.O || An emoticon indicating confusion or shock. &lt;br /&gt;
|-&lt;br /&gt;
|Don't slam the source when you close it. || The original phrase (generally spoken from parents to children) is &amp;quot;Don't slam the door when you close it.&amp;quot; This twists it around to refer to {{w|Closed source software}}.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:From the makers of the Blogosphere, Blogocube, and Blogodrome comes&lt;br /&gt;
:the Blogofractal&lt;br /&gt;
&lt;br /&gt;
:[A large rectangle subdivided into rectangles in a fractal pattern, most with a phrase or word inside. Some subdivisions cannot be seen, as they are too small.]&lt;br /&gt;
:[Mostly left to right from top-left corner.]&lt;br /&gt;
:TripMaster Monkey says&lt;br /&gt;
:118th Post!!&lt;br /&gt;
:Wikiconstitution!&lt;br /&gt;
:OMG&lt;br /&gt;
:DeCSS&lt;br /&gt;
:Casemod your Boyfriend!!&lt;br /&gt;
:FLICKR&lt;br /&gt;
:They're saying on Kos that&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;https://slashdot.org/articl&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
:tagCloud&lt;br /&gt;
:Cory Doctorow is a little upset about copyright law.&lt;br /&gt;
:Hey guys what if Google is evil?!?&lt;br /&gt;
:I'll sleep with you for a FreeIpods deal.&lt;br /&gt;
:FirstPsot!!&lt;br /&gt;
:Snakes on an I don't Even Care Anymore&lt;br /&gt;
:KiwiWiki&lt;br /&gt;
:CSS&lt;br /&gt;
:Comments (0)&lt;br /&gt;
:Blogotesseract&lt;br /&gt;
:¡play games!&lt;br /&gt;
:[RSS icon.]&lt;br /&gt;
:is AYB retro yet?&lt;br /&gt;
:Google Google Google Apple Google Goog&lt;br /&gt;
:Cheney totally shot a dude!!!&lt;br /&gt;
:Watch this toddler get owned by a squirrel!!!&lt;br /&gt;
:Developers&lt;br /&gt;
:Developers&lt;br /&gt;
:Developers&lt;br /&gt;
:Developers&lt;br /&gt;
:I installed a Mac Mini inside ANOTHER Mac Mini!&lt;br /&gt;
:Check out this vid of Jon Stewart&lt;br /&gt;
:9-11 &amp;lt;-&amp;gt; Trent Lott!&lt;br /&gt;
:Web 7.1&lt;br /&gt;
:Kryptonite™ locks vulnerable to &amp;quot;keys!&amp;quot;&lt;br /&gt;
:Interesting post!  Check out my blog, it has useful info on CARBON MONOXIDE LITIGATION&lt;br /&gt;
:FIREFLY!!&lt;br /&gt;
:HELP ME&lt;br /&gt;
:Engadget&lt;br /&gt;
:Boing Boing&lt;br /&gt;
:Gizmodo&lt;br /&gt;
:MAKE Blog: DIY baby&lt;br /&gt;
:My friend has a band!!&lt;br /&gt;
:Jon released an exploit in the protocol for meeting girls.&lt;br /&gt;
:Internets!&lt;br /&gt;
:Howard Dean?&lt;br /&gt;
:So I hear there's a hurricane.&lt;br /&gt;
:We should elect this dude!&lt;br /&gt;
:Google Maps is da best!!&lt;br /&gt;
:Moderation: +1 Sassy&lt;br /&gt;
:RSS!&lt;br /&gt;
:A-list&lt;br /&gt;
:&amp;lt;3&lt;br /&gt;
:Trackback URL?&lt;br /&gt;
:I shot a man in Reno check it out on YouTube!&lt;br /&gt;
:HEY LOOK ROBOTS!&lt;br /&gt;
:Net Neutrality!&lt;br /&gt;
:Friends Only.&lt;br /&gt;
:Dupe!&lt;br /&gt;
:AJAX?&lt;br /&gt;
:COMPLY&lt;br /&gt;
:Cowboy Neal&lt;br /&gt;
:Blogodrome&lt;br /&gt;
:Hey look I got Linux running on my tonsils!&lt;br /&gt;
:Look alive, blogonauts!&lt;br /&gt;
:Cafepress cockrings&lt;br /&gt;
:BOOBIES!!&lt;br /&gt;
:MIA&lt;br /&gt;
:A Beowulf Cluster... of BLOGS!!&lt;br /&gt;
:SPOILER ALERT&lt;br /&gt;
:Dupe!&lt;br /&gt;
:You have been eaten by a Grue.&lt;br /&gt;
:Ruby on a monorail&lt;br /&gt;
:Lesbians!&lt;br /&gt;
:DNF Released!&lt;br /&gt;
:Steampunk&lt;br /&gt;
:BLAG&lt;br /&gt;
:PONIES!&lt;br /&gt;
:Xeni found some porn!&lt;br /&gt;
:IRONY&lt;br /&gt;
:LIARS!&lt;br /&gt;
:Linux on Rails!&lt;br /&gt;
:Blogocube&lt;br /&gt;
:del.icio.us!&lt;br /&gt;
:404&lt;br /&gt;
:o.O&lt;br /&gt;
:Don't slam the source when you close it.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Social networking]]&lt;br /&gt;
[[Category:9/11]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2633:_Astronomer_Hotline&amp;diff=357955</id>
		<title>Talk:2633: Astronomer Hotline</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2633:_Astronomer_Hotline&amp;diff=357955"/>
				<updated>2024-11-27T12:57:06Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &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;
Someone really needs to check on the bot. This is the second day in a row where I have had to begin the article! [[User:SqueakSquawk4|SqueakSquawk4]] ([[User talk:SqueakSquawk4|talk]]) 13:06, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
The fact that this is the Astronomer Helpline seems like commentary on the frequency with which astronomers are asked about mysterious objects, and/or the fact that astronomers (who tend to spend a lot of time looking at the sky) rarely report seeing unidentified objects. It could also be noted that calling fireflies a UFO would technically be accurate, as they are objects which are flying that the observers apparently could not readily identify. [[Special:Contributions/172.71.82.121|172.71.82.121]] 13:36, 15 June 2022 (UTC)&lt;br /&gt;
:There is about 2000 species of fireflies. OF COURSE I can't identify which one it is, considering it's so dark I only see the light. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 18:22, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
Title text probably referes to [https://en.wikipedia.org/wiki/Periodical_cicadas Periodical cicadas] that appears every 17 years.&lt;br /&gt;
[[Special:Contributions/172.71.98.99|172.71.98.99]] 13:58, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
As someone from a country without fireflies, is &amp;quot;Ground Stars&amp;quot; a normal word for fireflies or a joke? (similar to how planets are &amp;quot;wandering stars&amp;quot;, so to an astronomer everything is a star, similar to [[2017: Stargazing 2]]) [[User:Sqek|Sqek]] ([[User talk:Sqek|talk]]) 14:17, 15 June 2022 (UTC)&lt;br /&gt;
:A joke. [[Special:Contributions/172.70.115.4|172.70.115.4]] 14:54, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
The second last paragraph is extremely confusing. Someone should fix it. [[Special:Contributions/162.158.203.38|162.158.203.38]] 15:17, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have removed the paragraph referenced in the above comment; it was confusing, and seemed focused on explaining the reasons for cicadas having prime-numbered year cycles.  While this is interesting, it is not relevant to understanding any of the jokes, especially since two helpful links to periodical cicadas and Brood X were already included earlier in the article.  Parties interested in learning cicada facts may follow those links; to explain the joke, it is enough to acknowledge that periodical cicadas are a thing, not explore the ecology or evolution of such a trait.  If I overstepped, feel free to reinstate with a clearer explanation. [[User:Dextrous Fred|Dextrous Fred]] ([[User talk:Dextrous Fred|talk]]) 16:16, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
Does anyone else think that the 'Weird Bug Helpline' may be a play on more conventional helplines, and weird computer bugs that only appear 'every 17 years' when a user presents with an odd edge case that wasn't anticipated? [[Special:Contributions/162.158.159.43|162.158.159.43]] 09:16, 17 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
;I just got a message from the Odd Perfect Number hotline!&lt;br /&gt;
I was trying to explain to someone today that the question of whether there are any {{w|odd number|odd}} {{w|perfect number}}s is an open problem, so I asked {{w|Google Assistant}} and was informed that https://arxiv.org/abs/2101.07176 proves that there aren't! [[Special:Contributions/162.158.166.235|162.158.166.235]] 21:15, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Cosmic Ray Phenomena&lt;br /&gt;
When I started reading the comic, I was sure it's referring to [https://en.wikipedia.org/wiki/Cosmic_ray_visual_phenomena cosmic ray phenomena]. Reading further it made less sense, though I feel it should be mentioned in this explanation. {{unsigned ip|172.68.221.5}}&lt;br /&gt;
:I do not agree. This is something happening to astronauts in space. Not to a guy calling an astronomy hot-line. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 13:35, 16 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Trivia US UFO helpline&lt;br /&gt;
AFAIK you can only report UFOs to the ''Airborne Object Identification and Management Synchronization Group'' (AOIMSG) if you're in the military. They really want to have sensor data, too. But with a smartphone, you can get apps to identify astronomical objects or airplanes by pointing your phone at them. metabunk.org does a lot of UFO identification. --[[Special:Contributions/162.158.203.76|162.158.203.76]] 11:07, 16 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
;other xkcd related?&lt;br /&gt;
https://xkcd.com/1391/ - people forgetting that the sun is visible during day&lt;br /&gt;
https://xkcd.com/1493/ - the bug hotline might have been built on the bug tracker&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Could this comic be referring to the Supernova Early Warning System?&lt;br /&gt;
Is this comic possibly a reference to the Supernova Early Warning System(SNEWS) or some other similar astronomy organisation? SNEWS is basically an astronomer hotline(or rather mailing list). If astronomers detect what they think is a supernova, they let astronomers(amateur and professional) around the world know about the event, so that they can try to point their telescopes at the supernova quickly enough to observe it/ work out what it is/ study it. I always thought of this as an astronomer hotline: If you see some strange lights in the night sky, you can call upon every astronomer in the world to point their telescopes at it and work out what it is. --[[Special:Contributions/172.68.210.47|172.68.210.47]] 08:20, 17 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
Probably the opposite: [http://ugg.weishi.qq.com/news/77onSOAvi1TdiOB4K/ A man in China called the police saying that he was being followed by a drone in the dark. It turns out that it was a star.] [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 12:56, 27 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2633:_Astronomer_Hotline&amp;diff=357954</id>
		<title>Talk:2633: Astronomer Hotline</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2633:_Astronomer_Hotline&amp;diff=357954"/>
				<updated>2024-11-27T12:56:42Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: The star is looking at you&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;
Someone really needs to check on the bot. This is the second day in a row where I have had to begin the article! [[User:SqueakSquawk4|SqueakSquawk4]] ([[User talk:SqueakSquawk4|talk]]) 13:06, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
The fact that this is the Astronomer Helpline seems like commentary on the frequency with which astronomers are asked about mysterious objects, and/or the fact that astronomers (who tend to spend a lot of time looking at the sky) rarely report seeing unidentified objects. It could also be noted that calling fireflies a UFO would technically be accurate, as they are objects which are flying that the observers apparently could not readily identify. [[Special:Contributions/172.71.82.121|172.71.82.121]] 13:36, 15 June 2022 (UTC)&lt;br /&gt;
:There is about 2000 species of fireflies. OF COURSE I can't identify which one it is, considering it's so dark I only see the light. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 18:22, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
Title text probably referes to [https://en.wikipedia.org/wiki/Periodical_cicadas Periodical cicadas] that appears every 17 years.&lt;br /&gt;
[[Special:Contributions/172.71.98.99|172.71.98.99]] 13:58, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
As someone from a country without fireflies, is &amp;quot;Ground Stars&amp;quot; a normal word for fireflies or a joke? (similar to how planets are &amp;quot;wandering stars&amp;quot;, so to an astronomer everything is a star, similar to [[2017: Stargazing 2]]) [[User:Sqek|Sqek]] ([[User talk:Sqek|talk]]) 14:17, 15 June 2022 (UTC)&lt;br /&gt;
:A joke. [[Special:Contributions/172.70.115.4|172.70.115.4]] 14:54, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
The second last paragraph is extremely confusing. Someone should fix it. [[Special:Contributions/162.158.203.38|162.158.203.38]] 15:17, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have removed the paragraph referenced in the above comment; it was confusing, and seemed focused on explaining the reasons for cicadas having prime-numbered year cycles.  While this is interesting, it is not relevant to understanding any of the jokes, especially since two helpful links to periodical cicadas and Brood X were already included earlier in the article.  Parties interested in learning cicada facts may follow those links; to explain the joke, it is enough to acknowledge that periodical cicadas are a thing, not explore the ecology or evolution of such a trait.  If I overstepped, feel free to reinstate with a clearer explanation. [[User:Dextrous Fred|Dextrous Fred]] ([[User talk:Dextrous Fred|talk]]) 16:16, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
Does anyone else think that the 'Weird Bug Helpline' may be a play on more conventional helplines, and weird computer bugs that only appear 'every 17 years' when a user presents with an odd edge case that wasn't anticipated? [[Special:Contributions/162.158.159.43|162.158.159.43]] 09:16, 17 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
;I just got a message from the Odd Perfect Number hotline!&lt;br /&gt;
I was trying to explain to someone today that the question of whether there are any {{w|odd number|odd}} {{w|perfect number}}s is an open problem, so I asked {{w|Google Assistant}} and was informed that https://arxiv.org/abs/2101.07176 proves that there aren't! [[Special:Contributions/162.158.166.235|162.158.166.235]] 21:15, 15 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Cosmic Ray Phenomena&lt;br /&gt;
When I started reading the comic, I was sure it's referring to [https://en.wikipedia.org/wiki/Cosmic_ray_visual_phenomena cosmic ray phenomena]. Reading further it made less sense, though I feel it should be mentioned in this explanation. {{unsigned ip|172.68.221.5}}&lt;br /&gt;
:I do not agree. This is something happening to astronauts in space. Not to a guy calling an astronomy hot-line. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 13:35, 16 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Trivia US UFO helpline&lt;br /&gt;
AFAIK you can only report UFOs to the ''Airborne Object Identification and Management Synchronization Group'' (AOIMSG) if you're in the military. They really want to have sensor data, too. But with a smartphone, you can get apps to identify astronomical objects or airplanes by pointing your phone at them. metabunk.org does a lot of UFO identification. --[[Special:Contributions/162.158.203.76|162.158.203.76]] 11:07, 16 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
;other xkcd related?&lt;br /&gt;
https://xkcd.com/1391/ - people forgetting that the sun is visible during day&lt;br /&gt;
https://xkcd.com/1493/ - the bug hotline might have been built on the bug tracker&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Could this comic be referring to the Supernova Early Warning System?&lt;br /&gt;
Is this comic possibly a reference to the Supernova Early Warning System(SNEWS) or some other similar astronomy organisation? SNEWS is basically an astronomer hotline(or rather mailing list). If astronomers detect what they think is a supernova, they let astronomers(amateur and professional) around the world know about the event, so that they can try to point their telescopes at the supernova quickly enough to observe it/ work out what it is/ study it. I always thought of this as an astronomer hotline: If you see some strange lights in the night sky, you can call upon every astronomer in the world to point their telescopes at it and work out what it is. --[[Special:Contributions/172.68.210.47|172.68.210.47]] 08:20, 17 June 2022 (UTC)&lt;br /&gt;
&lt;br /&gt;
Probably the opposite: [http://ugg.weishi.qq.com/news/77onSOAvi1TdiOB4K/ A man in China called the police saying that he was being followed by a drone a the dark. It turns out that it was a star.] [[User:ConscriptGlossary|ConscriptGlossary]] ([[User talk:ConscriptGlossary|talk]]) 12:56, 27 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1750:_Life_Goals&amp;diff=357811</id>
		<title>Talk:1750: Life Goals</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1750:_Life_Goals&amp;diff=357811"/>
				<updated>2024-11-25T08:28:28Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~--&amp;gt;&lt;br /&gt;
The last line is actually a real punch-line... [[Special:Contributions/162.158.201.78|162.158.201.78]] 14:51, 24 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
With &amp;quot;Unfortunately (the two protobirds) lived in different time periods, so we can only speculate which one would win a fight.&amp;quot;, as per current explanation text, I first of all thought 'the latter, as it was alive and the other had already died' (so maybe not a ''fair'' fight, but definitely indicates a survivor), but I'm not ''entirely''sure whether I'd even overcome an Australopithocus (despite the height advantage), if I ever suddenly encountered a suitably enraged (and live) one whilst not equipped with my own contemporary tools, so maybe I ought to be less certain about the other fight ''if'' it happened in sight of an artist... [[Special:Contributions/141.101.98.48|141.101.98.48]] 14:54, 24 October 2016 (UTC)&lt;br /&gt;
:I'll call John Hammond. [[User:Jacky720|Jacky720]] ([[User talk:Jacky720|talk]]) 00:28, 25 October 2016 (UTC)&lt;br /&gt;
:We can easily speculate, and just as well as if they lived during the same time. We would have as little chance of guessing who would have won just because they might actually have had such a fight in reality. I think the flying petrosaurs with a wings span four times the length of the feathered (and only proto bird) would have won. The petrosaurs where not the kind that went on to becoming birds as far as I know. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 21:01, 24 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
A lot of these are proper nouns and so shall not be used in scrabble. [[Special:Contributions/108.162.215.224|108.162.215.224]] 16:21, 24 October 2016 (UTC)BLuDgeons&lt;br /&gt;
&lt;br /&gt;
A first-fight is how all Scrabble games end in languages that have composite words like Danish or German. That or knockout. Footnotefontsizeselection, quizmasterfluffer, telemarketercounterharassment... [[Special:Contributions/173.245.48.104|173.245.48.104]] 17:02, 24 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Whoever added &amp;quot;you could put an E tile down upside down&amp;quot; should win a prize. [[User:Maplestrip|Maplestrip]] ([[User talk:Maplestrip|talk]]) 17:57, 24 October 2016 (UTC)&lt;br /&gt;
O&lt;br /&gt;
I'm gonna go out on a limb and say this isn't actually about the last three letters of the alphabet, but about the five &amp;quot;power letters&amp;quot; in Scrabble (hence the last line): J, K, Q, X, Z. [[User:Schiffy|&amp;lt;font color=&amp;quot;000999&amp;quot;&amp;gt;Schiffy&amp;lt;/font&amp;gt;]] ([[User_talk:Schiffy|&amp;lt;font color=&amp;quot;FF6600&amp;quot;&amp;gt;Speak to me&amp;lt;/font&amp;gt;]]|[[Special:Contributions/Schiffy|&amp;lt;font color=&amp;quot;FF0000&amp;quot;&amp;gt;What I've done&amp;lt;/font&amp;gt;]]) 18:09, 24 October 2016 (UTC)&lt;br /&gt;
:I would agree that there is a couple of other letters but there is hardly enough Q, K and J to make it worth mentioning... --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 21:01, 24 October 2016 (UTC)&lt;br /&gt;
::But it's about Scrabble point count, not just letters toward the end of the alphabet. The fact that many rare (and thus high-ranking) tiles happen to be toward the end is irrelevant. The focus is on high-ranking Scrabble tiles, no matter where in the alphabet they are. I thought I might as well verify this, though, so I put the words (without &amp;quot;Mister&amp;quot;) onto a letter frequency counter, then looked up the letter frequencies in English on Wikipedia to compare to the average frequencies. The letters that appeared at least 1% LESS often than expected were C, D, E, F, H, I, N, O, R, S, T, and W, and all of these letters are worth fewer than 5 points in Scrabble. (E, N, and S appeared more than 4% less often, and these are very common letters worth very few points.) The letters that appeared at least 1% MORE often than expected were J, K, P, Q, X, Y, and Z. All of those are worth multiple points. Only two of those (P and Y) are worth fewer than 5 points, and Y is worth 4 points, very close... and its unique position as the only vowel worth more than 1 point elevates its status somewhat. P was only slightly over 1% increased. (All tiles except X, Y, and Z have less than a 2% increase. Y has a 7.66% increase, while X and Z each have an increase of about 14%.) It's true that X, Y, and Z show the most dramatic increase (though E shows nearly as dramatic a decrease), but the analysis certainly shows that Randall might have had some bias toward using J (1.33% increased), K (1.45% increased), and Q (1.39% increased) as well as the obvious X, Y, and Z. [[Special:Contributions/172.68.79.81|172.68.79.81]] 04:26, 25 October 2016 (UTC)&lt;br /&gt;
:::My impression of the comic was not that it was just about Scrabble (too many words are impossible under typical Scrabble tile distributions) or specifically the last three letters of the alphabet (there's a decent amount of Qs in the comic), but the difficulty in reading/pronouncing the words.  I was following along fine at first, but by the end of the comic had no phonetics in my head to describe what I was reading.  I think the title-text supports that interpretation.  From xkcd's [http://www.xkcd.com/about/ About page]: &amp;quot;It's just a word with no phonetic pronunciation&amp;quot;. [[Special:Contributions/108.162.210.196|108.162.210.196]] 05:01, 25 October 2016 (UTC)&lt;br /&gt;
::::There are only two Q's in the comic. I have now removed the Q from the table. It is only XYZ heavy words that are used excessively. I do not think this comic is about scrabble point. It is just a way to list all these weird words Randall has found. And the to make a joke he put in the scrabble goal. (Also just fixed a problem with the post two above here, which was divided in two, and then the next post was posted in the middle of that post...) --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 19:33, 25 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I didn't feel that the release schedule (or the lack of such) of the What if? mentioned is in any means important for the explanation. So I removed it... [[User:Elektrizikekswerk|Elektrizikekswerk]] ([[User talk:Elektrizikekswerk|talk]]) 08:37, 25 October 2016 (UTC)&lt;br /&gt;
:Well he post a rare what if release and within a week has referenced it from the next three comics. He usually do not refer to any what if post directly although he has done so recently (but rare due to the longer and longer span of time between posts). But this is the first time he does so several comics in a row! So in that sense it was relevant that it was the first in 12 weeks. And that it is rare that he has so long spans between two releases. This was the longest this year (and the year ends within 12 weeks so it will stay the longest), and the third longest so far. But now the fact can remain here in the comment. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 19:38, 25 October 2016 (UTC)&lt;br /&gt;
:: I already noticed that you are somewhat obsessed from the release schedule. No offense, that's absolutely fine. I on the other hand tend to think that there is no release schedule anymore. So yes, I agree in saying that the references are remarkable, but no, I don't see any connection to the time of release. As the explanation here suggests I think the research for the What If? inspired this (and maybe the other) comic - not vice versa. Plus, imho the connection to the What If? described in the explanation of 1749 is a bit far fetched. &amp;quot;Strange records and trivia&amp;quot; is like saying &amp;quot;there are words&amp;quot; - especially on xkcd. [[User:Elektrizikekswerk|Elektrizikekswerk]] ([[User talk:Elektrizikekswerk|talk]]) 07:11, 26 October 2016 (UTC)   &lt;br /&gt;
&lt;br /&gt;
Wow. These pages get a ton of edits in a relatively short timespan, when you see them go live, one at a time. It's awe-inspiring. [[User:Jacky720|Jacky720]] ([[User talk:Jacky720|talk]]) 00:28, 25 October 2016 (UTC)&lt;br /&gt;
:The problem with making long edits is that you end up in edit conflicts, so short ones are better. Then it is also easier for others to look in the history and add their own conflicted changes to the new edits. That is why I often make a ton of edits in a short time. Have been locked in a jam of conflicts enough time with new comics editing --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 19:38, 25 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I hate to be pedantic, but the game &amp;quot;Zzyzzyxx&amp;quot; (with a clone known as &amp;quot;Blox&amp;quot;) was not about navigating a labyrinth.  You'd think with a name like that, it'd be something high-tech and sci-fi-ish.  No.  It's a little green man running back and forth through scrolling walls of bricks to pick up gifts for his girlfriend.  It's really one of the dumbest games ever made, and it's hard to find (partly because it was really unpopular). [[User:KieferSkunk|KieferSkunk]] ([[User talk:KieferSkunk|talk]]) 16:38, 29 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Too bad he missed one goal:&lt;br /&gt;
Compose a zydeco for xylephone and zzxjoanw.  [[Special:Contributions/162.158.69.184|162.158.69.184]] 04:33, 1 November 2016 (UTC)&lt;br /&gt;
:Zzxjoanw isn't a real instrument, it's a hoax word. [[Special:Contributions/172.68.78.135|172.68.78.135]] 03:50, 16 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Maybe I'm missing something but why does the &amp;quot;In SOWPODS?&amp;quot; column for muzquizopteryx say &amp;quot;No&amp;quot; when it says &amp;quot;Yes&amp;quot; for archaeopteryx? Neither are proper nouns and I can't think of any other reason that muzquizopteryx should be excluded. [[Special:Contributions/172.68.34.88|172.68.34.88]] 21:47, 23 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
Is it possible to add 7 tiles to an existing word or words to make some of the long ones?  For instance, is there a possible intermediate game state allowing addition of up to 7 tiles to complete the word &amp;quot;Muzquizopteryx&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
The letters X, Y, and Z are very common in Chinese Pinyin. --[[User:ConlangGuide|ConlangGuide]] ([[User talk:ConlangGuide|talk]]) 08:28, 25 November 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=703:_Honor_Societies&amp;diff=357810</id>
		<title>703: Honor Societies</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=703:_Honor_Societies&amp;diff=357810"/>
				<updated>2024-11-25T07:50:07Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 703&lt;br /&gt;
| date      = February 17, 2010&lt;br /&gt;
| title     = Honor Societies&lt;br /&gt;
| image     = honor_societies.png&lt;br /&gt;
| titletext = Hey, why do YOU get to be the president of Tautology Clu-- wait, I can guess.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Cueball]] has apparently been invited to join an {{w|Honor society|honor society}}, but he considers the reason he should join to be a circular argument: because honorable people are in honor societies and people who are in honor societies are supposedly honorable. He objects that this is a {{w|tautology (language)|tautology}}: a claim that something is true because it is true (and thus a meaningless claim). From this, he concludes that he might as well be in a &amp;quot;tautology club&amp;quot; and then starts one. Thus [[Randall]] mocks honor society clubs for being pointless.&lt;br /&gt;
&lt;br /&gt;
In the final panel where Cueball has formed the club, [[Ponytail]] asks a new member (a Cueball-like guy) how he found out about them and he tells about their Facebook page. The reference to {{w|Facebook}} mocks {{w|Facebook groups}} whose names refer to a number of members they hope to attract (such as I Bet I Can Find 1,000,000 People Who Dislike Romanian Dog Abusers), usually ostensibly to raise awareness for some issue but perhaps in fact just for the ego-stroking pleasure of amassing a large number of followers. Tautology Club employs this tactic only for the sake of creating yet another tautology. &lt;br /&gt;
&lt;br /&gt;
Cueball is listing the rules of the club from a [[podium]]. The phrase &amp;quot;The first rule of _______ Club&amp;quot; is a reference to the 1999 movie ''{{w|Fight Club}}'' (see also [[922: Fight Club]]), which contains the famous line &amp;quot;The first rule of Fight Club is 'You do not talk about Fight Club,'&amp;quot; a reference to the club's intended secrecy. This phrase has been appropriated for myriad other varieties and parodies, such as the one mentioned in the comic.&lt;br /&gt;
&lt;br /&gt;
The short guy with glasses could be {{w|List of FoxTrot characters#Jason Fox|Jason Fox}} from the {{w|FoxTrot}} comic (see the first two frames of [[824: Guest Week: Bill Amend (FoxTrot)]].) Although it takes a little imagination to see, the hair, the height, the glasses, and the geek factor fits. Three of the other characters from the audience look like regular characters but with slightly different hairstyles than usual. There is a buzz cut version of [[Hairy]], [[Hairbun]], and [[Megan]].&lt;br /&gt;
&lt;br /&gt;
Tautologies would be mentioned again in [[1310: Goldbach Conjectures]]. Tautology Club was mentioned in [[1602: Linguistics Club]].&lt;br /&gt;
&lt;br /&gt;
The answer to the title text would also be a tautology: he gets to be the president because he is the president.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball sits at a desk, while someone off-screen answers his question.]&lt;br /&gt;
:Cueball: Wait. I should join this honor society to show colleges I'm honorable, and I'm honorable because I'm in an honor society?&lt;br /&gt;
:Off-screen voice: Basically, yes.&lt;br /&gt;
&lt;br /&gt;
:[Close up of Cueball.]&lt;br /&gt;
:Cueball: Sounds like I could save time by joining the Tautology Club directly.&lt;br /&gt;
:Off-screen voice: That's not a real club.&lt;br /&gt;
:Cueball: Then I'm starting it.&lt;br /&gt;
&lt;br /&gt;
:[Inserted in a frame crossing the top of the third panel's frame is a caption. Cueball is standing on a podium in the right part of the panel speaking. From left to right we find Ponytail, a Cueball-like guy, a short guy with glasses, a buzz cut version of Hairy, Hairbun, and to the right of Cueball, a woman that looks like Megan although with an uncharacteristically white stripe in her hair.]&lt;br /&gt;
:Caption: Tautology Club:&lt;br /&gt;
:Ponytail: So how'd you learn about us?&lt;br /&gt;
:Cueball-like guy: From your Facebook group, &amp;quot;If 1,000,000 People Join This Group, It Will Have 1,000,000 People In It.&amp;quot;&lt;br /&gt;
:Cueball: ''Listen up!'' The first rule of Tautology Club is the first rule of Tautology Club.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Comics featuring Hairbun]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;br /&gt;
[[Category:Philosophy]]&lt;br /&gt;
[[Category:Logic]]&lt;br /&gt;
[[Category:Fight Club]]&lt;br /&gt;
[[Category:Self-reference]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=952:_Stud_Finder&amp;diff=357809</id>
		<title>952: Stud Finder</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=952:_Stud_Finder&amp;diff=357809"/>
				<updated>2024-11-25T07:36:43Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: 222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 952&lt;br /&gt;
| date      = September 16, 2011&lt;br /&gt;
| title     = Stud Finder&lt;br /&gt;
| image     = stud_finder.png&lt;br /&gt;
| titletext = According to every stud finder I've tried to use, my walls contain a rapidly shifting network of hundreds and hundreds of studs.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
''It sounds like you may be interested in my new product, a—'' '''stud finder finder.'''&lt;br /&gt;
&lt;br /&gt;
[[Cueball]] cannot locate his {{w|Stud_finder|stud finder}}, so [[Black Hat]] begins a sales pitch, presumably for a &amp;quot;stud finder&amp;quot; finder. The joke is in the irony of having to find something that is used to find other things. Cueball interrupts Black Hat before he can make the obvious joke. The same comic technique is used later in [[1059: Bel-Air]]. Currently no product exists that will locate a stud finder, although online review compilations are useful for finding the right stud finder to buy.&lt;br /&gt;
&lt;br /&gt;
Studs are vertical wood members in {{w|Framing_(construction)|wood-framed construction}} common in North America, although steel framing has become a popular alternative. These supports reinforce a wall at regular intervals, typically 16 inches (about 40 cm), and at corners, windows, and doors.&lt;br /&gt;
&lt;br /&gt;
One might want to know the locations of studs within a wall for installing wiring, mounting shelves and heavy objects to walls, or in this comic, hanging a picture. In constructions with mostly solid walls, discovering (and avoiding) any previously installed electric cables or pipes is as important a prelude to any new drilling of holes or hammering of nails, and the same or similar detectors aim to reduce that risk.&lt;br /&gt;
&lt;br /&gt;
There are circumstances that can fool stud finders. Most are designed for the drywall-over-wood-framing construction, and can be fooled by older {{w|Lath_and_plaster|plaster and lath}} construction where the density is much more uniform throughout the length of the wall. Lower quality stud finders can also be fooled by things like moisture in the drywall or wiring within the wall cavity, and may thus beep when there is not a stud behind the scanned location. As a result, many people will try alternatives such as using a magnet to find the drywall screws or nails, or tapping a finishing nail through the wall to see if there is a stud underneath.&lt;br /&gt;
&lt;br /&gt;
At the title text, [[Randall]] just gives up. Assuming there was no electrostatic interference, a stud finder going off randomly would indicate lots and lots of studs at random places that change position. &lt;br /&gt;
&lt;br /&gt;
The idea of a &amp;quot;something doer doer&amp;quot; was explored again in [[1821: Incinerator]], the title text of [[2376: Curbside]], and [[2382: Ballot Tracker Tracker]]. Comic [[2222]] also features a &amp;quot;person stopper stopper&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Black Hat sits on a couch, reading a book. Cueball is approaching him from behind the couch holding a picture in a frame, a screwdriver, and some screws.]&lt;br /&gt;
:Cueball: Have you seen my stud finder? I've looked everywhere.&lt;br /&gt;
:Black Hat: It sounds like you may be interested in my new product, a—&lt;br /&gt;
:Cueball: Shut up.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Recursion]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2466:_In_Your_Classroom&amp;diff=357802</id>
		<title>2466: In Your Classroom</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2466:_In_Your_Classroom&amp;diff=357802"/>
				<updated>2024-11-25T04:02:50Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2466&lt;br /&gt;
| date      = May 21, 2021&lt;br /&gt;
| title     = In Your Classroom&lt;br /&gt;
| image     = in_your_classroom.png&lt;br /&gt;
| titletext = Ontology is way off to the left and geography is way off to the right.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
[[Randall]] has created a thought experiment and corresponding chart about school courses. The idea is, &amp;quot;the subject of the class appears in the classroom&amp;quot; and the chart compares how dangerous and how unusual that would be. &lt;br /&gt;
&lt;br /&gt;
In the title text two points that are off the chart to the left and right are also mentioned. See details about all the subjects in the [[#Table of subjects|table]] below.&lt;br /&gt;
&lt;br /&gt;
Note that Randall uses similar diagrams in each of [[388: Fuck Grapefruit]], [[1242: Scary Names]] and [[1501: Mysteries]], which also contain different items. They also have extra points mentioned in the title text. In the first two comics the points are also off the chart, whereas for the last the description of the point is too long to fit on the chart. Extra info outside the chart is also used in the title text of [[1785: Wifi]], but this is a line graph. Extra info outside a map is also used in the title text of [[United States Map]].&lt;br /&gt;
&lt;br /&gt;
==Table of subjects==&lt;br /&gt;
(Clarification: -10 on weirdness means furthest on the &amp;quot;normal&amp;quot; left extent of the horizontal normal-to-weird scale, while -10 badness means at the &amp;quot;good&amp;quot; top end of the good-to-bad vertical range, with respective axes crossing each other at zero. Values are approximate. Written labels avoid overwriting each other, or axes, with no obvious datum points other than the centre of each fragment of text.)&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Breakdown of Subjects&lt;br /&gt;
|-&lt;br /&gt;
!Course Topic&lt;br /&gt;
!Weirdness&lt;br /&gt;
!Badness&lt;br /&gt;
!Explanation&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Atmospheric Physics&lt;br /&gt;
| -10&lt;br /&gt;
| -10&lt;br /&gt;
|Absent very strange and unprecedented circumstances, every classroom on Earth has an atmosphere (although going by the exact wording of the starting hypothesis, &amp;quot;The thing you study just showed up in your classroom&amp;quot;, the implication is that up until that point, the room in which the class is being held contained a vacuum, which in and of itself is interesting to physics students.)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Ethics&lt;br /&gt;
| -5&lt;br /&gt;
| -10&lt;br /&gt;
|Ethical thinking and behavior are widely considered good{{Citation needed}} and should normally be present in education, but are sadly not universal.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Education&lt;br /&gt;
| -10&lt;br /&gt;
| -8&lt;br /&gt;
|Learning usually goes on in classrooms, so education as a concept is both being learned about and present in the form of learning itself.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Bibliography&lt;br /&gt;
| -5&lt;br /&gt;
| -8.6&lt;br /&gt;
|Bibliography is the study of books, and books are normally present in classrooms, particularly bibliography classrooms. Although, more commonly speaking  academically, a bibliography is a list of all sources used to compose a research paper, considered mandatory in all branches of academics but occasionally falsified or written in an incorrect style.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Human Physiology&lt;br /&gt;
| -10&lt;br /&gt;
| -6&lt;br /&gt;
|This comic assumes that there are humans learning in the classroom, which was true at the time this comic was published, although in many places at the time the comic was published, many classrooms were closed due to COVID-19 restrictions.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Public Speaking&lt;br /&gt;
| -5&lt;br /&gt;
| -7&lt;br /&gt;
|Some classes require students to present things in front of the class, which is likely a requirement in a public speaking class. Thus, public speaking itself would be present in the class.&lt;br /&gt;
Some classes also have a teacher talking or presenting to the students from the front of the class, another form of public speaking.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Architecture&lt;br /&gt;
| -10&lt;br /&gt;
| -4&lt;br /&gt;
|All buildings can be considered architecture, and most classes take place in buildings. This comic also refers to a class''room'', which is a room, and therefore considered architecture.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Library Science&lt;br /&gt;
| -5&lt;br /&gt;
| -5&lt;br /&gt;
|Library science is concerned with the organization of knowledge, and is useful for finding information. Many classes require [https://papersowl.com/pay-for-research-paper research papers] that require the use of books and other sources of information to complete them.  This would be even more appropriate for a class actually taught in the school library.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Furniture Design&lt;br /&gt;
| -10&lt;br /&gt;
| -2&lt;br /&gt;
|Most rooms have furniture,{{Citation needed}} so this would probably be present in a classroom. May also be implying the classroom furniture has not been assembled yet, making it not as good and a lesson in furniture design.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Culinary Arts&lt;br /&gt;
| -2&lt;br /&gt;
| -4&lt;br /&gt;
|Most studies of culinary arts include the teacher and/or students preparing food using the tools and/or techniques that have been taught, so it would be fairly normal for food to be a result of classroom activities.  How ''good'' it is, however, can be a mixed bag, especially for student cooking attempts.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Ergonomics&lt;br /&gt;
| -9&lt;br /&gt;
| -1&lt;br /&gt;
|Ergonomic equipment and workspaces promote comfort and efficiency, while non-ergonomic ones may be unpleasant, unhealthy, or even immediately dangerous.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Botany&lt;br /&gt;
| -2&lt;br /&gt;
| -2&lt;br /&gt;
|The near-neutral position of botany (aka plant biology) suggests that the most likely reason for plants to be present would be something like a potted plant, which is not uncommon, and usually not unpleasant, but not very noteworthy. There are other potential reasons for plants to be present, but those are generally less likely. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|20th Century Authors&lt;br /&gt;
|3&lt;br /&gt;
| -8&lt;br /&gt;
|Literature classes would benefit greatly from an open discussion or interview with the author themself. Sadly such things are rare, but not unheard of, putting it slightly on the &amp;quot;weird&amp;quot; side of the spectrum. Well-known authors of the 20th century have an increased likelihood of being dead by 2021, but there are still some authors of the 20th century who were well-established enough to be studied and still alive at the time this comic was published.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Exobiology&lt;br /&gt;
|10&lt;br /&gt;
| -10&lt;br /&gt;
|Exobiology is the study of extraterrestrial life. This would mean that an alien lifeform was in the classroom. This is extremely weird but very good for people to investigate and research the alien.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|21st Century Authors&lt;br /&gt;
|2&lt;br /&gt;
| -6&lt;br /&gt;
&lt;br /&gt;
|21st century authors have the advantage (over 19th and 20th century authors) of typically being alive and active at the time this comic was published. However, most authors who were primarily active in the 21st century are still developing their body of work, and/or still awaiting the judgment of history. The better availability of such authors, as compared to 20th century author probably explains the slightly lower &amp;quot;weirdness&amp;quot; score, while the limited body of truly prominent authors probably explains the lower &amp;quot;goodness&amp;quot; score.  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|19th Century Authors&lt;br /&gt;
|10&lt;br /&gt;
| -7&lt;br /&gt;
|No author who was active in the 19th century was alive at the writing of this comic,{{Citation needed}} hence, having one of them show up in class would be extremely weird. The opportunity to interact with such a person would be utterly unique, meaning that it scores pretty high on the &amp;quot;goodness&amp;quot; metric, though interestingly not as high as a 20th century author. Possibly, the potential &amp;quot;badness&amp;quot; of having a zombie or other reanimated being show up in your class is weighed against the advantage of having a historical figure there in person. It may also be that someone from the 19th century has an increased danger of having outdated ethics, which may result in discomfort on the part of the students.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Paleontology&lt;br /&gt;
|10&lt;br /&gt;
| -5&lt;br /&gt;
|Paleontology is the study of the history of life on Earth as based on fossils. In geology classes, it would be normal to have some fossils in the classroom. However, fossils are not usually found in other classrooms, and especially below the college level. Randall is also probably implying the weirdness of finding a live ''Jurassic Park''-style dinosaur.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Robotics&lt;br /&gt;
|1&lt;br /&gt;
| -4&lt;br /&gt;
|A course on robotics would often be expected to have some form of working models of the robots being discussed. However, for it to have &amp;quot;showed up&amp;quot; in your classroom could imply an actual functioning robot prototype walked into the classroom. While not cause for concern (as long as nobody in the class is {{w|Sarah Connor (Terminator)#The Terminator (1984)|named Sarah Connor}}), this would be a bit weird.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Martian Soil Chemistry&lt;br /&gt;
|10&lt;br /&gt;
| -3&lt;br /&gt;
|Martian soil only reaches Earth in small amounts, so it would be unusual to find a meaningful amount anywhere, except Mars.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Tourism&lt;br /&gt;
|5&lt;br /&gt;
| -2&lt;br /&gt;
|Tourists coming into an active classroom would be quite unusual; while tourists sometimes visit university campuses, it would generally be rude for a tour guide to lead them into a classroom when class is in progress. This could also refer to the students leaving to become tourists in another location.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Child Psychology&lt;br /&gt;
|2&lt;br /&gt;
| -1&lt;br /&gt;
|Children are rarely students in classrooms advanced enough to teach child psychology. In order for child psychology to be on display, presumably someone would have to have brought a child (either for a demonstration, or for some other reason), which is slightly weird, but not unheard of. This is considered slightly &amp;quot;good&amp;quot;, presumably because it would give students some opportunity for firsthand observation, and because most people like, or at least tolerate, children. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Entomology&lt;br /&gt;
| -7&lt;br /&gt;
|1&lt;br /&gt;
|Entomology is the study of insects. Insects getting into a classroom is a very common event, even putting aside the possibility of someone bringing insects specifically to study. Most insects that might get in are relatively benign, but some (such as mosquitoes) might sting or bite, and many people simply don't like insects, even when they're not harmful, pushing this slightly into &amp;quot;bad&amp;quot; territory.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Occupational Therapy&lt;br /&gt;
| -8&lt;br /&gt;
|2.4&lt;br /&gt;
|Injury, illness or mental health problem that hinder your participation in life/school.  Many students who have significant physical injuries and conditions that require occupational therapy would generally not engage in those activities during a class, although volunteers may be brought in as a demonstration of a particular health problem or method of treatment.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Hydraulic Engineering&lt;br /&gt;
| -2&lt;br /&gt;
|2.4&lt;br /&gt;
|Likely in the form of flooding or plumbing problems.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Pest Control&lt;br /&gt;
| -5&lt;br /&gt;
|4&lt;br /&gt;
|This is not dissimilar to entomology, but pest control tends to involve larger infestations, as opposed to individual insects, and also includes non-insect animals, such as rats. Such events in classroom are not as common as individual insects getting in (especially in a well-maintained building), but are far from unheard of, and risk many negative effects, from bug bites to structural damage, and may require evacuation and fumigation to deal with. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Foodborne Illness&lt;br /&gt;
| -7&lt;br /&gt;
|6&lt;br /&gt;
|Sometimes students in a culinary arts class do not properly observe hygiene standards and the food they present would lead to illness in those that consume the food. Thankfully, this is rare if the teacher is paying enough attention to proceedings. Students could also be ill from food eaten outside of class.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Criminal Law&lt;br /&gt;
| -1&lt;br /&gt;
|7&lt;br /&gt;
|This might happen if a crime occurs in the class. While an armed robbery is unlikely, incidents involving theft or drug use are not particularly uncommon. Regardless, such an incident would be very bad.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Physiology of Stress&lt;br /&gt;
| -10&lt;br /&gt;
|8&lt;br /&gt;
|Stress in a classroom, even stress that's bad enough to manifest itself in physical symptoms, is all too common. Stress that bad is very harmful, and a student realizing that they were manifesting the symptoms they're studying should take it as a warning sign. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Oncology&lt;br /&gt;
| -5&lt;br /&gt;
|10&lt;br /&gt;
|Oncology is the medical practice of treating cancer. For someone (probably the professor) in a classroom full of students to have cancer is, unfortunately, not an uncommon event, putting it on the &amp;quot;normal&amp;quot; side of the scale. While not abnormal, it's clearly very bad. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Ornithology&lt;br /&gt;
|2&lt;br /&gt;
|1&lt;br /&gt;
|Ornithology is the study of birds. A bird getting into a classroom would be somewhat strange, but there are circumstances under which it would happen. In most cases, that's not especially dangerous, but it would be disruptive, and introduce the possibility of the bird making a mess, and possibly getting hurt (or even hurting others), which makes it slightly bad.  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Animation&lt;br /&gt;
|10&lt;br /&gt;
|1.2&lt;br /&gt;
|Presumably Randall isn't referring to examples of animated works being displayed to the students in an animation class, as that would be normal. Nor is he referring to teachers or students doing animation by creating or filming drawings, stop-motion figures, or computer graphics to make an animated film, which would also be normal. However, it would be very weird for animated characters to appear physically in the classroom instead of being projected on screens. Possibly a reference to movies such as ''Who Framed Roger Rabbit'' in which cartoon characters actively interact with the live action cast. As many of the characters abide by different physics, and a couple are depicted as insane, this would be very weird and potentially bad. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Petroleum Geology&lt;br /&gt;
|3&lt;br /&gt;
|2&lt;br /&gt;
|Crude oil coming up through the floor of the classroom would be ''very'' weird{{citation needed}}. Any potential for hands-on learning experience would be limited, and quickly outweighed by classes being disrupted entirely (be it damage to the building, or oil companies trying to negotiate for the land).&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Highway Engineering&lt;br /&gt;
|5&lt;br /&gt;
|3&lt;br /&gt;
|A highway being built through an active classroom would be very unusual and not that safe.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Toxicology&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|Most likely, a toxic substance is present in the room. This is not very weird if the room is in a building that has {{w|asbestos}}-containing insulation (phased out during the 1990s, although it has not been specifically outlawed in the United States due to industrial lobbying) or lead paint (which was fully outlawed in the United States in 1978, so any paint that remains must have been applied prior to that date). However, toxic substances are unsafe for humans.{{Citation needed}}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Hematology&lt;br /&gt;
|5&lt;br /&gt;
|4&lt;br /&gt;
|Hematology is the study of blood. Given that there should be blood in each of the students present,{{Citation needed}} we should probably assume Randall means &amp;quot;large quantities of blood outside of one's body ([[:Category:Comics with blood|click here]])&amp;quot;, which would indeed be both bad and weird.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Hostage Negotiation&lt;br /&gt;
|4&lt;br /&gt;
|7&lt;br /&gt;
|Reasons as to why there would be hostage negotiations taking place at a school have horrifying implications for the students and teacher. The 'weird'ness rating of this occurence would presumably change depending on location, school shootings and hostage situations being (unfortunately) much more 'normal'ised in the USA than any other country.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|History of Siege Warfare&lt;br /&gt;
|10&lt;br /&gt;
|6&lt;br /&gt;
|This would be an exceptionally strange event. Given that the topic is &amp;quot;history&amp;quot;, having it show up implies that either historical figures have the classroom under siege (possibly through time travel or reanimation) or at least that the besiegers are using traditional weapons and methods in their attack.  In either case, it would be a very weird event, and also very bad. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Trauma Surgery&lt;br /&gt;
|1&lt;br /&gt;
|9&lt;br /&gt;
|An injury severe enough to require trauma surgery would be rare in a classroom, but there are circumstances under which it could realistically happen. Such an injury would be, by its very nature, a very bad thing. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Volcanology&lt;br /&gt;
|5&lt;br /&gt;
|9&lt;br /&gt;
|Having a live volcano in one's classroom is both very dangerous and very weird {{Citation needed}}. Volcanoes mature over very long time frames, but even the earliest stages are highly disruptive and potentially deadly, as seen in the {{w|Parícutin#Formation|1943 eruption of Paricutín}} and the {{w|2018_lower_Puna_eruption#Eruption|2018 flank eruption of Kilauea}}. Note this also applies to [[1611: Baking Soda and Vinegar | baking soda and vinegar volcanoes that are offshoots of much larger vinegar hotspots]].&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Quasar Astronomy&lt;br /&gt;
|5&lt;br /&gt;
|10&lt;br /&gt;
|{{w|Quasars}} are distant astronomical objects that release large amounts of energy. Not only would the power of a quasar destroy the classroom (as well as the rest of Earth), quasars are too large to fit inside any known classroom. For example, {{w|ULAS J1342+0928}} has a mass of 8*10^8 solar masses. This means the event horizon of the black hole is almost 16 AU in radius, and this size does not include the accretion disk. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Ontology (title text)&lt;br /&gt;
|&amp;lt;-10&lt;br /&gt;
|?&lt;br /&gt;
|Ontology is the philosophical study of existence and being. Since there must be ''something'' learning in the classroom, it is unsurprising that ontology is a normal subject to appear in the classroom. It would, in fact, be more bizarre to have a lack of ontology in the classroom.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Geography (title text)&lt;br /&gt;
|&amp;gt;10&lt;br /&gt;
|?&lt;br /&gt;
|Geographers study the lands, features, inhabitants, and phenomena of the Earth. While each classroom contains a small portion of the Earth's surface (normally not enough of it to be interesting to geographers), having the ''entire Earth'' appear inside a classroom would likely demand explanation. In particular, if this is an ordinary classroom (i.e. located ''on'' the Earth), the planet's simultaneous appearance within its walls would both defy our current understanding of spacetime, and risk [[1515: Basketball Earth | disastrous consequences at the hands of curious students.]] This could also be implying the classroom is suddenly being located on top of a geographic border, which would be highly unlikely, especially if it happened without warning.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
:[Caption above scatter plot with labeled axes]&lt;br /&gt;
:Caption: The thing you study just showed up in your classroom! That's...&lt;br /&gt;
:Top: good&lt;br /&gt;
:Bottom: bad&lt;br /&gt;
:Left: normal&lt;br /&gt;
:Right: weird&lt;br /&gt;
&lt;br /&gt;
Items are listed row by row, left to right, top to bottom.&lt;br /&gt;
&lt;br /&gt;
:[First quadrant (good and weird)]&lt;br /&gt;
:20th century authors&lt;br /&gt;
:Exobiology&lt;br /&gt;
:21st century authors&lt;br /&gt;
:19th century authors&lt;br /&gt;
:Robotics&lt;br /&gt;
:Paleontology&lt;br /&gt;
:Martian soil chemistry&lt;br /&gt;
:Child psychology&lt;br /&gt;
:Tourism&lt;br /&gt;
:[Second quadrant (good and normal)]&lt;br /&gt;
:Atmospheric physics&lt;br /&gt;
:Ethics&lt;br /&gt;
:Education&lt;br /&gt;
:Bibliography&lt;br /&gt;
:Human physiology&lt;br /&gt;
:Public speaking&lt;br /&gt;
:Architecture&lt;br /&gt;
:Library science&lt;br /&gt;
:Furniture design&lt;br /&gt;
:Culinary arts&lt;br /&gt;
:Ergonomics&lt;br /&gt;
:Botany&lt;br /&gt;
:[Third quadrant (bad and normal)]&lt;br /&gt;
:Entomology&lt;br /&gt;
:Occupational therapy&lt;br /&gt;
:Hydraulic engineering&lt;br /&gt;
:Pest control&lt;br /&gt;
:Foodborne illness&lt;br /&gt;
:Criminal law&lt;br /&gt;
:Physiology of stress&lt;br /&gt;
:Oncology&lt;br /&gt;
:[Fourth quadrant (bad and weird)]&lt;br /&gt;
:Ornithology&lt;br /&gt;
:Animation&lt;br /&gt;
:Petroleum geology&lt;br /&gt;
:Highway engineering&lt;br /&gt;
:Toxicology&lt;br /&gt;
:Hematology&lt;br /&gt;
:Hostage negotiation&lt;br /&gt;
:History of siege warfare&lt;br /&gt;
:Trauma surgery&lt;br /&gt;
:Volcanology&lt;br /&gt;
:Quasar astronomy&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Charts]]&lt;br /&gt;
[[Category:Rankings]]&lt;br /&gt;
[[Category:Food]]&lt;br /&gt;
[[Category:Cancer]]&lt;br /&gt;
[[Category:Animals]]&lt;br /&gt;
[[Category:Geology]]&lt;br /&gt;
[[Category:Astronomy]]&lt;br /&gt;
[[Category:Volcanoes]]&lt;br /&gt;
[[Category:Engineering]]&lt;br /&gt;
[[Category:Scatter plots]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2466:_In_Your_Classroom&amp;diff=357801</id>
		<title>2466: In Your Classroom</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2466:_In_Your_Classroom&amp;diff=357801"/>
				<updated>2024-11-25T03:57:19Z</updated>
		
		<summary type="html">&lt;p&gt;ConscriptGlossary: Remove extra whitespace&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2466&lt;br /&gt;
| date      = May 21, 2021&lt;br /&gt;
| title     = In Your Classroom&lt;br /&gt;
| image     = in_your_classroom.png&lt;br /&gt;
| titletext = Ontology is way off to the left and geography is way off to the right.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
[[Randall]] has created a thought experiment and corresponding chart about school courses. The idea is, &amp;quot;the subject of the class appears in the classroom&amp;quot; and the chart compares how dangerous and how unusual that would be. &lt;br /&gt;
&lt;br /&gt;
In the title text two points that are off the chart to the left and right are also mentioned. See details about all the subjects in the [[#Table of subjects|table]] below.&lt;br /&gt;
&lt;br /&gt;
Note that Randall uses similar diagrams in each of [[388: Fuck Grapefruit]], [[1242: Scary Names]] and [[1501: Mysteries]], which also contain different items. They also have extra points mentioned in the title text. In the first two comics the points are also off the chart, whereas for the last the description of the point is too long to fit on the chart. Extra info outside the chart is also used in the title text of [[1785: Wifi]], but this is a line graph. Extra info outside a map is also used in the title text of [[United States Map]].&lt;br /&gt;
&lt;br /&gt;
==Table of subjects==&lt;br /&gt;
(Clarification: -10 on weirdness means furthest on the &amp;quot;normal&amp;quot; left extent of the horizontal normal-to-weird scale, while -10 badness means at the &amp;quot;good&amp;quot; top end of the good-to-bad vertical range, with respective axes crossing each other at zero. Values are approximate. Written labels avoid overwriting each other, or axes, with no obvious datum points other than the centre of each fragment of text.)&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Breakdown of Subjects&lt;br /&gt;
|-&lt;br /&gt;
!Course Topic&lt;br /&gt;
!Weirdness&lt;br /&gt;
!Badness&lt;br /&gt;
!Explanation&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Atmospheric Physics&lt;br /&gt;
| -10&lt;br /&gt;
| -10&lt;br /&gt;
|Absent very strange and unprecedented circumstances, every classroom on Earth has an atmosphere (although going by the exact wording of the starting hypothesis, &amp;quot;The thing you study just showed up in your classroom&amp;quot;, the implication is that up until that point, the room in which the class is being held contained a vacuum, which in and of itself is interesting to physics students.)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Ethics&lt;br /&gt;
| -5&lt;br /&gt;
| -10&lt;br /&gt;
|Ethical thinking and behavior are widely considered good{{Citation needed}} and should normally be present in education, but are sadly not universal.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Education&lt;br /&gt;
| -10&lt;br /&gt;
| -8&lt;br /&gt;
|Learning usually goes on in classrooms, so education as a concept is both being learned about and present in the form of learning itself.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Bibliography&lt;br /&gt;
| -5&lt;br /&gt;
| -8.6&lt;br /&gt;
|Bibliography is the study of books, and books are normally present in classrooms, particularly bibliography classrooms. Although, more commonly speaking  academically, a bibliography is a list of all sources used to compose a research paper, considered mandatory in all branches of academics but occasionally falsified or written in an incorrect style.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Human Physiology&lt;br /&gt;
| -10&lt;br /&gt;
| -6&lt;br /&gt;
|This comic assumes that there are humans learning in the classroom, which was true at the time this comic was published, although in many places at the time the comic was published, many classrooms were closed due to COVID-19 restrictions.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Public Speaking&lt;br /&gt;
| -5&lt;br /&gt;
| -7&lt;br /&gt;
|Some classes require students to present things in front of the class, which is likely a requirement in a public speaking class. Thus, public speaking itself would be present in the class.&lt;br /&gt;
Some classes also have a teacher talking or presenting to the students from the front of the class, another form of public speaking.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Architecture&lt;br /&gt;
| -10&lt;br /&gt;
| -4&lt;br /&gt;
|All buildings can be considered architecture, and most classes take place in buildings. This comic also refers to a class''room'', which is a room, and therefore considered architecture.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Library Science&lt;br /&gt;
| -5&lt;br /&gt;
| -5&lt;br /&gt;
|Library science is concerned with the organization of knowledge, and is useful for finding information. Many classes require [https://papersowl.com/pay-for-research-paper research papers] that require the use of books and other sources of information to complete them.  This would be even more appropriate for a class actually taught in the school library.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Furniture Design&lt;br /&gt;
| -10&lt;br /&gt;
| -2&lt;br /&gt;
|Most rooms have furniture,{{Citation needed}} so this would probably be present in a classroom. May also be implying the classroom furniture has not been assembled yet, making it not as good and a lesson in furniture design.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Culinary Arts&lt;br /&gt;
| -2&lt;br /&gt;
| -4&lt;br /&gt;
|Most studies of culinary arts include the teacher and/or students preparing food using the tools and/or techniques that have been taught, so it would be fairly normal for food to be a result of classroom activities.  How ''good'' it is, however, can be a mixed bag, especially for student cooking attempts.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Ergonomics&lt;br /&gt;
| -9&lt;br /&gt;
| -1&lt;br /&gt;
|Ergonomic equipment and workspaces promote comfort and efficiency, while non-ergonomic ones may be unpleasant, unhealthy, or even immediately dangerous.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Botany&lt;br /&gt;
| -2&lt;br /&gt;
| -2&lt;br /&gt;
|The near-neutral position of botany (aka plant biology) suggests that the most likely reason for plants to be present would be something like a potted plant, which is not uncommon, and usually not unpleasant, but not very noteworthy. There are other potential reasons for plants to be present, but those are generally less likely. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|20th Century Authors&lt;br /&gt;
|3&lt;br /&gt;
| -8&lt;br /&gt;
|Literature classes would benefit greatly from an open discussion or interview with the author themself. Sadly such things are rare, but not unheard of, putting it slightly on the &amp;quot;weird&amp;quot; side of the spectrum. Well-known authors of the 20th century have an increased likelihood of being dead by 2021, but there are still some authors of the 20th century who were well-established enough to be studied and still alive at the time this comic was published.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Exobiology&lt;br /&gt;
|10&lt;br /&gt;
| -10&lt;br /&gt;
|Exobiology is the study of extraterrestrial life. This would mean that an alien lifeform was in the classroom. This is extremely weird but very good for people to investigate and research the alien.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|21st Century Authors&lt;br /&gt;
|2&lt;br /&gt;
| -6&lt;br /&gt;
&lt;br /&gt;
|21st century authors have the advantage (over 19th and 20th century authors) of typically being alive and active at the time this comic was published. However, most authors who were primarily active in the 21st century are still developing their body of work, and/or still awaiting the judgment of history. The better availability of such authors, as compared to 20th century author probably explains the slightly lower &amp;quot;weirdness&amp;quot; score, while the limited body of truly prominent authors probably explains the lower &amp;quot;goodness&amp;quot; score.  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|19th Century Authors&lt;br /&gt;
|10&lt;br /&gt;
| -7&lt;br /&gt;
|No author who was active in the 19th century was alive at the writing of this comic,{{Citation needed}} hence, having one of them show up in class would be extremely weird. The opportunity to interact with such a person would be utterly unique, meaning that it scores pretty high on the &amp;quot;goodness&amp;quot; metric, though interestingly not as high as a 20th century author. Possibly, the potential &amp;quot;badness&amp;quot; of having a zombie or other reanimated being show up in your class is weighed against the advantage of having a historical figure there in person. It may also be that someone from the 19th century has an increased danger of having outdated ethics, which may result in discomfort on the part of the students.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Paleontology&lt;br /&gt;
|10&lt;br /&gt;
| -5&lt;br /&gt;
|Paleontology is the study of the history of life on Earth as based on fossils. In geology classes, it would be normal to have some fossils in the classroom. However, fossils are not usually found in other classrooms, and especially below the college level. Randall is also probably implying the weirdness of finding a live ''Jurassic Park''-style dinosaur.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Robotics&lt;br /&gt;
|1&lt;br /&gt;
| -4&lt;br /&gt;
|A course on robotics would often be expected to have some form of working models of the robots being discussed. However, for it to have &amp;quot;showed up&amp;quot; in your classroom could imply an actual functioning robot prototype walked into the classroom. While not cause for concern (as long as nobody in the class is {{w|Sarah Connor (Terminator)#The Terminator (1984)|named Sarah Connor}}), this would be a bit weird.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Martian Soil Chemistry&lt;br /&gt;
|10&lt;br /&gt;
| -3&lt;br /&gt;
|Martian soil only reaches Earth in small amounts, so it would be unusual to find a meaningful amount anywhere, except Mars.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Tourism&lt;br /&gt;
|5&lt;br /&gt;
| -2&lt;br /&gt;
|Tourists coming into an active classroom would be quite unusual; while tourists sometimes visit university campuses, it would generally be rude for a tour guide to lead them into a classroom when class is in progress. This could also refer to the students leaving to become tourists in another location.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Child Psychology&lt;br /&gt;
|2&lt;br /&gt;
| -1&lt;br /&gt;
|Children are rarely students in classrooms advanced enough to teach child psychology. In order for child psychology to be on display, presumably someone would have to have brought a child (either for a demonstration, or for some other reason), which is slightly weird, but not unheard of. This is considered slightly &amp;quot;good&amp;quot;, presumably because it would give students some opportunity for firsthand observation, and because most people like, or at least tolerate, children. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Entomology&lt;br /&gt;
| -7&lt;br /&gt;
|1&lt;br /&gt;
|Entomology is the study of insects. Insects getting into a classroom is a very common event, even putting aside the possibility of someone bringing insects specifically to study. Most insects that might get in are relatively benign, but some (such as mosquitoes) might sting or bite, and many people simply don't like insects, even when they're not harmful, pushing this slightly into &amp;quot;bad&amp;quot; territory.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Occupational Therapy&lt;br /&gt;
| -8&lt;br /&gt;
|2.4&lt;br /&gt;
|Injury, illness or mental health problem that hinder your participation in life/school.  Many students who have significant physical injuries and conditions that require occupational therapy would generally not engage in those activities during a class, although volunteers may be brought in as a demonstration of a particular health problem or method of treatment.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Hydraulic Engineering&lt;br /&gt;
| -2&lt;br /&gt;
|2.4&lt;br /&gt;
|Likely in the form of flooding or plumbing problems.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Pest Control&lt;br /&gt;
| -5&lt;br /&gt;
|4&lt;br /&gt;
|This is not dissimilar to entomology, but pest control tends to involve larger infestations, as opposed to individual insects, and also includes non-insect animals, such as rats. Such events in classroom are not as common as individual insects getting in (especially in a well-maintained building), but are far from unheard of, and risk many negative effects, from bug bites to structural damage, and may require evacuation and fumigation to deal with. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Foodborne Illness&lt;br /&gt;
| -7&lt;br /&gt;
|6&lt;br /&gt;
|Sometimes students in a culinary arts class do not properly observe hygiene standards and the food they present would lead to illness in those that consume the food. Thankfully, this is rare if the teacher is paying enough attention to proceedings. Students could also be ill from food eaten outside of class.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Criminal Law&lt;br /&gt;
| -1&lt;br /&gt;
|7&lt;br /&gt;
|This might happen if a crime occurs in the class. While an armed robbery is unlikely, incidents involving theft or drug use are not particularly uncommon. Regardless, such an incident would be very bad.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Physiology of Stress&lt;br /&gt;
| -10&lt;br /&gt;
|8&lt;br /&gt;
|Stress in a classroom, even stress that's bad enough to manifest itself in physical symptoms, is all too common. Stress that bad is very harmful, and a student realizing that they were manifesting the symptoms they're studying should take it as a warning sign. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Oncology&lt;br /&gt;
| -5&lt;br /&gt;
|10&lt;br /&gt;
|Oncology is the medical practice of treating cancer. For someone in a classroom full of students to have cancer is, unfortunately, not an uncommon event, putting it on the &amp;quot;normal&amp;quot; side of the scale. While not abnormal, it's clearly very bad. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Ornithology&lt;br /&gt;
|2&lt;br /&gt;
|1&lt;br /&gt;
|Ornithology is the study of birds. A bird getting into a classroom would be somewhat strange, but there are circumstances under which it would happen. In most cases, that's not especially dangerous, but it would be disruptive, and introduce the possibility of the bird making a mess, and possibly getting hurt (or even hurting others), which makes it slightly bad.  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Animation&lt;br /&gt;
|10&lt;br /&gt;
|1.2&lt;br /&gt;
|Presumably Randall isn't referring to examples of animated works being displayed to the students in an animation class, as that would be normal. Nor is he referring to teachers or students doing animation by creating or filming drawings, stop-motion figures, or computer graphics to make an animated film, which would also be normal. However, it would be very weird for animated characters to appear physically in the classroom instead of being projected on screens. Possibly a reference to movies such as ''Who Framed Roger Rabbit'' in which cartoon characters actively interact with the live action cast. As many of the characters abide by different physics, and a couple are depicted as insane, this would be very weird and potentially bad. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Petroleum Geology&lt;br /&gt;
|3&lt;br /&gt;
|2&lt;br /&gt;
|Crude oil coming up through the floor of the classroom would be ''very'' weird{{citation needed}}. Any potential for hands-on learning experience would be limited, and quickly outweighed by classes being disrupted entirely (be it damage to the building, or oil companies trying to negotiate for the land).&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Highway Engineering&lt;br /&gt;
|5&lt;br /&gt;
|3&lt;br /&gt;
|A highway being built through an active classroom would be very unusual and not that safe.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Toxicology&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|Most likely, a toxic substance is present in the room. This is not very weird if the room is in a building that has {{w|asbestos}}-containing insulation (phased out during the 1990s, although it has not been specifically outlawed in the United States due to industrial lobbying) or lead paint (which was fully outlawed in the United States in 1978, so any paint that remains must have been applied prior to that date). However, toxic substances are unsafe for humans.{{Citation needed}}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Hematology&lt;br /&gt;
|5&lt;br /&gt;
|4&lt;br /&gt;
|Hematology is the study of blood. Given that there should be blood in each of the students present,{{Citation needed}} we should probably assume Randall means &amp;quot;large quantities of blood outside of one's body ([[:Category:Comics with blood|click here]])&amp;quot;, which would indeed be both bad and weird.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Hostage Negotiation&lt;br /&gt;
|4&lt;br /&gt;
|7&lt;br /&gt;
|Reasons as to why there would be hostage negotiations taking place at a school have horrifying implications for the students and teacher. The 'weird'ness rating of this occurence would presumably change depending on location, school shootings and hostage situations being (unfortunately) much more 'normal'ised in the USA than any other country.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|History of Siege Warfare&lt;br /&gt;
|10&lt;br /&gt;
|6&lt;br /&gt;
|This would be an exceptionally strange event. Given that the topic is &amp;quot;history&amp;quot;, having it show up implies that either historical figures have the classroom under siege (possibly through time travel or reanimation) or at least that the besiegers are using traditional weapons and methods in their attack.  In either case, it would be a very weird event, and also very bad. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Trauma Surgery&lt;br /&gt;
|1&lt;br /&gt;
|9&lt;br /&gt;
|An injury severe enough to require trauma surgery would be rare in a classroom, but there are circumstances under which it could realistically happen. Such an injury would be, by its very nature, a very bad thing. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Volcanology&lt;br /&gt;
|5&lt;br /&gt;
|9&lt;br /&gt;
|Having a live volcano in one's classroom is both very dangerous and very weird {{Citation needed}}. Volcanoes mature over very long time frames, but even the earliest stages are highly disruptive and potentially deadly, as seen in the {{w|Parícutin#Formation|1943 eruption of Paricutín}} and the {{w|2018_lower_Puna_eruption#Eruption|2018 flank eruption of Kilauea}}. Note this also applies to [[1611: Baking Soda and Vinegar | baking soda and vinegar volcanoes that are offshoots of much larger vinegar hotspots]].&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Quasar Astronomy&lt;br /&gt;
|5&lt;br /&gt;
|10&lt;br /&gt;
|{{w|Quasars}} are distant astronomical objects that release large amounts of energy. Not only would the power of a quasar destroy the classroom (as well as the rest of Earth), quasars are too large to fit inside any known classroom. For example, {{w|ULAS J1342+0928}} has a mass of 8*10^8 solar masses. This means the event horizon of the black hole is almost 16 AU in radius, and this size does not include the accretion disk. &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Ontology (title text)&lt;br /&gt;
|&amp;lt;-10&lt;br /&gt;
|?&lt;br /&gt;
|Ontology is the philosophical study of existence and being. Since there must be ''something'' learning in the classroom, it is unsurprising that ontology is a normal subject to appear in the classroom. It would, in fact, be more bizarre to have a lack of ontology in the classroom.&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
!scope=row|Geography (title text)&lt;br /&gt;
|&amp;gt;10&lt;br /&gt;
|?&lt;br /&gt;
|Geographers study the lands, features, inhabitants, and phenomena of the Earth. While each classroom contains a small portion of the Earth's surface (normally not enough of it to be interesting to geographers), having the ''entire Earth'' appear inside a classroom would likely demand explanation. In particular, if this is an ordinary classroom (i.e. located ''on'' the Earth), the planet's simultaneous appearance within its walls would both defy our current understanding of spacetime, and risk [[1515: Basketball Earth | disastrous consequences at the hands of curious students.]] This could also be implying the classroom is suddenly being located on top of a geographic border, which would be highly unlikely, especially if it happened without warning.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
:[Caption above scatter plot with labeled axes]&lt;br /&gt;
:Caption: The thing you study just showed up in your classroom! That's...&lt;br /&gt;
:Top: good&lt;br /&gt;
:Bottom: bad&lt;br /&gt;
:Left: normal&lt;br /&gt;
:Right: weird&lt;br /&gt;
&lt;br /&gt;
Items are listed row by row, left to right, top to bottom.&lt;br /&gt;
&lt;br /&gt;
:[First quadrant (good and weird)]&lt;br /&gt;
:20th century authors&lt;br /&gt;
:Exobiology&lt;br /&gt;
:21st century authors&lt;br /&gt;
:19th century authors&lt;br /&gt;
:Robotics&lt;br /&gt;
:Paleontology&lt;br /&gt;
:Martian soil chemistry&lt;br /&gt;
:Child psychology&lt;br /&gt;
:Tourism&lt;br /&gt;
:[Second quadrant (good and normal)]&lt;br /&gt;
:Atmospheric physics&lt;br /&gt;
:Ethics&lt;br /&gt;
:Education&lt;br /&gt;
:Bibliography&lt;br /&gt;
:Human physiology&lt;br /&gt;
:Public speaking&lt;br /&gt;
:Architecture&lt;br /&gt;
:Library science&lt;br /&gt;
:Furniture design&lt;br /&gt;
:Culinary arts&lt;br /&gt;
:Ergonomics&lt;br /&gt;
:Botany&lt;br /&gt;
:[Third quadrant (bad and normal)]&lt;br /&gt;
:Entomology&lt;br /&gt;
:Occupational therapy&lt;br /&gt;
:Hydraulic engineering&lt;br /&gt;
:Pest control&lt;br /&gt;
:Foodborne illness&lt;br /&gt;
:Criminal law&lt;br /&gt;
:Physiology of stress&lt;br /&gt;
:Oncology&lt;br /&gt;
:[Fourth quadrant (bad and weird)]&lt;br /&gt;
:Ornithology&lt;br /&gt;
:Animation&lt;br /&gt;
:Petroleum geology&lt;br /&gt;
:Highway engineering&lt;br /&gt;
:Toxicology&lt;br /&gt;
:Hematology&lt;br /&gt;
:Hostage negotiation&lt;br /&gt;
:History of siege warfare&lt;br /&gt;
:Trauma surgery&lt;br /&gt;
:Volcanology&lt;br /&gt;
:Quasar astronomy&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Charts]]&lt;br /&gt;
[[Category:Rankings]]&lt;br /&gt;
[[Category:Food]]&lt;br /&gt;
[[Category:Cancer]]&lt;br /&gt;
[[Category:Animals]]&lt;br /&gt;
[[Category:Geology]]&lt;br /&gt;
[[Category:Astronomy]]&lt;br /&gt;
[[Category:Volcanoes]]&lt;br /&gt;
[[Category:Engineering]]&lt;br /&gt;
[[Category:Scatter plots]]&lt;/div&gt;</summary>
		<author><name>ConscriptGlossary</name></author>	</entry>

	</feed>