<?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=Sean+Roach</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=Sean+Roach"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/Sean_Roach"/>
		<updated>2026-05-15T07:00:16Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1667:_Algorithms&amp;diff=117709</id>
		<title>Talk:1667: Algorithms</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1667:_Algorithms&amp;diff=117709"/>
				<updated>2016-04-13T10:33:26Z</updated>
		
		<summary type="html">&lt;p&gt;Sean Roach: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Please sign your posts with a ~~~~ --&amp;gt;&lt;br /&gt;
How can an excel spreadsheet be complicated? [[Special:Contributions/108.162.244.85|108.162.244.85]] 04:52, 13 April 2016 (UTC&lt;br /&gt;
:See this example http://arstechnica.com/gaming/2013/04/how-an-accountant-created-an-entire-rpg-inside-an-excel-spreadsheet/ {{unsigned ip|108.162.216.82}}&lt;br /&gt;
&lt;br /&gt;
Leftpad is a reference to the recent incident where a developer unpublished all his libraries from the NodeJS Package Manager, causing much disruption: http://www.theregister.co.uk/2016/03/23/npm_left_pad_chaos/ [[Special:Contributions/162.158.85.231|162.158.85.231]] 05:58, 13 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
In the off chance that this is referencing an actual spreadsheet, and if anyone has a link, please post it in my talk page.  (And in the article of course, but talk page first) [[User:Mikemk|Mikemk]] ([[User talk:Mikemk|talk]]) 06:45, 13 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The remark about quicksort's efficiency doesn't make sense. It's still the most common and practical general sorting algorithm. It's about as efficient you can typically get except in specialized cases or with some specific type of data. Should be removed imo. [[Special:Contributions/141.101.81.121|141.101.81.121]] 08:52, 13 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added a [Citation Needed] for the excel based RPG. More so I can read about it/play it than anything else.. [[User:Xseo|Xseo]] ([[User talk:Xseo|talk]]) 09:07, 13 April 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Added a bit to the church line. Just because you only see what happens on Sunday morning, for one hour, doesn't mean there's not more happening just beneath the surface. The classroom list at our church looks like a professional buildings office directory, and I know of members having to choose between two activities because both meet, or practice, at the same time. For instance, I know of a prospective AV team member who will never be a full time AV member, because she's a Soprano and already in Bells. (AV is setting up and debugging while the choir is practicing, and naturally it's hard to run a mixer or video switcher from the choir loft.)&lt;br /&gt;
&lt;br /&gt;
Mind you, it's still hyperbole, but not to the degree previously given in the explanation.&lt;/div&gt;</summary>
		<author><name>Sean Roach</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1667:_Algorithms&amp;diff=117708</id>
		<title>1667: Algorithms</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1667:_Algorithms&amp;diff=117708"/>
				<updated>2016-04-13T10:26:11Z</updated>
		
		<summary type="html">&lt;p&gt;Sean Roach: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1667&lt;br /&gt;
| date      = April 13, 2016&lt;br /&gt;
| title     = Algorithms&lt;br /&gt;
| image     = algorithms.png&lt;br /&gt;
| titletext = There was a schism in 2007, when a sect advocating OpenOffice created a fork of Sunday.xlsx and maintained it independently for several months. The efforts to reconcile the conflicting schedules led to the reinvention, within the cells of the spreadsheet, of modern version control.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Still need an explanation of the title text, and perhaps some expanded definitions of the listed algorithms.}}&lt;br /&gt;
An algorithm is a basic set of instructions for performing a task, usually on a computer. This comic lists some algorithms in increasing order of complexity.&lt;br /&gt;
&lt;br /&gt;
At the simplest end is '''left-pad''', or adding filler characters on the left end of a string to make it a particular length. In many programming languages, this is one line of code. This is a reference to a [http://www.haneycodes.net/npm-left-pad-have-we-forgotten-how-to-program/ recent incident] when {{w|Npm (software)|NodeJS Package Manager}} [https://www.techdirt.com/articles/20160324/17160034007/namespaces-intellectual-property-dependencies-big-giant-mess.shtml angered a developer] in its handling of a trademark claim.  The developer unpublished all of his modules from NPM, including a package implementing left-pad.  A huge number of programs depended on this third-party library instead of programming it on their own, and they immediately ceased to function.&lt;br /&gt;
&lt;br /&gt;
Next is '''{{w|Quicksort}}''', a classic way to sort a list of items.&lt;br /&gt;
&lt;br /&gt;
'''{{w|Git (software)|Git}}''' is a version control program, i.e. software that allows multiple people to work on the same files at the same time. When someone finalizes (&amp;quot;commits&amp;quot;) their changes, the version control program needs to figure out how to join the new content with the existing content. This process is called '''{{w|Merge (version control)|merging}}''', and the algorithm for it is anything but simple.&lt;br /&gt;
&lt;br /&gt;
'''{{w|Self-driving car}}''' is what it says on the tin: an automobile with sensors and software built into it so that it can maneuver in traffic autonomously, i.e. without a human controller. Various companies have been working on such vehicles for many years now, and while they're further along now than would have been imaginable even a couple of years ago, we're still far away from the dream of hopping in a driverless taxi and sitting back as the car itself navigates to where we want to be.&lt;br /&gt;
&lt;br /&gt;
The '''{{w|Google Search}} backend''' is what enables you to type &amp;quot;the heck is a leftpad algorithm&amp;quot; into your browser and have Mr. Google return a list of relevant results, including correcting &amp;quot;leftpad&amp;quot; to &amp;quot;left-pad&amp;quot;, ignoring the &amp;quot;what the heck&amp;quot; part, and sometimes even summarizing the findings into a box at the top of the results. Behind all that magic is a way to remember what pages the internet contains, which is just a mind-bogglingly large quantity of data, and an even more mind-numbingly complex set of algorithms for processing that data.&lt;br /&gt;
&lt;br /&gt;
The last item is the punchline: a sprawling {{w|Microsoft Excel|Excel}} {{w|spreadsheet}} built up over 20 years by a church group in Nebraska to coordinate their scheduling. Spreadsheets are a general {{w|end-user development}} programming technique, and therefore people use Excel for all sorts of purposes that have nothing to do with accounting (its original purpose), including one guy who made a [http://arstechnica.com/gaming/2013/04/how-an-accountant-created-an-entire-rpg-inside-an-excel-spreadsheet/ role-playing game that runs in Excel]; but even that doesn't approach the complexity that develops when multiple people of varying levels of experience use a spreadsheet over many years for the purpose of coordinating the schedule of several coordinated groups. &lt;br /&gt;
&lt;br /&gt;
The scheduling of tasks over a group of resources (a.k.a. the ''{{w|nurse scheduling problem}}''), while respecting the constraints set by each person, is a {{w|NP-hardness|highly complex}} problem requiring stochastic or heuristic methods for its resolution. Here, the algorithm would be further complicated by being solved by inexpert users over a spreadsheet model without using engineering practices. The hyperbole here is in thinking that such combination of circumstances would produce complexity far over that required to drive a car or sort the public contents of the internet. A church always meets on Sunday morning, so there's no actual complexity in organizing that service, however, with different members involved in a wide variety of activities within and without the church, and the classrooms available to the church on Sunday itself, (just scheduling the choir practice times to coordinate with every ones work schedules is very possibly impossible, especially if two people share the same occupation, and one is the relief for the other,) can indeed be daunting.&lt;br /&gt;
&lt;br /&gt;
In the title text, part of the spreadsheet's complexity is described as originating from different versions of the file for different programs. The words used like schism and sect are normally used in context of religions splitting into groups about differences in believe questions. This refers on one hand to the church group handling the spreadsheet. But in this case the group split up over the use of open source software and not believe questions. On the other hand discussions on open source software are sometimes led like religious debates.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
'''Algorithms'''&amp;lt;br&amp;gt;By Complexity&lt;br /&gt;
{|&lt;br /&gt;
|colspan=&amp;quot;6&amp;quot; style=&amp;quot;text-align:left;border-bottom:1px solid;&amp;quot;|More complex &amp;amp;rarr;&lt;br /&gt;
|- style=&amp;quot;vertical-align:top;&amp;quot;&lt;br /&gt;
|style=&amp;quot;padding-right:2em;&amp;quot;|Leftpad&lt;br /&gt;
|style=&amp;quot;padding-right:2em;&amp;quot;|Quicksort&lt;br /&gt;
|style=&amp;quot;padding-right:2em;&amp;quot;|GIT&amp;lt;br&amp;gt;Merge&lt;br /&gt;
|style=&amp;quot;padding-right:2em;&amp;quot;|Self-&amp;lt;br&amp;gt;driving&amp;lt;br&amp;gt;car&lt;br /&gt;
|style=&amp;quot;padding-right:8em;&amp;quot;|Google&amp;lt;br&amp;gt;Search&amp;lt;br&amp;gt;backend&lt;br /&gt;
|Sprawling Excel spreadsheet&amp;lt;br&amp;gt;built up over 20 years by a&amp;lt;br&amp;gt;church group in Nebraska to&amp;lt;br&amp;gt;coordinate their scheduling&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Include any categories below this line. --&amp;gt;&lt;br /&gt;
[[Category:Charts]]&lt;/div&gt;</summary>
		<author><name>Sean Roach</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1193:_Externalities&amp;diff=32268</id>
		<title>1193: Externalities</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1193:_Externalities&amp;diff=32268"/>
				<updated>2013-04-02T16:23:55Z</updated>
		
		<summary type="html">&lt;p&gt;Sean Roach: /* First Panel */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1193&lt;br /&gt;
| date      = April 1, 2013&lt;br /&gt;
| title     = Externalities&lt;br /&gt;
| image     = externalities.png&lt;br /&gt;
| titletext = Mouse over words and things to see where they come from.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic isn't a static image - even the title text changes depending on which part of the image you're hovering over. The blank regions in the above image are dynamically generated from various sources.&lt;br /&gt;
&lt;br /&gt;
*The university that is being recruited changes depending on which university is winning the hash finding competition in the fifth panel.&lt;br /&gt;
*The company doing the recruiting is the first NASDAQ-100 company mentioned on a varying Wikipedia page (so far: Technology, Research, Sith, Jean Luc Picard, Aer Lingus, Human sexual activity, Auction, Sinking of the Titanic, Guards with the most complicated knives, Bizarro, Map, 24-hour analog dial, Berlin Hauptbahnhof, Centrifugal Force, McDuck, Maryland Route 147, Interplanetary Transfer Network). It has also shown &amp;lt;nowiki&amp;gt;[[]]&amp;lt;/nowiki&amp;gt; as the source.&lt;br /&gt;
**It has started using hints instead of titles, with another article linked somewhere else in the first panel. This article sometimes matches the hint.&lt;br /&gt;
*The text in the second panel may vary: See [[1193: Externalities#Second Panel|this section]].&lt;br /&gt;
*The text in the third panel may vary: See [[1193: Externalities#Third Panel|this section]].&lt;br /&gt;
*The text in the fourth panel may vary: See [[1193: Externalities#Fourth Panel|this section]].&lt;br /&gt;
*The text in the fifth panel changes, depending on which university is currently in third place in a hash finding competition. Clicking on the panel takes you to [http://almamater.xkcd.com/ a webpage] where people can enter their school's domain name and hash data, and ranks schools on how close their students can come to matching a Skein 1024 1024 hash value.&lt;br /&gt;
*The text in the top half of the sixth panel may vary. See [[1193: Externalities#Sixth Panel|this section]]. The second half of the panel is always the same. &amp;lt;!-- So far --&amp;gt;&lt;br /&gt;
*The last panel varies with the amount donated to the Wikimedia Foundation via [https://donate.wikimedia.org/w/index.php?title=Special:FundraiserLandingPage&amp;amp;country=HK&amp;amp;uselang=en&amp;amp;utm_medium=socialmedia&amp;amp;utm_source=fr-redir&amp;amp;utm_campaign=xkcd_april1 this link]. For past images, see [[1193: Externalities#Seventh Panel|this section]].&lt;br /&gt;
&lt;br /&gt;
===First Panel===&lt;br /&gt;
{{incomplete}}&lt;br /&gt;
In some cases, Megan's reply seems to correspond to the company.&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you applied to [company] yet?&lt;br /&gt;
:Megan: The recruiter hasn't emailed me back in over three minutes.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you applied to [company] yet?&lt;br /&gt;
:Megan: The recruiter hasn't emailed me back in over an hour!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: I'm not that good at math.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: What do they even do?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: I don't like monopolies.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: Only in my darkest moments.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Be part of the Apple experience!&lt;br /&gt;
:Megan: I'm not really a fan of turtlenecks.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Come work at Microsoft!&lt;br /&gt;
:Megan: I only came to this tech talk for the xbox giveaway.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Y U No Work Yahoo?&lt;br /&gt;
:Megan: I like working from home!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Become a partner at Starbucks!&lt;br /&gt;
:Megan: But green's not my colour.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Come work in the Amazon!&lt;br /&gt;
:Megan: I don't have to actually move to South America, do I?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: Not after that presentation.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Thought about working for Intel?&lt;br /&gt;
:Megan: I'm not that great at division.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Dude, you should work at Dell!&lt;br /&gt;
:Megan: That catchphrase is so old.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Ahoy, carnegie melonites!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: Not after that presentation.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you looked for a job at Kraft Foods?&lt;br /&gt;
:Megan: I'm allergic to sugar&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:How about working for Whole Foods?&lt;br /&gt;
:Megan: Could I afford the food if I did?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Come work at EBay!&lt;br /&gt;
:Megan: Maybe if they made a good bid.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Second Panel===&lt;br /&gt;
The text in the second panel is based on the company in the first panel:&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:When the Singularity happens, it will happen here.&lt;br /&gt;
:Ponytail: [Company] has outgrown us.&lt;br /&gt;
:Men: It is time.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Think of ways to make things smaller and smaller!&lt;br /&gt;
:Ponytail: I'm worried mine is too big.&lt;br /&gt;
:Men: Yeahhh&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Think of ways to make things smaller and smaller!&lt;br /&gt;
:Ponytail: But will it blend?&lt;br /&gt;
:Men: Yeahhh&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll be part of a dynamic research team envisioning the future.&lt;br /&gt;
:Ponytail: It probably looks cool.&lt;br /&gt;
:Men: Yeahhh&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll be creating the future of commerce platforms!&lt;br /&gt;
:Ponytail: More recommendations.&lt;br /&gt;
:Men: Yep.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll be an insignificant cog in our giant machine&lt;br /&gt;
:Ponytail: We should improve Notepad&lt;br /&gt;
:Men: Nah&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:We can't tell you what you'll be working on.&lt;br /&gt;
:Ponytail: [Confidential]&lt;br /&gt;
:Men: [Redacted]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll be an insignificant cog in our giant machine&lt;br /&gt;
:Ponytail: Needs more Bob.&lt;br /&gt;
:Men: Nah&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll help set the future of the company&lt;br /&gt;
:Ponytail: Wait. You hired a college grad as the CFO?&lt;br /&gt;
:Men: Yeahhh&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:At Qualcomm, we know you're born mobile.&lt;br /&gt;
:Ponytail: Born mobile!&lt;br /&gt;
:Men: Texting!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Short or tall, we've got a grande job for you!&lt;br /&gt;
:Ponytail: How many job openings are there?&lt;br /&gt;
:Men: Ele-venti or so.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll help direct the future of nutrition&lt;br /&gt;
:Ponytail: Microwaveable toast&lt;br /&gt;
:Men: Delicious&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Help us find and provide the best healthy, local, and sustainable products.&lt;br /&gt;
:Ponytail: Hey guys, how about kale cookies?&lt;br /&gt;
:Men: Sounds great!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:We're the Classmates.com to Facebook's Craigslist.&lt;br /&gt;
:Ponytail: Maybe we should use game theory.&lt;br /&gt;
:Men: Why Bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Third Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|We're a convenient four hour drive from New York City (15,000 hours by roomba)&lt;br /&gt;
|-&lt;br /&gt;
|Only a short commuter flight away!&lt;br /&gt;
|-&lt;br /&gt;
|Travel to us by roomba, we're *that* close!&lt;br /&gt;
|-&lt;br /&gt;
|We're so close you can get to us by roomba.&lt;br /&gt;
|-&lt;br /&gt;
|Free roomba rides every morning while you have coffee.&lt;br /&gt;
|-&lt;br /&gt;
|Your roomba comes in black &amp;amp; slate, or white &amp;amp; silver&lt;br /&gt;
|-&lt;br /&gt;
|Just a short roomba ride up the coast, try not to fall off.&lt;br /&gt;
|-&lt;br /&gt;
|We know what everyday life is like for your generation:&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Fourth Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Our recruiting team is on the lookup for promising young [university] graduates.&lt;br /&gt;
|-&lt;br /&gt;
|We hired a new recruiting startup to help us hire [university] students.&lt;br /&gt;
|-&lt;br /&gt;
|We borrowed the botanical gardens' net to catch promising recruits.&lt;br /&gt;
|-&lt;br /&gt;
|We prefer to recruit from [university] students, of course.&lt;br /&gt;
|-&lt;br /&gt;
|Our recruiters are on the hunt for unaware [university] graduates.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Fifth Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
| &amp;lt;b&amp;gt;Email&amp;lt;/b&amp;gt;&lt;br /&gt;
| &amp;lt;b&amp;gt;Education&amp;lt;/b&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Oliver Smoot&lt;br /&gt;
|pgp encrypted&lt;br /&gt;
|have you ever really looked at the fourier&lt;br /&gt;
|-&lt;br /&gt;
|Wheeeee&lt;br /&gt;
|ford.com&lt;br /&gt;
|stealing lunches from startups&lt;br /&gt;
|-&lt;br /&gt;
|leeroy jenkins&lt;br /&gt;
|me@car&lt;br /&gt;
|I can cut up melons&lt;br /&gt;
|-&lt;br /&gt;
|pittsburgh&lt;br /&gt;
|me@car&lt;br /&gt;
|I can cut up melons&lt;br /&gt;
|-&lt;br /&gt;
|SEGMENTATION FAULT&lt;br /&gt;
|save trees&lt;br /&gt;
|Contra dancing.&lt;br /&gt;
|-&lt;br /&gt;
|I'm applying&lt;br /&gt;
|cam.gov&lt;br /&gt;
|on going problems with birds&lt;br /&gt;
|-&lt;br /&gt;
|certainly&lt;br /&gt;
|elephant&lt;br /&gt;
|An excellent year in the Sahara&lt;br /&gt;
|-&lt;br /&gt;
|Stanford&lt;br /&gt;
|ford.com&lt;br /&gt;
|Stealing lunches from startups&lt;br /&gt;
|-&lt;br /&gt;
|Yes Please&lt;br /&gt;
|@twitter&lt;br /&gt;
|Are you Stanford?&lt;br /&gt;
|-&lt;br /&gt;
|Applying&lt;br /&gt;
|For a job&lt;br /&gt;
|I would like to work at you&lt;br /&gt;
|-&lt;br /&gt;
|Me olaf&lt;br /&gt;
|You Helga&lt;br /&gt;
|Hunting wooly mammoths&lt;br /&gt;
|-&lt;br /&gt;
|Oh!&lt;br /&gt;
|IO&lt;br /&gt;
|O HAI O&lt;br /&gt;
|-&lt;br /&gt;
|FOLLOWBACK&lt;br /&gt;
|TOTALLY.EDU.US&lt;br /&gt;
|CONVENIENT US DOMAIN REDIRECTS&lt;br /&gt;
|-&lt;br /&gt;
|Mancher&lt;br /&gt;
|Outlook&lt;br /&gt;
|Made a collage out of macaroni&lt;br /&gt;
|-&lt;br /&gt;
|Yes Please&lt;br /&gt;
|ford.com&lt;br /&gt;
|Are you Stanford?&lt;br /&gt;
|-&lt;br /&gt;
|ANN&lt;br /&gt;
|SOUTH DETROIT&lt;br /&gt;
|HUNT LIKE A WOLVERINE&lt;br /&gt;
|-&lt;br /&gt;
|christopher&lt;br /&gt;
|POBox 12532&lt;br /&gt;
|p.s. ill find my frog&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The text at the top occasionally changes format, too.&lt;br /&gt;
&lt;br /&gt;
* Possibly Stanford grads, if their form-filling startup works out.&lt;br /&gt;
&lt;br /&gt;
===Sixth Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|At [company], you'll work at a scale you won't find anywhere else&lt;br /&gt;
|-&lt;br /&gt;
|Explore the depths of expensive and undocumented tools!&lt;br /&gt;
|-&lt;br /&gt;
|At Apple, we believe in pushing the boundary of perfection.&lt;br /&gt;
|-&lt;br /&gt;
|At Microsoft, you just need to relax and embrace the machine &amp;lt;!-- no period --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Yahoo management aren't just suits. We code too!&lt;br /&gt;
|-&lt;br /&gt;
|At QUALCOMM Incorporated, you'll have the opportinity to work on cutting-edge projects.&lt;br /&gt;
|-&lt;br /&gt;
|At Amazon, you'll be shaving the most cutting-edge of yaks.&lt;br /&gt;
|-&lt;br /&gt;
|You get to bid first on any auction, and use other experimental tools!&lt;br /&gt;
|-&lt;br /&gt;
|At QUALCOMM, Device driver code quality is job #1&lt;br /&gt;
|-&lt;br /&gt;
|We're even working on some experimental biotechnology&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seventh Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog1.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog2.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog3.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog4.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog5.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog6.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog7.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog8.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog9.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog10.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog11.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog12.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog13.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog14.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog15.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog16.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog17.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog18.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog19.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog20.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Title Text==&lt;br /&gt;
{{incomplete}}&lt;br /&gt;
The title text documents the different sources of data in the comic. The different title texts are:&lt;br /&gt;
&lt;br /&gt;
:Mouse over words and things to see where they come from. - for most of the comic.&lt;br /&gt;
:Happy April 1st, Everyone!&lt;br /&gt;
:Mouse over text for bottom panel:&lt;br /&gt;
:The dog gains a pound for every $10 donated to the wikmedia foundation via this link.  Currently at $15012.49 (note: at 11:38am Eastern)&lt;br /&gt;
:…Currently at $26639.77 19:56 EDT&lt;br /&gt;
:…Currently at $26806.99 20:13 EDT&lt;br /&gt;
:…Currently at $27576.54 20:48 EDT&lt;br /&gt;
:Google Inc. is the first NASDAQ-100 company mentioned on the wikipedia page &amp;lt;nowiki&amp;gt;[[Aer_Lingus]]&amp;lt;/nowiki&amp;gt; (note: links to [[Wikipedia:Aer Lingus|Aer Lingus]])&lt;br /&gt;
:This will be changed if a NASDAQ-100 company is mentioned earlier in the Wikipedia article on &amp;lt;nowiki&amp;gt;[[page]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
:This will be changed if a NASDAQ-100 company is mentioned earlier in the Wikipedia article on &amp;lt;nowiki&amp;gt;{{hint: }}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[The comic is dynamically generated from multiple sources.]&lt;br /&gt;
&lt;br /&gt;
:[First panel [[1193: Externalities#First Panel|transcript varies.]]]&lt;br /&gt;
&lt;br /&gt;
:[Second panel [[1193: Externalities#Second Panel|transcript varies.]]]&lt;br /&gt;
&lt;br /&gt;
:[Third panel [[1193: Externalities#Third Panel|transcript varies.]]]&lt;br /&gt;
:[Ponytail riding on a roomba.]&lt;br /&gt;
&lt;br /&gt;
:[Fourth panel [[1193: Externalities#Fourth Panel|transcript varies.]]]&lt;br /&gt;
:[A group of people waiting outside a door. One of them is holding a large net.]&lt;br /&gt;
&lt;br /&gt;
:Or [university] graduates, provided any of them manage to fill out the application correctly.&lt;br /&gt;
:Name: [random]&lt;br /&gt;
:Email: [Third place university]&lt;br /&gt;
&lt;br /&gt;
:[Sixth panel [[1193: Externalities#Sixth Panel|transcript varies.]]]&lt;br /&gt;
:Cueball: What does &amp;quot;make dog&amp;quot; do?&lt;br /&gt;
:Off-panel: Experimental dog generator. Don't click on it; the default size isn't set, so-&lt;br /&gt;
:'''*click*'''&lt;br /&gt;
&lt;br /&gt;
:''KZZZT''&lt;br /&gt;
:BIP&lt;br /&gt;
:Off-screen: Uh-oh.&lt;br /&gt;
&lt;br /&gt;
:[Last panel's [[1193: Externalities#Seventh Panel|transcript varies.]]]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Dynamic comics]]&lt;/div&gt;</summary>
		<author><name>Sean Roach</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1193:_Externalities&amp;diff=32267</id>
		<title>1193: Externalities</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1193:_Externalities&amp;diff=32267"/>
				<updated>2013-04-02T16:23:07Z</updated>
		
		<summary type="html">&lt;p&gt;Sean Roach: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1193&lt;br /&gt;
| date      = April 1, 2013&lt;br /&gt;
| title     = Externalities&lt;br /&gt;
| image     = externalities.png&lt;br /&gt;
| titletext = Mouse over words and things to see where they come from.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic isn't a static image - even the title text changes depending on which part of the image you're hovering over. The blank regions in the above image are dynamically generated from various sources.&lt;br /&gt;
&lt;br /&gt;
*The university that is being recruited changes depending on which university is winning the hash finding competition in the fifth panel.&lt;br /&gt;
*The company doing the recruiting is the first NASDAQ-100 company mentioned on a varying Wikipedia page (so far: Technology, Research, Sith, Jean Luc Picard, Aer Lingus, Human sexual activity, Auction, Sinking of the Titanic, Guards with the most complicated knives, Bizarro, Map, 24-hour analog dial, Berlin Hauptbahnhof, Centrifugal Force, McDuck, Maryland Route 147, Interplanetary Transfer Network). It has also shown &amp;lt;nowiki&amp;gt;[[]]&amp;lt;/nowiki&amp;gt; as the source.&lt;br /&gt;
**It has started using hints instead of titles, with another article linked somewhere else in the first panel. This article sometimes matches the hint.&lt;br /&gt;
*The text in the second panel may vary: See [[1193: Externalities#Second Panel|this section]].&lt;br /&gt;
*The text in the third panel may vary: See [[1193: Externalities#Third Panel|this section]].&lt;br /&gt;
*The text in the fourth panel may vary: See [[1193: Externalities#Fourth Panel|this section]].&lt;br /&gt;
*The text in the fifth panel changes, depending on which university is currently in third place in a hash finding competition. Clicking on the panel takes you to [http://almamater.xkcd.com/ a webpage] where people can enter their school's domain name and hash data, and ranks schools on how close their students can come to matching a Skein 1024 1024 hash value.&lt;br /&gt;
*The text in the top half of the sixth panel may vary. See [[1193: Externalities#Sixth Panel|this section]]. The second half of the panel is always the same. &amp;lt;!-- So far --&amp;gt;&lt;br /&gt;
*The last panel varies with the amount donated to the Wikimedia Foundation via [https://donate.wikimedia.org/w/index.php?title=Special:FundraiserLandingPage&amp;amp;country=HK&amp;amp;uselang=en&amp;amp;utm_medium=socialmedia&amp;amp;utm_source=fr-redir&amp;amp;utm_campaign=xkcd_april1 this link]. For past images, see [[1193: Externalities#Seventh Panel|this section]].&lt;br /&gt;
&lt;br /&gt;
===First Panel===&lt;br /&gt;
{{incomplete}}&lt;br /&gt;
In some cases, Megan's reply seems to correspond to the company.&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you applied to [company] yet?&lt;br /&gt;
:Megan: The recruiter hasn't emailed me back in over three minutes.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you applied to [company] yet?&lt;br /&gt;
:Megan: The recruiter hasn't emailed me back in over an hour!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: I'm not that good at math.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: What do they even do?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: I don't like monopolies.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: Only in my darkest moments.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Be part of the Apple experience!&lt;br /&gt;
:Megan: I'm not really a fan of turtlenecks.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Come work at Microsoft!&lt;br /&gt;
:Megan: I only came to this tech talk for the xbox giveaway.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Y U No Work Yahoo?&lt;br /&gt;
:Megan: I like working from home!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Become a partner at Starbucks!&lt;br /&gt;
:Megan: But green's not my colour.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Come work in the Amazon!&lt;br /&gt;
:Megan: I don't have to actually move to South America, do I?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: Not after that presentation.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Thought about working for Intel?&lt;br /&gt;
:Megan: I'm not that great at division.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Dude, you should work at Dell!&lt;br /&gt;
:Megan: That catchphrase is so old.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Ahoy, carnegie melonites!&lt;br /&gt;
:Have you thought of a career at [company]?&lt;br /&gt;
:Megan: Not after that presentation.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Have you looked for a job at Kraft Foods?&lt;br /&gt;
:Megan: I'm allergic to sugar&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:How about working for Whole Foods?&lt;br /&gt;
:Megan: Could I afford the food if I did?|-&lt;br /&gt;
|&lt;br /&gt;
:Hey, [university] students!&lt;br /&gt;
:Come work at EBay!&lt;br /&gt;
:Megan: Maybe if they made a good bid.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Second Panel===&lt;br /&gt;
The text in the second panel is based on the company in the first panel:&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:When the Singularity happens, it will happen here.&lt;br /&gt;
:Ponytail: [Company] has outgrown us.&lt;br /&gt;
:Men: It is time.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Think of ways to make things smaller and smaller!&lt;br /&gt;
:Ponytail: I'm worried mine is too big.&lt;br /&gt;
:Men: Yeahhh&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Think of ways to make things smaller and smaller!&lt;br /&gt;
:Ponytail: But will it blend?&lt;br /&gt;
:Men: Yeahhh&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll be part of a dynamic research team envisioning the future.&lt;br /&gt;
:Ponytail: It probably looks cool.&lt;br /&gt;
:Men: Yeahhh&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll be creating the future of commerce platforms!&lt;br /&gt;
:Ponytail: More recommendations.&lt;br /&gt;
:Men: Yep.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll be an insignificant cog in our giant machine&lt;br /&gt;
:Ponytail: We should improve Notepad&lt;br /&gt;
:Men: Nah&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:We can't tell you what you'll be working on.&lt;br /&gt;
:Ponytail: [Confidential]&lt;br /&gt;
:Men: [Redacted]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll be an insignificant cog in our giant machine&lt;br /&gt;
:Ponytail: Needs more Bob.&lt;br /&gt;
:Men: Nah&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll help set the future of the company&lt;br /&gt;
:Ponytail: Wait. You hired a college grad as the CFO?&lt;br /&gt;
:Men: Yeahhh&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:At Qualcomm, we know you're born mobile.&lt;br /&gt;
:Ponytail: Born mobile!&lt;br /&gt;
:Men: Texting!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Short or tall, we've got a grande job for you!&lt;br /&gt;
:Ponytail: How many job openings are there?&lt;br /&gt;
:Men: Ele-venti or so.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:You'll help direct the future of nutrition&lt;br /&gt;
:Ponytail: Microwaveable toast&lt;br /&gt;
:Men: Delicious&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:Help us find and provide the best healthy, local, and sustainable products.&lt;br /&gt;
:Ponytail: Hey guys, how about kale cookies?&lt;br /&gt;
:Men: Sounds great!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
:We're the Classmates.com to Facebook's Craigslist.&lt;br /&gt;
:Ponytail: Maybe we should use game theory.&lt;br /&gt;
:Men: Why Bother?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Third Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|We're a convenient four hour drive from New York City (15,000 hours by roomba)&lt;br /&gt;
|-&lt;br /&gt;
|Only a short commuter flight away!&lt;br /&gt;
|-&lt;br /&gt;
|Travel to us by roomba, we're *that* close!&lt;br /&gt;
|-&lt;br /&gt;
|We're so close you can get to us by roomba.&lt;br /&gt;
|-&lt;br /&gt;
|Free roomba rides every morning while you have coffee.&lt;br /&gt;
|-&lt;br /&gt;
|Your roomba comes in black &amp;amp; slate, or white &amp;amp; silver&lt;br /&gt;
|-&lt;br /&gt;
|Just a short roomba ride up the coast, try not to fall off.&lt;br /&gt;
|-&lt;br /&gt;
|We know what everyday life is like for your generation:&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Fourth Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|Our recruiting team is on the lookup for promising young [university] graduates.&lt;br /&gt;
|-&lt;br /&gt;
|We hired a new recruiting startup to help us hire [university] students.&lt;br /&gt;
|-&lt;br /&gt;
|We borrowed the botanical gardens' net to catch promising recruits.&lt;br /&gt;
|-&lt;br /&gt;
|We prefer to recruit from [university] students, of course.&lt;br /&gt;
|-&lt;br /&gt;
|Our recruiters are on the hunt for unaware [university] graduates.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Fifth Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;b&amp;gt;Name&amp;lt;/b&amp;gt;&lt;br /&gt;
| &amp;lt;b&amp;gt;Email&amp;lt;/b&amp;gt;&lt;br /&gt;
| &amp;lt;b&amp;gt;Education&amp;lt;/b&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Oliver Smoot&lt;br /&gt;
|pgp encrypted&lt;br /&gt;
|have you ever really looked at the fourier&lt;br /&gt;
|-&lt;br /&gt;
|Wheeeee&lt;br /&gt;
|ford.com&lt;br /&gt;
|stealing lunches from startups&lt;br /&gt;
|-&lt;br /&gt;
|leeroy jenkins&lt;br /&gt;
|me@car&lt;br /&gt;
|I can cut up melons&lt;br /&gt;
|-&lt;br /&gt;
|pittsburgh&lt;br /&gt;
|me@car&lt;br /&gt;
|I can cut up melons&lt;br /&gt;
|-&lt;br /&gt;
|SEGMENTATION FAULT&lt;br /&gt;
|save trees&lt;br /&gt;
|Contra dancing.&lt;br /&gt;
|-&lt;br /&gt;
|I'm applying&lt;br /&gt;
|cam.gov&lt;br /&gt;
|on going problems with birds&lt;br /&gt;
|-&lt;br /&gt;
|certainly&lt;br /&gt;
|elephant&lt;br /&gt;
|An excellent year in the Sahara&lt;br /&gt;
|-&lt;br /&gt;
|Stanford&lt;br /&gt;
|ford.com&lt;br /&gt;
|Stealing lunches from startups&lt;br /&gt;
|-&lt;br /&gt;
|Yes Please&lt;br /&gt;
|@twitter&lt;br /&gt;
|Are you Stanford?&lt;br /&gt;
|-&lt;br /&gt;
|Applying&lt;br /&gt;
|For a job&lt;br /&gt;
|I would like to work at you&lt;br /&gt;
|-&lt;br /&gt;
|Me olaf&lt;br /&gt;
|You Helga&lt;br /&gt;
|Hunting wooly mammoths&lt;br /&gt;
|-&lt;br /&gt;
|Oh!&lt;br /&gt;
|IO&lt;br /&gt;
|O HAI O&lt;br /&gt;
|-&lt;br /&gt;
|FOLLOWBACK&lt;br /&gt;
|TOTALLY.EDU.US&lt;br /&gt;
|CONVENIENT US DOMAIN REDIRECTS&lt;br /&gt;
|-&lt;br /&gt;
|Mancher&lt;br /&gt;
|Outlook&lt;br /&gt;
|Made a collage out of macaroni&lt;br /&gt;
|-&lt;br /&gt;
|Yes Please&lt;br /&gt;
|ford.com&lt;br /&gt;
|Are you Stanford?&lt;br /&gt;
|-&lt;br /&gt;
|ANN&lt;br /&gt;
|SOUTH DETROIT&lt;br /&gt;
|HUNT LIKE A WOLVERINE&lt;br /&gt;
|-&lt;br /&gt;
|christopher&lt;br /&gt;
|POBox 12532&lt;br /&gt;
|p.s. ill find my frog&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The text at the top occasionally changes format, too.&lt;br /&gt;
&lt;br /&gt;
* Possibly Stanford grads, if their form-filling startup works out.&lt;br /&gt;
&lt;br /&gt;
===Sixth Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|At [company], you'll work at a scale you won't find anywhere else&lt;br /&gt;
|-&lt;br /&gt;
|Explore the depths of expensive and undocumented tools!&lt;br /&gt;
|-&lt;br /&gt;
|At Apple, we believe in pushing the boundary of perfection.&lt;br /&gt;
|-&lt;br /&gt;
|At Microsoft, you just need to relax and embrace the machine &amp;lt;!-- no period --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Yahoo management aren't just suits. We code too!&lt;br /&gt;
|-&lt;br /&gt;
|At QUALCOMM Incorporated, you'll have the opportinity to work on cutting-edge projects.&lt;br /&gt;
|-&lt;br /&gt;
|At Amazon, you'll be shaving the most cutting-edge of yaks.&lt;br /&gt;
|-&lt;br /&gt;
|You get to bid first on any auction, and use other experimental tools!&lt;br /&gt;
|-&lt;br /&gt;
|At QUALCOMM, Device driver code quality is job #1&lt;br /&gt;
|-&lt;br /&gt;
|We're even working on some experimental biotechnology&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seventh Panel===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable plainlinks table-padding&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog1.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog2.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog3.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog4.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog5.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog6.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog7.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog8.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog9.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog10.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog11.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog12.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog13.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog14.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog15.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog16.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog17.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog18.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog19.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:externality-dog20.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Title Text==&lt;br /&gt;
{{incomplete}}&lt;br /&gt;
The title text documents the different sources of data in the comic. The different title texts are:&lt;br /&gt;
&lt;br /&gt;
:Mouse over words and things to see where they come from. - for most of the comic.&lt;br /&gt;
:Happy April 1st, Everyone!&lt;br /&gt;
:Mouse over text for bottom panel:&lt;br /&gt;
:The dog gains a pound for every $10 donated to the wikmedia foundation via this link.  Currently at $15012.49 (note: at 11:38am Eastern)&lt;br /&gt;
:…Currently at $26639.77 19:56 EDT&lt;br /&gt;
:…Currently at $26806.99 20:13 EDT&lt;br /&gt;
:…Currently at $27576.54 20:48 EDT&lt;br /&gt;
:Google Inc. is the first NASDAQ-100 company mentioned on the wikipedia page &amp;lt;nowiki&amp;gt;[[Aer_Lingus]]&amp;lt;/nowiki&amp;gt; (note: links to [[Wikipedia:Aer Lingus|Aer Lingus]])&lt;br /&gt;
:This will be changed if a NASDAQ-100 company is mentioned earlier in the Wikipedia article on &amp;lt;nowiki&amp;gt;[[page]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
:This will be changed if a NASDAQ-100 company is mentioned earlier in the Wikipedia article on &amp;lt;nowiki&amp;gt;{{hint: }}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[The comic is dynamically generated from multiple sources.]&lt;br /&gt;
&lt;br /&gt;
:[First panel [[1193: Externalities#First Panel|transcript varies.]]]&lt;br /&gt;
&lt;br /&gt;
:[Second panel [[1193: Externalities#Second Panel|transcript varies.]]]&lt;br /&gt;
&lt;br /&gt;
:[Third panel [[1193: Externalities#Third Panel|transcript varies.]]]&lt;br /&gt;
:[Ponytail riding on a roomba.]&lt;br /&gt;
&lt;br /&gt;
:[Fourth panel [[1193: Externalities#Fourth Panel|transcript varies.]]]&lt;br /&gt;
:[A group of people waiting outside a door. One of them is holding a large net.]&lt;br /&gt;
&lt;br /&gt;
:Or [university] graduates, provided any of them manage to fill out the application correctly.&lt;br /&gt;
:Name: [random]&lt;br /&gt;
:Email: [Third place university]&lt;br /&gt;
&lt;br /&gt;
:[Sixth panel [[1193: Externalities#Sixth Panel|transcript varies.]]]&lt;br /&gt;
:Cueball: What does &amp;quot;make dog&amp;quot; do?&lt;br /&gt;
:Off-panel: Experimental dog generator. Don't click on it; the default size isn't set, so-&lt;br /&gt;
:'''*click*'''&lt;br /&gt;
&lt;br /&gt;
:''KZZZT''&lt;br /&gt;
:BIP&lt;br /&gt;
:Off-screen: Uh-oh.&lt;br /&gt;
&lt;br /&gt;
:[Last panel's [[1193: Externalities#Seventh Panel|transcript varies.]]]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Dynamic comics]]&lt;/div&gt;</summary>
		<author><name>Sean Roach</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=File:externality-dog9.png&amp;diff=32197</id>
		<title>File:externality-dog9.png</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=File:externality-dog9.png&amp;diff=32197"/>
				<updated>2013-04-02T00:52:10Z</updated>
		
		<summary type="html">&lt;p&gt;Sean Roach: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sean Roach</name></author>	</entry>

	</feed>