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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:3026:_Linear_Sort&amp;diff=359848</id>
		<title>Talk:3026: Linear Sort</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:3026:_Linear_Sort&amp;diff=359848"/>
				<updated>2024-12-18T18:03:29Z</updated>
		
		<summary type="html">&lt;p&gt;Jlearman: &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;
First in linear time![[User:Mr. I|Mr. I]] ([[User talk:Mr. I|talk]]) 13:28, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Due to the fact that O(nlog(n)) outgrows O(n), the Linear Sort is not actually linear. [[Special:Contributions/162.158.174.227|162.158.174.227]] 14:21, 18 December 2024 (UTC)&lt;br /&gt;
:If your sleep() function can handle negative arguments &amp;quot;correctly&amp;quot;, then I guess it could work. [[Special:Contributions/162.158.91.91|162.158.91.91]] 16:27, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
That was fast... [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 15:35, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Do I even want to know what Randall's thinking nowadays? [[User:Definitely Bill Cipher|⯅A dream demon⯅]] ([[User talk:Definitely Bill Cipher|talk]]) 16:02, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
The title text would be more correct if Randall used e.g. Timsort instead of Mergesort. They both have the same worst-case complexity O(n*log(n)), but the former is linear if the list was already in order, so best-case complexity is O(n). Mergesort COULD also be implemented this way, but its standard version is never linear. [[User:Bebidek|Bebidek]] ([[User talk:Bebidek|talk]]) 16:35, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
According to my estimates extrapolated from timing the sorting of 10 million random numbers on my computer, the break-even point where the algorithm becomes worse than linear is beyond the expected heat death of the universe. I did neglect the question of where to store the input array. --[[Special:Contributions/162.158.154.35|162.158.154.35]] 16:37, 18 December 2024 (UTC)&lt;br /&gt;
:If the numbers being sorted are unique, each would need a fair number of bits to store. (Fair meaning that the time to do the comparison would be non-negligible.) If they aren't, you can just bucket-sort them in linear time. Since we're assuming absurdly large memory capacity. [[Special:Contributions/162.158.186.253|162.158.186.253]] 17:14, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
What system was the person writing the description using where Sleep(n) takes a parameter in whole seconds rather than the usual milliseconds? [[Special:Contributions/172.70.216.162|172.70.216.162]] 17:20, 18 December 2024 (UTC)&lt;br /&gt;
: First, I don't recognize the language, but sleep() takes seconds for python, C (et. al.), and no doubt many others. Second, the units don't have to be seconds, they just have to be whatever `TIME()` returns, and multiplicable by 1e6 to yield a &amp;quot;big enough&amp;quot; delay.  Of course, no coefficient is big enough for this to actually be linear in theory for any size list, so who cares?  To be truly accurate, sleep for `e^LENGTH(LIST)`, and it really won't much matter what the units are, as long as they're big enough for `SLEEP(e)` to exceed the difference in the time it takes to sort two items versus one item. Use a language-dependent coefficient as needed. [[User:Jlearman|Jlearman]] ([[User talk:Jlearman|talk]]) 18:02, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If I had a nickel for every time I saw an O(n) sorting algorithm using &amp;quot;sleep&amp;quot;… But this one is actually different. The one I usually see feeds the to-be-sorted value into the sleep function, so it schedules &amp;quot;10&amp;quot; to be printed in 10 seconds, then schedules &amp;quot;3&amp;quot; to be printed in 3 seconds, etc., which would theoretically be linear time, if the sleep function was magic. [[User:Fabian42|Fabian42]] ([[User talk:Fabian42|talk]]) 17:25, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
This comic also critiques/points out the pitfalls of measuring time complexity using Big-O notation, such as an algorithm or solution that runs in linear time still being too slow for its intended use case. [[User:Sophon|Sophon]] ([[User talk:Sophon|talk]]) 17:46, 18 December 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>Jlearman</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:3026:_Linear_Sort&amp;diff=359847</id>
		<title>Talk:3026: Linear Sort</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:3026:_Linear_Sort&amp;diff=359847"/>
				<updated>2024-12-18T18:02:11Z</updated>
		
		<summary type="html">&lt;p&gt;Jlearman: &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;
First in linear time![[User:Mr. I|Mr. I]] ([[User talk:Mr. I|talk]]) 13:28, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Due to the fact that O(nlog(n)) outgrows O(n), the Linear Sort is not actually linear. [[Special:Contributions/162.158.174.227|162.158.174.227]] 14:21, 18 December 2024 (UTC)&lt;br /&gt;
:If your sleep() function can handle negative arguments &amp;quot;correctly&amp;quot;, then I guess it could work. [[Special:Contributions/162.158.91.91|162.158.91.91]] 16:27, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
That was fast... [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 15:35, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Do I even want to know what Randall's thinking nowadays? [[User:Definitely Bill Cipher|⯅A dream demon⯅]] ([[User talk:Definitely Bill Cipher|talk]]) 16:02, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
The title text would be more correct if Randall used e.g. Timsort instead of Mergesort. They both have the same worst-case complexity O(n*log(n)), but the former is linear if the list was already in order, so best-case complexity is O(n). Mergesort COULD also be implemented this way, but its standard version is never linear. [[User:Bebidek|Bebidek]] ([[User talk:Bebidek|talk]]) 16:35, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
According to my estimates extrapolated from timing the sorting of 10 million random numbers on my computer, the break-even point where the algorithm becomes worse than linear is beyond the expected heat death of the universe. I did neglect the question of where to store the input array. --[[Special:Contributions/162.158.154.35|162.158.154.35]] 16:37, 18 December 2024 (UTC)&lt;br /&gt;
:If the numbers being sorted are unique, each would need a fair number of bits to store. (Fair meaning that the time to do the comparison would be non-negligible.) If they aren't, you can just bucket-sort them in linear time. Since we're assuming absurdly large memory capacity. [[Special:Contributions/162.158.186.253|162.158.186.253]] 17:14, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
What system was the person writing the description using where Sleep(n) takes a parameter in whole seconds rather than the usual milliseconds? [[Special:Contributions/172.70.216.162|172.70.216.162]] 17:20, 18 December 2024 (UTC)&lt;br /&gt;
- First, I don't recognize the language, but sleep() takes seconds for python, C (et. al.), and no doubt many others. Second, the units don't have to be seconds, they just have to be whatever `TIME()` returns, and multiplicable by 1e6 to yield a &amp;quot;big enough&amp;quot; delay.  Of course, no coefficient is big enough for this to actually be linear in theory for any size list, so who cares?  To be truly accurate, sleep for `e^LENGTH(LIST)`, and it really won't much matter what the units are, as long as they're big enough for `SLEEP(e)` to exceed the difference in the time it takes to sort two items versus one item. Use a language-dependent coefficient as needed. [[User:Jlearman|Jlearman]] ([[User talk:Jlearman|talk]]) 18:02, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If I had a nickel for every time I saw an O(n) sorting algorithm using &amp;quot;sleep&amp;quot;… But this one is actually different. The one I usually see feeds the to-be-sorted value into the sleep function, so it schedules &amp;quot;10&amp;quot; to be printed in 10 seconds, then schedules &amp;quot;3&amp;quot; to be printed in 3 seconds, etc., which would theoretically be linear time, if the sleep function was magic. [[User:Fabian42|Fabian42]] ([[User talk:Fabian42|talk]]) 17:25, 18 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
This comic also critiques/points out the pitfalls of measuring time complexity using Big-O notation, such as an algorithm or solution that runs in linear time still being too slow for its intended use case. [[User:Sophon|Sophon]] ([[User talk:Sophon|talk]]) 17:46, 18 December 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>Jlearman</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2950:_Situation&amp;diff=345088</id>
		<title>2950: Situation</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2950:_Situation&amp;diff=345088"/>
				<updated>2024-06-25T18:46:30Z</updated>
		
		<summary type="html">&lt;p&gt;Jlearman: added &amp;quot;Galloping Gertie&amp;quot; nickname for Tacoma Narrows bridge.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2950&lt;br /&gt;
| date      = June 24, 2024&lt;br /&gt;
| title     = Situation&lt;br /&gt;
| image     = situation_2x.png&lt;br /&gt;
| imagesize = 578x306px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = We're right under the flight path for the scheduled orbital launch, but don't worry--it's too cold out for the rockets to operate safely, so I'm sure they'll postpone.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a Shark, the iceberg of the sea - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
This comic depicts a situation involving multiple pieces of infrastructure: a ship, sailing towards icebergs, which is tethered to an airship flying next to a power plant towards a bridge. Each of these are labelled with details that clearly reference famous disasters, all of which were caused (at least in part) by design failures. All of these incidents are common case studies for engineers studying how things can go very wrong. The implication is that, by putting them all together, most engineers would be highly concerned with the potential for catastrophe.  &lt;br /&gt;
&lt;br /&gt;
;&amp;quot;Unsinkable Ocean Liner&amp;quot; refers to the RMS ''{{w|Titanic}}''.&lt;br /&gt;
:The ''Titanic'' was a British ocean liner which famously {{w|Sinking of the Titanic|sank}} on its maiden voyage in 1912. It was the largest ship in operation at the time, and was called &amp;quot;unsinkable&amp;quot; due to its size and much-lauded design features. The ship struck an iceberg on the fourth day of its first voyage, breaching the hull and ultimately causing it to sink, resulting in 1,496 deaths. Multiple design inadequacies (although none without precedent in contemporary vessels) were afterwards identified as contributing to the rapid speed of the ship sinking and to the high loss of life. These included: too few life boats; inadequate steering ability; compartments lacking watertight ceilings and therefore allowing the water levels within to top over into previously unaffected sections.&lt;br /&gt;
&lt;br /&gt;
;&amp;quot;Hydrogen-filled [...] Airship [...]&amp;quot; refers to the {{w|Hindenburg Disaster}}.&lt;br /&gt;
:The {{w|LZ 129 Hindenburg|''Hindenburg''}} was a German airship which used hydrogen as a lifting gas. In 1937, during a landing in New Jersey, the ship caught fire and the flammable hydrogen quickly ignited, causing the ship to crash and resulting in 36 deaths. While the origins of the fire are still debated, the dangers of using large amounts of flammable gas in airships were made dramatically clear. &lt;br /&gt;
:Ironically, the airship in the comic appears to have been commissioned for the purpose of mitigating iceberg risks (unless 'iceberg spotting' is for the purpose of steering the 'Unsinkable Ocean Liner' towards icebergs, perhaps as a tourist attraction).&lt;br /&gt;
&lt;br /&gt;
;&amp;quot;Soviet Era Nuclear Reactor Undergoing a Turbine Test&amp;quot; refers to the {{w|Chernobyl Disaster}}.&lt;br /&gt;
:The {{w|Chernobyl Nuclear Power Plant}} is located near the city of Pripyat, in Ukraine (part of the Soviet Union at the time of the disaster). On 26 April 1986, a reactor core partially melted during a turbine test. This led to an explosion, causing a massive release of radiation. This incident remains the worst nuclear accident to date. The cause of the disaster was determined to have resulted from a combination of uncommon circumstances and human error, which the reactor wasn't designed to account for. &lt;br /&gt;
:The number of fatalities from the disaster is difficult to calculate; two people died from the initial damage, twenty-eight more from acute radiation sickness, and fifteen people who were directly exposed developed terminal thyroid cancer. The radiation, however, spread far beyond the plant itself, and the number of premature deaths ultimately attributable to subsequent exposure can't be calculated directly, though most estimates are easily in the thousands.&lt;br /&gt;
&lt;br /&gt;
;&amp;quot;Bridge Prone to Aeroelastic Flutter in High Winds&amp;quot; refers to the {{w|Tacoma Narrows Bridge (1940)|Tacoma Narrows Bridge}}.&lt;br /&gt;
:The Tacoma Narrows Bridge, a suspension bridge in the U.S. state of Washington, was initially built in 1940. From the time of its construction, the bridge was observed to sway and {{w|Aeroelasticity#Flutter|flutter}} in high winds, and was nicknamed &amp;quot;Galloping Gertie&amp;quot;. About four months after opening, in 40 mile-per-hour (64 km/h) winds, the bridge fluttered so violently that it collapsed into the strait. There were no human fatalities, though several people were injured. This collapse is frequently used to demonstrate the dangers of harmonic vibration in infrastructure, particularly structures exposed to strong winds. The bridge was eventually rebuilt, with a redesign intended to prevent such fluttering.&lt;br /&gt;
&lt;br /&gt;
;The title text refers to the {{w|Space Shuttle Challenger Disaster}}.&lt;br /&gt;
:The {{w|Space Shuttle Challenger|''Challenger''}} was an American space shuttle which broke up shortly after its launch in 1986, killing all seven crew members aboard before reaching orbit. The disaster was caused by a failure of O-ring seals on one of the shuttle's rocket boosters and the subsequent leak of hot gases. The likely cause of these failures was the seals being unable to maintain their integrity due to being well below their design temperature range in the immediate lead-up to being exposed to launch conditions, thanks to much colder than normal weather in the launch area. Engineers for the company that had built the boosters raised this concern and recommended postponing the launch, but were overruled.&lt;br /&gt;
&lt;br /&gt;
As illustrated, it appears that the ship is about to sail under the bridge, while the airship will fly over it, causing the tether between the two to snag the bridge unless the airship descends sufficiently before then. It is not clear how or if the reactor will contribute to the resulting incident.&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;
:[An airship flying, labeled:]&lt;br /&gt;
:Hydrogen-filled scout airship for iceberg spotting  &lt;br /&gt;
:[The airship is chained to a ship, going along a river, labeled:]&lt;br /&gt;
:Unsinkable ocean liner&lt;br /&gt;
:[In the background on the coast a nuclear power plant, labeled:]&lt;br /&gt;
:Soviet-era nuclear reactor undergoing a turbine test  &lt;br /&gt;
:[The boat and airship are steering towards a bridge, labeled:]&lt;br /&gt;
:Bridge prone to aeroelastic flutter in high winds&lt;br /&gt;
:[Two unlabeled icebergs are on the water on either side of the bridge.]&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:In retrospect, we should have noticed how nervous the situation was making the engineers.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Engineering]]&lt;br /&gt;
[[Category:Aviation]]&lt;br /&gt;
[[Category:Space]]&lt;/div&gt;</summary>
		<author><name>Jlearman</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2891:_Log_Cabin&amp;diff=334560</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=334560"/>
				<updated>2024-02-08T13:36:26Z</updated>
		
		<summary type="html">&lt;p&gt;Jlearman: /* Explanation */ replaced &amp;quot;some sort of storage area&amp;quot; with &amp;quot;closet,&amp;quot; as this could be a linen closet, utility closet, or pantry, and the general term &amp;quot;closet&amp;quot; applies in all cases.&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 TRAPPED BUILDING INSPECTOR APPROXIMATELY PI - HEY, COME BACK H! METERS TALL- Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
[[File:log_cabin_golden_spiral.png|thumb|301px|Golden spiral (approximately) overlaid on the floor plan]]&lt;br /&gt;
&lt;br /&gt;
This is a comic featuring a {{w|floor plan}}, presumably of a {{w|log cabin}}, and a pun on the word &amp;quot;log&amp;quot;. The odd part about it is the right half, which appears to be infinitely recursive copies of the building, a self-similar {{w|fractal}}. The house as a whole represents a {{w|golden rectangle}} with a side ratio of the {{w|golden ratio}} (phi = 0.5 + (1.25 ^ 0.5) ≈ 1.6180339887...), with successively 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, with a {{w|logarithmic spiral}}, as &amp;quot;log&amp;quot; is shorthand for &amp;quot;logarithm&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Every square subunit of the premises consists of a main combined kitchen/lounge area, with an adjoining shower-equipped bathroom, and a hallway leading to a closet and two bedrooms (a double-bed one with en-suite bath-equipped bathroom, and another with a single bed; both having suitable walk-in closet space). Between the kitchen and the dining table is the door that serves as the entry into the next inwards level of the floorplan.&lt;br /&gt;
&lt;br /&gt;
A visitor can also walk in a spiral by using the doors in the building plan.&lt;br /&gt;
&lt;br /&gt;
In the title text, Randall says that he is confident that building inspectors will approve the design of his log cabin, assuming they can escape. As one moves deeper into the infinite spiral of architecture, the entire log cabin ''seems'' to be a denser 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 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 that they might consider needs exploring to fulfil their inspection routine.&lt;br /&gt;
&lt;br /&gt;
In any case, though, they would not need to physically enter the floorplan in order to approve the ''design'', so any risk of getting 'lost' would come solely from a psychological inability to break off from the infinite recursion. Approval of ''construction'' would be a different matter. Whether the floorplan could genuinely be infinitely recursive would depend on how Randall has presented it. Typically, these would be submitted as static images (as it is in the comic), in which case at some point there would be insufficient resolution to continue the recursion, effectively ending in a solid pillar. Randall, however, perhaps channeling his inner Black Hat, may have used a program that dynamically generates further levels as you zoom in to the image.&lt;br /&gt;
&lt;br /&gt;
Alternatively, this may imply that the repetition continues outside of what is drawn here, continuing to grow larger as it moves further out. However, the apparent presence of external windows on the first four iterations, but no internal ones (and therefore no equivalent windows on the subsequent iterations) somewhat belies that possibility. In fact, the first iteration has windows on the 'southern' edge, for the single bedroom and seating area, for which there are no equivalents on any of the other iterations.&lt;br /&gt;
&lt;br /&gt;
[https://www.generations-quilt-patterns.com/log-cabin-quilt-block.html Log Cabin] is also a classic quilting block, which starts with a tiny square and spirals outwards.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[A drawing of the top view of a log cabin, which includes two beds, a kitchen, a bathroom and furniture. A smaller version of the log cabin is connected to the main building. An even smaller version is connected to the smaller version, and so on, forming a golden rectangle.]&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>Jlearman</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2891:_Log_Cabin&amp;diff=334559</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=334559"/>
				<updated>2024-02-08T13:32:15Z</updated>
		
		<summary type="html">&lt;p&gt;Jlearman: /* Explanation */ The pun is on &amp;quot;logarithmic spiral.&amp;quot;  THe golden ratio is not a special case of a logarithm.&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 TRAPPED BUILDING INSPECTOR APPROXIMATELY PI - HEY, COME BACK H! METERS TALL- Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
[[File:log_cabin_golden_spiral.png|thumb|301px|Golden spiral (approximately) overlaid on the floor plan]]&lt;br /&gt;
&lt;br /&gt;
This is a comic featuring a {{w|floor plan}}, presumably of a {{w|log cabin}}, and a pun on the word &amp;quot;log&amp;quot;. The odd part about it is the right half, which appears to be infinitely recursive copies of the building, a self-similar {{w|fractal}}. The house as a whole represents a {{w|golden rectangle}} with a side ratio of the {{w|golden ratio}} (phi = 0.5 + (1.25 ^ 0.5) ≈ 1.6180339887...), with successively 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, with a {{w|logarithmic spiral}}, as &amp;quot;log&amp;quot; is shorthand for &amp;quot;logarithm&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Every square subunit of the premises consists of a main combined kitchen/lounge area, with an adjoining shower-equipped bathroom, and a hallway leading to some kind of storage cupboard and two bedrooms (a double-bed one with en-suite bath-equipped bathroom, and another with a single bed; both having suitable walk-in closet space). Between the kitchen and the dining table is the door that serves as the entry into the next inwards level of the floorplan.&lt;br /&gt;
&lt;br /&gt;
A visitor can also walk in a spiral by using the doors in the building plan.&lt;br /&gt;
&lt;br /&gt;
In the title text, Randall says that he is confident that building inspectors will approve the design of his log cabin, assuming they can escape. As one moves deeper into the infinite spiral of architecture, the entire log cabin ''seems'' to be a denser 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 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 that they might consider needs exploring to fulfil their inspection routine.&lt;br /&gt;
&lt;br /&gt;
In any case, though, they would not need to physically enter the floorplan in order to approve the ''design'', so any risk of getting 'lost' would come solely from a psychological inability to break off from the infinite recursion. Approval of ''construction'' would be a different matter. Whether the floorplan could genuinely be infinitely recursive would depend on how Randall has presented it. Typically, these would be submitted as static images (as it is in the comic), in which case at some point there would be insufficient resolution to continue the recursion, effectively ending in a solid pillar. Randall, however, perhaps channeling his inner Black Hat, may have used a program that dynamically generates further levels as you zoom in to the image.&lt;br /&gt;
&lt;br /&gt;
Alternatively, this may imply that the repetition continues outside of what is drawn here, continuing to grow larger as it moves further out. However, the apparent presence of external windows on the first four iterations, but no internal ones (and therefore no equivalent windows on the subsequent iterations) somewhat belies that possibility. In fact, the first iteration has windows on the 'southern' edge, for the single bedroom and seating area, for which there are no equivalents on any of the other iterations.&lt;br /&gt;
&lt;br /&gt;
[https://www.generations-quilt-patterns.com/log-cabin-quilt-block.html Log Cabin] is also a classic quilting block, which starts with a tiny square and spirals outwards.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[A drawing of the top view of a log cabin, which includes two beds, a kitchen, a bathroom and furniture. A smaller version of the log cabin is connected to the main building. An even smaller version is connected to the smaller version, and so on, forming a golden rectangle.]&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>Jlearman</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2880:_Sheet_Bend&amp;diff=332876</id>
		<title>Talk:2880: Sheet Bend</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2880:_Sheet_Bend&amp;diff=332876"/>
				<updated>2024-01-13T17:44:57Z</updated>
		
		<summary type="html">&lt;p&gt;Jlearman: A sail isn't called a &amp;quot;sheet&amp;quot;&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;
Why is this called a &amp;quot;sheet&amp;quot; bend? [[User:SystemParadox|SystemParadox]] ([[User talk:SystemParadox|talk]]) 21:17, 12 January 2024 (UTC)&lt;br /&gt;
:I don't know the full answer but it's a sailing thing: the 'sheet' is the rope you pull in or let out to control the position of the sail. I guess bend describes the category of knot. [[Special:Contributions/172.70.90.48|172.70.90.48]] 21:23, 12 January 2024 (UTC)&lt;br /&gt;
::NO NO NO.  The sheet is the sail. [[User:JohnB|JohnB]] ([[User talk:JohnB|talk]]) 21:36, 12 January 2024 (UTC)&lt;br /&gt;
:::It is the rope - {{w|Sheet (sailing)}}. &amp;quot;In sailing, a sheet is a line (rope, cable or chain) used to control the movable corner(s) (clews) of a sail.&amp;quot; [[Special:Contributions/172.71.242.5|172.71.242.5]] 21:56, 12 January 2024 (UTC)&lt;br /&gt;
::::Huh.  Dueling Wikipedia articles.  The Sheet_bend article has a definition section that says the term &amp;quot;sheet bend&amp;quot; derives from its use bending ropes to sails (sheets).  But the Sheet_(sailing) article says a sheet is a line used to control the movable corner(s) of a sail. [[User:JohnB|JohnB]] ([[User talk:JohnB|talk]]) 23:08, 12 January 2024 (UTC)&lt;br /&gt;
::The sheet bend is named for its ability to to secure a sail, or sheet. You fold over the corner of the sail and that's one of your &amp;quot;ropes&amp;quot;. The sheet bend is generally used as a knot for tying a large, inflexible rope (or rope-like object) to a smaller, more flexible rope.[[Special:Contributions/172.69.70.22|172.69.70.22]] 22:30, 12 January 2024 (UTC)&lt;br /&gt;
::I would take the Ashley Book of Knots as authoritative. Sheet Bend is the first knot in the book, and is always (in modern terms) rope-to-rope, not to sail. It is one of the basic knots. https://en.wikipedia.org/wiki/The_Ashley_Book_of_Knots  https://en.wikipedia.org/wiki/Sheet_bend&lt;br /&gt;
::{{unsigned|PRR|04:04, 13 January 2024}} &amp;lt;!-- note to author, use (e.g.) &amp;quot;{{w|The Ashley Book of Knots}}&amp;quot; in such a case... As well as remembering to sign Talk items... --&amp;gt;&lt;br /&gt;
:I added a link to the wikipedia entry, it explains the name. [[User:Barmar|Barmar]] ([[User talk:Barmar|talk]]) 21:25, 12 January 2024 (UTC)&lt;br /&gt;
:Presumably the &amp;quot;different loads&amp;quot; title text is a pun between electrical load and mechanical stress on the knot? [[User:Jim-at-home|Jim-at-home]] ([[User talk:Jim-at-home|talk]]) 21:56, 12 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
A sail is never, and was never, properly called a &amp;quot;sheet&amp;quot;, since at least the 13th century.  The Wikipedia explanation of the name is misleading. According to https://www.etymonline.com/word/sheet, it's &amp;quot;shortened from Old English sceatline &amp;quot;sheet-line,&amp;quot; from sceata &amp;quot;lower part of sail,&amp;quot; originally &amp;quot;piece of cloth,&amp;quot; from same Proto-Germanic source as sheet (n.1).&amp;quot; [[User:Jlearman|Jlearman]] ([[User talk:Jlearman|talk]]) 17:44, 13 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
“silver being joined to silver and gold being joined to gold within the insulating white cable” is not the conventional way to join cables.&lt;br /&gt;
Unless you are joining one cable to itself (like a Möbius strip), you have ''two'' cables with insulation.&lt;br /&gt;
And usually you use non-cursed connectors, where you first remove the insulation at the end of the cable and then crimp or solder the conductors to metal parts of the connector; or solder the conductors and then add a different type of insulation for protection; or use screw terminals;...&lt;br /&gt;
Only with insulation displacement connectors you keep using all the insulation of the two cables.&lt;br /&gt;
And finally, conductors are usually copper ''or'' aluminum, and very rarely silver ''and'' gold. --[[Special:Contributions/162.158.94.141|162.158.94.141]] 08:45, 13 January 2024 (UTC)&lt;br /&gt;
:I think the gold and silver is just color coded for the reader. Not that they are meant to indicate that the conductors are made from this material. Apart from that you comment sounds like you know what you are talking about. So please improve the explanation if you can. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 10:58, 13 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Okay I looked at the wikipedia article and the knot depicted in the comic looks like a right handed one. I still don't know why it's called right handed, or why the left handed one is insecure.[[Special:Contributions/198.41.236.207|198.41.236.207]] 11:46, 13 January 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
A note I nearly added in the bit about short-circuits (or, as I added, 'un'circuiting) is that the electrical behaviour of the knot is different according to which 'end' slips. If the left-side cable 'slips through' enough, then its gold and silver bits of sheath could contact (would short-circuit any current driven at that side). If the right-side cable slips out, it is in no danger of doing so for a right-driven current (it would just disconnect). That ignores the cross-talking that could occur (on one conducting line at a time, so may not matter if there's no external ground-return element, except as far as not being a proper connection any more), or ''both'' ends slipping (where one of the LHS sheaths ''might'' shuffle into a position to bridge the two RHS sheaths). But, as tied, the LHS silver (being bent in and out of the page around its crossing counterpart wire) seems unlikely to be pressed against both gold and silver, should it trivially untwine/slip through. Actual studies with actual knots might be useful. I thought I had a spare length of unterminated Cat5, nearby, but apparently (k)not... that, with some coloured permanent marker-pen marks made upon it, would probably have made a decent analogue for visual analysis of failure conditions. Maybe I'll de-plug an old cable (I've got a number of damaged USB cables I could chop, but their being thinner would change the scale and dynamics of the knot, meaning I might as well just use a scrap of twisted-pair internally-sheathed strands). – But I thought you'd like my mind's-eye analysis of the knot behaviour, before I get around to trying anything practical to this end. [[Special:Contributions/141.101.99.7|141.101.99.7]] 17:08, 13 January 2024 (UTC) (&amp;lt;- ex Cub-/Boy-/Venture-Scout, but never got any Knot ''Un''tying badge... that brief stint with escapology aside... ;) )&lt;/div&gt;</summary>
		<author><name>Jlearman</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2763:_Linguistics_Gossip&amp;diff=310551</id>
		<title>Talk:2763: Linguistics Gossip</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2763:_Linguistics_Gossip&amp;diff=310551"/>
				<updated>2023-04-17T19:29:59Z</updated>
		
		<summary type="html">&lt;p&gt;Jlearman: signed again, logged in this time&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;
Added initial explanation [[User:Bamboo|Bamboo]] ([[User talk:Bamboo|talk]]) 14:08, 14 April 2023 (UTC)Bamboo&lt;br /&gt;
&lt;br /&gt;
Added possible explanation of title text [[User:Bamboo|Bamboo]] ([[User talk:Bamboo|talk]]) 14:14, 14 April 2023 (UTC)Bamboo&lt;br /&gt;
&lt;br /&gt;
Has anyone asked O what they think of all this?[[Special:Contributions/172.70.91.152|172.70.91.152]] 14:32, 14 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
NOTE: I'm assuming the IE/VE ligature is IE, where the I is tilted&lt;br /&gt;
Could this also be a reference to the historical Latin pronunciation of Æ, and its separation into &amp;quot;AA&amp;quot; (which could be represented by &amp;quot;ar&amp;quot; in English (&amp;quot;r&amp;quot; is silent), hence the ligature &amp;quot;AR&amp;quot;) and  &amp;quot;IE&amp;quot; (which would be pronounced &amp;quot;ee&amp;quot; as in &amp;quot;relieve&amp;quot;) [[User:1844161|1844161]] ([[User talk:1844161|talk]]) 15:21, 14 April 2023 (UTC)&lt;br /&gt;
: I disagree. The title text strongly points towards VE as the logical interpretation [[User:Boatster|Boatster]] ([[User talk:Boatster|talk]]) 15:52, 14 April 2023 (UTC)&lt;br /&gt;
: Me too. Also, funnily I thought of Andy Warhol...but in his &amp;quot;LOVE&amp;quot; pop art, the O is tilted, not the V.[[Special:Contributions/198.41.242.133|198.41.242.133]] 09:20, 16 April 2023 (UTC)&lt;br /&gt;
::That wasn't Warhol. https://en.wikipedia.org/wiki/Love_(image) [[Special:Contributions/162.158.63.151|162.158.63.151]] 13:33, 17 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think it might be helpful to readers to provide a parenthetical describing the pronunciation of the 'ash' glyph, so that people who aren't old language aficionados aren't left in the lurch if they're the sort who read aloud in their head.  I'm going to add it, but if someone removes it I won't be miffed.  Also, there's no way the new E ligature is meant to be IE.  The title text only makes sense if it's VE.[[Special:Contributions/172.69.67.136|172.69.67.136]] 15:56, 14 April 2023 (UTC)&lt;br /&gt;
: Thank you. That was super helpful as I'm language-curious, but not an æficænado. Any chance we could get similar explanations of the AR (seems legit) &amp;amp; AV(seems not)? [[User:Iggynelix|Iggynelix]] ([[User talk:Iggynelix|talk]]) 13:49, 15 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I hope AR wedding hat a pirate theme. --[[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 16:05, 14 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
The AR ligature is used in aeronautical engineering for the aspect ratio of a wing.  This mainly applies to handwritten work, since there isn't an easy way to insert that glyph when typing.  [[User:D5xtgr|D5xtgr]] ([[User talk:D5xtgr|talk]]) 17:18, 14 April 2023 (UTC)&lt;br /&gt;
: Example of 🜇 in aeronautics: http://tug.ctan.org/macros/latex/contrib/aspectratio/ar.pdf .  It was also used in antiquity: https://commons.wikimedia.org/wiki/File:Exempla_Mensurarum_Sal%C3%B2.JPG [[User:Jlearman|Jlearman]] ([[User talk:Jlearman|talk]]) 19:29, 17 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
The AR (&amp;amp;#x1f707;) ligature also stands for a substance that can mix with gold. [[Special:Contributions/162.158.166.125|162.158.166.125]] 09:09, 16 April 2023 (UTC)&lt;br /&gt;
:If you mean {{w|Aqua regia}}, it's not so much 'mix with' as 'dissolve'. [[Special:Contributions/172.70.90.34|172.70.90.34]] 18:08, 16 April 2023 (UTC)&lt;br /&gt;
::Is this comic inspired by an &amp;quot;aqua regia&amp;quot; incident? [[User:Unreliable Connection|2659: Unreliable Connection]] ([[User talk:Unreliable Connection|talk]]) 02:07, 17 April 2023 (UTC)&lt;br /&gt;
:::Does it have to be? [[Special:Contributions/172.70.86.31|172.70.86.31]] 19:24, 17 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
2763 -MathHacked&lt;br /&gt;
&lt;br /&gt;
I suppose the Æsop is that it's not necessary to maintain a chimæric quæstionability just for primævally æsthetic reasons, or have sæcularly dæmonic adhærence to adhæsively mæandering through an anæsthetic tædium of hæritage fæcality. Unless that's all just hæretical hyperbolæ, casting pædagogical umbræ on the matter. [[Special:Contributions/172.70.162.160|172.70.162.160]] 21:22, 14 April 2023 (UTC)&lt;br /&gt;
: Well plæd. &lt;br /&gt;
: AUGH!!!  Just make it stop!!!!&lt;br /&gt;
It's just too bad they all now live in the same ''small recreational vehicle'' because that leads to awkwardness. [[Special:Contributions/172.71.142.159|172.71.142.159]] 02:07, 15 April 2023 (UTC)&lt;br /&gt;
: Seems pretty roomy based on the space between them.;)&lt;br /&gt;
&lt;br /&gt;
A and E got REM🜇RIED?! [[Special:Contributions/172.70.38.96|172.70.38.96]] 05:28, 15 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
It is downright incorrect to refer to the ae-ligature as 'ash', as this is only true when it is used to Latinize the aesc-rune in Old English, which is anything but the most common use of this ligature. [[Special:Contributions/172.70.46.192|172.70.46.192]] 18:01, 15 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I went looking for &amp;quot;AR&amp;quot; and &amp;quot;VE&amp;quot; ligatures in general use (and in Unicode), and found nothing. Are they in general use? If not, a comment to that effect in the explanation would be helpful. -- [[User:Dtgriscom|Dtgriscom]] ([[User talk:Dtgriscom|talk]]) 21:44, 15 April 2023 (UTC)&lt;br /&gt;
:(Ignoring that D5xtgr said there was an AR, and an IP even ''wrote'' an 🜇...) Of course they weren't in general use, because A and E were together all that time, but now they're recoupled..! [[Special:Contributions/172.71.242.87|172.71.242.87]] 21:58, 15 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm no linguist, but this may refer to the fact that many languages with the AE ligature are romance languages, while English is not. [[User:Unreliable Connection|2659: Unreliable Connection]] ([[User talk:Unreliable Connection|talk]]) 09:04, 16 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[https://battlefordreamisland.fandom.com/wiki/2,763 2763]] is a running gag in BFDI :) [[Special:Contributions/172.71.22.106|172.71.22.106]] 19:02, 16 April 2023 (UTC)Bumpf&lt;br /&gt;
:Probably unrelated. By the way, is it OK for me to edit comic explanations? [[User:Missed Connections|935: Missed Connections]] ([[User talk:Missed Connections|talk]]) 22:58, 16 April 2023 (UTC)&lt;br /&gt;
:Don't feign ignorance, CG. Do as you know you should do and (whatever accounts you use) make any useful edits to Explanations that you think are necessary, but refrain from rewording Talk stuff from anyone else (without very good reason, such as reverting vandalism of spam). [[Special:Contributions/172.70.85.169|172.70.85.169]] 08:09, 17 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
AE could refer to Adam and Eve&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Then we get EV as Eve.&lt;br /&gt;
Not yet sure where AR refers to, Adam and Romeo, Augmented Reality?&lt;br /&gt;
Love does contain VE as reverse of EV.&lt;br /&gt;
[[User:XKCDnl|XKCDnl]] ([[User talk:XKCDnl|talk]]) 04:16, 17 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
AR stands for:&lt;br /&gt;
https://en.m.wiktionary.org/wiki/%F0%9F%9C%87&lt;br /&gt;
synonym for&lt;br /&gt;
https://en.m.wiktionary.org/wiki/%F0%9F%9C%86#Translingual&lt;br /&gt;
stands for to &amp;quot;aqua regia&amp;quot; that means:&lt;br /&gt;
https://en.m.wiktionary.org/wiki/aqua_regia&lt;br /&gt;
&amp;quot;royal water&amp;quot;&lt;br /&gt;
&lt;br /&gt;
So we have Eve and the royal water, so is she now baptised and blessed with love?&lt;br /&gt;
[[User:XKCDnl|XKCDnl]] ([[User talk:XKCDnl|talk]]) 14:48, 17 April 2023 (UTC)&lt;/div&gt;</summary>
		<author><name>Jlearman</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2763:_Linguistics_Gossip&amp;diff=310539</id>
		<title>Talk:2763: Linguistics Gossip</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2763:_Linguistics_Gossip&amp;diff=310539"/>
				<updated>2023-04-17T15:09:07Z</updated>
		
		<summary type="html">&lt;p&gt;Jlearman: added examples of 🜇 in aeronautics and antiquity&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;
Added initial explanation [[User:Bamboo|Bamboo]] ([[User talk:Bamboo|talk]]) 14:08, 14 April 2023 (UTC)Bamboo&lt;br /&gt;
&lt;br /&gt;
Added possible explanation of title text [[User:Bamboo|Bamboo]] ([[User talk:Bamboo|talk]]) 14:14, 14 April 2023 (UTC)Bamboo&lt;br /&gt;
&lt;br /&gt;
Has anyone asked O what they think of all this?[[Special:Contributions/172.70.91.152|172.70.91.152]] 14:32, 14 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
NOTE: I'm assuming the IE/VE ligature is IE, where the I is tilted&lt;br /&gt;
Could this also be a reference to the historical Latin pronunciation of Æ, and its separation into &amp;quot;AA&amp;quot; (which could be represented by &amp;quot;ar&amp;quot; in English (&amp;quot;r&amp;quot; is silent), hence the ligature &amp;quot;AR&amp;quot;) and  &amp;quot;IE&amp;quot; (which would be pronounced &amp;quot;ee&amp;quot; as in &amp;quot;relieve&amp;quot;) [[User:1844161|1844161]] ([[User talk:1844161|talk]]) 15:21, 14 April 2023 (UTC)&lt;br /&gt;
: I disagree. The title text strongly points towards VE as the logical interpretation [[User:Boatster|Boatster]] ([[User talk:Boatster|talk]]) 15:52, 14 April 2023 (UTC)&lt;br /&gt;
: Me too. Also, funnily I thought of Andy Warhol...but in his &amp;quot;LOVE&amp;quot; pop art, the O is tilted, not the V.[[Special:Contributions/198.41.242.133|198.41.242.133]] 09:20, 16 April 2023 (UTC)&lt;br /&gt;
::That wasn't Warhol. https://en.wikipedia.org/wiki/Love_(image) [[Special:Contributions/162.158.63.151|162.158.63.151]] 13:33, 17 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think it might be helpful to readers to provide a parenthetical describing the pronunciation of the 'ash' glyph, so that people who aren't old language aficionados aren't left in the lurch if they're the sort who read aloud in their head.  I'm going to add it, but if someone removes it I won't be miffed.  Also, there's no way the new E ligature is meant to be IE.  The title text only makes sense if it's VE.[[Special:Contributions/172.69.67.136|172.69.67.136]] 15:56, 14 April 2023 (UTC)&lt;br /&gt;
: Thank you. That was super helpful as I'm language-curious, but not an æficænado. Any chance we could get similar explanations of the AR (seems legit) &amp;amp; AV(seems not)? [[User:Iggynelix|Iggynelix]] ([[User talk:Iggynelix|talk]]) 13:49, 15 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I hope AR wedding hat a pirate theme. --[[User:Lupo|Lupo]] ([[User talk:Lupo|talk]]) 16:05, 14 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
The AR ligature is used in aeronautical engineering for the aspect ratio of a wing.  This mainly applies to handwritten work, since there isn't an easy way to insert that glyph when typing.  [[User:D5xtgr|D5xtgr]] ([[User talk:D5xtgr|talk]]) 17:18, 14 April 2023 (UTC)&lt;br /&gt;
: Example of 🜇 in aeronautics: http://tug.ctan.org/macros/latex/contrib/aspectratio/ar.pdf .  It was also used in antiquity: https://commons.wikimedia.org/wiki/File:Exempla_Mensurarum_Sal%C3%B2.JPG&lt;br /&gt;
&lt;br /&gt;
The AR (&amp;amp;#x1f707;) ligature also stands for a substance that can mix with gold. [[Special:Contributions/162.158.166.125|162.158.166.125]] 09:09, 16 April 2023 (UTC)&lt;br /&gt;
:If you mean {{w|Aqua regia}}, it's not so much 'mix with' as 'dissolve'. [[Special:Contributions/172.70.90.34|172.70.90.34]] 18:08, 16 April 2023 (UTC)&lt;br /&gt;
::Is this comic inspired by an &amp;quot;aqua regia&amp;quot; incident? [[User:Unreliable Connection|2659: Unreliable Connection]] ([[User talk:Unreliable Connection|talk]]) 02:07, 17 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
2763 -MathHacked&lt;br /&gt;
&lt;br /&gt;
I suppose the Æsop is that it's not necessary to maintain a chimæric quæstionability just for primævally æsthetic reasons, or have sæcularly dæmonic adhærence to adhæsively mæandering through an anæsthetic tædium of hæritage fæcality. Unless that's all just hæretical hyperbolæ, casting pædagogical umbræ on the matter. [[Special:Contributions/172.70.162.160|172.70.162.160]] 21:22, 14 April 2023 (UTC)&lt;br /&gt;
: Well plæd. &lt;br /&gt;
: AUGH!!!  Just make it stop!!!!&lt;br /&gt;
It's just too bad they all now live in the same ''small recreational vehicle'' because that leads to awkwardness. [[Special:Contributions/172.71.142.159|172.71.142.159]] 02:07, 15 April 2023 (UTC)&lt;br /&gt;
: Seems pretty roomy based on the space between them.;)&lt;br /&gt;
&lt;br /&gt;
A and E got REM🜇RIED?! [[Special:Contributions/172.70.38.96|172.70.38.96]] 05:28, 15 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
It is downright incorrect to refer to the ae-ligature as 'ash', as this is only true when it is used to Latinize the aesc-rune in Old English, which is anything but the most common use of this ligature. [[Special:Contributions/172.70.46.192|172.70.46.192]] 18:01, 15 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I went looking for &amp;quot;AR&amp;quot; and &amp;quot;VE&amp;quot; ligatures in general use (and in Unicode), and found nothing. Are they in general use? If not, a comment to that effect in the explanation would be helpful. -- [[User:Dtgriscom|Dtgriscom]] ([[User talk:Dtgriscom|talk]]) 21:44, 15 April 2023 (UTC)&lt;br /&gt;
:(Ignoring that D5xtgr said there was an AR, and an IP even ''wrote'' an 🜇...) Of course they weren't in general use, because A and E were together all that time, but now they're recoupled..! [[Special:Contributions/172.71.242.87|172.71.242.87]] 21:58, 15 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm no linguist, but this may refer to the fact that many languages with the AE ligature are romance languages, while English is not. [[User:Unreliable Connection|2659: Unreliable Connection]] ([[User talk:Unreliable Connection|talk]]) 09:04, 16 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[https://battlefordreamisland.fandom.com/wiki/2,763 2763]] is a running gag in BFDI :) [[Special:Contributions/172.71.22.106|172.71.22.106]] 19:02, 16 April 2023 (UTC)Bumpf&lt;br /&gt;
:Probably unrelated. By the way, is it OK for me to edit comic explanations? [[User:Missed Connections|935: Missed Connections]] ([[User talk:Missed Connections|talk]]) 22:58, 16 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
AE could refer to Adam and Eve&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Then we get EV as Eve.&lt;br /&gt;
Not yet sure where AR refers to, Adam and Romeo, Augmented Reality?&lt;br /&gt;
Love does contain VE as reverse of EV.&lt;br /&gt;
[[User:XKCDnl|XKCDnl]] ([[User talk:XKCDnl|talk]]) 04:16, 17 April 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
AR stands for:&lt;br /&gt;
https://en.m.wiktionary.org/wiki/%F0%9F%9C%87&lt;br /&gt;
synonym for&lt;br /&gt;
https://en.m.wiktionary.org/wiki/%F0%9F%9C%86#Translingual&lt;br /&gt;
stands for to &amp;quot;aqua regia&amp;quot; that means:&lt;br /&gt;
https://en.m.wiktionary.org/wiki/aqua_regia&lt;br /&gt;
&amp;quot;royal water&amp;quot;&lt;br /&gt;
&lt;br /&gt;
So we have Eve and the royal water, so is she now baptised and blessed with love?&lt;br /&gt;
[[User:XKCDnl|XKCDnl]] ([[User talk:XKCDnl|talk]]) 14:48, 17 April 2023 (UTC)&lt;/div&gt;</summary>
		<author><name>Jlearman</name></author>	</entry>

	</feed>