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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2916:_Machine&amp;diff=339115</id>
		<title>Talk:2916: Machine</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2916:_Machine&amp;diff=339115"/>
				<updated>2024-04-08T10:28:55Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: /* Level scrolling bug */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
rather late for an april fools comic innit? also there doesn't seem to be anything exciting in this one lol, none of the usual cool exploration easter eggs, as far as i could tell at least [[Special:Contributions/172.71.178.76|172.71.178.76]] 16:41, 6 April 2024 (UTC)Erfaniom&lt;br /&gt;
&lt;br /&gt;
: We're exploring crowdsourced human creativity here, in a way, so it can be a lot more interesting then Randall's exploration comics, at least for me, because i did take two years of GCSE psychology and enjoyed it. [[Special:Contributions/172.64.238.130|172.64.238.130]]&lt;br /&gt;
&lt;br /&gt;
Just popped over using Chrome on Android and all I see is four &amp;quot;missing picture&amp;quot; logos spinning around, plus another down the bottom right... [[Special:Contributions/141.101.68.193|141.101.68.193]] 18:13, 6 April 2024 (UTC)&lt;br /&gt;
:Okay, followup: it behaves quite differently on the non mobile site. You get two entry points with red balls and yellow balls and you need to place the various gizmos to direct the balls to the correct exit point. Once enough have correctly passed to turn the red X into a green tick, you have the option to submit. If you do, once you have named your design it will be added to the grid with other submissions all of which exist to push red and yellow balls around. (if you come across &amp;quot;Memories of Ragnarok&amp;quot;, that's mine) [[Special:Contributions/172.71.134.207|172.71.134.207]] 18:27, 6 April 2024 (UTC)&lt;br /&gt;
::The number of inputs appears to vary between 1 and 4, each of a different color, with one color-coded output for each. [[User:Claire Kholin|Claire Kholin]] ([[User talk:Claire Kholin|talk]]) 18:49, 6 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
On the &amp;quot;machine&amp;quot; section, you see lots of &amp;quot;under construction cells&amp;quot;.  Perhaps this will develop as more are submitted.  I notice the &amp;quot;under construction tape&amp;quot; has &amp;quot;DJIA&amp;quot; and &amp;quot;31415&amp;quot;,  perhaps a reference to &amp;quot;dow jones industrial average&amp;quot; and the first five digits of pi.  [[User:Zeimusu|Zeimusu]] ([[User talk:Zeimusu|talk]]) 18:37, 6 April 2024 (UTC)&lt;br /&gt;
:Whenever someone submits a cell, it fills in one of the under construction cells. [[User:Claire Kholin|Claire Kholin]] ([[User talk:Claire Kholin|talk]]) 18:49, 6 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I wanted to add an image for each object, but do not have the necessary access, can someone who has access add the images that I linked in the table so they can be included? [[User:Claire Kholin|Claire Kholin]] ([[User talk:Claire Kholin|talk]]) 18:49, 6 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I found a discussion with some guy talking about the API at https://euphoria.leet.nu/room/xkcd/ ; this could be useful for the wiki.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
[c+1] now time to try fucking with the api&lt;br /&gt;
[c+1] https://incredible.xkcd.com/&lt;br /&gt;
  [userwithnoaccount] 404&lt;br /&gt;
[c+1] it seems there are numbered machines under incredible.xkcd.com/machine/x&lt;br /&gt;
  [c+1] returns a grid of individual machinlets&lt;br /&gt;
  [c+1] which are uids like 3a7af27c-5389-5dcb-b660-3feab6be2ceb&lt;br /&gt;
  [c+1] they're stored at urls like incredible.xkcd.com/folio/3a7af27c-5389-5dcb-b660-3feab6be2ceb&lt;br /&gt;
  [c+1] there appear to be 33 machines total&lt;br /&gt;
  [c+1] the json it returns seems to refer to these as &amp;quot;versions&amp;quot;&lt;br /&gt;
  [c+1] $ curl -s https://incredible.xkcd.com/machine/21 | jq &amp;quot;.version&amp;quot;&lt;br /&gt;
        21&lt;br /&gt;
  [c+1] there is a machine/0, but it's all null&lt;br /&gt;
  [c+1] going to https://incredible.xkcd.com/machine/current redirects to the current machine&lt;br /&gt;
    [c+1] $ curl -sL https://incredible.xkcd.com/machine/current | jq &amp;quot;.version&amp;quot;&lt;br /&gt;
          35&lt;br /&gt;
[c+1] wait, is that the *total* number of mahcines?&lt;br /&gt;
[c+1] i would've thought there'd be more&lt;br /&gt;
[c+1] this whole think is rather esoteric&lt;br /&gt;
[c+1] Written in rust, too: https://rapier.rs/&lt;br /&gt;
[c+1] Uh oh.&lt;br /&gt;
      https://i.hypercone.us/?v=8e283d&lt;br /&gt;
  [c+1] HMMM&lt;br /&gt;
        https://i.hypercone.us/?v=079f8f&lt;br /&gt;
  [c+1] it seems there is no limit&lt;br /&gt;
  [c+1] i've uploaded a ~50M title&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/172.70.57.146|172.70.57.146]]&lt;br /&gt;
&lt;br /&gt;
Had quite a lot of fun, added a few 'successful' machines to the grid. Noted that whenever I try to use the Prism that (after a short delay) the comic-pane blanks and I need to refresh the page/get a completely new 'challenge' to start from scratch, so I'm just not using the prism at all (used most of the other items, in combination or 'just the one across the whole board', whichever seems most fun). But it doesn't seem to do what I'd like it to do, which is sort multiple colours from the same inflow into different outflow directions. Which would be ''very'' useful in a 'crossroads' situation, the general solution of directing them cross-path being too prone to random collisions. Also might be useful in the 'submitted machine grid', as I note that errors propagate, whereas adding a filter on all inputs would clean out (dispose of/send off to a valid gate?) the rogue balls. Anyway, gonna have to come back to this later when there's more time... Maybe then I'll even have something useful to add to the Explanation. [[Special:Contributions/172.70.163.31|172.70.163.31]] 19:03, 6 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
The balls appear to be different weights. I just saw a machine that used fans to separate yellows from greens and blues in a sort of 'wheat from the chaff' manner to direct them to their correct outputs. I wonder what other hidden tricks are included. [[Special:Contributions/172.68.1.159|172.68.1.159]] 19:40, 6 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
They're not all accepted, though it makes you think they are. Or something else more complex is going on we haven't realized yet. I made a machine that was working reliably, submitted it, and saw it on the overall grid. Reloading from a different browser I found the same location of the machine, with the same surroundings, but my machine had been replaced. It's nowhere else on the grid either. The first browser still shows it (but not after a reload with a cache clear). I'm not sure if there's some kind of &amp;quot;save&amp;quot; event that needs to happen beyond seeing your machine in the broader one, or if all user collaboration is an illusion, or if the system changes its mind about us somehow.&lt;br /&gt;
&lt;br /&gt;
: Yeah, i've been seeing this too. Please tell me if you find any of my machines, images at https://i.hypercone.us/?v=22d562 , https://i.hypercone.us/?v=ad8e3a , and https://i.hypercone.us/?v=8d4d6a . I want to be one of the few to have added Catalan and Spanish to the grid. [[Special:Contributions/172.71.134.164|172.71.134.164]] 20:56, 6 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I've added some more observations to the page.  Also, a guess which is too uncertain to put on the main page: The ball launcher for the yellows on the far left side misses a lot, and the yellow container isn't the one on the left.  So I think the whole machine with crossing streams will result in the colors being sorted in their container order, and possibly have the streams combined and deposited at the bottom just above the containers.  --[[Special:Contributions/172.71.147.100|172.71.147.100]] 21:07, 6 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
has anyone seen the boat at the very bottom? [[User:Mushrooms|Mushrooms]] ([[User talk:Mushrooms|talk]]) 21:21, 6 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
trying to see it on Firefox for Ubuntu and it just tells me to &amp;quot;visit xkcd.com to view&amp;quot; - THAT'S WHERE I AM?! Tried clearing website data (but not my entire cache) and that didn't help.  Is there something I'm missing?&lt;br /&gt;
&lt;br /&gt;
Oooh, just had one with four ball-entries (four colours) and ''three'' exits (one caters for two arrows). Pity it's rather complicated to get entries to exits (even if I can merge two of the streams). Might have to give up on it, but I'd like to have seen how it fits in with the 'submited grid'. i.e. someone else gets a two-colour introduction spot. [[Special:Contributions/162.158.74.119|162.158.74.119]] 22:37, 6 April 2024 (UTC)&lt;br /&gt;
:Me again. I'm just refreshing the page, looking at the pattern of entries/exits (just a dozen or so screens in, getting some repeats of pattern, indicating that it's going back to tiles it was suggesting before, probably depends on how many others are contributing and extending...)&lt;br /&gt;
:Found another 'double-colour' example. Two yellows ''from the same side'', which probably means that there's a two-yellows been asked to exit from the neighbour (will check shortly).&lt;br /&gt;
:Quickly adapting from my spreadsheet notation, &amp;quot;R, Y, G, B&amp;quot; in order, each &amp;quot;(Entry, Exit)&amp;quot;, I've been using &amp;lt;dir&amp;gt; of L/R/T/B and a number (nominally percentage, though seems to include only values of 20, 30, 50, 70 and 80, so it ''might'' be more 1/6..5/6?) relating to the distance along from L to R (for T/B) or T to B (for L/R).&lt;br /&gt;
:This line is therefore (0,0)(L20+L70,R30+B70)(R80,L80)(T70,L50) ... no reds, two yellow pairings, a red pairing, a blue pairing. Would require at least two path-crossings (but I was going to calculate those things later, and double-colours might confuse my intended simple line-intersection calculation).&lt;br /&gt;
:...anyway, spent some time on this message, which might mean I'll get into a 'new batch' of available patterns as people have succeeded some of the challenges that I've been 'swiping left'. [[Special:Contributions/172.70.162.20|172.70.162.20]] 19:28, 7 April 2024 (UTC)&lt;br /&gt;
:...very next click: (0,0)(T30+L20,R20+R70)(R80,L80)(R50,B50), which is clearly the actual left-neighbour of the above. [[Special:Contributions/172.70.162.19|172.70.162.19]] 19:32, 7 April 2024 (UTC)&lt;br /&gt;
:Ok, stopped my refreshing to [https://imgur.com/a/OMFOmzy 'solve' a screen]. First of all I routed both yellows entries (right-upper and upper-right) to one yellow exit (middle-left) and gradually teased the greens across (lower-left to middle-right), as that way I was avoiding a criss-cross of balls, but the the other yellow exit (left-lower) was, of course, invalid.&lt;br /&gt;
:Changed it to drop one stream of yellows down towards the lower exit, across the rapidly firing greens (added a fan to filter away the occasional yellow that gets bounced over there, not much of an opportunity to filter falling-greens out of the yellow exit, so apologies to whoever gets the sceen below). Submited as &amp;quot;Two Yellows, One Green!&amp;quot;, whether or not that'll save (apparently, I should continue to contribute and not refresh/close, or else the server will not keep the solution?).&lt;br /&gt;
:Interestingly, all four adjacent tiles are &amp;quot;Under construction&amp;quot;, and if I scroll up... *DARN* the comic has blanked out (nothing there between the upper PREV/RANDOM/NEXT buttons and the lower ones, just whitespace). This may mean that it did not save. This is the kind of 'page crash' I get when I try using a Prism or get too many balls rattling around on top of a Black Hole. Perhaps it doesn't like that I'm scrolling into an Under Construction that shouldn't be there? (But then, why ''is'' it there?)&lt;br /&gt;
:Anyway, all extra information for everyone.&lt;br /&gt;
:I'll just refresh the page and go back and do some more entry/exit mapping, maybe? [[Special:Contributions/172.70.162.20|172.70.162.20]] 20:17, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you combine a bunch of these silly claw things in the middle by just spamming it, it begins to lag and do some chaotic collisions, even without balls colliding on it. It's curious how it does that seemingly randomly though. I wonder how calculations are added and if there's a tiny sprinkle of RNG. (Also, errors occur and say something about damaging recursion in the Rust programming language, so I guess we know how it was made. It's also pretty weird how there's not a lot of opening combinations? It's possible that the machine loops over in chunks of gears or something (that's what I'll call them). ([[User talk:Leo|talk]]) 13:15, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
If you place a black hole in the centre of a wheel, it makes the wheel behave unpredictably between resets. Sometimes it's almost normal, sometimes it's a lot faster than usual, and sometimes it's stopped but launches balls that touch it with extreme force. I was able to use this to submit a machine which didn't actually let a single ball through after being submitted. https://i.hypercone.us/?v=928bcd [[Special:Contributions/162.158.33.149|162.158.33.149]] 01:19, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
The page says that (and I have taken note of) the ball hue is ''coded'' to certain values, but is there a logic to those values that might be derived from the colour (either as RGB triplet or HSV/other colourspace definition). For example, the two ball-types with zero green component in their makeup are 'unit density' (green is far heavier &amp;quot;green+red&amp;quot; is far lighter, so it's not a simple relationship, unless it converts from °hue, in some way) and the only secondary colour exhibits non-zero drag. There's the possibility that it just derived from &amp;quot;we need different properties, we need different colours, we have no reason to connect either with other deliberately&amp;quot; or even some non-mathematical symbology (fire=red, water=blue(?), earth=green, air(/sunlight?)=yellow). But it makes me wonder what combination of properties cyan/magenta balls might have, if added. (Or is the choice of those four colours constrained, anyway? Though R/G colorblindness is already something of an accessibility failure, if anyone suffers that.) [[Special:Contributions/172.69.194.205|172.69.194.205]] 17:02, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
[https://pastebin.com/7PAiLnyF Python script to get the URL and title of each Cell in the current machine]&lt;br /&gt;
&lt;br /&gt;
[https://pastebin.com/xBhywGde Result of running that script at the moment] (encoded with ROT13 because pastebin wouldn't let me save it otherwise)&lt;br /&gt;
:has anybody at all whatsoever been able to find their creation using this API? [[User:Bellydrum|Bellydrum]] ([[User talk:Bellydrum|talk]]) 21:58, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
[https://pastebin.com/jN5MP2za Result of running that script on the first 42 machines], at least on these it looks like the only difference is that one cell is added each time? [[Special:Contributions/172.71.99.195|172.71.99.195]] 17:22, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I've submitted four now, none of which was accepted. I tend to spend a lot of time getting them just right. Any hints as to what the acceptance criteria might be? Or do I just stink at this?&lt;br /&gt;
[[Special:Contributions/172.69.59.204|172.69.59.204]] 19:47, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
There appears to be a new object: a cat that bats things that touch it.&lt;br /&gt;
[[Special:Contributions/172.69.214.39|172.69.214.39]] 20:17, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Is anyone else experiencing the bug where prisms cause the comic to disappear (leaving only the white background where it was) after a while? It makes viewing the whole machine basically impossible. (On further testing it appears to be firefox-exclusive.) [[Special:Contributions/172.70.162.38|172.70.162.38]] 20:31, 7 April 2024 (UTC)&lt;br /&gt;
:I've had the &amp;quot;Prisms break things&amp;quot; from the beginning (before any practical content). As in, trying to use them in a design breaks things. But I ''did'' glance upon their occasional use in the 'view submissions grid'. Right now I'm suffering from &amp;quot;white only&amp;quot; issue (see my &amp;quot;multi-yellow&amp;quot; accounts, above). I ''am'' using Firefox, if that's indeed relevant to this issue, but right now I'm not near any other up-to-date browser I care to use. [[Special:Contributions/172.70.163.31|172.70.163.31]] 21:37, 7 April 2024 (UTC)&lt;br /&gt;
:I'm getting the same issue with black holes (which probably makes more sense - put a black hole there and you'd expect everything else to disappear :o) - except that on one occasion I was able to put about 6 black holes in before the 7th one vanished everything.[[Special:Contributions/172.69.194.121|172.69.194.121]] 09:15, 8 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Has anyone seen their own cell in the machine at all yet? A manual approval system is probably necessary for obvious reasons, but if so it does seem to be moving quite slowly.&lt;br /&gt;
[[Special:Contributions/172.69.65.24|172.69.65.24]] 02:58, 8 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Level scrolling bug ==&lt;br /&gt;
&lt;br /&gt;
When one views the whole machine, and scrolls down far enough, everything just disappears, and the comic is completely unresponsive. Has anyone else seen this? [[Special:Contributions/198.41.236.152|198.41.236.152]] 20:38, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I'm now seeing the same issue, I wasn't before. (I'm using Chrome) [[Special:Contributions/172.70.162.20|172.70.162.20]] 21:06, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
::A hard refresh appears to have fixed this for me (same person as above). [[Special:Contributions/141.101.99.101|141.101.99.101]] 10:28, 8 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I've been having this issue as well (I'm using firefox). Opening the site in Edge instead seemed to work around it for me, so it might only affect Firefox (and derivatives). [[Special:Contributions/172.70.163.31|172.70.163.31]] 21:27, 7 April 2024 (UTC)&lt;br /&gt;
::See also the 'firefox bug' comments currently immediately above this section. (Please don't ask me to start Edge up, I hate it, won't use it any more than the system requires me to...) [[Special:Contributions/172.70.163.31|172.70.163.31]] 21:37, 7 April 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
==New Category: Ball Pit?==&lt;br /&gt;
&lt;br /&gt;
What do you think about a new category for comics with [[ball pits]]? [[150]], [[219]], [[485]], [[498]], [[2916]]? [[Special:Contributions/162.158.134.229|162.158.134.229]] 21:50, 7 April 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User_talk:TheusafBOT&amp;diff=336236</id>
		<title>User talk:TheusafBOT</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User_talk:TheusafBOT&amp;diff=336236"/>
				<updated>2024-03-01T02:05:12Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: /* I thought it might autorevert 'wrongly' again. */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bot ==&lt;br /&gt;
&lt;br /&gt;
{{notice|Know that thou art a bot most splendid.}}&lt;br /&gt;
&lt;br /&gt;
{{User talk:DgbrtBOT}}&lt;br /&gt;
&lt;br /&gt;
== Hi ==&lt;br /&gt;
&lt;br /&gt;
Hi&lt;br /&gt;
&lt;br /&gt;
== I thought it might autorevert 'wrongly' again. ==&lt;br /&gt;
&lt;br /&gt;
See the sequence encompassed by [https://www.explainxkcd.com/wiki/index.php?title=404:_Not_Found&amp;amp;curid=3587&amp;amp;diff=336235&amp;amp;oldid=322800 this current situation]. IMO, it reverted back past a valid rewrite (I can imagine why, though seemingly it was happy with the pre-vandalism rewrite until the vandalism occured). FYI, ready for perhaps your manual fixing. [[Special:Contributions/141.101.99.101|141.101.99.101]] 02:05, 1 March 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2899:_Goodhart%27s_Law&amp;diff=335864</id>
		<title>2899: Goodhart's Law</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2899:_Goodhart%27s_Law&amp;diff=335864"/>
				<updated>2024-02-27T14:03:57Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2899&lt;br /&gt;
| date      = February 26, 2024&lt;br /&gt;
| title     = Goodhart's Law&lt;br /&gt;
| image     = goodharts_law_2x.png&lt;br /&gt;
| imagesize = 295x321px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = [later] I'm pleased to report we're now identifying and replacing hundreds of outdated metrics per hour.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a METRIC OF METRICS PER METRIC METRIC (IN &amp;lt;s&amp;gt;IMPERIAL&amp;lt;/s&amp;gt; US CUSTOMARY UNITS) - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
In this comic, [[White Hat]] suggests creating a metric, &amp;quot;number-of-metrics-that-have-become-targets,&amp;quot; and making it a target.&lt;br /&gt;
&lt;br /&gt;
First, the comic introduces and defines {{w|Goodhart's Law}}, which is the observation that when a metric — a {{w|performance indicator|measure of performance}} — becomes a goal, efforts will be unhelpfully directed to improving that ''metric'' at the expense of systemic objectives. &lt;br /&gt;
&lt;br /&gt;
For example, imagine a scenario in which a car dealership is looking to grow profits, and its managers decide to focus on increasing a component metric of profit: how many cars it sells. So they offer a bonus to their salespeople to sell more cars. But then the salespeople offer deep discounts to rack up sales, rendering the car sales unprofitable. This example shows how a ''metric'' (cars sold) can become the ''target'', replacing the real target, profit growth, if individual incentives are not properly managed.&lt;br /&gt;
&lt;br /&gt;
White Hat's suggestion could be a good or a bad idea. It all depends on how the incentive is implemented:&lt;br /&gt;
&lt;br /&gt;
* A '''good implementation''' would award bonuses only for finding metrics which truly aren't serving their purpose, so the organization's managers could fix the measurement issues. If bonuses are awarded only for approved submissions and the identifications result in real improvements, the organization will benefit from each misaligned incentive that is removed.&lt;br /&gt;
&lt;br /&gt;
* A '''bad implementation''' would offer a bonus to every identification — regardless of quality. This would incentivise the removal of metrics that do still serve a useful purpose, despite the development of target behaviour around them (reality is not quite as black and white as Goodhart's Law suggests), and perhaps even the ''creation'' of new metrics-as-targets for the sole purpose of then removing them and collecting the bounty.&lt;br /&gt;
&lt;br /&gt;
* In either case, though, even if all the metrics removed are ones that are no longer serving their intended purpose, the benefits of removing them may be outweighed by the energy devoted to finding and removing them.&lt;br /&gt;
&lt;br /&gt;
The title text imagines this '''bad implemention''', leading to the creation of a new metric (metric changes per hour) and the organization identifying — and ''replacing'' — hundreds of metrics per hour, crowding out actual focus on the organization's true goals. It's the ultimate example of &amp;quot;change for change's sake.&amp;quot;&lt;br /&gt;
* Ironically, none of the replaced metrics seem to be the one causing the issue — White Hat's original suggestion.&lt;br /&gt;
&lt;br /&gt;
This comic illustrates that the thoughtless combination of Goodhart's Law and poorly designed incentives can have ruinous results for an organization.&lt;br /&gt;
&lt;br /&gt;
The proper usage of organizational metrics and incentives is the focus of {{w|managerial accounting}}, a field within organizational management.&lt;br /&gt;
&lt;br /&gt;
===Additional examples of Goodhart's Law===&lt;br /&gt;
* A school's exam results may ''suggest'' how well the school works with its pupils, but may lead to rigidly &amp;quot;teaching to the exams&amp;quot; and lead to less enjoyment and ability of life-long learning, or even flexibility in non-academic activities. &lt;br /&gt;
* A hospital measures inpatient ''Length of Stay'' because shorter stays save money and also free up beds for any admitted patients waiting in the ER. But if improperly incentivized, doctors may discharge inpatients too early, causing some to &amp;quot;bounce back&amp;quot; to the hospital as a costly readmission.&lt;br /&gt;
* A call center measures the number of calls handled per hour, but poorly decides to overly incentivize this metric to make the workers more productive; that leads workers to cut calls short, frustrating customers.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and White Hat are standing and talking, White Hat with hand on his chin.]&lt;br /&gt;
:Cueball: When a metric becomes a target, it ceases to be a good metric.&lt;br /&gt;
:White Hat: Sounds bad. Let's offer a bonus to anyone who identifies a metric that has become a target.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring White Hat]]&lt;br /&gt;
[[Category:Statistics]]&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2891:_Log_Cabin&amp;diff=334483</id>
		<title>2891: Log Cabin</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2891:_Log_Cabin&amp;diff=334483"/>
				<updated>2024-02-07T21:11:07Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2891&lt;br /&gt;
| date      = February 7, 2024&lt;br /&gt;
| title     = Log Cabin&lt;br /&gt;
| image     = log_cabin_2x.png&lt;br /&gt;
| imagesize = 353x265px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = I'm sure the building inspectors will approve my design once they finally manage to escape.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a LOGARITHMIC CABIN - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
This is a building {{w|floor plan}}, presumably of a {{w|log cabin}}. The odd part about it is the right half, which appears to be infinitely recursive copies of the building, like a {{w|fractal}}. The house as a whole represents a &amp;quot;golden rectangle&amp;quot; with a ratio of 1.618, with sucessively smaller living areas (further subdivided into rooms, to a common but shrunken and rotated plan) being square adjoined by a golden-rectangle of all smaller living areas in the manner of the areas defined by the classic {{w|Golden spiral}} diagram. The joke is that Randall is intentionally conflating the word &amp;quot;log&amp;quot; in the common phrase &amp;quot;log cabin,&amp;quot; where &amp;quot;log&amp;quot; refers to the wood the cabin is made of, as opposed to the mathematical function of the &amp;quot;log&amp;quot; ({{w|logarithm function}}), of which the ratios here are a special case.&lt;br /&gt;
&lt;br /&gt;
Every square subunit of the premises consists of a main combined kitchen/lounge area, off which leads a shower-equipped WC, two bedrooms (a double-bed one with ensuite bath-equipped bathroom, and another with a single bed; both having suitable walk-in closet space) and the door that serves as the entry into the next inwards level of the floorplan.&lt;br /&gt;
&lt;br /&gt;
In the title text, Randall says that he is confident that building inspectors will approve his log cabin, assuming that they can escape. As one moves deeper into the infinite spiral of architecture, the entire log cabin ''seems'' to be a labyrinth of rooms and hallways.&lt;br /&gt;
&lt;br /&gt;
It is unknown how the inspectors lost in the inner rooms would shrink in the same ratio, and would actually only have to head out through the last door they walked in through (or two, if they're currently in the en-suite) and then exit each 'main' area in turn until they exited the building itself. If they have any trouble at all (other than rescaling themselves), it would be that there is ''always'' a further inward area which they might consider needs exploring in order to fulfil their inspection routine.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel]:&lt;br /&gt;
:Log cabin&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Engineering]]&lt;br /&gt;
[[Category:Math]]&lt;br /&gt;
[[Category:Puns]]&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2885:_Spelling&amp;diff=333487</id>
		<title>Talk:2885: Spelling</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2885:_Spelling&amp;diff=333487"/>
				<updated>2024-01-24T16:27:22Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
citing every word in an essay because I really, ''really'' don't know how to spell [[User:Mushrooms|Mushrooms]] ([[User talk:Mushrooms|talk]]) 13:00, 24 January 2024 (UTC)&lt;br /&gt;
:Fungi. [[Special:Contributions/172.70.86.80|172.70.86.80]] 14:17, 24 January 2024 (UTC) ;)&lt;br /&gt;
:Spore way of going about things. [[Special:Contributions/172.71.178.77|172.71.178.77]] 15:00, 24 January 2024 (UTC)&lt;br /&gt;
:Yeah, the lack of a period at the end of that sentence, makes it read &amp;quot;really, ''really'' don't know how to spell Mushrooms&amp;quot; &amp;amp; that works great as a sentence\statement, in this case!   &lt;br /&gt;
:[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 15:49, 24 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Boo! at the spoilsport who took out my 'dilemna' easter egg. :oP [[Special:Contributions/141.101.99.101|141.101.99.101]] 16:27, 24 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Dictionary Copyright ==&lt;br /&gt;
&lt;br /&gt;
Citing a dictionary is a great example of attribution: A ''portion'' is directly quoted, with its source stated for verification purposes. Attribution is a great practice; copying without attribution isn't literal theft, but it ''is'' lazy &amp;amp; irresponsible, &amp;amp; actually detracts from the real value of the copy. Copying ''with'' attribution, on the other hand, is difficult to show any real harm from, &amp;amp; is arguably beneficial to all but rent-seekers. Attribution is essential! What other works, are cited with attribution, as consistently as a dictionary? Even scholarly papers seem oft-quoted without attribution... This is a disservice to both the listener, &amp;amp; anyone who might value the original, &amp;amp; potentially to the one copying. 'News' is another example of having less value without attribution... What's another good example of something that isn't as useful unless the source is cited?   &lt;br /&gt;
[[User:ProphetZarquon|ProphetZarquon]] ([[User talk:ProphetZarquon|talk]]) 16:07, 24 January 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2881:_Bug_Thread&amp;diff=333053</id>
		<title>2881: Bug Thread</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2881:_Bug_Thread&amp;diff=333053"/>
				<updated>2024-01-17T16:04:33Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2881&lt;br /&gt;
| date      = January 15, 2024&lt;br /&gt;
| title     = Bug Thread&lt;br /&gt;
| image     = bug_thread_2x.png&lt;br /&gt;
| imagesize = 317x495px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = After some account issues, we've added 6 new people from the beach house rental website support forum.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by an UNFIXED BUG MEETUP - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
A bug thread is an online discussion about unintended behavior in a program, also known as a bug. Bug threads may be found on bug trackers, such as Github or Bugzilla, on technical forums such as StackOverflow, or on general product user forums.&lt;br /&gt;
&lt;br /&gt;
Most bug threads have a rule to only leave a comment if you have something insightful to add{{Actual citation needed}}, such as being able to reproduce how the bug occurs or possible solutions to resolving it. In practice, this rule is often ignored and many threads end up with multiple people simply commenting that the bug still exists. Those who are perfectly content with a product have few reasons to participate in a bug thread, so those seeking help will tend to mostly read posts by the others who are, or have been, seeking help, if no one has provided a proper solution.&lt;br /&gt;
&lt;br /&gt;
The exact nature of the bug in the comic is unknown, but there are multiple people reporting the problem (based upon their distinctive profile pictures), indicating that this is not a case of a rare problem where [[979: Wisdom of the Ancients|only one or two]] people have ever been known to be affected. Most of the visible posts just state the originator's inclusion in the list of those affected by the bug, either with a one word reply (&amp;quot;Same&amp;quot;), or a shorthand expression of emotion (&amp;quot;{{w|Like button|+1}}. So frustrating.&amp;quot;), although another has apparently seen fit to provide three links to the specific 'solutions' that they have already seen and (unsuccessfully) tried. There appear to be no official representatives of the {{w|Developer#Computers|'devs'}}, or any other knowledgeable users, providing actual workarounds or seeking further information about the problem, at least within this small window upon the collected messages.&lt;br /&gt;
&lt;br /&gt;
Although we cannot see the unreadable timestamp information on the posts, one author (the penultimate, using a [[White Hat]] image) makes the observation that the problem has now been ongoing for five years. This is followed by a [[Cueball]]-identified user proposing that this group of like-minded individuals may enjoy meeting up in the physical world (perhaps even in lieu of fixing the bug). They suggest leasing a beachfront property for a weekend, which is more suggestive of taking a break than for brainstorming possible bug resolutions (although that type of event isn't unknown). Whether this is [[Randall]], or not, his own follow-up comic commentary suggests that bonding over such adversity is as good a reason for friendship as any.&lt;br /&gt;
&lt;br /&gt;
The title text reveals that the meet-up was actually attempted, suggesting that there were at least some still active (and still bug-bound?) participants of the thread. They apparently encountered (potentially unrelated) issues with an online service through which they booked the vacation venue, and have extended the general invitation (venue permitting) to several other new acquaintances who have likewise fallen foul of the holiday-home service's own problematic implementation, likely having started to similarly bond witin the bug-thread/forum where this latter issue must have stubbornly remained similarly unresolved. These new additions presumably have no interest in the original issue, but have been invited purely for social reasons.&lt;br /&gt;
&lt;br /&gt;
[[979: Wisdom of the Ancients]] also refers to an online discussion thread about a bug, and [[1305: Undocumented Feature]] also involves a tech support forum which is eventually used only for socializing.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
:[Part of a discussion thread in progress on an online forum is shown. Each comment has the writer's avatar to the left of the text and small illegible text immediately above the text. Part of the first comment's text is cut off at the top.]&lt;br /&gt;
:Commenter #1: Same issue here.&lt;br /&gt;
:Commenter #2: I'm having this problem too. None of the posted fixes work.&lt;br /&gt;
:Commenter #3: Same.&lt;br /&gt;
:Commenter #4: +1. So frustrating.&lt;br /&gt;
:Commenter #5: I'm still having this. Did you all ever figure out a fix?&lt;br /&gt;
:Commenter #6: Same problem as everyone. I tried the steps in the posts &amp;lt;u&amp;gt;here&amp;lt;/u&amp;gt;, &amp;lt;u&amp;gt;here&amp;lt;/u&amp;gt;, and &amp;lt;u&amp;gt;here&amp;lt;/u&amp;gt;. Nothing.&lt;br /&gt;
:Commenter #7: Add me to the list.&lt;br /&gt;
:Commenter #8: Same. Ugh. Can't believe this thread is 5 years old now.&lt;br /&gt;
:Commenter #9: Where does everyone live? Do we want to get a beach house for a weekend or something?&lt;br /&gt;
:[Caption below the image:]&lt;br /&gt;
:At some point, you just have to give up on fixing the bug and embrace the fact that you have dozens of new friends.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Internet]]&lt;br /&gt;
[[Category:Social interactions]]&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2879:_Like_This_One&amp;diff=332722</id>
		<title>2879: Like This One</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2879:_Like_This_One&amp;diff=332722"/>
				<updated>2024-01-11T16:06:54Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2879&lt;br /&gt;
| date      = January 10, 2024&lt;br /&gt;
| title     = Like This One&lt;br /&gt;
| image     = like_this_one_2x.png&lt;br /&gt;
| imagesize = 273x464px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = A lot of sentences undergo startling shifts in mood if you add 'like this one' to the end, but high on the list is 'I'm a neurologist studying dreams.'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a bot like this one- Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
In this comic, [[Megan]] is asking [[Ponytail]] what she researches. Ponytail responds with &amp;quot;I'm a researcher studying gas molecules like this one&amp;quot; and then she indicates the air above her outstretched hand, which, indeed, does contain gas molecules. &lt;br /&gt;
&lt;br /&gt;
The caption under the comic goes further by listing out things that researchers study and are, by necessity, around them either all the time, or at any time they are talking to another person, making the researchers able to respond &amp;quot;...like this one&amp;quot; when asked about their research.&lt;br /&gt;
* Gas molecules: Gas molecules are, like their name suggests, in a gaseous state, and thus generally share a few basic physical characteristics. A researcher would thus be able to make reference to their study of (any particular kinds of) gas molecules as, unless they happen to be researching something incredibly exotic, the gas molecules they were studying would probably share at least something with the gas molecules found in the atmosphere. A more restrictive interpretation would be that the researcher is, in fact, studying particular kinds of gas molecules that are currently found in the atmosphere, for better or for worse.&lt;br /&gt;
* Gravitational fields: &lt;br /&gt;
* Planetary magnetospheres: &lt;br /&gt;
* Sound waves: &lt;br /&gt;
* Habitable worlds: &lt;br /&gt;
* Languages: &lt;br /&gt;
* Social interactions: &lt;br /&gt;
* Skin microbes: &lt;br /&gt;
&lt;br /&gt;
The title text adds that it would be startling for a neurologist to say &amp;quot;I'm a neurologist studying dreams like this one&amp;quot;, which implies that your conversation with them is itself a dream.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan and Cueball are facing Ponytail, who holds her hand out palm up.]&lt;br /&gt;
:Megan: So what do you do?&lt;br /&gt;
:Ponytail: I'm a researcher studying gas molecules like this one.&lt;br /&gt;
&lt;br /&gt;
:[Below the panel there is an explanation of the comics idea.]&lt;br /&gt;
:Fields of research where you can add &amp;quot;...like this one&amp;quot; after you say what you study:&lt;br /&gt;
:[Bulleted list of various separate fields of study.]&lt;br /&gt;
::Gas molecules&lt;br /&gt;
::Gravitational fields&lt;br /&gt;
::Planetary magnetospheres&lt;br /&gt;
::Sound waves&lt;br /&gt;
::Habitable worlds&lt;br /&gt;
::Languages&lt;br /&gt;
::Social interactions&lt;br /&gt;
::Skin microbes&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Science]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Social interactions]]&lt;br /&gt;
[[Category:Dreams]] &amp;lt;!--Title text --&amp;gt;&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2873:_Supersymmetry&amp;diff=331530</id>
		<title>Talk:2873: Supersymmetry</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2873:_Supersymmetry&amp;diff=331530"/>
				<updated>2023-12-27T20:08:06Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ah, good, I was ''just'' about to tell people (on 2872's Talk page) that there was a new one... (And that we obviously need to prod the theusafBOT.)  Currently, [[2872: Hydrothermal Vents]] doesn't have the 'Next' links to here, but (from last comic's experience) it might just be a matter of nudging its server-side cache a bit. I'll try the tricks I tried yesterday. [[Special:Contributions/141.101.99.101|141.101.99.101]] 20:08, 27 December 2023 (UTC)&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1992:_SafetySat&amp;diff=179775</id>
		<title>1992: SafetySat</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1992:_SafetySat&amp;diff=179775"/>
				<updated>2019-09-13T15:52:00Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: /* Explanation */ I added a short sentence related to the book What If?.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1992&lt;br /&gt;
| date      = May 11, 2018&lt;br /&gt;
| title     = SafetySat&lt;br /&gt;
| image     = safetysat.png&lt;br /&gt;
| titletext = During launch, in the event of an unexpected sensor reading, SafetySat will extend prongs in all directions to secure itself and any other cubesats safely in the launch vehicle until the source of the problem can be determined.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|CubeSat}} is a standard format for small satellites that can fit in a 10&amp;amp;times;10&amp;amp;times;10&amp;amp;nbsp;cm format with a mass of less than 1.3&amp;amp;nbsp;kg. They have been widely used by academics for research satellites, and by both small and large companies.&lt;br /&gt;
&lt;br /&gt;
CubeSats are often launched as an additional payload on commercial launches but also deployed from the {{w|International Space Station}} at the {{w|Kibo (ISS module)|Kibo-Module}} or other airlocks. All these satellites are orbiting the Earth in a low orbit and since they have no propulsion system they also become a part of {{w|space debris}} when they are out of control; Eventually they will reenter earth's atmosphere without any further hazard.&lt;br /&gt;
&lt;br /&gt;
Only a few days before this comic was released the first interplanetary CubeSats called {{w|Mars Cube One}} was launched together with NASA's probe {{w|InSight}} aiming to the planet {{w|Mars}}.&lt;br /&gt;
&lt;br /&gt;
One of Randall's influences in creating this comic may have been [https://spectrum.ieee.org/tech-talk/aerospace/satellites/fcc-accuses-stealthy-startup-of-launching-rogue-satellites controversy surrounding a commercial launch of a sub-CubeSat sized pico-satellite] from a launch site in India, after the company had previously been denied launch permission within the US, due to safety concerns.&lt;br /&gt;
&lt;br /&gt;
There are multiple safety rules to ensure that the CubeSat cannot damage the primary payload. However, the joke in this comic is that [[Randall]]'s design seeks to break as many rules as possible.&lt;br /&gt;
&lt;br /&gt;
Items clockwise from top left:&lt;br /&gt;
&lt;br /&gt;
;Rare-Earth Magnets&lt;br /&gt;
:Violates CubeSat Design Specification Rev. 13 § 3.1.10.&lt;br /&gt;
:{{w|Rare-earth magnets}} are very powerful magnets that have a high likelihood of messing up the functioning of nearby electronics, like other CubeSats.  Might also cause the CubeSat to stick to other satellites, as the {{w|M-Cubed}} and {{w|Explorer-1 Prime}} CubeSats did.&lt;br /&gt;
&lt;br /&gt;
;BIC Mini-Lighter&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 10.1.3, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:Fire source, resting on the can of crude oil. The pressurized butane could also make the lighter burst, but in space without oxygen the lighter never would ignite. And even if the inside of the CubeSat contains some oxygen in weightlessness a flame would go out very soon, of course if it set off the crude oil or the guncotton then it would not matter, as the CubeSat would be destroyed.&lt;br /&gt;
&lt;br /&gt;
;SDR/{{w|Software-Defined Radio}} (Code Editable via Public Wiki)&lt;br /&gt;
:Violates Title 47 CFR Part 97 § 97.207(b), in turn violates CubeSat Design Specification Rev. 13 § 3.4.3.2.1&lt;br /&gt;
:A radio which can be programmed to broadcast and receive in a range of frequencies, and formats. Software-Defined Radios are useful for development of new or modified wireless protocols, as well as for monitoring the raw waveform data of a transmission regardless of the protocols used. The radio in this comic is stated to run firmware which can be modified from a publicly editable Wikipedia-style webpage. Since anyone could change the radio's instructions, the radio could interfere with other satellites, or with the launch vehicle. This counts as a huge security risk, as ''anyone'' could edit it.&lt;br /&gt;
&lt;br /&gt;
;Laser Pointers (Fixed)&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 8.2.2, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:These three laser points will effectively point in 3 different random directions, which is not safe for other objects around this Cubesat.  It depends on the power of the laser pointers but, in general a laser over 5 mW can heat up and damage things given enough time.{{Citation needed|reason=Why is a laser pointer dangerous?|date=May 2018}}. Of course, with the satellite being in orbit it could potentially mess up the optical sensors of other satellites, but it would be a matter of chance. This could also be a reference to the book ''What If?'', specifically the chapter ''Laser Pointer''.&lt;br /&gt;
&lt;br /&gt;
;Laser Pointer (Hubble-Seeking)&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 8.2.2, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:Aiming a laser at a visible light telescope is potentially destructive to the telescope in question by damaging its optical sensors. This is because CCD &amp;amp; CMOS image sensors are designed to detect finite light sources, concentrated &amp;amp; focused by an optical lens. Lasers produce high light levels well beyond the (comparatively) very low intensity light which astronomical image sensors are designed to detect; The energy of these excess photons can heat up the circuits between rows of photosensitive cells to the point where they overheat and fuse. For much the same reason, originates the phrase &amp;quot;do not stare into laser with remaining eye&amp;quot;. Unlike the fixed laser pointers above, this one would track and aim a laser at the Hubble, with potentially disastrous results.&lt;br /&gt;
&lt;br /&gt;
;CFCs/Ozone-depleting CFC Spritzer&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 10.3, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:{{w|Chlorofluorocarbons}} (CFCs) are fully halogenated paraffin hydrocarbons that contain only carbon, chlorine, and fluorine, produced as volatile derivative of methane, ethane, and propane. {{w|Freon}} is a common example of a CFC, and the use of CFCs has been linked to a depletion of the Earth's {{w|ozone layer}} leading many countries to ban their use. Thus spritzing CFCs in an area relatively close to the Ozone layer may be a bad idea.&lt;br /&gt;
&lt;br /&gt;
;Celebratory Firework&lt;br /&gt;
: Violates CubeSat Design Specification Rev. 13 § 3.1.3.&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 13.2, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:Explosive fire source that could hit other satellites in the vicinity; Also potentially breaking the adjacent seal &amp;amp; igniting the crude oil behind it, turning it into crude oil that is also on fire. Could also set off the guncotton and result in an explosion that destroys the satellite. At the very least, the off-axis position of the firework within the CubeSat would most likely send the satellite into an uncontrolled spin, upon celebratory launch. &lt;br /&gt;
&lt;br /&gt;
;Volatile Epoxy Seal&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 10.1.3, 12.1, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:Epoxy is a substance composed of long-chain molecules which exhibit very strong adhesive bonds. Many mixtures of epoxy are flammable &amp;amp; produce hazardous fumes when burned. If this particular epoxy seal fails, everything within splatter range gets coated in flammable crude oil.&lt;br /&gt;
&lt;br /&gt;
;{{w|Crude Oil}}&lt;br /&gt;
: Violates CubeSat Design Specification Rev. 13 § 3.1.6&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 10.1.3, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:{{w|Exxon Valdez oil spill}}, {{w|Deepwater Horizon explosion}}, {{w|Keystone Pipeline#Leaks and 2017 South Dakota spill|Keystone Pipeline leaks}}... need we say more? Of course the leakable volume would not be near those levels, but plenty dangerous nonetheless if it were to leak though a faulty seal or weld breakage or stress fractures. Containment and cleanup of such a leak would not be helped by the fact that such leakage could occur in orbit or even during launch. Oil spills in orbit might even present new and unexpected complications due to unusual behavior of liquids in vacuum and microgravity.&lt;br /&gt;
&lt;br /&gt;
;Guncotton&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 10.1.3, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:A form of {{w|nitrocellulose}}; an explosive. Could be set off by the firework, the crude oil, or the spark plug. Nitrocellulose {{w|Philae_(spacecraft)#Landing_events|does not work reliably in vacuum and possibly caused a failure of Philae space probe}}.&lt;br /&gt;
&lt;br /&gt;
;Americium corners&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 9.1.1, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:{{w|Americium}} is a very dense and radioactive substance. Depending on the amount of americium involved, this alone could shoot the mass over the 1.3 kg mass limit. The isotope &amp;lt;sup&amp;gt;241&amp;lt;/sup&amp;gt;Am is used in smoke detectors but also proposed for use in {{w|Radioisotope thermoelectric generator|radioisotope thermoelectric generators}} in spaceflight.&lt;br /&gt;
&lt;br /&gt;
;Spark Plug&lt;br /&gt;
: Does not conform to AFSPCMAN 91-710, Volume 3 § 10.1.3, 10.1.4, in turn violates CubeSat Design Specification Rev. 13 § 3.1.7&lt;br /&gt;
:Fire ignition source, if connected to electricity; excess mass if not. The electrodes on the spark plug are next to the guncotton which could ignite if the spark plug fires.  Additionally, sparks cause electromagnetic interference and electrical shorts.&lt;br /&gt;
&lt;br /&gt;
;Solar Panel (Found)&lt;br /&gt;
:The quality of the solar panel and the power it produces would have to be investigated thoroughly before being cleared for space flight. Also, it isn't clear on the design exactly what, if anything, it is supposed to power, or if it is just excess mass.&lt;br /&gt;
&lt;br /&gt;
;Batteries (eBay)&lt;br /&gt;
:The quality of batteries bought on auction sites can vary widely, and certain batteries exposed to conditions outside their design specifications can {{w|Battery_(electricity)#Explosion|explode or leak corrosive acids}}. These batteries might also be connected to the adjacent spark plug. Non-rechargable commercial batteries may leak or explode if a recharge is attempted, so if this is the intention of the Solar Panel, these would escalate into an even greater risk.&lt;br /&gt;
&lt;br /&gt;
;Wet Sand Dispenser&lt;br /&gt;
:Violates CubeSat Design Specification Rev. 13 § 3.4.3&lt;br /&gt;
:Possible reference to the {{w|Kessler syndrome}}, which refers to a hypothetical situation wherein there are enough objects floating around in low earth orbit that collisions between objects might result in a &amp;quot;domino effect,&amp;quot; each collision causing more collisions and breaking objects into smaller pieces of space debris, which increase the likelihood of further collisions. Wet sand exhibits a high grip:slip ratio, where the surface tension of the water tends to make particulates clingy. Sand (silica granules) can be very harmful to a wide variety of systems, due to its hardness &amp;amp; abrasive qualities. Depending upon the pattern of water sublimation in either shaded or sunlit zones, the exact behavior of various quantities of &amp;quot;wet sand&amp;quot; in low Earth-orbital space might be of interest to the designers of this and of other spacecraft.&lt;br /&gt;
&lt;br /&gt;
;Title text&lt;br /&gt;
:Violates CubeSat Design Specification Rev. 13 § 3.4.4&lt;br /&gt;
:{{Wiktionary|prong|Prong}}s that extend in the event of an unexpected sensor reading at launch could damage the rocket and/or nearby CubeSats/payloads. That the CubeSat reacts to an &amp;quot;unexpected&amp;quot; sensor reading - which could include any number of readings that aren't actually a problem - is also funny, as is the fact that this is described as &amp;quot;safely&amp;quot; securing the CubeSat and any surrounding CubeSats. Along with this, it is not unlikely that this CubeSat might be the source of any internal problem that might arise; in such a situation, having such a dangerous CubeSat further secure itself would be counterproductive, if spitefully entertaining.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A prototype for a small cube-shaped &amp;quot;CubeSat&amp;quot; satellite, with labels on various components.]&lt;br /&gt;
&lt;br /&gt;
:[Labeled on top:]&lt;br /&gt;
:Rare-Earth Magnets&lt;br /&gt;
:Bic Mini Lighter&lt;br /&gt;
:Software-Defined Radio (code editable via a public wiki)&lt;br /&gt;
&lt;br /&gt;
:[Labeled on right:]&lt;br /&gt;
:Laser Pointers (fixed)&lt;br /&gt;
:Laser Pointer (Hubble-seeking)&lt;br /&gt;
:Ozone-Depleting CFC Spritzer&lt;br /&gt;
&lt;br /&gt;
:[Labeled on bottom:]&lt;br /&gt;
:Celebratory Firework&lt;br /&gt;
:Volatile Epoxy Seal&lt;br /&gt;
:Filler (Guncotton)&lt;br /&gt;
&lt;br /&gt;
:[Labeled on left:]&lt;br /&gt;
:Americium Corners&lt;br /&gt;
:Spark Plug&lt;br /&gt;
:Solar Panel (found)&lt;br /&gt;
:Batteries (eBay)&lt;br /&gt;
:Wet Sand Dispenser&lt;br /&gt;
&lt;br /&gt;
:[Labeled from within drawing in white text on top of a black rectangle:] &lt;br /&gt;
:Crude Oil&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:My CubeSat proposal was the first to be rejected for violating every design and safety requirement simultaneously.&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
*The normal sized image was originally broken at [[xkcd]] and the BOT uploaded that image here. It was just a gigantic Γ shape at first (though with a rounded corner). The problem was fixed soon but happened later again at comic [[1994: Repairs]].&lt;br /&gt;
&lt;br /&gt;
*CubeSats have been referenced in other comics: [[1866: Russell's Teapot]], and [[2148: Cubesat Launch]]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:CubeSats]]&lt;br /&gt;
[[Category:Space probes]]&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2016:_OEIS_Submissions&amp;diff=159733</id>
		<title>2016: OEIS Submissions</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2016:_OEIS_Submissions&amp;diff=159733"/>
				<updated>2018-07-06T18:05:41Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: Its also -&amp;gt; It also&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2016&lt;br /&gt;
| date      = July 6, 2018&lt;br /&gt;
| title     = OEIS Submissions&lt;br /&gt;
| image     = oeis_submissions.png&lt;br /&gt;
| titletext = SUB[59]: The submission numbers for my accepted OEIS submissions in chronological order&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by an INTEGER SEQUENCE - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
The {{w|OEIS}} is the [https://oeis.org/ Online Encyclopedia of Integer Sequences], a listing of thousands of sequences of integers, generally of real mathematical interest, such as {{w|prime number}}s or [https://oeis.org/A005188 Armstrong numbers].  The OEIS normally expects submissions to be accompanied by references to scholarly articles about, or at least referencing, the sequence.  They would not be interested in the personal or idiosyncratic sequences proposed by Randall, though they do have the [https://oeis.org/A000053 list of IRT stops], perhaps because a NY Times article mentioned that they don't. &lt;br /&gt;
&lt;br /&gt;
Randall is trying to put his integer sequences on the OEIS website, including making OEIS reveal its password.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|Sub&lt;br /&gt;
!style=&amp;quot;width:45%&amp;quot;|Requested Sequence&lt;br /&gt;
!style=&amp;quot;width:45%&amp;quot;|Explanation&lt;br /&gt;
|-&lt;br /&gt;
|43&lt;br /&gt;
|All integers which do not appear in the example terms of another OEIS sequence&lt;br /&gt;
|OEIS sequences list several example terms. This requests wants all numbers ''not'' used as examples, which is an infinite set. It also creates a paradox, because any numbers listed as example terms for this sequence are no longer in the sequence.&lt;br /&gt;
|-&lt;br /&gt;
|44&lt;br /&gt;
|Integers in increasing order of width when printed in Helvetica&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|45&lt;br /&gt;
|The digits of Chris Hemsworth's cell phone number&lt;br /&gt;
| This request is for actor {{w|Chris Hemsworth}}'s phone number&lt;br /&gt;
|-&lt;br /&gt;
|46&lt;br /&gt;
|All integers, in descending order&lt;br /&gt;
|There are an infinite number of integers. In descending order means you would start with the &amp;quot;largest&amp;quot; integer, which does not exist&lt;br /&gt;
|-&lt;br /&gt;
|47&lt;br /&gt;
|The digits of the OEIS serial number for this sequence&lt;br /&gt;
|This sequence is only important tautologically. It exists only to describe itself.&lt;br /&gt;
|-&lt;br /&gt;
|48&lt;br /&gt;
|200 terabytes of nines&lt;br /&gt;
|In UTF-16, a 9 takes up 2 bytes, so this would be a sequence of 1*10^14 9s&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|The decimal representation of the bytes in the root password to the Online Encyclopedia of Integer Sequences server&lt;br /&gt;
|This would give any user the password to OEIS&lt;br /&gt;
|-&lt;br /&gt;
|59&lt;br /&gt;
|The submission numbers for my accepted OEIS submissions in chronological order&lt;br /&gt;
|This would only be useful to Randall. If all of his submissions have been rejected, this would be an empty set&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1864:_City_Nicknames&amp;diff=143052</id>
		<title>1864: City Nicknames</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1864:_City_Nicknames&amp;diff=143052"/>
				<updated>2017-07-21T17:50:22Z</updated>
		
		<summary type="html">&lt;p&gt;141.101.99.101: /* Nicknames and Demonyms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1864&lt;br /&gt;
| date      = July 17, 2017&lt;br /&gt;
| title     = City Nicknames&lt;br /&gt;
| image     = city_nicknames.png&lt;br /&gt;
| titletext = This place has so many demonyms. Northlanders. Fair Folk. Honey Barons. Lake Dwellers. Treasurers. Swamp Watchers. Dream Farmers. Wellfolk. Rockeaters. Forgotten Royals. Remote Clients. Barrow-Clerks. The People of Land and Sky.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
Cities often have official or unofficial nicknames. For instance, {{w|St. Louis|St. Louis, Missouri}}, is known as &amp;quot;Gateway to the West&amp;quot; among several other nicknames. The nicknames typically invoke some historical or geographic feature of the city, but can sometime be opaque to those not familiar with the city. [https://www.into-asia.com/bangkok/introduction/fullname.php The full, formal name of Bangkok] includes a long list of superlatives translating as &amp;quot;The city of angels, the great city, the residence of the Emerald Buddha, the impregnable city (of Ayutthaya) of God Indra, the grand capital of the world endowed with nine precious gems, the happy city, abounding in an enormous Royal Palace that resembles the heavenly abode where reigns the reincarnated god, a city given by Indra and built by Vishnukarn.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Despite the skyline being clearly recognizable as St. Louis due to the {{w|Gateway Arch}}, [[Black Hat]] calls it New York City. However, the nickname he gives is neither a common New York nickname (such as &amp;quot;{{w|List of nicknames of New York City|The Big Apple}}&amp;quot;) nor a St. Louis nickname. [[Megan]] tries to correct him, but it becomes clear that Black Hat is making up nicknames. Many of his suggestions are puns for real nicknames of other places.&lt;br /&gt;
&lt;br /&gt;
The title text contains made up {{w|demonym}}s in the same pattern. A demonym is a word for the people who live in a particular place. They are typically derived from the name of the place (e.g. &amp;quot;St. Louisan&amp;quot; for people from St. Louis), but some regions have an {{w|Demonym#Informal|informal demonym}} that can be used colloquially by those familiar with the place to refer to its residents.&lt;br /&gt;
&lt;br /&gt;
===Nicknames and Demonyms===&lt;br /&gt;
&lt;br /&gt;
{| class=wikitable&lt;br /&gt;
! City nickname in comic&lt;br /&gt;
! Reference&lt;br /&gt;
! Explanation&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| The Hot Tamale&lt;br /&gt;
| {{w|Hot Tamales}}&lt;br /&gt;
| Possibly a reference to the term [http://www.urbandictionary.com/define.php?term=big%20enchilada big enchilada] (something of great importance).  In the movie &amp;lt;i&amp;gt;[http://en.wikipedia.org/wiki/Independence_Day_(1996_film) Independence Day]&amp;lt;/i&amp;gt;, the phrase &amp;quot;Big Tamale&amp;quot; is used in a similar manner as &amp;quot;Big Enchilada&amp;quot; to describe the alien fighter held at Area 51.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| The Winged City&lt;br /&gt;
| The Windy City&lt;br /&gt;
| Chicago. Possibly also [http://www.airport-technology.com/projects/incheon-international-airport/ Incheon International Airport (ICA/RKSI), South Korea]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| The Gold Trombone&lt;br /&gt;
|&lt;br /&gt;
| Possibly a reference to the gold standard.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Castleopolis&lt;br /&gt;
| {{w|Cassopolis}}, or possibly Dictionopolis.&lt;br /&gt;
| Literally &amp;quot;Castle city.&amp;quot;  {{w|Polis}} (from the Greek πόλις for city) is commonly used as a suffix for city names, like {{w|Minneapolis}} or {{w|Alexandroupolis}}; {{w|Metropolis}} can either be a type of city, or one of the real or fictional cities bearing the name. Possibly a reference to The Phantom Tollbooth, which has both castles and cities named Dictionopolis and Digitopolis.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| The Kissing Kingdom&lt;br /&gt;
| {{w|United Kingdom}}&lt;br /&gt;
| This would make a ''Very'' United Kingdom&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Sandland&lt;br /&gt;
|&lt;br /&gt;
| {{w|Sandland}} is a village in northern Norway, most likely coincidentally.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| The High Place&lt;br /&gt;
| {{w|Denver}}&lt;br /&gt;
|Denver is known as the Mile High City.  Also, in English translations of the Old Testament, the Hebrew term במה (bamah, plural במות bamot) is rendered as &amp;quot;{{w|high place}},&amp;quot; and denotes a place of worship.  In modern Jewish synagogues, the &amp;quot;High Place&amp;quot; (bimah) is the elevated platform from which the Torah is read.  In Gene Wolfe's ''Free Live Free'', one character claims to come from the &amp;quot;High Place&amp;quot;.  The others consider this a metaphor, or simply a lie.  Eventually this is discovered not to be the case.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Ol' Ironhook&lt;br /&gt;
| {{w|Old Ironsides}}&lt;br /&gt;
| Old Ironsides is a nickname for the USS Constitution (docked in Charlestown, MA). Ol' Ironhook may be a conflation of Old Ironsides (also a nickname for English Lord Protector Oliver Cromwell) with Old Hookey (a nickname for Arthur Wellesley, Duke of Wellington, English general and PM, who was also nicknamed The Iron Duke) or Old Kinderhook (a nickname for US President Martin Van Buren).&lt;br /&gt;
|-&lt;br /&gt;
| The Thousand Spires || The City of a Hundred Spires / City of Dreaming Spires|| Prague / Oxford&lt;br /&gt;
|-&lt;br /&gt;
| The Graveyard of Kings || The Graveyard of Champions / City of Kings || ''Graveyard'': Court 2 at Wimbledon, where former champions are often defeated (the playing environment is very different from Centre Court and Court One, which are larger and where games involving highly-ranked players are preferentially located). The comic was released one day after the 2017 Wimbledon Championships were finished. ''Kings'': Nickname of [[wikipedia:Lima|Lima, Peru]] and [[wikipedia:Palermo|Palermo, Sicily]]. The {{w|Valley of the Kings}} in Egypt is literally a graveyard of kings, namely the Pharaohs.&lt;br /&gt;
|-&lt;br /&gt;
| Bloomtown || [[wikipedia: Boomtown|Boomtown]] || Generic term for a town undergoing rapid growth. Used in the 2002 TV series of the same name as a nickname for Los Angeles.  Might also be referring to [[wikipedia:Bloom County|Bloom County]], a comic by [[wikipedia:Berkeley Breathed|Berkeley Breathed]], or Dublin, as the setting for Ulysses by James Joyce.&lt;br /&gt;
|-&lt;br /&gt;
| Lantern City USA || {{w|Tree City USA}} || A designation supporting municipalities that showcase urban forestry, in connection with Arbor Day.  Lantern city is a fictional, steam-punk serial.&lt;br /&gt;
|-&lt;br /&gt;
| The City of Many Daughters || {{w|City of Daughters}} || Might be a reference to {{w|City of Daughters}} album by [[wikipedia:Destroyer (band)|Destroyer]].&lt;br /&gt;
|-&lt;br /&gt;
| Big Mauve || [[wikipedia: Big_Red_(drink)|Big Red Soda]] || Big Red Soda. Big Red is also a chewing gum by Wrigley's. The Cornell teams are known as the [[wikipedia:Cornell Big Red|Big Red]] as is Western Kentucky's mascot [[wikipedia:Big Red (Western Kentucky University)|Big Red]].  The Dartmouth football team is the Big Green.  IBM is sometimes known as Big Blue.&lt;br /&gt;
|-&lt;br /&gt;
| The Glass Cradle || [[wikipedia:The Glass Menagerie|The Glass Menagerie]]  || A play by Tennessee Williams&lt;br /&gt;
|-&lt;br /&gt;
| The Road Source ||{{w|Rome}} || From the saying that {{w|All Roads Lead to Rome}}&lt;br /&gt;
|-&lt;br /&gt;
| London Prime || London || In the DC comics, to incorporate multiple continuties, there were multiple universes. London Prime would be &amp;quot;real  London&amp;quot; on Earth Prime. Various cities named {{w|New London}} in the United States and elsewhere are imagined as London in alternate continuities. Alternatively in mathematics, a [https://en.wikipedia.org/wiki/Prime_(symbol)#Use_in_mathematics.2C_statistics.2C_and_science prime mark], x' can be the next iteration of variable x. &lt;br /&gt;
|-&lt;br /&gt;
| Hamtown || {{w|Boston}}, {{w|Hamburg}}, {{w|Toronto}}  || Boston is known as [[wikipedia:Boston nicknames|beantown]], pork and beans are commonly cooked together (as in {{w|Boston baked beans}}), and ham is a form of pork.  The German word ''Burg'' means castle or fort and is often used as suffix for town names. The origin of the prefix ''Ham'' is uncertain, but the food {{w|Hamburger}} derives from this city and ''Hamburger'' in German is the demonym of Hamburg. Toronto sometimes nicknamed Hogtown.  &lt;br /&gt;
|-&lt;br /&gt;
| The Salad Bowl || || A theory of cultural integration in the US, one that stands in contrast to the older 'Melting Pot' theory. Could also refer to the [[wikipedia: Dust Bowl|Dust Bowl]].   Could also refer to Salinas, CA &amp;quot;Salad Bowl of the world&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| God's Boudoir || God's Waiting Room  || State of {{w|Florida}}, where many elderly retire then expire. As a ''{{w|boudoir}}'' is a room reserved for a female (host), this usage would implicate that either God is a woman, or that God frequents there often&lt;br /&gt;
|-&lt;br /&gt;
| The Glittering Swamp || [[wikipedia:Great Dismal Swamp|The Great Dismal Swamp ]], {{w|Washington, D.C.}}  || A large swamp in Virginia and North Carolina.  Also, the city of {{w|Washington, D.C.}} has often been referred to as a &amp;quot;swamp,&amp;quot; owing partly to its past as a [http://networks.h-net.org/node/28441/pages/36129/swamps-and-city-washington malarial swamp].&lt;br /&gt;
|-&lt;br /&gt;
| The Steel Forest || The Concrete Jungle || The Concrete Jungle is a name often given to New York's Manhattan area.  There was also a book and movie titled ''The Petrified Forest''. &lt;br /&gt;
|-&lt;br /&gt;
| The Mobius Strip || The Strip || The Strip is a shortened and commonly used name for the Las Vegas Strip, the main area of hotels and casinos in Las Vegas, Nevada. A {{w|Mobius strip}} is a one-sided piece of paper created by rotating the short edge of the strip 180 degrees and attaching it to the other short edge. The Vegas strip has more or less only one side as well.&lt;br /&gt;
|-&lt;br /&gt;
| The Land of Trains and Fog || || Britain was home to early developments in railroading, and some portions are known for fog and mists.&lt;br /&gt;
In the webcomic [[wikipedia:Homestuck  | Homestuck]] many events take place on various planets named in the format &amp;quot;The Land of X and Y&amp;quot;, e.g. &amp;quot;The Land of Light and Rain&amp;quot;. A series of novels by George R.R. Martin, which was made into the ''Game of Thrones'' TV show, is called ''A Song of Ice and Fire''. The Grand Canyon is known as &amp;quot;The House of Stone and Light&amp;quot; by some native people'.&lt;br /&gt;
|-&lt;br /&gt;
| The Meeting Place || [[wikipedia:Canberra|Canberra]] || The capital city of Australia has its name derived from 'Meeting Place' in the local Aboriginal language, because of a seasonal food boom (Bogong Moths) that drew tribes to the area each year.&lt;br /&gt;
|-&lt;br /&gt;
| The Dark Star || || ''Dark Star'' is a 1974 science fiction comedy film.&lt;br /&gt;
|-&lt;br /&gt;
| The Walled Garden || {{w|Walled garden (technology)}} || A walled garden is a virtual environment where the user can only view content that is published or permitted by the proprietor, e.g. AOL or Facebook. This could also be a reference to walled cities, e.g. from the Middle Ages, or the {{w|Kowloon Walled City}} in the modern era. ''The Secret Garden'' is a book by Frances Hodgson Burnett. Or possibly a reference to the {{w|Hanging Gardens of Babylon}}&lt;br /&gt;
|-&lt;br /&gt;
| Skin City || [[wikipedia:Sin City (description)|Sin City]] || Generic term for a city well known for gambling, drugs, or other vices. Also Las Vegas.&lt;br /&gt;
|-&lt;br /&gt;
| The Horse Rotary || || Horse and rotary are both types of clothes dryer.  Might reference The Windy City, which would also likely be good for drying clothes.&lt;br /&gt;
|-&lt;br /&gt;
| Turkeytown || Turkeytown || A town in Lincoln County, Kentucky&lt;br /&gt;
|-&lt;br /&gt;
| The Naked Towers || || ''The Naked City'' was a television series.  ''The Two Towers'' is a book by Tolkien, and ''Naked Lunch'' is a book by Burroughs &lt;br /&gt;
|-&lt;br /&gt;
| The Meta-City || Metacity || A term for a heterogenous, sprawling urban center with multiple dense centers, such as Tokyo or New York City. Metacity was also the window manager in the Linux GNOME 2 desktop.&lt;br /&gt;
|-&lt;br /&gt;
| The Urban Orb || || The screen name of a Let's Player on Youtube and Twitch. - Also maybe once more: Rome and the Rest of the world, as in the popes adress to the urbi (city: meaning rome ) and orbi (circle: meaning the world)&lt;br /&gt;
|-&lt;br /&gt;
| The City of Angles || City of Angels || Los Angeles. Also, the titular City of Angles in the web novel [http://stefangagne.com/cityofangles/ City of Angles]. There also exist several songs with that name, a few of them listed here: {{w|City of Angels}}.&lt;br /&gt;
|-&lt;br /&gt;
| The Big Wheel || [http://www.imdb.com/title/tt0041179/ The Big Wheel] || A 1949 movie about a race car driver. Alternatively, a child's plastic tricycle with an oversized front wheel.&lt;br /&gt;
|-&lt;br /&gt;
| Bird City USA || || A program started by the Audubon Society. &lt;br /&gt;
|-&lt;br /&gt;
| The City of Seven Crowns || City of Seven Hills || Rome. Also occasionally refers to Moscow. The next nickname is likely a reference to the 'wrong' part of this nickname.&lt;br /&gt;
|-&lt;br /&gt;
| Hilltopia || The Hilltop || May be reference to The Hilltop in AMC's The Walking Dead&lt;br /&gt;
|-&lt;br /&gt;
| Bug City || || A nickname for the bug-infested Chicago in the roleplaying game Shadowrun. Also, a sourcebook for the game.&lt;br /&gt;
|-&lt;br /&gt;
| The Bottomless Cup || || There are many mentions of Bottomless Pits in stories.  Additionally, restaurants offering unlimited refills on drinks may refer to this offer by terms like &amp;quot;Bottomless Soda.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Lorde's Fen || Lord's Fen || [[wikipedia:Lorde| Lorde]] is a musical artist from Herne Bay, New Zealand - an area near Waitemata Harbour. A [[wikipedia:Fen| fen]] is a type of wetland, which could loosely connect to Herne Bay. &lt;br /&gt;
|-&lt;br /&gt;
| The Last Town || || The third book in the Wayward Pines series. &lt;br /&gt;
|-&lt;br /&gt;
| The Empty Set || || The concert hall in the video game Transistor. In mathematics, the {{w|empty set}} refers to an unique set with no elements, often notated as &amp;quot;{}&amp;quot; or &amp;quot;∅&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| Ghost Harbor || || The name for a brewing company in North Carolina.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=wikitable&lt;br /&gt;
! Demonym in comic&lt;br /&gt;
! Reference&lt;br /&gt;
! Explanation&lt;br /&gt;
|-&lt;br /&gt;
| Northlanders || {{w|Norsemen}} || Norsemen, literally men from the north, people from Scandinavia.  Could also be a reference to highlanders, the people of the {{w|Scottish Highlands}}, with a similar demonym. The &amp;quot;High&amp;quot; in &amp;quot;Highlands&amp;quot; is a reference to the mountainous landscape, not the geographical position. It may or may not have to do with the northernmost province of {{w|New Zealand}}&lt;br /&gt;
|-&lt;br /&gt;
| Fair Folk || {{w|Fairy}} || The fair folk is a name for fairies in folklore.  The elves in ''The Lord of the Rings'' are referred to as the 'fair folk'. &lt;br /&gt;
|-&lt;br /&gt;
| Honey Barons || [[wikipedia: Robber_baron_(industrialist) | Robber Barons]], [[wikipedia: Honey_badger | Honey Badgers]], [[wikipedia: Honey bear| honey bear]] || Possibly a play on The Robber Barons, a group of powerful industrialists in the late 1800s known for questionable business ethics, and honey badgers, animals known for their tough skin, bad tempers, and tenacity.  Honey bear is a name for a few types of bear, as well as kinkajous.  &lt;br /&gt;
|-&lt;br /&gt;
| Lake Dwellers || The Hobbit || Most likely a reference the people of the Laketown in J.R.R.Tolkien's &amp;quot;The Hobbit&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Treasurers || || A {{w|treasurer}} is a person in charge of running the treasury of an organization, for example a governmental department.  The Auditors were characters in Terry Pratchett's Discworld books who did the book-keeping for reality, and wanted to simplify the universe by destroying life.&lt;br /&gt;
|-&lt;br /&gt;
| Swamp Watchers || ||&lt;br /&gt;
|-&lt;br /&gt;
| Dream Farmers || The Dream Factory || Hollywood, California, in its role as the center of the American film industry.&lt;br /&gt;
|-&lt;br /&gt;
| Wellfolk || Werefolk || The were folk were people who could change into animals:  e.g. werewolves.&lt;br /&gt;
|-&lt;br /&gt;
| Rockeaters || [[Wikipedia:List_of_The_Neverending_Story_characters#Pyornkrachzark_and_the_other_messengers| Rockbiter]] || In the ''Never Ending Story'', Pyornkrachzark, more commonly known as &amp;quot;Rock Biter&amp;quot; is a large creature made completely of stone, named due to their diet of rocks.  &lt;br /&gt;
May also refer to {{w|Lotus-eaters}}; while these mythical people slept in narcotic apathy, rockeaters might have a tougher time.&lt;br /&gt;
|-&lt;br /&gt;
| Forgotten Royals || [[wikipedia:Forgotten Realms | Forgotten Realms]] || Royalty from Dungeons and Dragons (D&amp;amp;D) campaign setting&lt;br /&gt;
|-&lt;br /&gt;
| Remote Clients || [[wikipedia:Remote_computer|Remote client]] || In computing, a remote client is a program used to access a computer or service over a network.&lt;br /&gt;
|-&lt;br /&gt;
| Barrow-Clerks || [http://lotr.wikia.com/wiki/Barrow-wights Barrow-wights] || Wraith like creatures in ''The Lord of the Rings''. The hobbits come across them in the [http://lotr.wikia.com/wiki/Barrow-downs Barrow-downs].  &lt;br /&gt;
Those who keep records of items deposited in a grave mound or barrow.&lt;br /&gt;
|-&lt;br /&gt;
| The People of Land and Sky || [[wikipedia:Sea_Peoples|Sea Peoples]] ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
:[Black Hat, Megan, and Ponytail are standing on a hill overlooking a city. The Gateway Arch is visible, as well as a number of skyscrapers in the skyline.]&lt;br /&gt;
:Black Hat: Ah, New York. The Hot Tamale.&lt;br /&gt;
:Megan: This is St. Louis. Also, that's not–&lt;br /&gt;
:Black Hat: The Winged City. The Gold Trombone. Castleopolis.&lt;br /&gt;
:Megan: It's none of those.&lt;br /&gt;
&lt;br /&gt;
:[Close-up of Black Hat]&lt;br /&gt;
:Black Hat: The Kissing Kingdom. Sandland. The High Place. Ol' Ironhook.&lt;br /&gt;
:Megan (off-panel): Still wrong.&lt;br /&gt;
:Black Hat: The Thousand Spires. The Graveyard of Kings. Bloomtown. Lantern City USA.&lt;br /&gt;
:Megan (off-panel): Please stop.&lt;br /&gt;
&lt;br /&gt;
:[Black Hat, Megan, and Ponytail are walking]&lt;br /&gt;
:Black Hat: The City of Many Daughters. Big Mauve. The Glass Cradle. The Road Source. London Prime. Hamtown. The Salad Bowl. God's Boudoir. The Glittering Swamp. The Steel Forest. The Mobius Strip. The Land of Trains and Fog. The Meeting Place. The Dark Star. The Walled Garden. Skin City. The Horse Rotary. Turkeytown. The Naked Towers. The Meta-City. The Urban Orb. The City of Angles. The Big Wheel. Bird City USA. The City of Seven Crowns. Hilltopia. Bug City. The Bottomless Cup. [Text size getting smaller] Lorde's Fen. The Last Town. The Empty Set. Ghost Harbor.&lt;br /&gt;
:Megan: How long does this last?&lt;br /&gt;
:Ponytail: No city has ever let him stay long enough to find out.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;/div&gt;</summary>
		<author><name>141.101.99.101</name></author>	</entry>

	</feed>