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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Design&amp;diff=4397</id>
		<title>explain xkcd:Community portal/Design</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Community_portal/Design&amp;diff=4397"/>
				<updated>2012-08-04T13:49:51Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: /* Header template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;__NEWSECTIONLINK__&lt;br /&gt;
{{Community portal}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Header template ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've created a template called [[Template:ComicHeader]], which might make things easier when creating comic pages (and also provide better consistency between the pages). I've used it on the [[Internal monologue]] page, to display the comic number and the date it was published. The template also adds the page to the [[:Category:Comics|Comics]] category.&lt;br /&gt;
&lt;br /&gt;
You just need to add:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{ComicHeader|1089|August 1, 2012}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
…to the start of the page (replacing the comic number and date).&lt;br /&gt;
&lt;br /&gt;
I'll try to make the template look a bit nicer, but the great thing about templates of course, is that once they're updated, the changes are reflected on all the pages that include that template. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:46, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:By the way, I'm thinking of maybe programming something that would allow you to easily import the comic image and alt text from xkcd without having to upload the images manually and the like. You'd just have to host a single PHP file on your server and make a few changes to the MediaWiki configuration. Of course, you'd be able to see source code and everything to make sure I'm not trying to do something fishy. :-P Let me know what you think. :-) --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:54, 1 August 2012 (EDT)&lt;br /&gt;
::Yirba - I like the idea.  My email is explain@explainxkcd.com - send me what you put together and we can sort it out. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 19:37, 1 August 2012 (EDT)&lt;br /&gt;
::Ditto on the Template.  Up-vote.  Any thought on harvesting the pre-wiki content from ExplainXKCD with some sort of a Python, Perl, or PHP script?  (That sounds more like a 'bot than something that would have to be hosted, though.) [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:52, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I was thinking of putting it into a infobox, please [[#Idea|see above]]. I also intended to automatically extract data from xkcd, which would lack descriptions, but at least we would have data like title, image and transcripts. Also, there are some other data like links (e.g. 832), news (which are displayed in xkcd's header, e.g. 739) and titles which contain HTML (259 and 472). I also extracted all those data. When we agree on a page layout, I could begin programming a bot. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 06:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Hmmm… an infobox may be a good idea. And a bot that imports data from xkcd might be handy. Anyway, here's something I programmed that would allow for access to the xkcd API from the wiki itself. Essentially, you'd put this xkcdinfo.php ([http://gist.github.com/3239432 source], [http://github.com/downloads/Yirba/yirba.github.com/xkcdinfo.php download]) file somewhere on the server (e.g. at http://www.explainxkcd.com/xkcdinfo.php) and [http://www.mediawiki.org/wiki/Manual:Interwiki#Adding_a_new_website_for_interwiki_linking include it in MediaWiki's interwiki table] (ensuring iw_trans == 1):&lt;br /&gt;
&amp;lt;pre&amp;gt;INSERT INTO interwiki (iw_prefix, iw_url, iw_local, iw_trans) VALUES ('xkcdinfo', 'http://www.explainxkcd.com/xkcdinfo.php?input=$1', 0, 1);&amp;lt;/pre&amp;gt;&lt;br /&gt;
::::After [http://www.mediawiki.org/wiki/Manual:$wgEnableScaryTranscluding enabling scary transclusion] in LocalSettings.php, you'd then be able to send queries to the xkcd JSON API via this file. In other words, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:32-title}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; would make comic 32's title appear. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:55-alt}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; would make comic 55's image text appear. I've also set it so you could enter &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:100-embed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, and it would make the comic 100 image appear on the wiki page. Feel free to use it however you want (if at all), and modify the code should you wish. (Hint: Using the number 0 for the comic number will query the most recent comic, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:0-num}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; will return the current comic number. Also, adding &amp;quot;raw:&amp;quot; before &amp;quot;xkcdinfo:&amp;quot; might be more useful in some instances. E.g.: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{raw:xkcdinfo:555-title}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;)--[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 14:50, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::: Nice idea, altough this would mean to load all data from xkcd whenever a page is &amp;lt;del&amp;gt;viewed&amp;lt;/del&amp;gt;&amp;lt;ins&amp;gt;edited&amp;lt;/ins&amp;gt; (I think this is the way MediaWiki caches the data). This is a lot of traffic for little data. I'd say to include the metadata statically, but linking the external image seems a good thing to me. Again, it'd be great if you gave me feedback for [[User:SlashMe/Testpage|my idea]]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Yes, the data would be loaded from xkcd for each edit. You can, however, substitute (subst) the template for data that is unlikely to change. And therefore the data would indeed be stored statically. I like the layout you've come up with. It could perhaps do with a bit of tweaking here and there, but the general idea is good. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 17:16, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::: What kind of tweaking do you mean? I know the code is a bit messy, if you have a better idea, please tell me (or do it yourself - hey, it's a wiki!). The CSS should be placed in an external file, but for now, it's ok. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 17:51, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
Looks like there is another/newer template called [[Template:Comic]] that includes prev/next buttons as well. &lt;br /&gt;
You add it with:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{comic&lt;br /&gt;
| number    = 1&lt;br /&gt;
| date      = September 30, 2005&lt;br /&gt;
| title     = {{PAGENAME}}&lt;br /&gt;
| image     = barrel_cropped_(1).jpg&lt;br /&gt;
| imagesize = &lt;br /&gt;
| alttext   = Don't we all.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Moved from [[User talk:Jeff]]. --~~~~&amp;lt;/small&amp;gt;&lt;br /&gt;
==Description==&lt;br /&gt;
xxxxxxxxxxx&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
No need to include the alt text separately, as the template does it for you.  It also includes the comic category, but only if the first 4 fields are filled out.&lt;br /&gt;
--[[User:Bpothier|B. P.]] ([[User talk:Bpothier|talk]]) 18:47, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: Yes, but that is not necessarily an advantage. My template only creates the infobox, so you are still able to create an introductory text or other sections, for special comics that need a more detailed description. I can also add categories if needed. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 19:02, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::I think it is a major advantage to make the thing easier to use and more consistant site-wide.&lt;br /&gt;
&lt;br /&gt;
::As the creator of the new one, I'm obviously biased, but I created it because I think it's better. Not putting your work down, it was a great piece of code that I put to work in my template. But I think if there's need for pre-text of any kind (not sure there is, as the articles probably should all open with the comic itself as presented on XKCD), a pre-comment can be added into the template, but I'm not sure what that would be. Perhaps there would be a requirement for special circumstances like the comic a few weeks ago where there were a million iterations depending on locality, browser, etc. But that's the rarity. I think the new one simplifies it for users. They need only one template to post the comic, alt text title and nav buttons. What could be easier? [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 19:08, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: As the creator of the other one, I'm equally biased. What about a &amp;quot;main template&amp;quot;, which then calls one or two other templates (e.g. one for the infobox, another for image and alt text? For most comics, this main template could be used, but if absolutely needed, it would still be possible to use the underlying templates with custom sections/text. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 19:15, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::I just now saw your request for feedback on your new comic page with the sidebar. I honestly am not sure which format is better. I kind of like my format for the fact that it basically presents the comic as it was originally posted, but your infobox does provide some additional stuff like 3D link (not sure what &amp;quot;news&amp;quot; is, of where the &amp;quot;link&amp;quot; comes from but...) Perhaps we could integrate the two. I like that the comic is visble right away on my template, but on your page it's down below the first header. I don't think the comic itself needs an &amp;quot;image&amp;quot; heading. No disrespect, but I think your sidebar, esp. because of the &amp;quot;news&amp;quot; field is a bit chunky - too wide for most of its content.&lt;br /&gt;
&lt;br /&gt;
::::I think we could easily add things like a &amp;quot;3d&amp;quot; link into {{tl|comic}} as part of the next/prev bar where a &amp;quot;3D&amp;quot; field in the template is non-blank. Similarly, original title could read something like (Originally titled: xxxxx) below the primary title in a smaller font. Other than the &amp;quot;link&amp;quot; and &amp;quot;news&amp;quot; fields (which again, I'm not sure what they are), I think that would inclde all the same info as your infobox into my template. Thoughts? &lt;br /&gt;
&lt;br /&gt;
::::As to your other comment about compartmentalizing the template, I have nothing against that, but which parts of the template would you want to be able to use separately (and can you suggest an example where that might be necessary?) Subdividing the template can always be done later if it becomes needed; just trying to get an idea of what you have in mind by compartmentalizing it. Cheers [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 19:43, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Moved from [[User talk:Jeff]]. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:37, 4 August 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{outdent|::::}}&lt;br /&gt;
&lt;br /&gt;
''Suggestion:''&lt;br /&gt;
&lt;br /&gt;
* I will start by uploading all images. This will take some time and has no points to discuss. (If it has, tell me.) At a later point, maybe we could link them directly from xkcd.com.&lt;br /&gt;
* For the comic pages: Let's say we'll use {{tl|Comic}}. I'll change the arguments of the template to be more like my {{tl|Infobox comic}}, see [[Template:Infobox comic#Arguments|documentation]]. I'll keep the ''alttext'' argument, but make ''image'' optional (file name should be guessed from the title). Do we really need ''imagesize''?&lt;br /&gt;
* {{tl|Comic}} would then call some further templates, passing the appropriate arguments. This way, we are able to use custom sections/text if needed for special comics (like [http://xkcd.com/1037/ Umwelt]) by using these templates instead of the all-in-one {{tl|Comic}}.&lt;br /&gt;
* Since we have one template doing all the work, we can easily change the page layout even after the import. (We should only keep track of the pages that don't use {{tl|Comic}}, using a hidden category)&lt;br /&gt;
* For consistency, I would move all existing pages out of the way and re-create them. The moved pages could be collected by adding them to a category like [[:Category:legacy pages]], so they should easily be found. Descriptions should be moved to the new pages, afterwards the legacy pages can be deleted.&lt;br /&gt;
&lt;br /&gt;
This way, I can import all comics, but we would still be able to change the layout afterwards. My 2ct concerning page layout:&lt;br /&gt;
* '''Use comic titles as page names.''' The title should be prominent, the number will be in the infobox.&lt;br /&gt;
* I'll remove ''Original title'', ''news'' and ''link'' from the infobox and move them to a section after the description. (For details, see [[Template:Infobox_comic#Documentation|here]])&lt;br /&gt;
* suggested layout:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
=====page title=====&lt;br /&gt;
+--------------------+ +---------+&lt;br /&gt;
|                    | | infobox |&lt;br /&gt;
|       image        | |  text   |&lt;br /&gt;
|(no section heading)| |         |&lt;br /&gt;
|                    | |         |&lt;br /&gt;
|                    | +---------+&lt;br /&gt;
+--------------------+&lt;br /&gt;
==alt==&lt;br /&gt;
text&lt;br /&gt;
==description==&lt;br /&gt;
text&lt;br /&gt;
==transcript==&lt;br /&gt;
text&lt;br /&gt;
==original title, news and link== (if available)&lt;br /&gt;
text&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Still open for opinions.--[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 04:13, 4 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:It might make more sense to use the comic number as the page title, and then use [http://www.mediawiki.org/wiki/Manual:$wgAllowDisplayTitle DISPLAYTITLE] to make the comic title appear in place of the number. Just putting that out as another possibility. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 09:49, 4 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Site logo ==&lt;br /&gt;
&lt;br /&gt;
The main image (top left) is not the best image ever. You really need to update it.&lt;br /&gt;
&lt;br /&gt;
Maybe: &lt;br /&gt;
[[File:wiki.png]]&lt;br /&gt;
&lt;br /&gt;
Just an idea, because that text looks weird, or at least please add a transparent background instead of white for the logo (and center the text). --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 21:39, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: I like it.  What does everyone else think?  (PS - don't forget to sign your entries on this page!) --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 21:18, 1 August 2012 (EDT)&lt;br /&gt;
: I could go with that.  Had been kicking around some ideas, and if I had any artistic aptitude, it might have looked very much like that: the black-hat retort; alternately: the lowercase blue '''xkcd''' that RM uses (sans comic figure watermark) with a &amp;quot;Explain&amp;quot; in a hand-written typeface in some other color splashed across the top left part of those letters.  And yes, definitely with transparency.   Just thoughts... ultimately, whatever the consensus is... [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:51, 2 August 2012 (EDT)&lt;br /&gt;
:: Something like one of the following?&lt;br /&gt;
::[[File:wiki2.png]][[File:wiki3.png]][[File:wiki4.png]]&lt;br /&gt;
:: --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 12:40, 2 August 2012 (EDT)&lt;br /&gt;
:I like that first one - [[:File:wiki.png]]. And perhaps use that same text for the [[#Robots.txt|Tagline]]? --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 19:50, 2 August 2012 (EDT)&lt;br /&gt;
:Yeah, the first one captures what I was thinking.  I thought I'd download it to tweak it a bit, and quickly proved to myself how unartistic I am.  I was thinking the xkcd pretty much overwhelming the bottom (touching all three sides) and the explain (first typeface) in tight, maybe at a 5 degree angle over the x and k.  Of course envisioning it is one thing, realizing it another (it may be totally unrealistic...) but I toss that out for further consideration. -- [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 00:25, 3 August 2012 (EDT)&lt;br /&gt;
::Hmmm, rereading Philosopher's comment, I think he and I may have been talking about two different images.  Ooops.  Anyway, was just chatting with a buddy who is more artistic than I am, and he created this mashup.  He suggested: &amp;quot;Establish some vocabulary.  First, xkcd needs to be bigger; it defies describing, and refuses to be pidgeon-holed into a box, so the xkcd needs to be so big that it doesn't fit entirely in-frame ... the Explain part has got to be casual, to represent the wiki and informal nature of contributing to it, and you gotta have it in close, because the contributors are going to get as close as they can to the truth.  And keep it simple.&amp;quot;  (I broke with that, and tried to add the black hat; in doing so, I think I trashed transparency, tough)  Anybody think that's worth taking a run with it? -- [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:04, 3 August 2012 (EDT) &lt;br /&gt;
[[File:Explainxkcd-concept.PNG]]&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
   y&lt;br /&gt;
   o&lt;br /&gt;
   u&lt;br /&gt;
   '&lt;br /&gt;
 w r&lt;br /&gt;
ei e&lt;br /&gt;
xkcd&lt;br /&gt;
piau&lt;br /&gt;
l um&lt;br /&gt;
a sb&lt;br /&gt;
i e&lt;br /&gt;
n&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Moved from [[User talk:Jeff]]. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:37, 4 August 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I prefer the first option ([[:file:wiki.png]]). At the size the logo is meant to be, it's perfectly readable; furthermore, it's visually pleasant and it conveys the meaning well. We'll need it to be transparent, and editing the file at the current size produces sub-optimal results. [[User:Grep|Grep]], could you please generate a transparent version of it and reupload it to overwrite the current image? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 05:14, 4 August 2012 (EDT)&lt;br /&gt;
:Slight problem. I don't have the original &amp;quot;it's cause your dumb,&amp;quot; I just copied it from explainxkcd.com header, and trying to remove the whitespace myself makes, well, suboptimal results. The font used was Heiti SC/TC, if you or anybody else wants to make it themselves. Also, maybe using #6e7b91 for the XKCD or something... it's the color RM uses on the home page.&lt;br /&gt;
&lt;br /&gt;
== Displaying Comics ==&lt;br /&gt;
&lt;br /&gt;
For the home page, I think the comic and explanation should be displayed instead of a link to the comic.&lt;br /&gt;
&lt;br /&gt;
For reasons unknown to me, I decided to create [[Template:Comicbox]] and [[Template:Comicbox2]]. Looks nice, as long as you use the correct one for the comic.&lt;br /&gt;
&lt;br /&gt;
Go to [[User:Grep/comicbox]] and [[User:Grep/comicbox2]] for examples. --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 21:03, 2 August 2012 (EDT)&lt;br /&gt;
:Those're wonderful!  And should probably be on the main page.  If you wanted, we could probably incorporate them (and maybe a third?) into a single template with a &amp;quot;square/vertical or horizontal&amp;quot; switch. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 21:36, 2 August 2012 (EDT)&lt;br /&gt;
::Also, you used &amp;quot;comicbox&amp;quot; for the class.  Is that a class that's defined somewhere?  (And if so, where?) --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 21:36, 2 August 2012 (EDT)&lt;br /&gt;
:::Good point. Removed. And merging them sounds wonderful. --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 21:47, 2 August 2012 (EDT)&lt;br /&gt;
::::Maybe merging them into [[Template:comicbox]]? --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 21:49, 2 August 2012 (EDT)&lt;br /&gt;
:::::I think classes are defined at [[MediaWiki:Common.css]], so if you really wanted to define the class....  And [[Template:Comicbox]] would probably be best.  Did you want to merge them or should I take a look at it? --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 22:25, 2 August 2012 (EDT)&lt;br /&gt;
::::::ParserFunctions and any sort of non-XMLish markup is weird. I would rather you look at it. --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 22:42, 2 August 2012 (EDT)&lt;br /&gt;
:::::::Okay, I've moved your templates to {{tl|Comicbox square or vertical}} and {{tl|Comicbox horizontal}} so I can work on {{tl|Comicbox}} as the main one.  It may take a while - I like to think of myself as a &amp;quot;[[wikipedia:Category:User template coder|master of all known wikimarkup]],&amp;quot; but I don't actually use those skills that often. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 23:08, 2 August 2012 (EDT)&lt;br /&gt;
::::::::Thanks. --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 23:42, 2 August 2012 (EDT)&lt;br /&gt;
:::::::::I've made it at {{tl|Comicbox}}.  This actually leaves {{tl|Comicbox square or vertical}} and {{tl|Comicbox horizontal}} unused, though I credited you (and them) in a comment at the top of the template.  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:21, 3 August 2012 (EDT)&lt;br /&gt;
::::::::::I think that the explanation should be on the right because it just looks weird as is... --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 07:42, 3 August 2012 (EDT)&lt;br /&gt;
{{outdent}} Sure.  But right now they both look like they're on the bottom?  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 20:02, 3 August 2012 (EDT)&lt;br /&gt;
===Sans-serif typeface===&lt;br /&gt;
::::::::I like these, too, but the roman typeface... how do folks feel about sticking with a sans-serif typeface throughout the site?  [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 00:13, 3 August 2012 (EDT)&lt;br /&gt;
:::::::::We should be able to change that wiki-wide through [[MediaWiki:Common.css]], I think.  Unfortunately, I don't know enough CSS to do it. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:23, 3 August 2012 (EDT)&lt;br /&gt;
:::::::::: I believe sans serif is already the default wiki-wide. Those specific instances were deliberately coded to use a serif font. It's just a matter of removing &amp;lt;code&amp;gt;font-family: 'Times New Roman';&amp;lt;/code&amp;gt; from the template. --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 17:01, 3 August 2012 (EDT)&lt;br /&gt;
::::::::::: Oh, I'd missed that.  I removed it. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 22:14, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Moved from [[User talk:Jeff]]. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:37, 4 August 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
== comic header ==&lt;br /&gt;
&lt;br /&gt;
Jeff, further to your previous conversation on the comic header, I've significantly rewritten Yirba's template (thanks to Yirba for the hard work. His navigation bar was very useful) and I've created a new template of {{tl|comic}}. An example of the comic in use can be seen at [[T-shirts]]. I started a discussion on the main page discussion board, but I thought if I pointed it out to you and you like it, it can start going in the rotation for new comics.&lt;br /&gt;
&lt;br /&gt;
I actually now see that Grep did a template up with intent (I think) to use for the main page. Had I known that when I started, I would have probably based my template off of his, because it looks nice, but either way, mine is intended for the actual articles. [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 14:46, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Again, may I link to &amp;lt;del&amp;gt;[[User talk:Jeff#Automatic Import|my request for feedback]]&amp;lt;/del&amp;gt;? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:52, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
The discussion is now at [[Explain XKCD:Community_portal/Design#Header template]]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 04:17, 4 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Moved from [[User talk:Jeff]]. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:37, 4 August 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Template improvement suggestion ==&lt;br /&gt;
&lt;br /&gt;
Can I suggest that we work on improving {{tl|ComicHeader}} - I wish I had time to do it myself and then edit all the comic pages, but I would suggest the best way might be to start a new template (perhaps design it a bit more like an infobox) and start converting the old pages over to new ones.&lt;br /&gt;
&lt;br /&gt;
The feature I think should be added is that, where the template currently includes teh comic number and date, and creates the nav header, the template really ought to include the image name, and the alt text. In that way, the template can produce the entire part of the article that displays the comic and its alt text (and the alt text, as mentioned, could be more like a caption, instead of just looking like a generic section of the article - it's part of the comic, it shouldn't look like part of the article on this site (no offence, Jeff, but that's one thing I always didn't like about explain XKCD - the image text should be bold or underlined or italics or something to signify that it's part of the comic and not the explanation.&lt;br /&gt;
&lt;br /&gt;
I'll see if I can work on a prototype. [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 12:29, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:What does everyone thing of this as a better layout? [[Blown Apart]] [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 13:09, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::May I link to &amp;lt;del&amp;gt;[[User talk:Jeff#Automatic Import|my request for feedback]]&amp;lt;/del&amp;gt;? --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:52, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Moved from [[Talk:Main Page]]. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:44, 4 August 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The discussion is now at [[Explain XKCD:Community_portal/Design#Header template]]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 04:17, 4 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Transcripts ==&lt;br /&gt;
&lt;br /&gt;
Do we need to add a whole section on &amp;quot;Transcript&amp;quot; for each comic? That could get very long for some comics, and basically pushes the explanations down further (which is what people generally come to explainxkcd for). If anything, perhaps the transcripts could be in a minimizable box like some navboxes do on wikipedia? I don't see a majority of users coming to read the transcripts... [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 19:15, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: What about putting the transcripts at the bottom of the page?&lt;br /&gt;
: BTW: If you agree, this discussion should be moved to [[Explain XKCD:Community portal]], as [[User:Waldir|Waldir]] suggested. At least for new discussions. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 19:19, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::No problem there. Feel free to move it. [[User:TheHYPO|TheHYPO]] ([[User talk:TheHYPO|talk]]) 19:29, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Moved from [[Talk:Main Page]]. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:47, 4 August 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The discussion is now at [[Explain XKCD:Community_portal/Design#Header template]]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 04:18, 4 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Adding a new comic ==&lt;br /&gt;
&lt;br /&gt;
This is the process I use to add a new comic. YMMV...  Feel free to update this as/if needed to provide some consistency...--[[User:Bpothier|B. P.]] ([[User talk:Bpothier|talk]]) 19:22, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
I start by uploading the image using the name from [[XKCD]]'s page.&lt;br /&gt;
&lt;br /&gt;
I create the new page using the comic number(not the name), e.g. &amp;quot;http://www.explainxkcd.com/wiki/index.php?title=1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I (currently) insert using the &amp;quot;Comic&amp;quot; template:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{comic&lt;br /&gt;
| number    = 1&lt;br /&gt;
| date      = September 30, 2005&lt;br /&gt;
| title     = {{PAGENAME}}&lt;br /&gt;
| image     = barrel_cropped_(1).jpg&lt;br /&gt;
| imagesize = &lt;br /&gt;
| alttext   = Don't we all.&lt;br /&gt;
}}&lt;br /&gt;
==Transcript==&lt;br /&gt;
This is the transcript from xkcd&lt;br /&gt;
==Description==&lt;br /&gt;
Wow what a cool comic!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I &amp;quot;Show preview&amp;quot; to ensure the image shows up and everything looks good.&lt;br /&gt;
&lt;br /&gt;
I &amp;quot;Save page&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
I click the &amp;quot;move&amp;quot; link on the down-arrow drop-down menu to the right of &amp;quot;View history&amp;quot; (at top of page).&lt;br /&gt;
&lt;br /&gt;
I rename the page from &amp;quot;1&amp;quot; to the page title from [[XKCD]].&lt;br /&gt;
&lt;br /&gt;
This will automatically create a redirect from &amp;quot;1&amp;quot; to the correct page name without having to do it manually.&lt;br /&gt;
--[[User:Bpothier|B. P.]] ([[User talk:Bpothier|talk]]) 19:22, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Please, have a break here. When we agree on a page layout, I can do this automatically. I repeat, when we agree on the layout (which should also include the direction of the redirects) --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 19:25, 3 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;Moved from [[Talk:Main Page]]. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 00:47, 4 August 2012 (EDT)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The discussion concerning the layout is at [[Explain XKCD:Community_portal/Design#Header template]]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 04:18, 4 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== styling of xkcd links ==&lt;br /&gt;
&lt;br /&gt;
I added code to the end of [[MediaWiki:Common.css]] to style links to the xkcd website as http://xkcd.com rather than the regular external link format, http://example.com. What do you guys think? --[[User:Waldir|Waldir]] ([[User talk:Waldir|talk]]) 05:06, 4 August 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=712</id>
		<title>User talk:Jeff</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=712"/>
				<updated>2012-08-02T21:16:55Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: /* Header template */ - reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Jeff's talk page.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
Hey,&lt;br /&gt;
&lt;br /&gt;
You might consider [http://www.mediawiki.org/wiki/Extension:Comments Extension:Comments]. It acts basically like the comment system on the blog, so you could keep everything (article, comments) in one place. It's more conducive to casual conversation than the discussion page.&lt;br /&gt;
--[[User:Cyanfish|Cyanfish]] ([[User talk:Cyanfish|talk]]) 14:07, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Request ==&lt;br /&gt;
Hi Jeff,&lt;br /&gt;
&lt;br /&gt;
Just thought I'd run this up the flagpole... any thought about installing the ParserFunctions extension?  I think this site could benefit from a few templates that would aid in indexing/categorizing the entries as content is migrated, and ParserFunctions would make some really impressive things possible... but installing any extension or not would be up to you.&lt;br /&gt;
&lt;br /&gt;
Also, do you have any feelings about us users creating templates in the Template namespace, which we could use to maintain the content?  Just wanted to get your thumbs-up before/if I did something like that.  Just want to play nice.  Love the site, and the new wiki format.&lt;br /&gt;
&lt;br /&gt;
- PT [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 03:05, 1 August 2012 (EDT)&lt;br /&gt;
:ParserFunctions are awesome, yup!  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 06:56, 1 August 2012 (EDT)&lt;br /&gt;
::Yes to both.  I have enabled ParserFunctions and Templates sound like a great idea.  IronyChef, please send me an email at the address on the blog and I'll make you an admin if necessary to edit templates. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 08:03, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Robots.txt==&lt;br /&gt;
I'm not sure how to set it up, but if you could edit the robots.txt file to exclude the contents of [[:Category:Noindexed pages]]?  I've created a [[Explain XKCD:Sandbox|Sandbox]] for people to test the unfamiliar features in, and you're probably not going to want that indexed by the search engines. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:47, 1 August 2012 (EDT)&lt;br /&gt;
:Apparently you can edit it through [[MediaWiki:Robots.txt]], but I'm not experienced enough to know what will happen if you block a url that runs through a .php page.  (Perhaps nothing?  Perhaps it blocks everything?)  Is there any chance of moving the wiki to use /wiki/articlename urls like Wikipedia does rather than the current /wiki/index.php?title=articlename ?  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:43, 1 August 2012 (EDT)&lt;br /&gt;
::: /wiki/articlename would be great.  Been trying to figure out how to make it work for days.  Let me know if you know how. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:11, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
For URL rewritung, have a look at mediawiki.org: [http://www.mediawiki.org/wiki/Manual:Short_URL Short URL] or for [http://www.mediawiki.org/wiki/Manual:Short_URL/Apache Apache]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:49, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Bugging you again.... ==&lt;br /&gt;
&lt;br /&gt;
Could you take a look at [//www.explainxkcd.com/wiki/index.php?limit=10000&amp;amp;tagfilter=&amp;amp;title=Special%3AContributions&amp;amp;contribs=user&amp;amp;target=Philosopher&amp;amp;namespace=8&amp;amp;year=&amp;amp;month=-1] and tell me if I'm thinking in about the same way as you are here?  Also, I've brought up [[MediaWiki:Tagline]] and [[Explain XKCD:Community portal]], as it'd be cool to have a tagline. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:46, 1 August 2012 (EDT)&lt;br /&gt;
:With you 100% on the File Delete reasons.  Thanks.  I agree also about having a tagline.  What do you think it should be? --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:13, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Idea ==&lt;br /&gt;
&lt;br /&gt;
Hi&lt;br /&gt;
&lt;br /&gt;
I created a draft for the comic pages. It's still work in progress, but I'd like to retrieve feedback.&lt;br /&gt;
&lt;br /&gt;
Also, maybe we could autmatically import comics using the JSON data Randall gives us ([http://xkcd.com/614/info.0.json]). This way, we could also include transcripts. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:23, 1 August 2012 (EDT)&lt;br /&gt;
: Hm, I should add a link to my draft: [[User:SlashMe/Testpage]] ;-) --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 06:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
I updated the page, including links to the next/previous comic similar to [[Template:ComicHeader]]. I used comic 472, because it has a lot of metadata (link, news, HTML title, etc.). --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 07:32, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Header template ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've created a template called [[Template:ComicHeader]], which might make things easier when creating comic pages (and also provide better consistency between the pages). I've used it on the [[Internal monologue]] page, to display the comic number and the date it was published. The template also adds the page to the [[:Category:Comics|Comics]] category.&lt;br /&gt;
&lt;br /&gt;
You just need to add:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{ComicHeader|1089|August 1, 2012}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
…to the start of the page (replacing the comic number and date).&lt;br /&gt;
&lt;br /&gt;
I'll try to make the template look a bit nicer, but the great thing about templates of course, is that once they're updated, the changes are reflected on all the pages that include that template. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:46, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:By the way, I'm thinking of maybe programming something that would allow you to easily import the comic image and alt text from xkcd without having to upload the images manually and the like. You'd just have to host a single PHP file on your server and make a few changes to the MediaWiki configuration. Of course, you'd be able to see source code and everything to make sure I'm not trying to do something fishy. :-P Let me know what you think. :-) --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:54, 1 August 2012 (EDT)&lt;br /&gt;
::Yirba - I like the idea.  My email is explain@explainxkcd.com - send me what you put together and we can sort it out. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 19:37, 1 August 2012 (EDT)&lt;br /&gt;
::Ditto on the Template.  Up-vote.  Any thought on harvesting the pre-wiki content from ExplainXKCD with some sort of a Python, Perl, or PHP script?  (That sounds more like a 'bot than something that would have to be hosted, though.) [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:52, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I was thinking of putting it into a infobox, please [[#Idea|see above]]. I also intended to automatically extract data from xkcd, which would lack descriptions, but at least we would have data like title, image and transcripts. Also, there are some other data like links (e.g. 832), news (which are displayed in xkcd's header, e.g. 739) and titles which contain HTML (259 and 472). I also extracted all those data. When we agree on a page layout, I could begin programming a bot. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 06:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Hmmm… an infobox may be a good idea. And a bot that imports data from xkcd might be handy. Anyway, here's something I programmed that would allow for access to the xkcd API from the wiki itself. Essentially, you'd put this xkcdinfo.php ([http://gist.github.com/3239432 source], [http://github.com/downloads/Yirba/yirba.github.com/xkcdinfo.php download]) file somewhere on the server (e.g. at http://www.explainxkcd.com/xkcdinfo.php) and [http://www.mediawiki.org/wiki/Manual:Interwiki#Adding_a_new_website_for_interwiki_linking include it in MediaWiki's interwiki table] (ensuring iw_trans == 1):&lt;br /&gt;
&amp;lt;pre&amp;gt;INSERT INTO interwiki (iw_prefix, iw_url, iw_local, iw_trans) VALUES ('xkcdinfo', 'http://www.explainxkcd.com/xkcdinfo.php?input=$1', 0, 1);&amp;lt;/pre&amp;gt;&lt;br /&gt;
::::After [http://www.mediawiki.org/wiki/Manual:$wgEnableScaryTranscluding enabling scary transclusion] in LocalSettings.php, you'd then be able to send queries to the xkcd JSON API via this file. In other words, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:32-title}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; would make comic 32's title appear. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:55-alt}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; would make comic 55's image text appear. I've also set it so you could enter &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:100-embed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, and it would make the comic 100 image appear on the wiki page. Feel free to use it however you want (if at all), and modify the code should you wish. (Hint: Using the number 0 for the comic number will query the most recent comic, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:0-num}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; will return the current comic number. Also, adding &amp;quot;raw:&amp;quot; before &amp;quot;xkcdinfo:&amp;quot; might be more useful in some instances. E.g.: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{raw:xkcdinfo:555-title}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;)--[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 14:50, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::: Nice idea, altough this would mean to load all data from xkcd whenever a page is &amp;lt;del&amp;gt;viewed&amp;lt;/del&amp;gt;&amp;lt;ins&amp;gt;edited&amp;lt;/ins&amp;gt; (I think this is the way MediaWiki caches the data). This is a lot of traffic for little data. I'd say to include the metadata statically, but linking the external image seems a good thing to me. Again, it'd be great if you gave me feedback for [[User:SlashMe/Testpage|my idea]]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::::Yes, the data would be loaded from xkcd for each edit. You can, however, substitute (subst) the template for data that is unlikely to change. And therefore the data would indeed be stored statically. I like the layout you've come up with. It could perhaps do with a bit of tweaking here and there, but the general idea is good. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 17:16, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Main Image ==&lt;br /&gt;
&lt;br /&gt;
The main image (top left) is not the best image ever. You really need to update it.&lt;br /&gt;
&lt;br /&gt;
Maybe: &lt;br /&gt;
[[File:wiki.png]]&lt;br /&gt;
&lt;br /&gt;
Just an idea, because that text looks weird, or at least please add a transparent background instead of white for the logo (and center the text). --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 21:39, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: I like it.  What does everyone else think?  (PS - don't forget to sign your entries on this page!) --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 21:18, 1 August 2012 (EDT)&lt;br /&gt;
: I could go with that.  Had been kicking around some ideas, and if I had any artistic aptitude, it might have looked very much like that: the black-hat retort; alternately: the lowercase blue '''xkcd''' that RM uses (sans comic figure watermark) with a &amp;quot;Explain&amp;quot; in a hand-written typeface in some other color splashed across the top left part of those letters.  And yes, definitely with transparency.   Just thoughts... ultimately, whatever the consensus is... [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:51, 2 August 2012 (EDT)&lt;br /&gt;
:: Something like one of the following?&lt;br /&gt;
::[[File:wiki2.png]][[File:wiki3.png]][[File:wiki4.png]]&lt;br /&gt;
:: --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 12:40, 2 August 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Administrators&amp;diff=711</id>
		<title>explain xkcd:Administrators</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Administrators&amp;diff=711"/>
				<updated>2012-08-02T21:12:31Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: update list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are the talk pages for all the admins of the wiki:&lt;br /&gt;
&lt;br /&gt;
*[[User talk:IronyChef]]&lt;br /&gt;
*[[User talk:Jeff]] (bureaucrat)&lt;br /&gt;
*[[User talk:Mynotoar]]&lt;br /&gt;
*[[User talk:Philosopher]]&lt;br /&gt;
*[[User talk:Waldir]]&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=571:_Can%27t_Sleep&amp;diff=683</id>
		<title>571: Can't Sleep</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=571:_Can%27t_Sleep&amp;diff=683"/>
				<updated>2012-08-02T18:53:34Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: fix comic number&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ComicHeader|571|April 20, 2009}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cant_sleep.png|If androids someday DO dream of electric sheep, don't forget to declare sheepCount as a long int.]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Image Text ==&lt;br /&gt;
If androids someday DO dream of electric sheep, don't forget to declare sheepCount as a long int.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
In this comic, [[Cueball]] is in bed and is having trouble sleeping. He tries the old standby of counting sheep as they jump over a fence, but upon reaching 32,767 sheep, the sheep all jump back over the fence and start counting up again from -32,768. This is because when an integral number is represented in a digital form, such as on a computer, the number's range is limited by the amount of space used to store it. When the greatest possible number given the storage space is exceeded, an arithmetic overflow occurs, which results in starting over at the least possible number given the storage space. This is not at all unlike a car's odometer. Imagine an odometer with six digits reaching 999999 miles. Upon driving one more mile, the digits will roll back over to 000000.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this case, the least and greatest possible numbers are -32,768 and 32,767, which implies that the storage space used would be two bytes. In addition, it's clear that the number is designated as a signed number, meaning that it can be either positive or negative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The image text refers to the 1968 Philip K. Dick science fiction novel ''Do Androids Dream of Electric Sheep?'', which was adapted into the perhaps more widely known Ridley Scott directed 1982 film ''Blade Runner''. The implication is that if we ever do create androids that dream of electric sheep, we should make sure to give them sufficient storage space to store numbers large enough such that an arithmetic overflow will be far less likely to occur, even if they count for a long time. A &amp;quot;long int&amp;quot; consists of four bytes rather than two, so instead of being limited to a range from -32,768 to 32,767 the number will be capable of storing numbers from -2,147,483,648 to 2,147,483,647. &amp;quot;sheepCount&amp;quot; is a possible name for a variable to be used in a computer program. Declaring a variable tells the computer that it should allocate a portion of memory to be associated with the variable name given. For those who might be unfamiliar with common programming practices, &amp;quot;sheepCount&amp;quot; is named using what is commonly referred to as CamelCase, meaning that all words in the name (&amp;quot;sheep&amp;quot; and &amp;quot;count&amp;quot;) are pushed together and the first letter of every word after the first is capitalized. This is one of several common approaches to naming variables in computer programming.&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=681</id>
		<title>User talk:Jeff</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=681"/>
				<updated>2012-08-02T18:51:18Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: /* Header template */ - add link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Jeff's talk page.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
Hey,&lt;br /&gt;
&lt;br /&gt;
You might consider [http://www.mediawiki.org/wiki/Extension:Comments Extension:Comments]. It acts basically like the comment system on the blog, so you could keep everything (article, comments) in one place. It's more conducive to casual conversation than the discussion page.&lt;br /&gt;
--[[User:Cyanfish|Cyanfish]] ([[User talk:Cyanfish|talk]]) 14:07, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Request ==&lt;br /&gt;
Hi Jeff,&lt;br /&gt;
&lt;br /&gt;
Just thought I'd run this up the flagpole... any thought about installing the ParserFunctions extension?  I think this site could benefit from a few templates that would aid in indexing/categorizing the entries as content is migrated, and ParserFunctions would make some really impressive things possible... but installing any extension or not would be up to you.&lt;br /&gt;
&lt;br /&gt;
Also, do you have any feelings about us users creating templates in the Template namespace, which we could use to maintain the content?  Just wanted to get your thumbs-up before/if I did something like that.  Just want to play nice.  Love the site, and the new wiki format.&lt;br /&gt;
&lt;br /&gt;
- PT [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 03:05, 1 August 2012 (EDT)&lt;br /&gt;
:ParserFunctions are awesome, yup!  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 06:56, 1 August 2012 (EDT)&lt;br /&gt;
::Yes to both.  I have enabled ParserFunctions and Templates sound like a great idea.  IronyChef, please send me an email at the address on the blog and I'll make you an admin if necessary to edit templates. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 08:03, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Robots.txt==&lt;br /&gt;
I'm not sure how to set it up, but if you could edit the robots.txt file to exclude the contents of [[:Category:Noindexed pages]]?  I've created a [[Explain XKCD:Sandbox|Sandbox]] for people to test the unfamiliar features in, and you're probably not going to want that indexed by the search engines. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:47, 1 August 2012 (EDT)&lt;br /&gt;
:Apparently you can edit it through [[MediaWiki:Robots.txt]], but I'm not experienced enough to know what will happen if you block a url that runs through a .php page.  (Perhaps nothing?  Perhaps it blocks everything?)  Is there any chance of moving the wiki to use /wiki/articlename urls like Wikipedia does rather than the current /wiki/index.php?title=articlename ?  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:43, 1 August 2012 (EDT)&lt;br /&gt;
::: /wiki/articlename would be great.  Been trying to figure out how to make it work for days.  Let me know if you know how. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:11, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
For URL rewritung, have a look at mediawiki.org: [http://www.mediawiki.org/wiki/Manual:Short_URL Short URL] or for [http://www.mediawiki.org/wiki/Manual:Short_URL/Apache Apache]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:49, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Bugging you again.... ==&lt;br /&gt;
&lt;br /&gt;
Could you take a look at [//www.explainxkcd.com/wiki/index.php?limit=10000&amp;amp;tagfilter=&amp;amp;title=Special%3AContributions&amp;amp;contribs=user&amp;amp;target=Philosopher&amp;amp;namespace=8&amp;amp;year=&amp;amp;month=-1] and tell me if I'm thinking in about the same way as you are here?  Also, I've brought up [[MediaWiki:Tagline]] and [[Explain XKCD:Community portal]], as it'd be cool to have a tagline. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:46, 1 August 2012 (EDT)&lt;br /&gt;
:With you 100% on the File Delete reasons.  Thanks.  I agree also about having a tagline.  What do you think it should be? --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:13, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Idea ==&lt;br /&gt;
&lt;br /&gt;
Hi&lt;br /&gt;
&lt;br /&gt;
I created a draft for the comic pages. It's still work in progress, but I'd like to retrieve feedback.&lt;br /&gt;
&lt;br /&gt;
Also, maybe we could autmatically import comics using the JSON data Randall gives us ([http://xkcd.com/614/info.0.json]). This way, we could also include transcripts. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:23, 1 August 2012 (EDT)&lt;br /&gt;
: Hm, I should add a link to my draft: [[User:SlashMe/Testpage]] ;-) --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 06:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
I updated the page, including links to the next/previous comic similar to [[Template:ComicHeader]]. I used comic 472, because it has a lot of metadata (link, news, HTML title, etc.). --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 07:32, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Header template ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've created a template called [[Template:ComicHeader]], which might make things easier when creating comic pages (and also provide better consistency between the pages). I've used it on the [[Internal monologue]] page, to display the comic number and the date it was published. The template also adds the page to the [[:Category:Comics|Comics]] category.&lt;br /&gt;
&lt;br /&gt;
You just need to add:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{ComicHeader|1089|August 1, 2012}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
…to the start of the page (replacing the comic number and date).&lt;br /&gt;
&lt;br /&gt;
I'll try to make the template look a bit nicer, but the great thing about templates of course, is that once they're updated, the changes are reflected on all the pages that include that template. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:46, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:By the way, I'm thinking of maybe programming something that would allow you to easily import the comic image and alt text from xkcd without having to upload the images manually and the like. You'd just have to host a single PHP file on your server and make a few changes to the MediaWiki configuration. Of course, you'd be able to see source code and everything to make sure I'm not trying to do something fishy. :-P Let me know what you think. :-) --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:54, 1 August 2012 (EDT)&lt;br /&gt;
::Yirba - I like the idea.  My email is explain@explainxkcd.com - send me what you put together and we can sort it out. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 19:37, 1 August 2012 (EDT)&lt;br /&gt;
::Ditto on the Template.  Up-vote.  Any thought on harvesting the pre-wiki content from ExplainXKCD with some sort of a Python, Perl, or PHP script?  (That sounds more like a 'bot than something that would have to be hosted, though.) [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:52, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I was thinking of putting it into a infobox, please [[#Idea|see above]]. I also intended to automatically extract data from xkcd, which would lack descriptions, but at least we would have data like title, image and transcripts. Also, there are some other data like links (e.g. 832), news (which are displayed in xkcd's header, e.g. 739) and titles which contain HTML (259 and 472). I also extracted all those data. When we agree on a page layout, I could begin programming a bot. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 06:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Hmmm… an infobox may be a good idea. And a bot that imports data from xkcd might be handy. Anyway, here's something I programmed that would allow for access to the xkcd API from the wiki itself. Essentially, you'd put this xkcdinfo.php ([http://gist.github.com/3239432 source], [http://github.com/downloads/Yirba/yirba.github.com/xkcdinfo.php download]) file somewhere on the server (e.g. at http://www.explainxkcd.com/xkcdinfo.php) and [http://www.mediawiki.org/wiki/Manual:Interwiki#Adding_a_new_website_for_interwiki_linking include it in MediaWiki's interwiki table] (ensuring iw_trans == 1):&lt;br /&gt;
&amp;lt;pre&amp;gt;INSERT INTO interwiki (iw_prefix, iw_url, iw_local, iw_trans) VALUES ('xkcdinfo', 'http://www.explainxkcd.com/xkcdinfo.php?input=$1', 0, 1);&amp;lt;/pre&amp;gt;&lt;br /&gt;
::::After [http://www.mediawiki.org/wiki/Manual:$wgEnableScaryTranscluding enabling scary transclusion] in LocalSettings.php, you'd then be able to send queries to the xkcd JSON API via this file. In other words, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:32-title}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; would make comic 32's title appear. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:55-alt}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; would make comic 55's image text appear. I've also set it so you could enter &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:100-embed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, and it would make the comic 100 image appear on the wiki page. Feel free to use it however you want (if at all), and modify the code should you wish. (Hint: Using the number 0 for the comic number will query the most recent comic, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:0-num}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; will return the current comic number. Also, adding &amp;quot;raw:&amp;quot; before &amp;quot;xkcdinfo:&amp;quot; might be more useful in some instances. E.g.: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{raw:xkcdinfo:555-title}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;)--[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 14:50, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Main Image ==&lt;br /&gt;
&lt;br /&gt;
The main image (top left) is not the best image ever. You really need to update it.&lt;br /&gt;
&lt;br /&gt;
Maybe: &lt;br /&gt;
[[File:wiki.png]]&lt;br /&gt;
&lt;br /&gt;
Just an idea, because that text looks weird, or at least please add a transparent background instead of white for the logo (and center the text). --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 21:39, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: I like it.  What does everyone else think?  (PS - don't forget to sign your entries on this page!) --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 21:18, 1 August 2012 (EDT)&lt;br /&gt;
: I could go with that.  Had been kicking around some ideas, and if I had any artistic aptitude, it might have looked very much like that: the black-hat retort; alternately: the lowercase blue '''xkcd''' that RM uses (sans comic figure watermark) with a &amp;quot;Explain&amp;quot; in a hand-written typeface in some other color splashed across the top left part of those letters.  And yes, definitely with transparency.   Just thoughts... ultimately, whatever the consensus is... [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:51, 2 August 2012 (EDT)&lt;br /&gt;
:: Something like one of the following?&lt;br /&gt;
::[[File:wiki2.png]][[File:wiki3.png]][[File:wiki4.png]]&lt;br /&gt;
:: --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 12:40, 2 August 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=680</id>
		<title>User talk:Jeff</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=680"/>
				<updated>2012-08-02T18:50:22Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: /* Header template */ - reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Jeff's talk page.&lt;br /&gt;
&lt;br /&gt;
== Comments ==&lt;br /&gt;
Hey,&lt;br /&gt;
&lt;br /&gt;
You might consider [http://www.mediawiki.org/wiki/Extension:Comments Extension:Comments]. It acts basically like the comment system on the blog, so you could keep everything (article, comments) in one place. It's more conducive to casual conversation than the discussion page.&lt;br /&gt;
--[[User:Cyanfish|Cyanfish]] ([[User talk:Cyanfish|talk]]) 14:07, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Request ==&lt;br /&gt;
Hi Jeff,&lt;br /&gt;
&lt;br /&gt;
Just thought I'd run this up the flagpole... any thought about installing the ParserFunctions extension?  I think this site could benefit from a few templates that would aid in indexing/categorizing the entries as content is migrated, and ParserFunctions would make some really impressive things possible... but installing any extension or not would be up to you.&lt;br /&gt;
&lt;br /&gt;
Also, do you have any feelings about us users creating templates in the Template namespace, which we could use to maintain the content?  Just wanted to get your thumbs-up before/if I did something like that.  Just want to play nice.  Love the site, and the new wiki format.&lt;br /&gt;
&lt;br /&gt;
- PT [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 03:05, 1 August 2012 (EDT)&lt;br /&gt;
:ParserFunctions are awesome, yup!  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 06:56, 1 August 2012 (EDT)&lt;br /&gt;
::Yes to both.  I have enabled ParserFunctions and Templates sound like a great idea.  IronyChef, please send me an email at the address on the blog and I'll make you an admin if necessary to edit templates. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 08:03, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Robots.txt==&lt;br /&gt;
I'm not sure how to set it up, but if you could edit the robots.txt file to exclude the contents of [[:Category:Noindexed pages]]?  I've created a [[Explain XKCD:Sandbox|Sandbox]] for people to test the unfamiliar features in, and you're probably not going to want that indexed by the search engines. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:47, 1 August 2012 (EDT)&lt;br /&gt;
:Apparently you can edit it through [[MediaWiki:Robots.txt]], but I'm not experienced enough to know what will happen if you block a url that runs through a .php page.  (Perhaps nothing?  Perhaps it blocks everything?)  Is there any chance of moving the wiki to use /wiki/articlename urls like Wikipedia does rather than the current /wiki/index.php?title=articlename ?  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:43, 1 August 2012 (EDT)&lt;br /&gt;
::: /wiki/articlename would be great.  Been trying to figure out how to make it work for days.  Let me know if you know how. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:11, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
For URL rewritung, have a look at mediawiki.org: [http://www.mediawiki.org/wiki/Manual:Short_URL Short URL] or for [http://www.mediawiki.org/wiki/Manual:Short_URL/Apache Apache]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:49, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Bugging you again.... ==&lt;br /&gt;
&lt;br /&gt;
Could you take a look at [//www.explainxkcd.com/wiki/index.php?limit=10000&amp;amp;tagfilter=&amp;amp;title=Special%3AContributions&amp;amp;contribs=user&amp;amp;target=Philosopher&amp;amp;namespace=8&amp;amp;year=&amp;amp;month=-1] and tell me if I'm thinking in about the same way as you are here?  Also, I've brought up [[MediaWiki:Tagline]] and [[Explain XKCD:Community portal]], as it'd be cool to have a tagline. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:46, 1 August 2012 (EDT)&lt;br /&gt;
:With you 100% on the File Delete reasons.  Thanks.  I agree also about having a tagline.  What do you think it should be? --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:13, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Idea ==&lt;br /&gt;
&lt;br /&gt;
Hi&lt;br /&gt;
&lt;br /&gt;
I created a draft for the comic pages. It's still work in progress, but I'd like to retrieve feedback.&lt;br /&gt;
&lt;br /&gt;
Also, maybe we could autmatically import comics using the JSON data Randall gives us ([http://xkcd.com/614/info.0.json]). This way, we could also include transcripts. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:23, 1 August 2012 (EDT)&lt;br /&gt;
: Hm, I should add a link to my draft: [[User:SlashMe/Testpage]] ;-) --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 06:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
I updated the page, including links to the next/previous comic similar to [[Template:ComicHeader]]. I used comic 472, because it has a lot of metadata (link, news, HTML title, etc.). --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 07:32, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Header template ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've created a template called [[Template:ComicHeader]], which might make things easier when creating comic pages (and also provide better consistency between the pages). I've used it on the [[Internal monologue]] page, to display the comic number and the date it was published. The template also adds the page to the [[:Category:Comics|Comics]] category.&lt;br /&gt;
&lt;br /&gt;
You just need to add:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{ComicHeader|1089|August 1, 2012}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
…to the start of the page (replacing the comic number and date).&lt;br /&gt;
&lt;br /&gt;
I'll try to make the template look a bit nicer, but the great thing about templates of course, is that once they're updated, the changes are reflected on all the pages that include that template. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:46, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:By the way, I'm thinking of maybe programming something that would allow you to easily import the comic image and alt text from xkcd without having to upload the images manually and the like. You'd just have to host a single PHP file on your server and make a few changes to the MediaWiki configuration. Of course, you'd be able to see source code and everything to make sure I'm not trying to do something fishy. :-P Let me know what you think. :-) --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:54, 1 August 2012 (EDT)&lt;br /&gt;
::Yirba - I like the idea.  My email is explain@explainxkcd.com - send me what you put together and we can sort it out. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 19:37, 1 August 2012 (EDT)&lt;br /&gt;
::Ditto on the Template.  Up-vote.  Any thought on harvesting the pre-wiki content from ExplainXKCD with some sort of a Python, Perl, or PHP script?  (That sounds more like a 'bot than something that would have to be hosted, though.) [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:52, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: I was thinking of putting it into a infobox, please [[#Idea|see above]]. I also intended to automatically extract data from xkcd, which would lack descriptions, but at least we would have data like title, image and transcripts. Also, there are some other data like links (e.g. 832), news (which are displayed in xkcd's header, e.g. 739) and titles which contain HTML (259 and 472). I also extracted all those data. When we agree on a page layout, I could begin programming a bot. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 06:54, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::Hmmm… an infobox may be a good idea. And a bot that imports data from xkcd might be handy. Anyway, here's something I programmed that would allow for access to the xkcd API from the wiki itself. Essentially, you'd put this xkcdinfo.php ([http://gist.github.com/3239432 source], [http://github.com/downloads/Yirba/yirba.github.com/xkcdinfo.php download]) file somewhere on the server (e.g. at http://www.explainxkcd.com/xkcdinfo.php) and include it in MediaWiki's interwiki table (ensuring iw_trans == 1):&lt;br /&gt;
&amp;lt;pre&amp;gt;INSERT INTO interwiki (iw_prefix, iw_url, iw_local, iw_trans) VALUES ('xkcdinfo', 'http://www.explainxkcd.com/xkcdinfo.php?input=$1', 0, 1);&amp;lt;/pre&amp;gt;&lt;br /&gt;
::::After [http://www.mediawiki.org/wiki/Manual:$wgEnableScaryTranscluding enabling scary transclusion] in LocalSettings.php, you'd then be able to send queries to the xkcd JSON API via this file. In other words, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:32-title}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; would make comic 32's title appear. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:55-alt}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; would make comic 55's image text appear. I've also set it so you could enter &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:100-embed}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, and it would make the comic 100 image appear on the wiki page. Feel free to use it however you want (if at all), and modify the code should you wish. (Hint: Using the number 0 for the comic number will query the most recent comic, so &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{xkcdinfo:0-num}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; will return the current comic number. Also, adding &amp;quot;raw:&amp;quot; before &amp;quot;xkcdinfo:&amp;quot; might be more useful in some instances. E.g.: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{raw:xkcdinfo:555-title}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;)--[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 14:50, 2 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Main Image ==&lt;br /&gt;
&lt;br /&gt;
The main image (top left) is not the best image ever. You really need to update it.&lt;br /&gt;
&lt;br /&gt;
Maybe: &lt;br /&gt;
[[File:wiki.png]]&lt;br /&gt;
&lt;br /&gt;
Just an idea, because that text looks weird, or at least please add a transparent background instead of white for the logo (and center the text). --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 21:39, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: I like it.  What does everyone else think?  (PS - don't forget to sign your entries on this page!) --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 21:18, 1 August 2012 (EDT)&lt;br /&gt;
: I could go with that.  Had been kicking around some ideas, and if I had any artistic aptitude, it might have looked very much like that: the black-hat retort; alternately: the lowercase blue '''xkcd''' that RM uses (sans comic figure watermark) with a &amp;quot;Explain&amp;quot; in a hand-written typeface in some other color splashed across the top left part of those letters.  And yes, definitely with transparency.   Just thoughts... ultimately, whatever the consensus is... [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 01:51, 2 August 2012 (EDT)&lt;br /&gt;
:: Something like one of the following?&lt;br /&gt;
::[[File:wiki2.png]][[File:wiki3.png]][[File:wiki4.png]]&lt;br /&gt;
:: --[[User:Grep|Grep]] ([[User talk:Grep|talk]]) 12:40, 2 August 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=481</id>
		<title>User talk:Jeff</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=481"/>
				<updated>2012-08-01T22:54:02Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: /* Header template */ - another comment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Jeff's talk page.&lt;br /&gt;
&lt;br /&gt;
== Request ==&lt;br /&gt;
Hi Jeff,&lt;br /&gt;
&lt;br /&gt;
Just thought I'd run this up the flagpole... any thought about installing the ParserFunctions extension?  I think this site could benefit from a few templates that would aid in indexing/categorizing the entries as content is migrated, and ParserFunctions would make some really impressive things possible... but installing any extension or not would be up to you.&lt;br /&gt;
&lt;br /&gt;
Also, do you have any feelings about us users creating templates in the Template namespace, which we could use to maintain the content?  Just wanted to get your thumbs-up before/if I did something like that.  Just want to play nice.  Love the site, and the new wiki format.&lt;br /&gt;
&lt;br /&gt;
- PT [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 03:05, 1 August 2012 (EDT)&lt;br /&gt;
:ParserFunctions are awesome, yup!  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 06:56, 1 August 2012 (EDT)&lt;br /&gt;
::Yes to both.  I have enabled ParserFunctions and Templates sound like a great idea.  IronyChef, please send me an email at the address on the blog and I'll make you an admin if necessary to edit templates. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 08:03, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Robots.txt==&lt;br /&gt;
I'm not sure how to set it up, but if you could edit the robots.txt file to exclude the contents of [[:Category:Noindexed pages]]?  I've created a [[Explain XKCD:Sandbox|Sandbox]] for people to test the unfamiliar features in, and you're probably not going to want that indexed by the search engines. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:47, 1 August 2012 (EDT)&lt;br /&gt;
:Apparently you can edit it through [[MediaWiki:Robots.txt]], but I'm not experienced enough to know what will happen if you block a url that runs through a .php page.  (Perhaps nothing?  Perhaps it blocks everything?)  Is there any chance of moving the wiki to use /wiki/articlename urls like Wikipedia does rather than the current /wiki/index.php?title=articlename ?  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:43, 1 August 2012 (EDT)&lt;br /&gt;
::: /wiki/articlename would be great.  Been trying to figure out how to make it work for days.  Let me know if you know how. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:11, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
For URL rewritung, have a look at mediawiki.org: [http://www.mediawiki.org/wiki/Manual:Short_URL Short URL] or for [http://www.mediawiki.org/wiki/Manual:Short_URL/Apache Apache]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:49, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Bugging you again.... ==&lt;br /&gt;
&lt;br /&gt;
Could you take a look at [//www.explainxkcd.com/wiki/index.php?limit=10000&amp;amp;tagfilter=&amp;amp;title=Special%3AContributions&amp;amp;contribs=user&amp;amp;target=Philosopher&amp;amp;namespace=8&amp;amp;year=&amp;amp;month=-1] and tell me if I'm thinking in about the same way as you are here?  Also, I've brought up [[MediaWiki:Tagline]] and [[Explain XKCD:Community portal]], as it'd be cool to have a tagline. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:46, 1 August 2012 (EDT)&lt;br /&gt;
:With you 100% on the File Delete reasons.  Thanks.  I agree also about having a tagline.  What do you think it should be? --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:13, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Idea ==&lt;br /&gt;
&lt;br /&gt;
Hi&lt;br /&gt;
&lt;br /&gt;
I created a draft for the comic pages. It's still work in progress, but I'd like to retrieve feedback.&lt;br /&gt;
&lt;br /&gt;
Also, maybe we could autmatically import comics using the JSON data Randall gives us ([http://xkcd.com/614/info.0.json]). This way, we could also include transcripts. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:23, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Header template ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've created a template called [[Template:ComicHeader]], which might make things easier when creating comic pages (and also provide better consistency between the pages). I've used it on the [[Internal monologue]] page, to display the comic number and the date it was published. The template also adds the page to the [[:Category:Comics|Comics]] category.&lt;br /&gt;
&lt;br /&gt;
You just need to add:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{ComicHeader|1089|August 1, 2012}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
…to the start of the page (replacing the comic number and date).&lt;br /&gt;
&lt;br /&gt;
I'll try to make the template look a bit nicer, but the great thing about templates of course, is that once they're updated, the changes are reflected on all the pages that include that template. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:46, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
:By the way, I'm thinking of maybe programming something that would allow you to easily import the comic image and alt text from xkcd without having to upload the images manually and the like. You'd just have to host a single PHP file on your server and make a few changes to the MediaWiki configuration. Of course, you'd be able to see source code and everything to make sure I'm not trying to do something fishy. :-P Let me know what you think. :-) --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:54, 1 August 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=480</id>
		<title>User talk:Jeff</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=480"/>
				<updated>2012-08-01T22:46:47Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: /* Header template */ - sign unsigned comment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Jeff's talk page.&lt;br /&gt;
&lt;br /&gt;
== Request ==&lt;br /&gt;
Hi Jeff,&lt;br /&gt;
&lt;br /&gt;
Just thought I'd run this up the flagpole... any thought about installing the ParserFunctions extension?  I think this site could benefit from a few templates that would aid in indexing/categorizing the entries as content is migrated, and ParserFunctions would make some really impressive things possible... but installing any extension or not would be up to you.&lt;br /&gt;
&lt;br /&gt;
Also, do you have any feelings about us users creating templates in the Template namespace, which we could use to maintain the content?  Just wanted to get your thumbs-up before/if I did something like that.  Just want to play nice.  Love the site, and the new wiki format.&lt;br /&gt;
&lt;br /&gt;
- PT [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 03:05, 1 August 2012 (EDT)&lt;br /&gt;
:ParserFunctions are awesome, yup!  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 06:56, 1 August 2012 (EDT)&lt;br /&gt;
::Yes to both.  I have enabled ParserFunctions and Templates sound like a great idea.  IronyChef, please send me an email at the address on the blog and I'll make you an admin if necessary to edit templates. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 08:03, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Robots.txt==&lt;br /&gt;
I'm not sure how to set it up, but if you could edit the robots.txt file to exclude the contents of [[:Category:Noindexed pages]]?  I've created a [[Explain XKCD:Sandbox|Sandbox]] for people to test the unfamiliar features in, and you're probably not going to want that indexed by the search engines. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:47, 1 August 2012 (EDT)&lt;br /&gt;
:Apparently you can edit it through [[MediaWiki:Robots.txt]], but I'm not experienced enough to know what will happen if you block a url that runs through a .php page.  (Perhaps nothing?  Perhaps it blocks everything?)  Is there any chance of moving the wiki to use /wiki/articlename urls like Wikipedia does rather than the current /wiki/index.php?title=articlename ?  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:43, 1 August 2012 (EDT)&lt;br /&gt;
::: /wiki/articlename would be great.  Been trying to figure out how to make it work for days.  Let me know if you know how. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:11, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
For URL rewritung, have a look at mediawiki.org: [http://www.mediawiki.org/wiki/Manual:Short_URL Short URL] or for [http://www.mediawiki.org/wiki/Manual:Short_URL/Apache Apache]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:49, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Bugging you again.... ==&lt;br /&gt;
&lt;br /&gt;
Could you take a look at [//www.explainxkcd.com/wiki/index.php?limit=10000&amp;amp;tagfilter=&amp;amp;title=Special%3AContributions&amp;amp;contribs=user&amp;amp;target=Philosopher&amp;amp;namespace=8&amp;amp;year=&amp;amp;month=-1] and tell me if I'm thinking in about the same way as you are here?  Also, I've brought up [[MediaWiki:Tagline]] and [[Explain XKCD:Community portal]], as it'd be cool to have a tagline. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:46, 1 August 2012 (EDT)&lt;br /&gt;
:With you 100% on the File Delete reasons.  Thanks.  I agree also about having a tagline.  What do you think it should be? --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:13, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Idea ==&lt;br /&gt;
&lt;br /&gt;
Hi&lt;br /&gt;
&lt;br /&gt;
I created a draft for the comic pages. It's still work in progress, but I'd like to retrieve feedback.&lt;br /&gt;
&lt;br /&gt;
Also, maybe we could autmatically import comics using the JSON data Randall gives us ([http://xkcd.com/614/info.0.json]). This way, we could also include transcripts. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:23, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Header template ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've created a template called [[Template:ComicHeader]], which might make things easier when creating comic pages (and also provide better consistency between the pages). I've used it on the [[Internal monologue]] page, to display the comic number and the date it was published. The template also adds the page to the [[:Category:Comics|Comics]] category.&lt;br /&gt;
&lt;br /&gt;
You just need to add:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{ComicHeader|1089|August 1, 2012}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
…to the start of the page (replacing the comic number and date).&lt;br /&gt;
&lt;br /&gt;
I'll try to make the template look a bit nicer, but the great thing about templates of course, is that once they're updated, the changes are reflected on all the pages that include that template. --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 18:46, 1 August 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1088:_Five_Years&amp;diff=479</id>
		<title>1088: Five Years</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1088:_Five_Years&amp;diff=479"/>
				<updated>2012-08-01T22:45:39Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: use ComicHeader template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ComicHeader|1088|July 30th, 2012}}&lt;br /&gt;
&lt;br /&gt;
[[File:Five_years.png]]&lt;br /&gt;
&lt;br /&gt;
== Image Text ==&lt;br /&gt;
Well, no further questions. You're hired!' 'Oh, sorry! I'm no longer interested. There's a bunch of future I gotta go check out!&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
This comic is a take on the common and cliched job interview question &amp;quot;Where do you see yourself in 5 years&amp;quot;.  The interviewer is attempting to see where the job seeker would like to take their career and also what their hopes and dreams are etc.&lt;br /&gt;
&lt;br /&gt;
In the comic, instead of explaining where he would like to be in 5 years, [[Beret Guy]] appears to advance time 5 years while they are both still sitting in the same spot and exactly still.&lt;br /&gt;
&lt;br /&gt;
The image text is a continuation of their conversation in which [[Beret Guy]] turns down the job because he wants to find out what happened the last 5 years while they were both sitting in that room.&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=476</id>
		<title>User talk:Jeff</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:Jeff&amp;diff=476"/>
				<updated>2012-08-01T22:16:08Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: /* Header template */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Jeff's talk page.&lt;br /&gt;
&lt;br /&gt;
== Request ==&lt;br /&gt;
Hi Jeff,&lt;br /&gt;
&lt;br /&gt;
Just thought I'd run this up the flagpole... any thought about installing the ParserFunctions extension?  I think this site could benefit from a few templates that would aid in indexing/categorizing the entries as content is migrated, and ParserFunctions would make some really impressive things possible... but installing any extension or not would be up to you.&lt;br /&gt;
&lt;br /&gt;
Also, do you have any feelings about us users creating templates in the Template namespace, which we could use to maintain the content?  Just wanted to get your thumbs-up before/if I did something like that.  Just want to play nice.  Love the site, and the new wiki format.&lt;br /&gt;
&lt;br /&gt;
- PT [[User:IronyChef|IronyChef]] ([[User talk:IronyChef|talk]]) 03:05, 1 August 2012 (EDT)&lt;br /&gt;
:ParserFunctions are awesome, yup!  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 06:56, 1 August 2012 (EDT)&lt;br /&gt;
::Yes to both.  I have enabled ParserFunctions and Templates sound like a great idea.  IronyChef, please send me an email at the address on the blog and I'll make you an admin if necessary to edit templates. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 08:03, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Robots.txt==&lt;br /&gt;
I'm not sure how to set it up, but if you could edit the robots.txt file to exclude the contents of [[:Category:Noindexed pages]]?  I've created a [[Explain XKCD:Sandbox|Sandbox]] for people to test the unfamiliar features in, and you're probably not going to want that indexed by the search engines. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:47, 1 August 2012 (EDT)&lt;br /&gt;
:Apparently you can edit it through [[MediaWiki:Robots.txt]], but I'm not experienced enough to know what will happen if you block a url that runs through a .php page.  (Perhaps nothing?  Perhaps it blocks everything?)  Is there any chance of moving the wiki to use /wiki/articlename urls like Wikipedia does rather than the current /wiki/index.php?title=articlename ?  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:43, 1 August 2012 (EDT)&lt;br /&gt;
::: /wiki/articlename would be great.  Been trying to figure out how to make it work for days.  Let me know if you know how. --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:11, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
For URL rewritung, have a look at mediawiki.org: [http://www.mediawiki.org/wiki/Manual:Short_URL Short URL] or for [http://www.mediawiki.org/wiki/Manual:Short_URL/Apache Apache]. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:49, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Bugging you again.... ==&lt;br /&gt;
&lt;br /&gt;
Could you take a look at [//www.explainxkcd.com/wiki/index.php?limit=10000&amp;amp;tagfilter=&amp;amp;title=Special%3AContributions&amp;amp;contribs=user&amp;amp;target=Philosopher&amp;amp;namespace=8&amp;amp;year=&amp;amp;month=-1] and tell me if I'm thinking in about the same way as you are here?  Also, I've brought up [[MediaWiki:Tagline]] and [[Explain XKCD:Community portal]], as it'd be cool to have a tagline. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 10:46, 1 August 2012 (EDT)&lt;br /&gt;
:With you 100% on the File Delete reasons.  Thanks.  I agree also about having a tagline.  What do you think it should be? --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:13, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Idea ==&lt;br /&gt;
&lt;br /&gt;
Hi&lt;br /&gt;
&lt;br /&gt;
I created a draft for the comic pages. It's still work in progress, but I'd like to retrieve feedback.&lt;br /&gt;
&lt;br /&gt;
Also, maybe we could autmatically import comics using the JSON data Randall gives us ([http://xkcd.com/614/info.0.json]). This way, we could also include transcripts. --[[User:SlashMe|SlashMe]] ([[User talk:SlashMe|talk]]) 15:23, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Header template ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've created a template called [[Template:ComicHeader]], which might make things easier when creating comic pages (and also provide better consistency between the pages). I've used it on the [[Internal monologue]] page, to display the comic number and the date it was published. The template also adds the page to the [[:Category:Comics|Comics]] category.&lt;br /&gt;
&lt;br /&gt;
You just need to add:&lt;br /&gt;
&amp;lt;pre&amp;gt;{{ComicHeader|1089|August 1, 2012}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
…to the start of the page (replacing the comic number and date).&lt;br /&gt;
&lt;br /&gt;
I'll try to make the template look a bit nicer, but the great thing about templates of course, is that once they're updated, the changes are reflected on all the pages that include that template.&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1089:_Internal_Monologue&amp;diff=475</id>
		<title>1089: Internal Monologue</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1089:_Internal_Monologue&amp;diff=475"/>
				<updated>2012-08-01T22:10:02Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: Use template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ComicHeader|1089|August 1, 2012}}&lt;br /&gt;
&lt;br /&gt;
[[File:Internal_monologue.png]]&lt;br /&gt;
&lt;br /&gt;
== Image Text ==&lt;br /&gt;
Oh right, eye contact. Ok, good, holding the eye contact ... holding ... still holding ... ok, too long! Getting weird! Quick, look thoughtfully into space and nod. Oh, dammit, said 'yeah' again!&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
[[Cueball]] attempts social interaction at what looks like a party as several people have drinks in their hands.  His internal monologue is just him trying to make sure he is doing the right things in the conversation and reacting appropriately and not saying &amp;quot;yeah&amp;quot; too much.&lt;br /&gt;
&lt;br /&gt;
The image text is a continuation of the internal monologue.&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Sandbox&amp;diff=470</id>
		<title>explain xkcd:Sandbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Sandbox&amp;diff=470"/>
				<updated>2012-08-01T22:04:17Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: revert test&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOINDEX__&lt;br /&gt;
Make changes, try things out, or just have fun with the wiki here!  Just leave everything above the line alone, please.&lt;br /&gt;
------&lt;br /&gt;
&lt;br /&gt;
Edit here!&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Sandbox&amp;diff=469</id>
		<title>explain xkcd:Sandbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=explain_xkcd:Sandbox&amp;diff=469"/>
				<updated>2012-08-01T22:02:46Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: test&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOINDEX__&lt;br /&gt;
Make changes, try things out, or just have fun with the wiki here!  Just leave everything above the line alone, please.&lt;br /&gt;
------&lt;br /&gt;
&lt;br /&gt;
Edit here!&lt;br /&gt;
&lt;br /&gt;
{{User:Yirba/sandbox|1089}}&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=468</id>
		<title>User:Yirba/sandbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=468"/>
				<updated>2012-08-01T22:02:12Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: test&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is comic number {{{1}}}.  It was posted on {{{2}}}.&lt;br /&gt;
[[{{#expr:{{{1}}}-1}}|Previous]] [[{{#expr:{{{1}}}+1}}|Next]]&lt;br /&gt;
&amp;lt;includeonly&amp;gt;[[Category:Comics|{{{1}}}]]&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox2&amp;diff=467</id>
		<title>User:Yirba/sandbox2</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox2&amp;diff=467"/>
				<updated>2012-08-01T21:57:46Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;blank&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=466</id>
		<title>User:Yirba/sandbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=466"/>
				<updated>2012-08-01T21:57:38Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: blank&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=465</id>
		<title>User:Yirba/sandbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=465"/>
				<updated>2012-08-01T21:56:48Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#ifexist:{{{1}}}|{{:{{{1}}}}}|{{{{FULLPAGENAME}}{{User:Yirba/sandbox3}}{{#expr:{{{1}}}-1}}}}&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=464</id>
		<title>User:Yirba/sandbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=464"/>
				<updated>2012-08-01T21:56:31Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#ifexist:{{{1}}}&lt;br /&gt;
 |{{:{{{1}}}}}&lt;br /&gt;
 |{{{{FULLPAGENAME}}{{User:Yirba/sandbox3}}{{#expr:{{{1}}}-1}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox3&amp;diff=462</id>
		<title>User:Yirba/sandbox3</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox3&amp;diff=462"/>
				<updated>2012-08-01T21:55:14Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: Created page with &amp;quot;|&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;|&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox2&amp;diff=461</id>
		<title>User:Yirba/sandbox2</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox2&amp;diff=461"/>
				<updated>2012-08-01T21:54:19Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: test&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{User:Yirba/sandbox|1089}}&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=460</id>
		<title>User:Yirba/sandbox</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:Yirba/sandbox&amp;diff=460"/>
				<updated>2012-08-01T21:53:17Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: test&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#ifexist:{{{1}}}|{{:{{{1}}}}}|{{{{FULLPAGENAME}}&amp;amp;#124;{{#expr:{{{1}}}-1}}}}&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:Main_Page&amp;diff=459</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:Main_Page&amp;diff=459"/>
				<updated>2012-08-01T21:39:04Z</updated>
		
		<summary type="html">&lt;p&gt;Yirba: /* Admin list */ - reply about bureaucrats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As a new user, I think the first page is very important. So I thought why not begin a discussion here what to have on the first page every user visits.&lt;br /&gt;
&lt;br /&gt;
I was thinking of having a quick link to the list of comics that is explained. Right know, it took me a while to even see any of them. Eventually I found the &amp;quot;List All Pages&amp;quot; (found it in Special pages) where I could find the comics that have been explained. What do you think?&lt;br /&gt;
:A category tag will do that for you automatically. Having a list of comics indexed by its number would be a little different.--[[User:Relic|Relic]] ([[User talk:Relic|talk]]) 05:59, 1 August 2012 (EDT)&lt;br /&gt;
::Sounds like a great list - I ''think'' it'd have to be manually maintained until/unless we get someone who knows how to make a bot update it.  Categories will be useful, but they only work if someone added the category to the page in the first place. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 07:21, 1 August 2012 (EDT)&lt;br /&gt;
:::A (somewhat) related question - should [[:Category:Comics]] be sorted alphabetically or by comic number?  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 07:43, 1 August 2012 (EDT)&lt;br /&gt;
::::I think [[:Category:Comics]] should be sorted by comic number.  If you are looking for a specific comic, you will use the search field.  Is there a way to make that happen? --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 08:11, 1 August 2012 (EDT)&lt;br /&gt;
:::::They are two different functions.  For the former, instead of adding &amp;lt;nowiki&amp;gt;[[Category:Comics]]&amp;lt;/nowiki&amp;gt;, add, say, &amp;lt;nowiki&amp;gt;[[Category:Comics|1]]&amp;lt;/nowiki&amp;gt;.  For the second, we can create redirects.  Normally, I'd say just make sure the search term was in the article text, but since numbers are going to be use for other purposes than just comic titles, it may be better to create [[1]] and [[Comic 1]] as redirects to the relevant articles right off the bat. --08:24, 1 August 2012 (EDT) &lt;br /&gt;
::::::We could also have a comic-list template on the Main Page, I suppose, or perhaps two - one for number and one for name? --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:54, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
==Admin list==&lt;br /&gt;
You can find a system-accurate list of admins [{{canonicalurl:Special:ListUsers|group=sysop}} here], so that might good to share, along with the manual list.  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 07:13, 1 August 2012 (EDT)&lt;br /&gt;
:Added to page. --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:10, 1 August 2012 (EDT)&lt;br /&gt;
::That's exactly what I wanted, but couldn't find the auto page for it.  I knew it was somewhere.  I don't see any reason to keep the link to the manual page.  Do you?  --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 08:11, 1 August 2012 (EDT)&lt;br /&gt;
:::Not unless you want it.  I'll remove it.  Should I add the similar link for 'crats or is that unnecessary at this point? --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:25, 1 August 2012 (EDT)&lt;br /&gt;
::::To be honest, I have no idea what the Burecrats role does. Might be unnecessary now but helpful in the future? --[[User:Jeff|Jeff]] ([[User talk:Jeff|talk]]) 11:16, 1 August 2012 (EDT)&lt;br /&gt;
:::::Bureaucrats can turn other users into administrators (or indeed, other bureaucrats). That privilege isn't available to ordinary administrators. I'd keep it to yourself for the time being. :-) --[[User:Yirba|Yirba]] ([[User talk:Yirba|talk]]) 17:39, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Community portal ==&lt;br /&gt;
&lt;br /&gt;
I've created the [[Explain XKCD:Community portal]] as a tools/help page.  If that's not what you want, feel free to change/move/whatever it, but I thought it'd be nice to save this page for discussion of the Main Page and discuss the wiki as a whole/ask for help there.  --''[[User:Philosopher|Philosopher]]''&amp;amp;nbsp;&amp;lt;sup&amp;gt;[[User talk:Philosopher|Let us reason together.]]&amp;lt;/sup&amp;gt; 08:36, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Direct link to latest comic ==&lt;br /&gt;
&lt;br /&gt;
There should be a direct link to the latest comic at the top of the Main page.  A nice thing about going to explainxkcd.com was that the latest comic is right there at the top.  For those changing their default link to the wiki, there should be an easy &amp;quot;Latest Comic&amp;quot; link that quickly takes them there.  I'm sure some folks actually skip xkcd.com and come directly here instead to read the latest offering from Randall.  They shouldn't have to search for it.&lt;br /&gt;
[[User:Christopher Foxx|- CFoxx]] ([[User talk:Christopher Foxx|talk]]) 11:59, 1 August 2012 (EDT)&lt;br /&gt;
&lt;br /&gt;
: Maybe the page [[latest]] should redirect to the most recent comic? Could that be taken care of by some sort of script/template so it doesn't have to be manually updated? Should each explination page also have &amp;quot;next&amp;quot;, &amp;quot;previous&amp;quot;, &amp;quot;random&amp;quot;, &amp;quot;first&amp;quot; and &amp;quot;latest&amp;quot; links, possibly also generated automatically via scripts/templates? Additionally, shouldn't the number page be the canonical one? It seems like [[Internal monologue]] should redirect to [[1089]] rather than the other way around - certainly it would make a bunch of scripting types of things a lot easier. [[User:J-beda|J-beda]] ([[User talk:J-beda|talk]]) 13:02, 1 August 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>Yirba</name></author>	</entry>

	</feed>